From b188fddfb431cbc41f7ae3de1bb052660153fc58 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Tue, 3 Dec 2024 17:14:21 +0530 Subject: [PATCH 01/18] added expf implementation --- .../@stdlib/math/base/special/expf/LICENSE | 222 +++++++++++++++ .../@stdlib/math/base/special/expf/README.md | 230 ++++++++++++++++ .../base/special/expf/benchmark/benchmark.js | 72 +++++ .../expf/benchmark/benchmark.native.js | 60 +++++ .../base/special/expf/benchmark/c/Makefile | 127 +++++++++ .../base/special/expf/benchmark/c/benchmark.c | 132 +++++++++ .../special/expf/benchmark/c/cephes/Makefile | 113 ++++++++ .../expf/benchmark/c/cephes/benchmark.c | 137 ++++++++++ .../special/expf/benchmark/c/native/Makefile | 146 ++++++++++ .../expf/benchmark/c/native/benchmark.c | 133 +++++++++ .../base/special/expf/benchmark/julia/REQUIRE | 2 + .../special/expf/benchmark/julia/benchmark.jl | 144 ++++++++++ .../expf/benchmark/python/benchmark.py | 97 +++++++ .../base/special/expf/benchmark/r/DESCRIPTION | 9 + .../base/special/expf/benchmark/r/benchmark.R | 109 ++++++++ .../math/base/special/expf/binding.gyp | 170 ++++++++++++ .../equation_natural_exponential_function.svg | 17 ++ .../math/base/special/expf/docs/repl.txt | 28 ++ .../base/special/expf/docs/types/index.d.ts | 48 ++++ .../math/base/special/expf/docs/types/test.ts | 44 +++ .../base/special/expf/examples/c/Makefile | 146 ++++++++++ .../base/special/expf/examples/c/example.c | 33 +++ .../math/base/special/expf/examples/index.js | 30 +++ .../math/base/special/expf/include.gypi | 53 ++++ .../include/stdlib/math/base/special/expf.h | 37 +++ .../math/base/special/expf/lib/expmulti.js | 99 +++++++ .../math/base/special/expf/lib/index.js | 49 ++++ .../math/base/special/expf/lib/main.js | 234 ++++++++++++++++ .../math/base/special/expf/lib/native.js | 58 ++++ .../math/base/special/expf/lib/polyval_p.js | 46 ++++ .../math/base/special/expf/manifest.json | 107 ++++++++ .../math/base/special/expf/package.json | 145 ++++++++++ .../base/special/expf/scripts/evalpoly.js | 121 +++++++++ .../expf/scripts/fixtures/julia/REQUIRE | 2 + .../expf/scripts/fixtures/julia/data.json | 1 + .../expf/scripts/fixtures/julia/runner.jl | 63 +++++ .../base/special/expf/scripts/precision.js | 60 +++++ .../math/base/special/expf/src/Makefile | 70 +++++ .../math/base/special/expf/src/addon.c | 24 ++ .../@stdlib/math/base/special/expf/src/main.c | 253 ++++++++++++++++++ .../special/expf/test/fixtures/julia/REQUIRE | 2 + .../test/fixtures/julia/medium_negative.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../expf/test/fixtures/julia/runner.jl | 80 ++++++ .../test/fixtures/julia/small_negative.json | 1 + .../test/fixtures/julia/small_positive.json | 1 + .../expf/test/fixtures/julia/tiny.json | 1 + .../math/base/special/expf/test/test.js | 165 ++++++++++++ .../base/special/expf/test/test.native.js | 174 ++++++++++++ 49 files changed, 4097 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/LICENSE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/include/stdlib/math/base/special/expf.h create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/expf/LICENSE b/lib/node_modules/@stdlib/math/base/special/expf/LICENSE new file mode 100644 index 000000000000..bcc7f105f77d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/LICENSE @@ -0,0 +1,222 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + +DEPENDENCIES & ATTRIBUTION + +The library links against the following external libraries or contains +implementations from the following external libraries, which have their own +licenses: + +* FreeBSD + +Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunPro, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. + +* Go + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/node_modules/@stdlib/math/base/special/expf/README.md b/lib/node_modules/@stdlib/math/base/special/expf/README.md new file mode 100644 index 000000000000..b33a8f5a4e95 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/README.md @@ -0,0 +1,230 @@ + + +# expf + +> Natural [exponential function][exponential-function] of a single-precision floating-point number + +
+ +The natural [exponential function][exponential-function] is defined as + + + +```math +y = e^x +``` + + + + + +where `e` is [Euler's][@stdlib/constants/float32/e] number. + +
+ + + +
+ +## Usage + +```javascript +var expf = require( '@stdlib/math/base/special/expf' ); +``` + +#### expf( x ) + +Evaluates the natural [exponential function][exponential-function] of a single-precision floating-point number + +```javascript +var v = expf( 4.0 ); +// returns ~54.5982 + +v = expf( -9.0 ); +// returns ~1.234e-4 + +v = expf( 0.0 ); +// returns 1.0 + +v = expf( NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var randu = require( '@stdlib/random/base/randu' ); +var expf = require( '@stdlib/math/base/special/expf' ); + +var x; +var i; + +for ( i = 0; i < 100; i++ ) { + x = (randu()*100.0) - 50.0; + console.log( 'e^%d = %d', x, expf( x ) ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/expf.h" +``` + +#### stdlib_base_expf( x ) + +Evaluates the natural [exponential function][exponential-function] single-precision floating-point number + +```c +float out = stdlib_base_expf( 4.0 ); +// returns ~54.5982 + +out = stdlib_base_expf( -9.0 ); +// returns ~1.234e-4 +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_expf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/expf.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_expf( x ); + printf( "e^%f = %f\n", x, v ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js new file mode 100644 index 000000000000..f6be95756bb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js @@ -0,0 +1,72 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 expf = 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()*100.0 ) - 50.0; + y = expf( 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(); +}); + +bench( pkg+'::built-in', function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu()*100.0 ) - 50.0; + y = Math.expf( x ); // eslint-disable-line stdlib/no-builtin-math + 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/expf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..b894f69e5776 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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 expf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( expf 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()*100.0 ) - 50.0; + y = expf( 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/expf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile new file mode 100644 index 000000000000..e64c0050f3da --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile @@ -0,0 +1,127 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles C source files. +# +# @param {string} [C_COMPILER] - C compiler +# @param {string} [CFLAGS] - C compiler flags +# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler +# @param {string} CFLAGS - C compiler flags +# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c new file mode 100644 index 000000000000..39fafe63f603 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c @@ -0,0 +1,132 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include +#include +#include +#include +#include + +#define NAME "expf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + float x; + float y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( 100.0f *(float)rand_double() ) - 50.0f; + y = expf( 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/expf/benchmark/c/cephes/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile new file mode 100644 index 000000000000..60e93ff57ffd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile @@ -0,0 +1,113 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 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 := @ +endif + +# Specify the path to Cephes: +CEPHES ?= + +# Specify a list of Cephes source files: +CEPHES_SRC ?= + +# Determine the OS: +# +# [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 +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]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C targets: +c_targets := benchmark.out + + +# TARGETS # + +# Default target. +# +# This target is the default target. + +all: $(c_targets) + +.PHONY: all + + +# Compile C source. +# +# This target compiles C source files. + +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $(CEPHES_SRC) $< -lm + + +# Run a benchmark. +# +# This target runs a benchmark. + +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + + +# Perform clean-up. +# +# This target removes generated files. + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c new file mode 100644 index 000000000000..404352618a9e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c @@ -0,0 +1,137 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include +#include +#include +#include +#include + +#define NAME "expf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Define prototypes for external functions. +*/ +extern float expf( float x ); + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static float rand_float( void ) { + int r = rand(); + return (float)r / ( (float)RAND_MAX + 1.0f ); +} + +/** +* 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 = ( 100.0f *rand_float() ) - 50.0f; + y = expf( 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::cephes::%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/expf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..d6b58c7f5d3e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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/expf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..68554fc96c46 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c @@ -0,0 +1,133 @@ +/** +* @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/expf.h" +#include +#include +#include +#include +#include + +#define NAME "expf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + float x; + float y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( 100.0f * (float)rand_double() ) - 50.0f; + y = stdlib_base_expf( 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::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE new file mode 100644 index 000000000000..98645e192e41 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl new file mode 100644 index 000000000000..85ada3d1f97c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl @@ -0,0 +1,144 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import BenchmarkTools +using Printf + +# Benchmark variables: +name = "exp"; +repeats = 3; + +""" + print_version() + +Prints the TAP version. + +# Examples + +``` julia +julia> print_version() +``` +""" +function print_version() + @printf( "TAP version 13\n" ); +end + +""" + print_summary( total, passing ) + +Print the benchmark summary. + +# Arguments + +* `total`: total number of tests +* `passing`: number of passing tests + +# Examples + +``` julia +julia> print_summary( 3, 3 ) +``` +""" +function print_summary( total, passing ) + @printf( "#\n" ); + @printf( "1..%d\n", total ); # TAP plan + @printf( "# total %d\n", total ); + @printf( "# pass %d\n", passing ); + @printf( "#\n" ); + @printf( "# ok\n" ); +end + +""" + print_results( iterations, elapsed ) + +Print benchmark results. + +# Arguments + +* `iterations`: number of iterations +* `elapsed`: elapsed time (in seconds) + +# Examples + +``` julia +julia> print_results( 1000000, 0.131009101868 ) +``` +""" +function print_results( iterations, elapsed ) + rate = iterations / elapsed + + @printf( " ---\n" ); + @printf( " iterations: %d\n", iterations ); + @printf( " elapsed: %0.9f\n", elapsed ); + @printf( " rate: %0.9f\n", rate ); + @printf( " ...\n" ); +end + +""" + benchmark() + +Run a benchmark. + +# Notes + +* Benchmark results are returned as a two-element array: [ iterations, elapsed ]. +* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation. +* The elapsed time is in seconds. + +# Examples + +``` julia +julia> out = benchmark(); +``` +""" +function benchmark() + t = BenchmarkTools.@benchmark exp( (100.0*rand()) - 50.0 ) samples=1e6 + + # Compute the total "elapsed" time and convert from nanoseconds to seconds: + s = sum( t.times ) / 1.0e9; + + # Determine the number of "iterations": + iter = length( t.times ); + + # Return the results: + [ iter, s ]; +end + +""" + main() + +Run benchmarks. + +# Examples + +``` julia +julia> main(); +``` +""" +function main() + print_version(); + for i in 1:repeats + @printf( "# julia::%s\n", name ); + results = benchmark(); + print_results( results[ 1 ], results[ 2 ] ); + @printf( "ok %d benchmark finished\n", i ); + end + print_summary( repeats, repeats ); +end + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py new file mode 100644 index 000000000000..0ad7230ef86e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py @@ -0,0 +1,97 @@ +#!/usr/bin/env python +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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. + +"""Benchmark expf.""" + +from __future__ import print_function +import timeit + +NAME = "expf" +REPEATS = 3 +ITERATIONS = 1000000 + + +def print_version(): + """Print the TAP version.""" + print("TAP version 13") + + +def print_summary(total, passing): + """Print the benchmark summary. + + # Arguments + + * `total`: total number of tests + * `passing`: number of passing tests + + """ + print("#") + print("1.." + str(total)) # TAP plan + print("# total " + str(total)) + print("# pass " + str(passing)) + print("#") + print("# ok") + + +def print_results(elapsed): + """Print benchmark results. + + # Arguments + + * `elapsed`: elapsed time (in seconds) + + # Examples + + ``` python + python> print_results(0.131009101868) + ``` + """ + rate = ITERATIONS / elapsed + + print(" ---") + print(" iterations: " + str(ITERATIONS)) + print(" elapsed: " + str(elapsed)) + print(" rate: " + str(rate)) + print(" ...") + + +def benchmark(): + """Run the benchmark and print benchmark results.""" + setup = "from math import expf; from random import random;" + stmt = "y = exp(100.0*random() - 50.0)" + + t = timeit.Timer(stmt, setup=setup) + + print_version() + + for i in range(REPEATS): + print("# python::" + NAME) + elapsed = t.timeit(number=ITERATIONS) + print_results(elapsed) + print("ok " + str(i+1) + " benchmark finished") + + print_summary(REPEATS, REPEATS) + + +def main(): + """Run the benchmark.""" + benchmark() + + +if __name__ == "__main__": + main() diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION new file mode 100644 index 000000000000..517a6d00676f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION @@ -0,0 +1,9 @@ +Package: exp-benchmarks +Title: Benchmarks +Version: 0.0.0 +Authors@R: person("stdlib", "js", role = c("aut","cre")) +Description: Benchmarks. +Depends: R (>=3.4.0) +Imports: + microbenchmark +LazyData: true diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R new file mode 100644 index 000000000000..b78af82ce33d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R @@ -0,0 +1,109 @@ +#!/usr/bin/env Rscript +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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. + +# Set the precision to 16 digits: +options( digits = 16L ); + +#' Run benchmarks. +#' +#' @examples +#' main(); +main <- function() { + # Define benchmark parameters: + name <- "exp"; + iterations <- 1000000L; + repeats <- 3L; + + #' Print the TAP version. + #' + #' @examples + #' print_version(); + print_version <- function() { + cat( "TAP version 13\n" ); + } + + #' Print the TAP summary. + #' + #' @param total Total number of tests. + #' @param passing Total number of passing tests. + #' + #' @examples + #' print_summary( 3, 3 ); + print_summary <- function( total, passing ) { + cat( "#\n" ); + cat( paste0( "1..", total, "\n" ) ); # TAP plan + cat( paste0( "# total ", total, "\n" ) ); + cat( paste0( "# pass ", passing, "\n" ) ); + cat( "#\n" ); + cat( "# ok\n" ); + } + + #' Print benchmark results. + #' + #' @param iterations Number of iterations. + #' @param elapsed Elapsed time in seconds. + #' + #' @examples + #' print_results( 10000L, 0.131009101868 ); + print_results <- function( iterations, elapsed ) { + rate <- iterations / elapsed; + cat( " ---\n" ); + cat( paste0( " iterations: ", iterations, "\n" ) ); + cat( paste0( " elapsed: ", elapsed, "\n" ) ); + cat( paste0( " rate: ", rate, "\n" ) ); + cat( " ...\n" ); + } + + #' Run a benchmark. + #' + #' ## Notes + #' + #' * We compute and return a total "elapsed" time, rather than the minimum + #' evaluation time, to match benchmark results in other languages (e.g., + #' Python). + #' + #' + #' @param iterations Number of Iterations. + #' @return Elapsed time in seconds. + #' + #' @examples + #' elapsed <- benchmark( 10000L ); + benchmark <- function( iterations ) { + # Run the benchmarks: + results <- microbenchmark::microbenchmark( exp( (100.0*runif(1)) - 50.0 ), times = iterations ); + + # Sum all the raw timing results to get a total "elapsed" time: + elapsed <- sum( results$time ); + + # Convert the elapsed time from nanoseconds to seconds: + elapsed <- elapsed / 1.0e9; + + return( elapsed ); + } + + print_version(); + for ( i in 1:repeats ) { + cat( paste0( "# r::", name, "\n" ) ); + elapsed <- benchmark( iterations ); + print_results( iterations, elapsed ); + cat( paste0( "ok ", i, " benchmark finished", "\n" ) ); + } + print_summary( repeats, repeats ); +} + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/expf/binding.gyp new file mode 100644 index 000000000000..1058b57bab16 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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/expf/docs/img/equation_natural_exponential_function.svg b/lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg new file mode 100644 index 000000000000..e1bd442e986f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg @@ -0,0 +1,17 @@ + +y equals e Superscript x + + + \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt new file mode 100644 index 000000000000..7290f2d05b0e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt @@ -0,0 +1,28 @@ + +{{alias}}( x ) + Evaluates the natural exponential function. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Function value. + + Examples + -------- + > var y = {{alias}}( 4.0 ) + ~54.5982 + > y = {{alias}}( -9.0 ) + ~1.234e-4 + > y = {{alias}}( 0.0 ) + 1.0 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts new file mode 100644 index 000000000000..6632609df79c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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 + +/** +* Evaluates the natural exponential function. +* +* @param x - input value +* @returns function value +* +* @example +* var v = expf( 4.0 ); +* // returns ~54.5982 +* +* @example +* var v = expf( -9.0 ); +* // returns ~1.234e-4 +* +* @example +* var v = expf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = expf( NaN ); +* // returns NaN +*/ +declare function expf( x: number ): number; + + +// EXPORTS // + +export = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts new file mode 100644 index 000000000000..e2ff29750af1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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 expf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + expf( 0.5 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + expf( true ); // $ExpectError + expf( false ); // $ExpectError + expf( null ); // $ExpectError + expf( undefined ); // $ExpectError + expf( '5' ); // $ExpectError + expf( [] ); // $ExpectError + expf( {} ); // $ExpectError + expf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + expf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile new file mode 100644 index 000000000000..91d364d19fc3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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/expf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/expf/examples/c/example.c new file mode 100644 index 000000000000..7463d8e7388e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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/expf.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.0f; + v = stdlib_base_expf( x ); + printf( "e^%f = %f\n", x, v ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js new file mode 100644 index 000000000000..dfc55281ab15 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js @@ -0,0 +1,30 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 randu = require( '@stdlib/random/base/randu' ); +var expf = require( './../lib' ); + +var x; +var i; + +for ( i = 0; i < 100; i++ ) { + x = (randu()*100.0) - 50.0; + console.log( 'e^%f = %f', x, expf( x ) ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/include.gypi b/lib/node_modules/@stdlib/math/base/special/expf/include.gypi new file mode 100644 index 000000000000..3b437d524797 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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': [ + ' --> +* +* \\( r \\) can be represented as \\( r = \mathrm{hi} - \mathrm{lo} \\) for better accuracy. +* +* +* +* 2. We approximate of \\( e^{r} \\) by a special rational function on the interval \\(\[0,0.34658]\\): +* +* ```tex +* \begin{align*} +* R\left(r^2\right) &= r \cdot \frac{ e^{r}+1 }{ e^{r}-1 } \\ +* &= 2 + \frac{r^2}{6} - \frac{r^4}{360} + \ldots +* \end{align*} +* ``` +* +* We use a special Remes algorithm on \\(\[0,0.34658]\\) to generate a polynomial of degree \\(5\\) to approximate \\(R\\). The maximum error of this polynomial approximation is bounded by \\(2^{-59}\\). In other words, +* +* ```tex +* R(z) \sim 2 + P_1 z + P_2 z^2 + P_3 z^3 + P_4 z^4 + P_5 z^5 +* ``` +* +* where \\( z = r^2 \\) and +* +* ```tex +* \left| 2 + P_1 z + \ldots + P_5 z^5 - R(z) \right| \leq 2^{-59} +* ``` +* +* +* +* The values of \\( P_1 \\) to \\( P_5 \\) are listed in the source code. +* +* +* +* The computation of \\( e^{r} \\) thus becomes +* +* ```tex +* \begin{align*} +* e^{r} &= 1 + \frac{2r}{R-r} \\ +* &= 1 + r + \frac{r \cdot R_1(r)}{2 - R_1(r)}\ \text{for better accuracy} +* \end{align*} +* ``` +* +* where +* +* ```tex +* R_1(r) = r - P_1\ r^2 + P_2\ r^4 + \ldots + P_5\ r^{10} +* ``` +* +* 3. We scale back to obtain \\( e^{x} \\). From step 1, we have +* +* ```tex +* e^{x} = 2^k e^{r} +* ``` +* +* ## Special Cases +* +* ```tex +* \begin{align*} +* e^\infty &= \infty \\ +* e^{-\infty} &= 0 \\ +* e^{\mathrm{NaN}} &= \mathrm{NaN} \\ +* e^0 &= 1\ \mathrm{is\ exact\ for\ finite\ argument\ only} +* \end{align*} +* ``` +* +* ## Notes +* +* - According to an error analysis, the error is always less than \\(1\\) ulp (unit in the last place). +* +* - For an IEEE double, +* +* - if \\(x > 7.09782712893383973096\mbox{e+}02\\), then \\(e^{x}\\) overflows +* - if \\(x < -7.45133219101941108420\mbox{e+}02\\), then \\(e^{x}\\) underflows +* +* - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values. +* +* @param {number} x - input value +* @returns {number} function value +* +* @example +* var v = expf( 4.0 ); +* // returns ~54.5982 +* +* @example +* var v = expf( -9.0 ); +* // returns ~1.234e-4 +* +* @example +* var v = expf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = expf( NaN ); +* // returns NaN +*/ +function exp( x ) { + var hi; + var lo; + var k; + + if ( isnan( x ) || x === PINF ) { + return x; + } + if ( x === NINF ) { + return 0.0; + } + if ( x > OVERFLOW ) { + return PINF; + } + if ( x < UNDERFLOW ) { + return 0.0; + } + if ( + x > NEG_NEARZERO && + x < NEARZERO + ) { + return 1.0 + x; + } + // Reduce and compute `r = hi - lo` for extra precision... + if ( x < 0.0 ) { + k = truncf( (LOG2_E*x) - 0.5 ); + } else { + k = truncf( (LOG2_E*x) + 0.5 ); + } + hi = x - (k*LN2_HI); + lo = k * LN2_LO; + + return expmulti( hi, lo, k ); +} + + +// EXPORTS // + +module.exports = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js new file mode 100644 index 000000000000..42a743c27bba --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js @@ -0,0 +1,58 @@ +/** +* @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 addon = require( './../src/addon.node' ); + + +// MAIN // + +/** +* Evaluates the natural exponential function for single-precision. +* +* @private +* @param {number} x - input value +* @returns {number} function value +* +* @example +* var v = expf( 4.0 ); +* // returns ~54.5982 +* +* @example +* var v = expf( -9.0 ); +* // returns ~1.234e-4 +* +* @example +* var v = expf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = expf( NaN ); +* // returns NaN +*/ +function expf( x ) { + return addon( x ); +} + + +// EXPORTS // + +module.exports = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js new file mode 100644 index 000000000000..358e74384904 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js @@ -0,0 +1,46 @@ +/** +* @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. +*/ + +/* This is a generated file. Do not edit directly. */ +'use strict'; + +// MAIN // + +/** +* Evaluates a polynomial. +* +* ## Notes +* +* - The implementation uses [Horner's rule][horners-method] for efficient computation. +* +* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method +* +* @private +* @param {number} x - value at which to evaluate the polynomial +* @returns {number} evaluated polynomial +*/ +function evalpoly( x ) { + if ( x === 0.0 ) { + return 0.16666667; + } + return 0.16666667 + (x * (-0.0027777778 + (x * (0.00006613757 + (x * (-0.00000165339 + (x * 4.1381368e-8))))))); // eslint-disable-line max-len +} + +// EXPORTS // + +module.exports = evalpoly; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/manifest.json b/lib/node_modules/@stdlib/math/base/special/expf/manifest.json new file mode 100644 index 000000000000..e3032fcc5c2a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/manifest.json @@ -0,0 +1,107 @@ +{ + "options": { + "task": "build", + "wasm": false + }, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "task": "build", + "wasm": false, + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/napi/unary", + "@stdlib/math/base/assert/is-nan", + "@stdlib/constants/float32/ninf", + "@stdlib/constants/float32/pinf", + "@stdlib/math/base/special/truncf", + "@stdlib/math/base/special/ldexpf" + ] + }, + { + "task": "benchmark", + "wasm": false, + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/assert/is-nan", + "@stdlib/constants/float32/ninf", + "@stdlib/constants/float32/pinf", + "@stdlib/math/base/special/truncf", + "@stdlib/math/base/special/ldexpf" + ] + }, + { + "task": "examples", + "wasm": false, + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/assert/is-nan", + "@stdlib/constants/float32/ninf", + "@stdlib/constants/float32/pinf", + "@stdlib/math/base/special/truncf", + "@stdlib/math/base/special/ldexpf" + ] + }, + { + "task": "build", + "wasm": true, + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/assert/is-nan", + "@stdlib/constants/float32/ninf", + "@stdlib/constants/float32/pinf", + "@stdlib/math/base/special/truncf", + "@stdlib/math/base/special/ldexpf" + ] + } + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/package.json b/lib/node_modules/@stdlib/math/base/special/expf/package.json new file mode 100644 index 000000000000..200fea014583 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/package.json @@ -0,0 +1,145 @@ +{ + "name": "@stdlib/math/base/special/expf", + "version": "0.0.0", + "description": "Natural exponential function (single-precision).", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "gypfile": true, + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "scripts": "./scripts", + "src": "./src", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "special", + "function", + "math.exp", + "exp", + "natural", + "exponential", + "euler", + "power", + "number" + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "expf", + "alias": "expf", + "pkg_desc": "evaluate the natural exponential function (single-precision)", + "desc": "evaluates the natural exponential function using single-precision floating-point numbers", + "short_desc": "natural exponential function (single-precision)", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -10, + 10 + ] + }, + "example_values": [ + -1.2, + 2, + -3.1, + -4.7, + 5.5, + 6.7, + 8.9, + -10.2, + 11.3, + -12.4, + 13.5, + 14.6, + -15.7, + 16.8, + -17.9, + 18.1, + -19.11, + 20.12, + -21.15, + 23.78 + ] + } + ], + "returns": { + "desc": "function value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "natural", + "exponential", + "exp", + "power" + ], + "extra_keywords": [ + "math.exp" + ] + } + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js b/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js new file mode 100644 index 000000000000..913a0ba35106 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js @@ -0,0 +1,121 @@ +/** +* @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. +*/ + +/* +* This script compiles modules for evaluating polynomial functions. If any polynomial coefficients change, this script should be rerun to update the compiled files. +*/ +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var readFileSync = require( '@stdlib/fs/read-file' ).sync; +var writeFileSync = require( '@stdlib/fs/write-file' ).sync; +var currentYear = require( '@stdlib/time/current-year' ); +var substringBefore = require( '@stdlib/string/substring-before' ); +var substringAfter = require( '@stdlib/string/substring-after' ); +var format = require( '@stdlib/string/format' ); +var licenseHeader = require( '@stdlib/_tools/licenses/header' ); +var compile = require( '@stdlib/math/base/tools/evalpoly-compile' ); +var compileC = require( '@stdlib/math/base/tools/evalpoly-compile-c' ); + + +// VARIABLES // + +// Polynomial coefficients ordered in ascending degree... +const P = [ + 1.6666667163e-01, // Approximation of 1/6! + -2.7777778450e-03, // Approximation of 1/45! + 6.6137559770e-05, // Approximation of 1/5040! + -1.6533901999e-06, // Approximation of 1/362880! + 4.1381369442e-08 // Approximation of 1/39916800! +]; + +// Header to add to output files: +var header = licenseHeader( 'Apache-2.0', 'js', { + 'year': currentYear(), + 'copyright': 'The Stdlib Authors' +}); +header += '\n/* This is a generated file. Do not edit directly. */\n'; + + +// FUNCTIONS // + +/** +* Inserts a compiled function into file content. +* +* @private +* @param {string} text - source content +* @param {string} id - function identifier +* @param {string} str - function string +* @returns {string} updated content +*/ +function insert( text, id, str ) { + var before; + var after; + var begin; + var end; + + begin = '// BEGIN: '+id; + end = '// END: '+id; + + before = substringBefore( text, begin ); + after = substringAfter( text, end ); + + return format( '%s// BEGIN: %s\n\n%s\n%s%s', before, id, str, end, after ); +} + + +// MAIN // + +/** +* Main execution sequence. +* +* @private +*/ +function main() { + var fpath; + var copts; + var opts; + var file; + var str; + + opts = { + 'encoding': 'utf8' + }; + + fpath = resolve( __dirname, '..', 'lib', 'polyval_p.js' ); + str = header + compile( P ); + writeFileSync( fpath, str, opts ); + + copts = { + 'dtype': 'float', + 'name': '' + }; + + fpath = resolve( __dirname, '..', 'src', 'main.c' ); + file = readFileSync( fpath, opts ); + + copts.name = 'polyval_p'; + str = compileC( P, copts ); + file = insert( file, copts.name, str ); + + writeFileSync( fpath, file, opts ); +} + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json new file mode 100644 index 000000000000..9fcb093508f0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json @@ -0,0 +1 @@ +{"expected":[5.148200222412013e-131,5.466579947751696e-131,5.804649204408437e-131,6.163625650457948e-131,6.544802247503371e-131,6.949551917667985e-131,7.379332488584545e-131,7.835691944200803e-131,8.320274000310539e-131,8.834824024887105e-131,9.381195324554646e-131,9.9613558198258e-131,1.057739513316043e-130,1.1231532115371103e-130,1.192612283747725e-130,1.266366907680831e-130,1.3446827327902489e-130,1.4278418370672333e-130,1.5161437430294275e-130,1.6099064965407038e-130,1.70946781234964e-130,1.8151862904700153e-130,1.9274427077873346e-130,2.0466413895405853e-130,2.1732116656214234e-130,2.307609416935255e-130,2.4503187173925274e-130,2.6018535774474868e-130,2.7627597954604474e-130,2.9336169235550585e-130,3.1150403550500573e-130,3.3076835409821765e-130,3.5122403437079063e-130,3.729447536056141e-130,3.960087455037545e-130,4.204990819667226e-130,4.465039723047481e-130,4.741170809493181e-130,5.034378648136204e-130,5.345719315165864e-130,5.676314197605798e-130,6.027354032324385e-130,6.400103194834111e-130,6.795904253317853e-130,7.216182804292757e-130,7.66245260732603e-130,8.136321037292307e-130,8.639494873820937e-130,9.173786448772927e-130,9.741120173900259e-130,1.0343539472195181e-129,1.0983214137888649e-129,1.1662448151621235e-129,1.2383687978917266e-129,1.3149531381871158e-129,1.396273677576398e-129,1.48262331643273e-129,1.5743130689433472e-129,1.6716731833200823e-129,1.7750543312882944e-129,1.8848288711358923e-129,2.0013921888739135e-129,2.1251641223384832e-129,2.2565904733622223e-129,2.3961446134645277e-129,2.544329188840575e-129,2.7016779307930547e-129,2.868757578126424e-129,3.0461699184260423e-129,3.23455395557837e-129,3.4345882113344404e-129,3.646993169210414e-129,3.872533869526242e-129,4.112022664926964e-129,4.366322146316718e-129,4.636348249737688e-129,4.923073555389762e-129,5.227530790671433e-129,5.550816549856088e-129,5.894095243808311e-129,6.258603293957616e-129,6.645653585642802e-129,7.056640196864445e-129,7.493043419473348e-129,7.956435090889835e-129,8.44848425554552e-129,8.970963176452172e-129,9.525753718536621e-129,1.0114854126744377e-128,1.0740386223321428e-128,1.1404603050191023e-128,1.2109896983966337e-128,1.2858808352809847e-128,1.365403458619071e-128,1.4498439930490467e-128,1.5395065765442214e-128,1.634714155858054e-128,1.7358096497134064e-128,1.8431571839276566e-128,1.9571434029216439e-128,2.0781788623350727e-128,2.2066995077669592e-128,2.343168244963993e-128,2.4880766071150775e-128,2.641946525256344e-128,2.805332208161725e-128,2.978822138493656e-128,3.163041192399263e-128,3.358652890190103e-128,3.566361786210673e-128,3.7869160065013915e-128,4.0211099434010485e-128,4.2697871167882324e-128,4.533843212272358e-128,4.814229307275509e-128,5.111955296621939e-128,5.42809352998006e-128,5.763782674249936e-128,6.12023181481688e-128,6.498724810433832e-128,6.900624917425532e-128,7.327379699867301e-128,7.780526243419572e-128,8.261696691607292e-128,8.772624124472623e-128,9.31514880078495e-128,9.891224786287838e-128,1.0502926991850634e-127,1.1152458646888219e-127,1.1842159234950209e-127,1.257451292007594e-127,1.3352157494260424e-127,1.4177893878250358e-127,1.5054696209908244e-127,1.5985722556458784e-127,1.6974326289219632e-127,1.8024068161779495e-127,1.913872913511609e-127,2.0322323995871916e-127,2.157911581680819e-127,2.2913631311546077e-127,2.433067713889093e-127,2.583535721545013e-127,2.743309109893414e-127,2.9129633508313284e-127,3.093109505117227e-127,3.284396423290623e-127,3.487513082701154e-127,3.7031910690691205e-127,3.9322072115098764e-127,4.175386380519095e-127,4.433604458990389e-127,4.707791496971486e-127,4.9989350615199585e-127,5.308083793721055e-127,5.636351185686075e-127,5.984919591126991e-127,6.355044483959634e-127,6.748058980271623e-127,7.165378639938274e-127,7.60850656519009e-127,8.079038814484672e-127,8.578670151192207e-127,9.109200147796857e-127,9.672539667594737e-127,1.0270717747246654e-126,1.0905888904960048e-126,1.1580340900635556e-126,1.2296502975924237e-126,1.3056954603867195e-126,1.3864434779648758e-126,1.4721851885906216e-126,1.5632294168146304e-126,1.6599040857992748e-126,1.7625573984318732e-126,1.871559091482819e-126,1.987301767323059e-126,2.1102023079998402e-126,2.2407033767631257e-126,2.37927501244955e-126,2.5264163224696078e-126,2.6826572804920064e-126,2.8485606353042986e-126,3.0247239377208287e-126,3.211781692842053e-126,3.410407645416015e-126,3.621317206531361e-126,3.8452700303869844e-126,4.083072750413661e-126,4.33558188460742e-126,4.603706920537411e-126,4.888413591137131e-126,5.1907273530839857e-126,5.5117370802879864e-126,5.852598985799259e-126,6.214540786258034e-126,6.598866123882949e-126,7.006959261933212e-126,7.440290070546448e-126,7.900419320918919e-126,8.389004306893689e-126,8.907804814199573e-126,9.458689458852266e-126,1.004364241753339e-125,1.0664770574200726e-125,1.1324311108666173e-125,1.202463955446728e-125,1.2768278355070554e-125,1.3557905949205456e-125,1.4396366418068628e-125,1.5286679729140018e-125,1.6232052613498094e-125,1.723589011583275e-125,1.8301807858730366e-125,1.9433645065433294e-125,2.0635478387949776e-125,2.1911636590344607e-125,2.3266716140088375e-125,2.470559776360842e-125,2.6233464025702844e-125,2.785581799609651e-125,2.957850307040498e-125,3.1407724016886036e-125,3.3350069324766463e-125,3.5412534934680874e-125,3.760254943664274e-125,3.9928000826349843e-125,4.2397264916179656e-125,4.501923550318018e-125,4.780335640277286e-125,5.075965546347628e-125,5.389878068522437e-125,5.72320385713494e-125,6.077143485233193e-125,6.452971772807424e-125,6.852042378435226e-125,7.27579267489084e-125,7.725748926276672e-125,8.203531785319494e-125,8.710862130641939e-125,9.249567265021163e-125,9.821587496970449e-125,1.0428983129345456e-124,1.1073941880140564e-124,1.1758786762217606e-124,1.2485984450330262e-124,1.3258154165600038e-124,1.4078077109423936e-124,1.4948706480809362e-124,1.587317811321098e-124,1.6854821769171839e-124,1.7897173133471352e-124,1.9003986547950736e-124,2.017924853390646e-124,2.1427192150748982e-124,2.2752312242630954e-124,2.415938162798941e-124,2.565346829027778e-124,2.7239953631835513e-124,2.8924551856631474e-124,3.0713330551676903e-124,3.261273254127714e-124,3.4629599092788925e-124,3.6771194557506325e-124,3.904523253541268e-124,4.145990365801567e-124,4.4023905089386636e-124,4.674647185159626e-124,4.963741008742946e-124,5.2707132380165915e-124,5.596669525760991e-124,5.942783901552288e-124,6.310303000380741e-124,6.7005505527822965e-124,7.114932152653326e-124,7.554940319917016e-124,8.022159876285771e-124,8.518273653469782e-124,9.045068554404953e-124,9.604441989317869e-124,1.0198408709820492e-123,1.0829108065645704e-123,1.1498811710154565e-123,1.220993178238371e-123,1.2965029595084994e-123,1.3766824860065197e-123,1.4618205484048296e-123,1.5522237970334397e-123,1.648217846373985e-123,1.750148447857595e-123,1.858382735192862e-123,1.973310546708612e-123,2.095345829473124e-123,2.2249281302498306e-123,2.362524178656353e-123,2.5086295682318627e-123,2.6637705414666728e-123,2.8285058852218008e-123,3.0034289433690368e-123,3.1891697538962306e-123,3.386397318178957e-123,3.595822010590729e-123,3.818198137128552e-123,4.0543266522743613e-123,4.305058043871966e-123,4.571295396415306e-123,4.8539976437796045e-123,5.154183023108238e-123,5.472932742302109e-123,5.8113948743127055e-123,6.170788492274451e-123,6.552408060360934e-123,6.957628096187708e-123,7.387908121552e-123,7.844797919336557e-123,8.329943115521935e-123,8.845091106400289e-123,9.392097352349685e-123,9.97293206083421e-123,1.0589687282694829e-122,1.1244584447303917e-122,1.1939982363707054e-122,1.2678385716584605e-122,1.3462454087628958e-122,1.4295011534822623e-122,1.5179056764138136e-122,1.6117773930273827e-122,1.7114544105346474e-122,1.817295745684219e-122,1.9296826178677315e-122,2.0490198221969067e-122,2.175737187494127e-122,2.3102911244504662e-122,2.4531662695264335e-122,2.604877230514992e-122,2.765970440057335e-122,2.9370261237833543e-122,3.118660390169093e-122,3.311527449637224e-122,3.516321970891357e-122,3.7337815829757064e-122,3.964689532066322e-122,4.20987750256934e-122,4.470228612680936e-122,4.746680595203626e-122,5.040229175073755e-122,5.351931655762363e-122,5.682910727473767e-122,6.034358510849864e-122,6.407540850751857e-122,6.803801875582275e-122,7.224568838565018e-122,7.671357258429988e-122,8.145776378006735e-122,8.649534960397427e-122,9.184447443602498e-122,9.75244047576123e-122,1.0355559854558375e-121,1.0995977895775939e-121,1.1676001257543078e-121,1.2398079248460976e-121,1.3164812649519607e-121,1.3978963081597923e-121,1.4843462952266808e-121,1.5761426017738588e-121,1.6736158597999087e-121,1.7771171485506914e-121,1.8870192590375526e-121,2.003718036755562e-121,2.1276338074403498e-121,2.2592128909980034e-121,2.3989292090595632e-121,2.5472859919532726e-121,2.7048175912388463e-121,2.8720914043364066e-121,3.0497099181778646e-121,3.238312879245162e-121,3.4385795978101567e-121,3.651231394673536e-121,3.877034199220082e-121,4.1168013081422605e-121,4.371396314773337e-121,4.6417362195792095e-121,4.928794733009569e-121,5.233605782610909e-121,5.557267237025586e-121,5.900944860296565e-121,6.265876510718198e-121,6.653376599352712e-121,7.064840824279637e-121,7.501751197619563e-121,7.96568138344738e-121,8.45830236581803e-121,8.981388467314836e-121,9.536823739809535e-121,1.0126608750438152e-120,1.0752867787246404e-120,1.1417856510453728e-120,1.2123970076887524e-120,1.2873751766865675e-120,1.3669902144580708e-120,1.4515288784995522e-120,1.5412956602279414e-120,1.636613881697624e-120,1.737826860142715e-120,1.8452991445365793e-120,1.9594178286253366e-120,2.0805939451616767e-120,2.2092639463631802e-120,2.3458912759266028e-120,2.4909680382588204e-120,2.645016770939851e-120,2.8085923267981148e-120,2.9822838723800974e-120,3.166717010011346e-120,3.362556031090165e-120,3.570506308734223e-120,3.7913168383926454e-120,4.0257829355788284e-120,4.2747491004391095e-120,4.5391120594723696e-120,4.8198239953620286e-120,5.117895976546556e-120,5.4344015988871246e-120,5.770480852546879e-120,6.127344228006122e-120,6.506277076010289e-120,6.90864423714481e-120,7.335894957719748e-120,7.789568109667462e-120,8.271297733249644e-120,8.782818922548098e-120,9.325974074924617e-120,9.90271952697028e-120,1.0515132600841667e-119,1.1165419086357287e-119,1.185592118581747e-119,1.2589125950145245e-119,1.3367674236753265e-119,1.4194370221381045e-119,1.5072191498178887e-119,1.60042998044112e-119,1.699405240839794e-119,1.8045014201732963e-119,1.9160970539306542e-119,2.0345940873401676e-119,2.160419323096366e-119,2.2940259586174354e-119,2.4358952183729407e-119,2.586538087157572e-119,2.7464971505568634e-119,2.916348549232813e-119,3.096704054066616e-119,3.28821326963673e-119,3.491565973963903e-119,3.70749460295458e-119,3.936776888489698e-119,4.180238659658439e-119,4.438756817231733e-119,4.7132624920824614e-119,5.004744398933885e-119,5.31425239751389e-119,5.642901273938487e-119,5.991874755951538e-119,6.362429776473998e-119,6.755901000826608e-119,7.173705633929534e-119,7.617348524789345e-119,8.088427586668336e-119,8.588639552446221e-119,9.119786085917335e-119,9.683780271021242e-119,1.0282653502391033e-118,1.0918562802033727e-118,1.15937985884895e-118,1.2310792926467578e-118,1.3072128286654112e-118,1.3880546847258588e-118,1.473896037079561e-118,1.5650460691667597e-118,1.6618330852342525e-118,1.7646056928212568e-118,1.873734058374511e-118,1.989611240514367e-118,2.112654605752852e-118,2.2433073317655306e-118,2.3820400036283545e-118,2.529352308771621e-118,2.6857748367549455e-118,2.851870990344094e-118,3.028239014776632e-118,3.215514152520941e-118,3.414370931293394e-118,3.6255255935733466e-118,3.849738676364431e-118,4.087817750498849e-118,4.340620329345081e-118,4.609056957400682e-118,4.8940944898928945e-118,5.196759575196627e-118,5.518142352619431e-118,5.85940037886368e-118,6.221762797317526e-118,6.606534765182158e-118,7.015102154388756e-118,7.448936543234202e-118,7.909600516710001e-118,8.398753294625249e-118,8.918156707782659e-118,9.469681543743104e-118,1.005531428503121e-117,1.06771642640457e-117,1.1337471260458685e-117,1.2038613568451555e-117,1.278311656285815e-117,1.3573661795063806e-117,1.4413096651413897e-117,1.5304444608937878e-117,1.625091612530542e-117,1.7255920202257156e-117,1.8323076664152513e-117,1.9456229195848714e-117,2.0659459186895567e-117,2.193710043187972e-117,2.3293754739891813e-117,2.4734308509329717e-117,2.6263950327722347e-117,2.788818965999867e-117,2.9612876692472198e-117,3.1444223404049928e-117,3.3388825940547744e-117,3.545368837268042e-117,3.7646247923343e-117,3.9974401754989484e-117,4.244653541365454e-117,4.5071553032003664e-117,4.7858909400250174e-117,5.081864402043351e-117,5.396141726668548e-117,5.729854878179545e-117,6.084205824828691e-117,6.460470868092608e-117,6.860005239656863e-117,7.28424798268781e-117,7.734727134982262e-117,8.213065232652301e-117,8.720985154178017e-117,9.260316325873932e-117,9.833001311114485e-117,1.0441102807064193e-116,1.1086811074097954e-116,1.1772451824683802e-116,1.250049460013775e-116,1.327356166541469e-116,1.4094437453989615e-116,1.4966078596826932e-116,1.5891624571577848e-116,1.687440901035591e-116,1.7917971706809126e-116,1.9026071365758548e-116,2.0202699141297035e-116,2.1452093012133424e-116,2.2778753045950918e-116,2.418745760774541e-116,2.5683280570553804e-116,2.727160959052263e-116,2.8958165512182884e-116,3.074902297378143e-116,3.2650632286921125e-116,3.4669842669303367e-116,3.681392691423207e-116,3.90906075857808e-116,4.150808483391534e-116,4.4075065929804744e-116,4.6800796627684463e-116,4.969509446620265e-116,5.27683841292582e-116,5.603173499361538e-116,5.949690099859987e-116,6.3176362981456e-116,6.708337363081118e-116,7.123200522024659e-116,7.56372002937963e-116,8.03148254860223e-116,8.528172867048392e-116,9.055579964238841e-116,9.615603455410501e-116,1.02102604335485e-115,1.084169273455438e-115,1.1512174651714052e-115,1.2224121127244557e-115,1.298009645043968e-115,1.3782823493724213e-115,1.4635193519899499e-115,1.5540276595898364e-115,1.6501332650548448e-115,1.7521823216192941e-115,1.8605423896432778e-115,1.9756037604925903e-115,2.097780862289727e-115,2.2275137526016494e-115,2.365269703439826e-115,2.5115448842799933e-115,2.666866149166756e-115,2.831792934335885e-115,3.006919273192501e-115,3.192875935901531e-115,3.390332701294923e-115,3.600000769282904e-115,3.822635322453009e-115,4.0590382460877394e-115,4.310061016396235e-115,4.576607767360255e-115,4.8596385472464615e-115,5.1601727765071805e-115,5.479292919530355e-115,5.818148383461479e-115,6.177959658136865e-115,6.560022712047327e-115,6.965713660156017e-115,7.396493720391152e-115,7.853914476663042e-115,8.339623467357145e-115,8.855370119442394e-115,9.403012049555278e-115,9.984521754765929e-115,1.0601993717121173e-114,1.1257651947547441e-114,1.195385799629949e-114,1.269311945878872e-114,1.3478099007447288e-114,1.4311623982138665e-114,1.5196696573674132e-114,1.6136504637108392e-114,1.7134433173752025e-114,1.8194076523278638e-114,1.9319251309813392e-114,2.0514010188654918e-114,2.1782656443135556e-114,2.3129759484182035e-114,2.4560171308432456e-114,2.607904397415227e-114,2.7691848157924646e-114,2.9404392858942033e-114,3.1222846321852377e-114,3.315375825355986e-114,3.5204083413951775e-114,3.738120666556203e-114,3.969296957238066e-114,4.21476986435895e-114,4.4754235324006085e-114,4.752196783918956e-114,5.046086500996412e-114,5.3581512158133524e-114,5.6895149232680364e-114,6.0413711293845536e-114,6.414987150081467e-114,6.811708675791986e-114,7.232964618373898e-114,7.680272257762555e-114,8.155242706913964e-114,8.659586714709119e-114,9.195120827734065e-114,9.76377393311534e-114,1.0367594205988208e-113,1.1008756486617089e-113,1.1689570113732593e-113,1.2412487242314172e-113,1.3180111675759142e-113,1.3995208244265257e-113,1.486071276320046e-113,1.5779742607319138e-113,1.6755607938931153e-113,1.7791823630440704e-113,1.889212192421847e-113,2.0060465875398052e-113,2.130106362600316e-113,2.261838356184524e-113,2.4017170406750427e-113,2.5502462312112166e-113,2.707960900331288e-113,2.875429104835831e-113,3.053254031816322e-113,3.2420761712137115e-113,3.4425756227359635e-113,3.6554745454422457e-113,3.88153975881456e-113,4.1215855046902786e-113,4.376476379997476e-113,4.6471304508612976e-113,4.9345225592959804e-113,5.239687834389637e-113,5.56372542063508e-113,5.907802436826878e-113,6.273158179793069e-113,6.66110858809307e-113,7.073050981766949e-113,7.510469095204943e-113,7.974938421260191e-113,8.468131885863265e-113,8.991825873564893e-113,9.547906625720209e-113,1.0138377034355853e-112,1.0765363856184027e-112,1.1431125372760743e-112,1.2138059524361767e-112,1.2888712546887113e-112,1.3685788142897533e-112,1.453215721980711e-112,1.5430868230325572e-112,1.638515815237179e-112,1.7398464148025194e-112,1.847443594350158e-112,1.9616948974732537e-112,2.083011834592139e-112,2.2118313651320834e-112,2.3486174713643364e-112,2.4938628295782063e-112,2.6480905846019175e-112,2.8118562340671113e-112,2.9857496291995806e-112,3.1703970993462098e-112,3.3664637078890015e-112,3.5746556476695606e-112,3.7957227845564318e-112,4.0304613583109075e-112,4.279716850485612e-112,4.544387029678998e-112,4.82542518511949e-112,5.1238435602241275e-112,5.44071699849568e-112,5.777186814896958e-112,6.134464906637758e-112,6.51383811818785e-112,6.916672876235422e-112,7.344420111281276e-112,7.798620483603293e-112,8.28090993240673e-112,8.793025568151329e-112,9.336811929277198e-112,9.91422762586356e-112,1.0527352394153384e-111,1.1178394587347774e-111,1.186969912965425e-111,1.2603755962236692e-111,1.3383209011485676e-111,1.4210865711916406e-111,1.508970711798687e-111,1.6022898641262102e-111,1.7013801451595697e-111,1.806598458339414e-111,1.918323779056531e-111,2.0369585196459624e-111,2.1629299787958254e-111,2.2966918805920626e-111,2.438726008742228e-111,2.5895439418640945e-111,2.7496888960902634e-111,2.919737681624134e-111,3.1003027802953416e-111,3.2920345515973177e-111,3.4956235751521794e-111,3.7118031380414215e-111,3.9413518759594555e-111,4.1850965777042695e-111,4.443915163105869e-111,4.718739845118647e-111,5.010560487466096e-111,5.3204281699334145e-111,5.649458974146863e-111,5.998838003477446e-111,6.369823651547205e-111,6.763752134711493e-111,7.182042304845001e-111,7.626200759762688e-111,8.097827269684979e-111,8.598620539291453e-111,9.130384326115541e-111,9.695033937321036e-111,1.0294603128255784e-110,1.0931251427633291e-110,1.1607271915724685e-110,1.232509948357713e-110,1.3087319603004641e-110,1.3896677638944245e-110,1.4756088737711904e-110,1.56686483267788e-110,1.6637643263884543e-110,1.7666563675641724e-110,1.8759115528279038e-110,1.991923397579111e-110,2.1151097533579245e-110,2.245914312863164e-110,2.3848082080447447e-110,2.5322917070274246e-110,2.688896015976625e-110,2.855185192397214e-110,3.0317581767562044e-110,3.219250949747023e-110,3.418338822964833e-110,3.629738871244829e-110,3.8542125154225026e-110,4.092568264819806e-110,4.345664629334696e-110,4.614413211622168e-110,4.8997819905060315e-110,5.202798807445212e-110,5.524555068613925e-110,5.866209675929328e-110,6.228993201184571e-110,6.614212318324069e-110,7.023254509821958e-110,7.457593064117555e-110,7.918792382106646e-110,8.408513611801917e-110,8.928520631456041e-110,9.480686402700936e-110,1.0066999716581318e-109,1.068957235678384e-109,1.1350646705861308e-109,1.2052603821846396e-109,1.2797972014349938e-109,1.3589435951026951e-109,1.4429846327214682e-109,1.532223013356944e-109,1.6269801558681826e-109,1.7275973565945913e-109,1.834437018637141e-109,1.9478839571621384e-109,2.0683467854287504e-109,2.196259386532577e-109,2.3320824761658297e-109,2.4763052620237843e-109,2.6294472058331445e-109,2.792059894349699e-109,2.9647290260639505e-109,3.148076520769999e-109,3.342762759597163e-109,3.5494889635708534e-109,3.768999719271009e-109,4.0020856606846543e-109,4.249586316911475e-109,4.512393135980954e-109,4.791452695670046e-109,5.087770112887755e-109,5.402412663905893e-109,5.736513628475627e-109,6.091276371674614e-109,6.467978678189085e-109,6.867977354638959e-109,7.292713116524998e-109,7.743715777399073e-109,8.222609758946779e-109,8.731119941831829e-109,9.271077878371542e-109,9.844428389423415e-109,1.0453236569242486e-108,1.1099695223538036e-108,1.1786132767524389e-108,1.2515021612407256e-108,1.328898707051635e-108,1.41108168111571e-108,1.4983470901240238e-108,1.5910092466851111e-108,1.6894019014165793e-108,1.7938794450481442e-108,1.9048181848664387e-108,2.0226177000989044e-108,2.147702281118298e-108,2.2805224576523713e-108,2.4215566215019286e-108,2.5713127496127895e-108,2.730330233707569e-108,2.89918182306684e-108,3.0784756874583283e-108,3.268857607642891e-108,3.471013301348169e-108,3.685670893087155e-108,3.9136035367176646e-108,4.1556322001879824e-108,4.412628622500412e-108,4.685518453540977e-108,4.975284588085904e-108,5.282970705992833e-108,5.6096850313270415e-108,5.956604323964495e-108,6.324978118045785e-108,6.7161332225491725e-108,7.131478500192259e-108,7.572509941873868e-108,8.040816054936246e-108,8.538083584651095e-108,9.066103589540017e-108,9.62677789241029e-108,1.022212593034183e-107,1.0854292028295863e-107,1.1525553122547702e-107,1.2238326961756242e-107,1.2995180815212962e-107,1.3798840719634582e-107,1.4652201297802386e-107,1.5558336184418776e-107,1.6520509096725303e-107,1.754218558976198e-107,1.8627045538606285e-107,1.977899639254759e-107,2.10021872489437e-107,2.2301023797440484e-107,2.3680184188388296e-107,2.5144635882607015e-107,2.6699653543190546e-107,2.8350838033788864e-107,3.0104136591806896e-107,3.196586424916529e-107,3.3942726577787314e-107,3.6041843841733345e-107,3.8270776642968676e-107,4.063755315315072e-107,4.3150698029499144e-107,4.581926311891289e-107,4.865286006091983e-107,5.166169490688095e-107,5.485660488016109e-107,5.824909740964198e-107,6.185139157718864e-107,6.567646212834655e-107,6.973808620479095e-107,7.4050892966837e-107,7.863041628477089e-107,8.349315068874655e-107,8.86566107787973e-107,9.413939430893669e-107,9.996124917255082e-107,1.0614314453038946e-106,1.1270734633729319e-106,1.1967749753972684e-106,1.2707870323296362e-106,1.3493762108461982e-106,1.4328255735028091e-106,1.52143568826978e-106,1.6155257111178308e-106,1.7154345355542777e-106,1.8215220132499471e-106,1.9341702501529616e-106,2.0537849827584994e-106,2.1807970394905785e-106,2.3156638924602096e-106,2.4588713051888236e-106,2.6109350822313723e-106,2.772402927001927e-106,2.9438564144919353e-106,3.125913085987478e-106,3.319228673329987e-106,3.524499460731252e-106,3.742464792650917e-106,3.9739097367674837e-106,4.2196679116356965e-106,4.480624489214405e-106,4.757719383079659e-106,5.051950633805521e-106,5.364378003708059e-106,5.696126793897456e-106,6.048391897388425e-106,6.422442102866849e-106,6.81962466461301e-106,7.241370155044013e-106,7.68919761734978e-106,8.164720036784003e-106,8.669650150315755e-106,9.205806615565682e-106,9.775120561249676e-106,1.0379642542718633e-105,1.102154992765032e-105,1.170315473849374e-105,1.2426911979913485e-105,1.3195428481225793e-105,1.4011472285680183e-105,1.487798262039813e-105,1.5798080482883619e-105,1.6775079882234513e-105,1.781249977554087e-105,1.8914076742469725e-105,2.0083778443678407e-105,2.13258179115378e-105,2.264466872463582e-105,2.4045081120713205e-105,2.5532099106076756e-105,2.7111078623102177e-105,2.87877068412715e-105,3.0568022641223955e-105,3.2458438365601194e-105,3.4465762915023706e-105,3.659722627239899e-105,3.886050554387531e-105,4.126375261024864e-105,4.381562348841359e-105,4.652530950860599e-105,4.940257041974951e-105,5.24577695421211e-105,5.570191109396615e-105,5.91466798265007e-105,6.2804483110049674e-105,6.668849562293137e-105,7.081270680401622e-105,7.519197123989867e-105,7.984206216815717e-105,8.477972828941421e-105,9.00227540928079e-105,9.559002391219104e-105,1.0150158994372807e-104,1.0777874446991097e-104,1.144440965501199e-104,1.2152165345393555e-104,1.2903690713055777e-104,1.3701692602571275e-104,1.4549045257680217e-104,1.544880067374378e-104,1.6404199590421344e-104,1.7418683164171352e-104,1.849590536260924e-104,1.9639746125370884e-104,2.0854325338881744e-104,2.2144017675367207e-104,2.3513468349547457e-104,2.4967609849778612e-104,2.6511679703890204e-104,2.8151239343717e-104,2.9892194136268766e-104,3.174081465368177e-104,3.370375925857466e-104,3.5788098086140125e-104,3.80013385093634e-104,4.035145217908445e-104,4.2846903736290765e-104,4.549668130007365e-104,4.8310328841037167e-104,5.129798055677898e-104,5.447039737324999e-104,5.783900570346632e-104,6.141593860316487e-104,6.521407947166118e-104,6.924710845527943e-104,7.352955172051417e-104,7.807683377438873e-104,8.290533302044629e-104,8.803244075050754e-104,9.34766237846288e-104,9.925749098490891e-104,1.0539586388270491e-103,1.1191385167362582e-103,1.1883493085046556e-103,1.2618402976083907e-103,1.3398761839412426e-103,1.4227380372108735e-103,1.5107243092959347e-103,1.6041519092100727e-103,1.7033573445452773e-103,1.8086979335049872e-103,1.9205530918930755e-103,2.039325699694004e-103,2.165443552165992e-103,2.299360900674603e-103,2.4415600888153936e-103,2.5925532897194557e-103,2.752884350799021e-103,2.9231307525771235e-103,3.1039056886577946e-103,3.2958602743268937e-103,3.499685891739657e-103,3.7161166801414056e-103,3.945932180090884e-103,4.189960141209524e-103,4.449079503571242e-103,4.724223563468951e-103,5.016383334961884e-103,5.326611119310848e-103,5.65602429515701e-103,6.005809343097918e-103,6.377226119153534e-103,6.771612392516634e-103,7.190388663930985e-103,7.635063282051069e-103,8.10723787621447e-103,8.608613125190713e-103,9.140994882687384e-103,9.70630068167523e-103,1.0306566640959983e-102,1.0943954798875291e-102,1.1620760900515535e-102,1.2339422666550932e-102,1.3102528573411757e-102,1.3912827176464868e-102,1.4773237009760719e-102,1.5686857098013558e-102,1.6656978118669203e-102,1.7687094254269646e-102,1.878091577780261e-102,1.9942382416363164e-102,2.117567754126854e-102,2.2485243235725692e-102,2.3875796294330074e-102,2.5352345212019575e-102,2.6920208223675696e-102,2.8585032459342495e-102,3.0352814284067836e-102,3.222992089561209e-102,3.4223113257826013e-102,3.633957045229592e-102,3.858691553596046e-102,4.097324299784825e-102,4.350714791380989e-102,4.6197756904268925e-102,4.9054761006490764e-102,5.208845057976175e-102,5.5309752369220165e-102,5.873026886180895e-102,6.23623200761222e-102,6.62189879366564e-102,7.031416339229685e-102,7.466259644873877e-102,7.927994929507937e-102,8.41828527158933e-102,8.93889659920057e-102,9.491704050570423e-102,1.0078698727946985e-101,1.0701994869152659e-101,1.1363837462646326e-101,1.2066610333524543e-101,1.2812844729584724e-101,1.3605228438373723e-101,1.4446615468064947e-101,1.5340036327025505e-101,1.628870893910362e-101,1.7296050233948907e-101,1.8365688454112382e-101,1.9501476223250873e-101,2.070750442251251e-101,2.1988116925073202e-101,2.3347926241902438e-101,2.479183013510909e-101,2.632502925870148e-101,2.795304589031057e-101,2.968174382133055e-101,3.151734947712727e-101,3.3466474343382224e-101,3.553613877934239e-101,3.773379730376037e-101,4.006736544458144e-101,4.254524824909824e-101,4.5176370557255784e-101,4.7970209147147305e-101,5.093682686847456e-101,5.408690888693458e-101,5.74318011700514e-101,6.098355135309078e-101,6.475495213224283e-101,6.875958734135644e-101,7.301188087821188e-101,7.752714865651838e-101,8.232165377078423e-101,8.741266507274386e-101,9.281851937030986e-101,9.855868747311442e-101,1.0465384432247503e-100,1.1112594345841432e-100,1.1799829609193514e-100,1.2529565506735967e-100,1.3304430401712647e-100,1.4127215203021626e-100,1.500088341751137e-100,1.592858182394202e-100,1.691365180705571e-100,1.7959641392576504e-100,1.9070318026494586e-100,2.0249682144653948e-100,2.150198158152532e-100,2.2831726870059877e-100,2.4243707487727277e-100,2.57430091072626e-100,2.7335031914243327e-100,2.9025510057482004e-100,3.082053230228723e-100,3.2726563960983604e-100,3.475047017967428e-100,3.6899540665134256e-100,3.9181515940877507e-100,4.1604615226980704e-100,4.4177566044076795e-100,4.690963564813975e-100,4.981066440930061e-100,5.289110125489447e-100,5.616204130441508e-100,5.963526583192542e-100,6.332328469985175e-100,6.723938141702445e-100,7.139766098322246e-100,7.581310069257256e-100,8.050160407877737e-100,8.548005819647618e-100,9.076639444503998e-100,9.637965315391198e-100,1.0234005216206958e-99,1.086690596386527e-99,1.1538947140703301e-99,1.2252549305081285e-99,1.3010282709753165e-99,1.3814876559403424e-99,1.4669228840698658e-99,1.5576416760258328e-99,1.6539707828137885e-99,1.7562571626751257e-99,1.8648692307613413e-99,1.9801981860920167e-99,2.1026594205757115e-99,2.2326940151688766e-99,2.3707703285612938e-99,2.5173856841110834e-99,2.673068161104069e-99,2.838378496790162e-99,3.0139121060472476e-99,3.200301225946556e-99,3.398217192945065e-99,3.608372860905277e-99,3.831525168652814e-99,4.068477866319306e-99,4.320084410289697e-99,4.587251037182696e-99,4.870940027933996e-99,5.172173173740504e-99,5.492035456348552e-99,5.8316789559420515e-99,6.192327000705012e-99,6.575278573006781e-99,6.981912988076979e-99,7.413694862024174e-99,7.872179387091381e-99,8.359017933147653e-99,8.875963995594471e-99,9.424879511105814e-99,1.0007741563953116e-98,1.0626649507069029e-98,1.1283832523497035e-98,1.1981657655466172e-98,1.2722638330004176e-98,1.3509443411800913e-98,1.4344906815927007e-98,1.523203771503147e-98,1.617403137778007e-98,1.7174280677578646e-98,1.82363883130252e-98,1.936417978411248e-98,2.0561717170917042e-98,2.1833313764399667e-98,2.318354960202303e-98,2.4617287964131485e-98,2.6139692890518002e-98,2.7756247780266952e-98,2.9472775141861476e-98,3.129545756470305e-98,3.3230859987563127e-98,3.5285953344184695e-98,3.746813967119616e-98,3.9785278768772927e-98,4.2245716510066484e-98,4.4858314901382526e-98,4.763248400135681e-98,5.05782158141118e-98,5.370612027846527e-98,5.7027463482809066e-98,6.05542082433227e-98,6.42990571916468e-98,6.827549852723181e-98,7.249785459914572e-98,7.698133349231253e-98,8.174208380401466e-98,8.679725280791358e-98,9.216504821511354e-98,9.786480375470756e-98,1.0391704881001887e-97,1.1034358236133578e-97,1.1716755150151077e-97,1.2441353480716363e-97,1.3210763086581812e-97,1.4027755227781582e-97,1.4895272547156304e-97,1.5816439669168342e-97,1.6794574454174768e-97,1.783319994869938e-97,1.8936057074744574e-97,2.0107118103844596e-97,2.1350600964398954e-97,2.2670984433807684e-97,2.4073024270135306e-97,2.556177034140341e-97,2.714258481420942e-97,2.8821161467178845e-97,3.0603546198825396e-97,3.249615880366937e-97,3.4505816095058593e-97,3.66397564579723e-97,3.890566592023695e-97,4.131170583607244e-97,4.3866542281659193e-97,4.657937726861819e-97,4.945998188782393e-97,5.25187315029206e-97,5.576664312032196e-97,5.921541507026703e-97,6.287746914187514e-97,6.676599532395428e-97,7.089499931271365e-97,7.527935295748167e-97,7.993484782615467e-97,8.487825208326891e-97,9.012737088558878e-97,9.570111051273512e-97,1.01619546463825e-96,1.079039957654339e-96,1.1457709375126566e-96,1.216628755901154e-96,1.2918686285576002e-96,1.3717615545056547e-96,1.4565952921395442e-96,1.5466753956723008e-96,1.6423263156811656e-96,1.743892567713894e-96,1.8517399731651396e-96,1.9662569768919924e-96,2.087856046315229e-96,2.2169751570445463e-96,2.354079370379454e-96,2.4996625083674464e-96,2.6542489324523036e-96,2.8183954321199046e-96,2.9926932303426986e-96,3.1777701130470703e-96,3.3742926902732065e-96,3.5829687971712068e-96,3.804550043482758e-96,4.039834520689244e-96,4.289669676578262e-96,4.554955367581634e-96,4.836647099879044e-96,5.135759470940293e-96,5.453369823903947e-96,5.7906221279520495e-96,6.1487310986592135e-96,6.528986573156182e-96,6.932758155865337e-96,7.361500151543904e-96,7.816756803399094e-96,8.300167855144491e-96,8.813474457030315e-96,9.358525437118571e-96,9.937283960394655e-96,1.0551834599695361e-95,1.120439084392495e-95,1.189730307060098e-95,1.2633067011445966e-95,1.3414332741514167e-95,1.424391422423578e-95,1.5124799446750933e-95,1.6060161182044105e-95,1.705336841664047e-95,1.8107998485021913e-95,1.922784995447559e-95,2.0416956306774264e-95,2.1679600465974116e-95,2.3020330224654138e-95,2.4443974624155898e-95,2.595566134783171e-95,2.7560835189935454e-95,2.926527766668677e-95,3.1075127840140077e-95,3.2996904429863296e-95,3.503752929206271e-95,3.7204352350734685e-95,3.950517807062331e-95,4.1948293567347584e-95,4.4542498455941293e-95,4.729713654530734e-95,5.022212949276227e-95,5.332801253986341e-95,5.662597245825015e-95,6.012788784216725e-95,6.38463718927868e-95,6.77948178484546e-95,7.198744722445845e-95,7.643936103609312e-95,8.116659418950729e-95,8.618617323624171e-95,9.151617769946427e-95,9.717580519282304e-95,1.0318544056641444e-94,1.0956672932895239e-94,1.1634265561057931e-94,1.2353762494710855e-94,1.3117755218391874e-94,1.3928995481604873e-94,1.479040521007327e-94,1.5705087029934484e-94,1.6676335442779087e-94,1.7707648691791434e-94,1.88027413617226e-94,1.996555775808464e-94,2.120028611375284e-94,2.2511373674146312e-94,2.390354271531702e-94,2.538180755265054e-94,2.695149260142813e-94,2.8618251554309867e-94,3.038808774480951e-94,3.226737577010178e-94,3.426288445105574e-94,3.6381801212175074e-94,3.863175796926923e-94,4.102085861809412e-94,4.355770822296467e-94,4.6251444010487983e-94,4.911176828002786e-94,5.214898334945418e-94,5.537402866203839e-94,5.879852018814914e-94,6.243479226365572e-94,6.629594201575684e-94,7.039587653621587e-94,7.474936297193475e-94,7.937208171327592e-94,8.428068287169389e-94,8.949284625013099e-94,9.502734502213483e-94,1.0090411334908947e-93,1.0714431817909428e-93,1.137704354860798e-93,1.208063312238034e-93,1.2827734728624594e-93,1.3621039278406525e-93,1.4463404096584902e-93,1.5357863213326498e-93,1.630763829207626e-93,1.7316150233349406e-93,1.8387031496131525e-93,1.952413918127219e-93,2.073156892399397e-93,2.2013669645551814e-93,2.337505921718393e-93,2.48206410927613e-93,2.635562197005164e-93,2.798553054420771e-93,2.971623742102209e-93,3.1553976261683675e-93,3.3505366235179697e-93,3.5577435859223747e-93,3.77776483155756e-93,4.01139283309354e-93,4.259469072022512e-93,4.522887069508119e-93,4.802595604670148e-93,5.099602131897893e-93,5.414976409500216e-93,5.749854352761127e-93,6.10544212528111e-93,6.483020483337404e-93,6.883949388912961e-93,7.309672908008636e-93,7.761724411880258e-93,8.241732099937456e-93,8.751424864192583e-93,9.292638516385335e-93,9.867322400210686e-93,1.0477546412466622e-92,1.1125508458408645e-92,1.1813542368168119e-92,1.2544126302742065e-92,1.331989167983538e-92,1.4143632651703298e-92,1.501831616912926e-92,1.5947092667792578e-92,1.693330741550824e-92,1.7980512561215145e-92,1.9092479929109065e-92,2.0273214603999433e-92,2.1526969356829644e-92,2.2858259962308222e-92,2.427188146382968e-92,2.5772925444265062e-92,2.7366798364829283e-92,2.9059241038073714e-92,3.085634930515319e-92,3.276459599182779e-92,3.479085422229174e-92,3.694242217479778e-92,3.9227049368236345e-92,4.1652964574364014e-92,4.422890545619511e-92,4.6964150039323196e-92,4.98685501295213e-92,5.295256679697693e-92,5.6227308054989954e-92,5.9704568868816934e-92,6.339687363878621e-92,6.73175213106914e-92,7.148063327594529e-92,7.590120423400884e-92,8.059515620032168e-92,8.557939585422011e-92,9.087187543342802e-92,9.64916573944415e-92,1.0245898307168657e-91,1.0879534558278707e-91,1.1552356724247965e-91,1.226678817640448e-91,1.3025402154431528e-91,1.3830931034662578e-91,1.4686276171558343e-91,1.559451834780581e-91,1.6558928870683734e-91,1.758298135465939e-91,1.8670364232656008e-91,1.9824994041050866e-91,2.1051029526261718e-91,2.2352886623720405e-91,2.3735254363192547e-91,2.5203111757728816e-91,2.676174573707464e-91,2.841677019014149e-91,3.017414618511297e-91,3.204020344002487e-91,3.40216631211488e-91,3.612566205128955e-91,3.835977841520389e-91,4.0732059054707795e-91,4.32510484517976e-91,4.592581950417099e-91,4.876600620399736e-91,5.178183833763184e-91,5.498417833127469e-91,5.838456037525997e-91,6.199523196791129e-91,6.582919802859139e-91,6.990026773882204e-91,7.422310428021414e-91,7.881327764831793e-91,8.368732073264519e-91,8.886278886484424e-91,9.435832304949531e-91,1.00193717105308e-90,1.0638998895850114e-90,1.1296945634518585e-90,1.199558171954025e-90,1.2737423498834452e-90,1.3525142938618043e-90,1.4361577247297196e-90,1.524973909452516e-90,1.619282746223818e-90,1.7194239166751266e-90,1.8257581093411532e-90,1.938668318788312e-90,2.058561225084618e-90,2.185868658580274e-90,2.3210491552745827e-90,2.4645896083709547e-90,2.6170070219695585e-90,2.778850373212784e-90,2.950702589591544e-90,3.133182648533898e-90,3.326947806838467e-90,3.5326959679820336e-90,3.751168195829305e-90,3.983151383796877e-90,4.229481089086555e-90,4.491044542195973e-90,4.768783842545488e-90,5.063699351733254e-90,5.3768532966377975e-90,5.70937359534763e-90,6.062457919697542e-90,6.43737800904314e-90,6.835484250813517e-90,7.258210544336936e-90,7.707079465460554e-90,8.18370775056513e-90,8.689812119727452e-90,9.227215460002878e-90,9.797853391102606e-90,1.0403781237109088e-89,1.1047181429343923e-89,1.1730371367050793e-89,1.2455811764204287e-89,1.3226115512513094e-89,1.4044057092533827e-89,1.4912582566797269e-89,1.5834820190938817e-89,1.6814091681049952e-89,1.7853924177840107e-89,1.8958062950692704e-89,2.0130484887379365e-89,2.1375412818016948e-89,2.269733072486053e-89,2.410099989271116e-89,2.5591476058118396e-89,2.7174127619133136e-89,2.8854654971207916e-89,3.063911103888594e-89,3.2533923077225324e-89,3.4545915821495736e-89,3.668233606851114e-89,3.895087877814822e-89,4.1359714789059225e-89,4.3917520248399415e-89,4.663350786158659e-89,4.951746007462513e-89,5.257976430852763e-89,5.583145037273493e-89,5.928423019229278e-89,6.295053999186469e-89,6.684358508854407e-89,7.097738745476772e-89,7.536683622266718e-89,8.002774131175701e-89,8.497689037310461e-89,9.023210925511625e-89,9.581232620868113e-89,1.0173764006296031e-88,1.08029392617366e-88,1.1471024551045698e-88,1.2180426184266134e-88,1.2933699284675607e-88,1.3733556991831716e-88,1.4582880233759852e-88,1.5484728103482113e-88,1.6442348877258872e-88,1.745919171423496e-88,1.853891907962168e-88,1.9685419936166904e-88,2.0902823751424252e-88,2.2195515371269797e-88,2.3568150813246315e-88,2.5025674036608118e-88,2.657333474947737e-88,2.821670731724712e-88,2.996171084033115e-88,3.181463047358848e-88,3.378214006419527e-88,3.5871326189512817e-88,3.8089713681526655e-88,4.044529272979255e-88,4.2946547660502114e-88,4.560248749534121e-88,4.842267840018593e-88,5.141727814052633e-88,5.459707266771453e-88,5.797351496780541e-88,6.155876631293844e-88,6.536574006380995e-88,6.940814818102578e-88,7.370055061285226e-88,7.825840773723936e-88,8.309813604703253e-88,8.82371672788997e-88,9.369401119897396e-88,9.948832227134167e-88,1.0564097044950738e-87,1.1217411634579445e-87,1.191112910494709e-87,1.2647748088103103e-87,1.3429921738794408e-87,1.4260467290600376e-87,1.514237620304502e-87,1.6078824936240273e-87,1.7073186391860602e-87,1.812904206166289e-87,1.92501949273064e-87,2.0440683157932495e-87,2.1704794654848167e-87,2.3047082495689713e-87,2.447238133370135e-87,2.598582481119251e-87,2.7592864049894915e-87,2.9299287284813415e-87,3.111124071229925e-87,3.30352506274212e-87,3.5078246930380266e-87,3.724758808662992e-87,3.9551087630597733e-87,4.199704230848507e-87,4.459426196148904e-87,4.735210125709551e-87,5.028049338272802e-87,5.338998582310337e-87,5.66917783501774e-87,6.019776336248571e-87,6.392056871919395e-87,6.787360322312949e-87,7.207110491661842e-87,7.65281923640679e-87,8.126091910603346e-87,8.628633148086435e-87,9.162253002221828e-87,9.728873465357849e-87,1.0330535391457612e-86,1.09694058468498e-86,1.164778591556857e-86,1.236811898739981e-86,1.3132999558484506e-86,1.3945182576175188e-86,1.4807593361809329e-86,1.5723338147132279e-86,1.6695715262325185e-86,1.7728227015932857e-86,1.8824592309481558e-86,1.998876003221891e-86,2.1224923284228934e-86,2.2537534479140714e-86,2.3931321380835284e-86,2.5411304131909454e-86,2.698281333522595e-86,2.8651509253686567e-86,3.0423402197368117e-86,3.230487417146198e-86,3.430270186298566e-86,3.6424081049054736e-86,3.867665251464344e-86,4.1068529573165306e-86,4.360832728901183e-86,4.630519350729712e-86,4.916884180257398e-86,5.22095864651877e-86,5.5438379651302135e-86,5.8866850830377696e-86,6.2507348672203594e-86,6.637298552434685e-86,7.047768464020705e-86,7.483623032781087e-86,7.94643211999353e-86,8.437862671738347e-86,8.959684722906236e-86,9.513777772510114e-86,1.0102137553267424e-85,1.0726883219830583e-85,1.139026498155988e-85,1.2094672207329049e-85,1.2842642031556047e-85,1.3636868492454063e-85,1.4480212235422283e-85,1.537571081651901e-85,1.6326589643133445e-85,1.733627359126069e-85,1.8408399341220445e-85,1.9546828476257502e-85,2.0755661391192964e-85,2.2039252061229528e-85,2.3402223724102962e-85,2.4849485532060238e-85,2.6386250233651266e-85,2.801805294900759e-85,2.975077110624235e-85,3.159064561077488e-85,3.354430332382892e-85,3.5618780931062065e-85,3.782155028731045e-85,4.0160545328716846e-85,4.264419064918806e-85,4.5281431844104226e-85,4.8081767730565135e-85,5.1055284560243545e-85,5.421269234804827e-85,5.756536344746429e-85,6.112537351150486e-85,6.490554498679978e-85,6.891949329750242e-85,7.318167588532681e-85,7.770744428237264e-85,8.251309940428379e-85,8.761595026289969e-85,9.303437630985602e-85,9.878789363572036e-85,1.0489722526305074e-84,1.1138437578659458e-84,1.1827271062945606e-84,1.2558704020067955e-84,1.3335370925741703e-84,1.4160069179347926e-84,1.503576917960885e-84,1.596562502337242e-84,1.6952985866038648e-84,1.8001407984552416e-84,1.9114667586402432e-84,2.0296774410768307e-84,2.155198617080183e-84,2.2884823889061687e-84,2.430008818133299e-84,2.5802876547492207e-84,2.739860173168315e-84,2.9093011217943076e-84,3.0892207931495394e-84,3.280267222026639e-84,3.483128519581183e-84,3.6985353517705813e-84,3.9272635710672956e-84,4.170137010924911e-84,4.428030453061555e-84,4.701872778249964e-84,4.992650311960428e-84,5.301410376908626e-84,5.6292650653033e-84,5.977395244380881e-84,6.3470548096532185e-84,6.739575201190272e-84,7.1563701992011945e-84,7.598941016188993e-84,8.068881704018962e-84,8.56788489537485e-84,9.097747900285736e-84,9.660379179677616e-84,1.0257805219269456e-83,1.089217782857113e-83,1.1565781891271126e-83,1.2281043594933955e-83,1.3040539169642958e-83,1.3847004167067837e-83,1.4703343313376492e-83,1.5612640971480127e-83,1.6578172250291894e-83,1.760341480101895e-83,1.8692061342967222e-83,1.9848032963980688e-83,2.1075493243418785e-83,2.2378863248536997e-83,2.376283745829333e-83,2.5232400671923478e-83,2.6792845963194622e-83,2.8449793745002867e-83,3.0209212012977e-83,3.2077437841013848e-83,3.406120020615217e-83,3.616764422500749e-83,3.84043568890578e-83,4.0779394391475826e-83,4.330131114392633e-83,4.59791905878586e-83,4.8822677911247445e-83,5.184201478863884e-83,5.50480762696217e-83,5.845240994858265e-83,6.206727755684829e-83,6.590569912699133e-83,6.998149988839414e-83,7.430936006297124e-83,7.890486774039416e-83,8.378457502329554e-83,8.896605764463539e-83,9.446797827198986e-83,1.0031015372675977e-82,1.065136263604143e-82,1.1310073984483458e-82,1.2009521964978376e-82,1.2752225849730826e-82,1.3540860710090378e-82,1.4378267051625718e-82,1.5267461045057896e-82,1.6211645389908427e-82,1.721422084998302e-82,1.8278798502245305e-82,1.940921274319681e-82,2.060953509960669e-82,2.1884088893342758e-82,2.3237464813113006e-82,2.4674537449211762e-82,2.620048285082229e-82,2.782079716911499e-82,2.9541316453285257e-82,3.1368237670843967e-82,3.330814102785622e-82,3.536801366953266e-82,3.755527484653487e-82,3.9877802637633147e-82,4.234396232498211e-82,4.496263652419552e-82,4.7743257177758105e-82,5.069583952700379e-82,5.383101818501296e-82,5.716008544037735e-82,6.069503192976716e-82,6.444858982581563e-82,6.843427869586689e-82,7.266645419676481e-82,7.716035978105926e-82,8.193218160089574e-82,8.699910680730117e-82,9.237938545487782e-82,9.809239623486507e-82,1.0415871627331149e-81,1.1060019524579746e-81,1.1744003407560065e-81,1.2470286849879958e-81,1.3241485779728823e-81,1.406037790192801e-81,1.4929912702672118e-81,1.585322207298888e-81,1.6833631589186748e-81,1.787467249091785e-81,1.8980094399999876e-81,2.0153878825804329e-81,2.140025350586279e-81,2.272370763333273e-81,2.412900802617693e-81,2.562121629629234e-81,2.720570708042434e-81,2.888818739854121e-81,3.0674717209379683e-81,3.257173123720907e-81,3.4586062148426424e-81,3.6724965161455074e-81,3.899614417860092e-81,4.140777953396918e-81,4.396855745739815e-81,4.668770136052765e-81,4.957500505769072e-81,5.264086804127497e-81,5.589633293862956e-81,5.935312528540231e-81,6.302369575858322e-81,6.692126502136306e-81,7.105987134131944e-81,7.545442115346946e-81,8.012074275027001e-81,8.5075643291974e-81,9.03369693426739e-81,9.592367115005827e-81,1.0185587090044135e-80,1.0815493519485749e-80,1.1484355200730151e-80,1.2194581240228855e-80,1.294872973060701e-80,1.3749516964401681e-80,1.4599827217608268e-80,1.5502723138266317e-80,1.646145677750762e-80,1.747948130279666e-80,1.856046343554954e-80,1.970829665793653e-80,2.0927115236426847e-80,2.2221309112592873e-80,2.3595539714805315e-80,2.5054756747766394e-80,2.660421602036345e-80,2.8249498376042362e-80,2.9996529793893842e-80,3.1851602732848884e-80,3.382139879586251e-80,3.591301279571202e-80,3.8133978309103946e-80,4.049229481111204e-80,4.299645648769285e-80,4.5655482830051705e-80,4.847895112104702e-80,5.14770309306617e-80,5.4660520744762164e-80,5.804088685909316e-80,6.163030467859124e-80,6.5441702570759484e-80,6.948880843108046e-80,7.378619912815264e-80,7.83493530066672e-80,8.319470563732018e-80,8.833970901446465e-80,9.380289441470568e-80,9.960393914287953e-80,1.057637374057737e-79,1.1230447556889738e-79,1.1924971206735092e-79,1.2662446225859986e-79,1.3445528852282589e-79,1.4277039593531264e-79,1.5159973385550796e-79,1.6097510379865133e-79,1.7093027397847476e-79,1.815011009336043e-79,1.9272565867564737e-79,2.0464437582419755e-79,2.1730018122266376e-79,2.307386585594137e-79,2.4500821055110733e-79,2.6016023327967238e-79,2.7624930131072156e-79,2.9333336426026563e-79,3.114739555176882e-79,3.3073641387671375e-79,3.511901188727703e-79,3.7290874067421273e-79,3.959705054275928e-79,4.2045847701265804e-79,4.464608562218427e-79,4.7407129844201014e-79,5.0338925098244274e-79,5.3452031126423796e-79,5.675766071611707e-79,6.02677200861961e-79,6.399485177084777e-79,6.795248015547193e-79,7.215485982863518e-79,7.661712692425912e-79,8.13553536389599e-79,8.638660612088779e-79,9.172900593860432e-79,9.740179535135132e-79,1.0342540661583532e-78,1.0982153557914652e-78,1.1661321982286307e-78,1.2382492163984605e-78,1.3148261614253037e-78,1.3961388482010494e-78,1.4824801488153906e-78,1.5741610474227566e-78,1.6715117603450731e-78,1.7748829254453925e-78,1.8846468650554116e-78,2.001198927006339e-78,2.1249589085930367e-78,2.2563725685999626e-78,2.3959132328358076e-78,2.5440834989584824e-78,2.701417046731753e-78,2.8684805602334544e-78,3.0458757689382586e-78,3.234241615027777e-78,3.434256554732622e-78,3.6466410019965957e-78,3.8721599232641096e-78,4.111625592736956e-78,4.365900518023612e-78,4.6359005467204e-78,4.922598165111529e-78,5.227026000870951e-78,5.550280542381572e-78,5.893526088067216e-78,6.25799893996439e-78,6.645011856635186e-78,7.055958781462092e-78,7.492319863354418e-78,7.955666787948788e-78,8.447668438508761e-78,8.97009690690887e-78,9.524833876356524e-78,1.0113877398839849e-77,1.0739349091712976e-77,1.1403501779337647e-77,1.2108727607309294e-77,1.2857566658487467e-77,1.365271610186828e-77,1.4497039907249914e-77,1.5393579160679324e-77,1.6345563017840409e-77,1.7356420334827537e-77,1.8429792018202117e-77,1.9569544138812834e-77,2.0779781856610036e-77,2.206486420661684e-77,2.342941979930226e-77,2.4878363491914013e-77,2.641691409081467e-77,2.805061314858268e-77,2.9785344923577022e-77,3.1627357573867565e-77,3.3583285661851918e-77,3.566017405062748e-77,3.786550327818514e-77,4.020721650081176e-77,4.269374810276212e-77,4.533405407522561e-77,4.813764427402237e-77,5.1114616672209716e-77,5.427569373096264e-77,5.763226101975004e-77,6.119640822488091e-77,6.4980972694146e-77,6.899958567438564e-77,7.326672140852582e-77,7.779774926890791e-77,8.260898911471629e-77,8.771777007285022e-77,9.314249295398659e-77,9.890269652863503e-77,1.0501912790188344e-76,1.1151381724035152e-76,1.1841015712044873e-76,1.2573298678377442e-76,1.3350868160311867e-76,1.4176524808128263e-76,1.5053242472494123e-76,1.5984178915680195e-76,1.697268718519109e-76,1.8022327690774048e-76,1.913688102830568e-76,2.032036159674258e-76,2.157703205718937e-76,2.291141868615221e-76,2.4328327678285084e-76,2.5832862457345644e-76,2.7430442057707437e-76,2.9126820642645806e-76,3.092810822968423e-76,3.2840792697660234e-76,3.4871763154772674e-76,3.7028334751772426e-76,3.931827502968298e-76,4.174983189693114e-76,4.433176333667004e-76,4.7073368951288713e-76,4.998452345772768e-76,5.307571225423538e-76,5.635806918669092e-76,5.984341665049215e-76,6.354430817246873e-76,6.74740736261853e-76,7.164686724348154e-76,7.607771859520497e-76,8.078258672472209e-76,8.57784176292131e-76,9.108320529577869e-76,9.671605651218441e-76,1.0269725968571691e-75,1.0904835791797284e-75,1.157922265988192e-75,1.2295315579898773e-75,1.3055693775807174e-75,1.386309597830174e-75,1.4720430289176557e-75,1.5630784655726797e-75,1.6597437992919654e-75,1.7623871993393007e-75,1.8713783667816297e-75,1.987109866078897e-75,2.1099985390227894e-75,2.2404870061178273e-75,2.3790452608122643e-75,2.5261723623205344e-75,2.682398233135461e-75,2.8482855677031863e-75,3.024431859136469e-75,3.211471551265778e-75,3.4100783237796023e-75,3.620967518684022e-75,3.8448987168225903e-75,4.082678473734754e-75,4.3351632247082254e-75,4.603262369488308e-75,4.887941547753993e-75,5.19022611716036e-75,5.51120484647197e-75,5.85203383709105e-75,6.213940687104481e-75,6.598228912846705e-75,7.006282643906765e-75,7.439571608486513e-75,7.899656427068792e-75,8.388194233461339e-75,8.906944643462699e-75,9.457776092646586e-75,1.0042672566095862e-74,1.0663740744320364e-74,1.1323217591100416e-74,1.2023478410584816e-74,1.2767045402661559e-74,1.3556596747421077e-74,1.439497625142577e-74,1.5285203590534721e-74,1.6230485186174668e-74,1.7234225754229055e-74,1.8300040568148644e-74,1.94317684804441e-74,2.0633485749467974e-74,2.1909520721284755e-74,2.3264469419511286e-74,2.470321209927512e-74,2.6230930824924533e-74,2.7853128134788836e-74,2.9575646860225274e-74,3.140469117033376e-74,3.334684891813383e-74,3.540911536870322e-74,3.75989183947249e-74,3.992414523020476e-74,4.2393170878717485e-74,4.501488827849531e-74,4.779874033302597e-74,5.075475392250407e-74,5.389357601865621e-74,5.722651203301067e-74,6.076556653673813e-74,6.452348649871724e-74,6.8513807197585775e-74,7.275090097310967e-74,7.725002899248763e-74,8.202739621803575e-74,8.710020977422239e-74,9.248674092431424e-74,9.820639087981563e-74,1.0427976067976736e-73,1.1072872539158602e-73,1.1757651290068412e-73,1.2484778757270158e-73,1.3256873908962244e-73,1.4076717677979188e-73,1.4947262978157373e-73,1.5871645340142534e-73,1.6853194204944348e-73,1.7895444915921936e-73,1.90021514523842e-73,2.017729995067545e-73,2.1425123061444568e-73,2.2750115194806542e-73,2.4157048708315377e-73,2.5650991096042406e-73,2.7237323240680395e-73,2.8921758794411264e-73,3.0710364758339093e-73,3.2609583334623553e-73,3.4626255130004815e-73,3.6767643794306266e-73,3.904146218265331e-73,4.14559001356413e-73,4.401965397750421e-73,4.6741957838548014e-73,4.9632616914642835e-73,5.2702042783585135e-73,5.596129090552719e-73,5.942210044253458e-73,6.309693654071729e-73,6.69990352271952e-73,7.114245108363087e-73,7.554210786803352e-73,8.02138522671519e-73,8.517451097309401e-73,9.044195128970955e-73,9.60351454870591e-73,1.0197423913574905e-72,1.0828062366726438e-72,1.1497701342162878e-72,1.220875274599477e-72,1.2963777643644705e-72,1.376549548429476e-72,1.4616793895800802e-72,1.5520739085350794e-72,1.6480586883334314e-72,1.7499794470193055e-72,1.858203282849604e-72,1.9731199965087654e-72,2.0951434950929106e-72,2.224713282921025e-72,2.362296044541695e-72,2.5083873256378803e-72,2.6635133178836854e-72,2.8282327541819663e-72,3.003138921108557e-72,3.1888617958127233e-72,3.386070315068972e-72,3.5954747846540534e-72,3.817829437726887e-72,4.053935151425636e-72,4.304642331468147e-72,4.570853975143424e-72,4.853528923727967e-72,5.153685316041072e-72,5.472404255577334e-72,5.810833704426795e-72,6.170192618005002e-72,6.551775335487584e-72,6.956956241761956e-72,7.38719471768794e-72,7.844040396495897e-72,8.329138745257953e-72,8.844236991531601e-72,9.39119041652529e-72,9.971969037451794e-72,1.058866470313643e-71,1.1243498628441192e-71,1.1938829394636862e-71,1.2677161444542854e-71,1.3461154103031447e-71,1.4293631155384364e-71,1.5177591018006735e-71,1.6116217538123832e-71,1.7112891461364513e-71,1.8171202608533087e-71,1.9294962805428838e-71,2.0488219612280588e-71,2.1755270902255017e-71,2.3100680341537044e-71,2.4529293826746235e-71,2.604625693889126e-71,2.765703347672407e-71,2.936742513625825e-71,3.1183592407318737e-71,3.311207676239892e-71,3.515982421774164e-71,3.733421035150121e-71,3.964306686911157e-71,4.209470981152433e-71,4.469796950793161e-71,4.746222238085162e-71,5.039742471813497e-71,5.351414853352335e-71,5.682361964494398e-71,6.033775810766268e-71,6.406922114794826e-71,6.803144875188053e-71,7.22387120734935e-71,7.670616483663884e-71,8.144989791567118e-71,8.648699729157197e-71,9.183560559224984e-71,9.751498743865963e-71,1.0354559883214228e-70,1.0994916083285421e-70,1.1674873779469874e-70,1.2396882043853142e-70,1.3163541406285865e-70,1.3977613220972441e-70,1.484202961232063e-70,1.575990403586779e-70,1.673454249232744e-70,1.776945543514539e-70,1.8868370414451296e-70,2.0035245502954155e-70,2.127428355212932e-70,2.2589947330052227e-70,2.3986975595400124e-70,2.5470400165513558e-70,2.704556404000341e-70,2.8718140645167883e-70,3.0494154268543757e-70,3.23800017571893e-70,3.438247555785325e-70,3.65087881820102e-70,3.8766598183894995e-70,4.1164037745084717e-70,4.370974196499668e-70,4.641287996279662e-70,4.9283187902733035e-70,5.233100406186778e-70,5.556730606648428e-70,5.900375043131047e-70,6.26527145439631e-70,6.65273412458238e-70,7.064158616994423e-70,7.501026800644788e-70,7.964912187649961e-70,8.457485600707573e-70,8.98052119106696e-70,9.535902828667315e-70,1.0125630887463187e-69,1.0751829450371753e-69,1.1416753959796326e-69,1.2122799341280671e-69,1.2872508629552063e-69,1.3668582128027486e-69,1.451388713476696e-69,1.5411468269909957e-69,1.6364558441790701e-69,1.737659049122776e-69,1.8451209555935101e-69,1.9592286199579777e-69,2.0803930352781167e-69,2.209050611626184e-69,2.345664747946913e-69,2.490727501127879e-69,2.644761358290716e-69,2.8083211186853273e-69,2.981995891966254e-69,3.1664112200483205e-69,3.362231330183559e-69,3.570161527375902e-69,3.7909507347488695e-69,4.0253941910174647e-69,4.2743363147796285e-69,4.538673745943236e-69,4.819358575245021e-69,5.117401773491168e-69,5.433876832872752e-69,5.769923633470631e-69,6.126752548876458e-69,6.505648805716412e-69,6.90797711278233e-69,7.335186576440086e-69,7.78881592002203e-69,8.270499026001954e-69,8.781970820913157e-69,9.325073524209358e-69,9.901763283571066e-69,1.0514117220559816e-68,1.1164340911996338e-68,1.1854776334007352e-68,1.2587910297358617e-68,1.336638340445039e-68,1.419299956024122e-68,1.5070736071354713e-68,1.6002754369744963e-68,1.6992411399542503e-68,1.8043271708100568e-68,1.9159120284782396e-68,2.034397619373888e-68,2.1602107049777148e-68,2.2938044389455984e-68,2.4356599992780847e-68,2.586288321427395e-68,2.746231938585139e-68,2.9160669357788095e-68,3.096405024814895e-68,3.2878957475433556e-68,3.491228815377576e-68,3.707136593497476e-68,3.936396738682905e-68,4.17983500027847e-68,4.438328194377614e-68,4.712807361940093e-68,5.004261122215484e-68,5.313739233552765e-68,5.6423563744208e-68,5.991296158257369e-68,6.361815396609766e-68,6.755248625918867e-68,7.173012914253522e-68,7.616612965307491e-68,8.08764653804137e-68,8.587810201493134e-68,9.118905445480821e-68,9.682845169209955e-68,1.0281660571155196e-67,1.0917508465032672e-67,1.1592679048211844e-67,1.2309604150551733e-67,1.307086599336615e-67,1.3879206490070441e-67,1.473753712200749e-67,1.564894942502151e-67,1.6616726124556362e-67,1.7644352959376656e-67,1.8735531236504362e-67,1.989419116258948e-67,2.1124505999728767e-67,2.2430907096727236e-67,2.3818099849931098e-67,2.5291080651127995e-67,2.6855154883554288e-67,2.8515956030828777e-67,3.027946596763455e-67,3.215203650524398e-67,3.414041226947368e-67,3.625175499348309e-67,3.849366931291084e-67,4.087423015625216e-67,4.340201182914815e-67,4.608611889732138e-67,4.8936218979407823e-67,5.1962577567793645e-67,5.51760950028667e-67,5.858834573387847e-67,6.221162000779746e-67,6.605896813633036e-67,7.014424750054353e-67,7.448217246238943e-67,7.908836736289714e-67,8.397942279794653e-67,8.917295537427964e-67,9.468767116100859e-67,1.0054343306515067e-66,1.0676133237384891e-66,1.1336376472100086e-66,1.2037451075185685e-66,1.278188217761667e-66,1.3572351071836783e-66,1.4411704869237944e-66,1.53029667548902e-66,1.6249346876450267e-66,1.7254253906473876e-66,1.8321307319774857e-66,1.945435043005251e-66,2.0657464232739286e-66,2.1934982103936075e-66,2.3291505408367045e-66,2.473192007257871e-66,2.6261414183074164e-66,2.788549667276362e-66,2.961001716304696e-66,3.1441187032981185e-66,3.338560179143036e-66,3.5450264832774854e-66,3.764261266173796e-66,3.997054167819943e-66,4.244243661845002e-66,4.5067200755341225e-66,4.785428796609939e-66,5.081373678330847e-66,5.395620655169777e-66,5.729301582098525e-66,6.083618311303208e-66,6.459847021016398e-66,6.859342812056936e-66,7.283544588632199e-66,7.733980240985375e-66,8.212272148550811e-66,8.720143023441544e-66,9.259422115315192e-66,9.832051799965568e-66,1.0440094575374646e-65,1.1085740490418169e-65,1.1771315032985394e-65,1.2499287505922946e-65,1.327227992097183e-65,1.4093076442729593e-65,1.4964633416658435e-65,1.5890090017250828e-65,1.6872779554710661e-65,1.7916241480872682e-65,1.902423413760047e-65,2.020074829358765e-65,2.14500215183093e-65,2.277655344490298e-65,2.4185121976951123e-65,2.5680800497534585e-65,2.726897614255127e-65,2.895536920410317e-65,3.074605373384895e-65,3.2647479420527253e-65,3.4666494820450934e-65,3.681037202463788e-65,3.908683285143905e-65,4.15040766589852e-65,4.4070809877641446e-65,4.679627736883528e-65,4.969029572319945e-65,5.27632886179824e-65,5.602632436105086e-65,5.949115575672983e-65,6.317026243706284e-65,6.70768958109519e-65,7.122512679310149e-65,7.562989648464162e-65,8.030706998799765e-65,8.527349354982675e-65,9.054705523784303e-65,9.614674937006171e-65,1.0209274492856134e-64,1.0840645820412715e-64,1.1511062993346413e-64,1.2222940720680093e-64,1.2978843044088214e-64,1.3781492573065862e-64,1.4633780291224132e-64,1.5538775969037156e-64,1.6499739220543924e-64,1.7520131243826456e-64,1.860362728755813e-64,1.975412988851498e-64,2.0975782927735764e-64,2.2272986555955407e-64,2.3650413042071586e-64,2.51130236017233e-64,2.6666086266604605e-64,2.8315194858862117e-64,3.0066289138928023e-64,3.192567619935407e-64,3.390005318169816e-64,3.599653139829861e-64,3.822266194580022e-64,4.0586462902700054e-64,4.309644820886919e-64,4.5761658331062225e-64,4.859169282488359e-64,5.1596744910468735e-64,5.4787638186432303e-64,5.8175865614312956e-64,6.177363091393166e-64,6.559389251875097e-64,6.965041024957962e-64,7.395779487469761e-64,7.853156073493281e-64,8.338818162322651e-64,8.854515011994258e-64,9.40210405976689e-64,9.983557612239593e-64,1.0600969949207129e-63,1.1256564866838651e-63,1.1952703687346988e-63,1.2691893764002427e-63,1.347679751211818e-63,1.4310241998539946e-63,1.5195229124177166e-63,1.613494643625219e-63,1.713277860920819e-63,1.8192319635634508e-63,1.9317385771109817e-63,2.0512029279594441e-63,2.178055302887805e-63,2.3127525988649277e-63,2.455779968701742e-63,2.607652568474727e-63,2.7689174130154705e-63,2.9401553461491394e-63,3.121983132777829e-63,3.3150556803452866e-63,3.5200683976826626e-63,3.737759699732582e-63,3.968913667172579e-63,4.2143628705175273e-63,4.4749913688722067e-63,4.7517378941366745e-63,5.045599232130995e-63,5.357633812819188e-63,5.68896552256314e-63,6.040787752136623e-63,6.414367695081917e-63,6.811050911887753e-63,7.232266176430121e-63,7.679530622131202e-63,8.154455206370681e-63,8.658750512834383e-63,9.194232912694913e-63,9.762831106818757e-63,1.0366593072562363e-62,1.1007693440178662e-62,1.1688441325400542e-62,1.241128864641726e-62,1.3178838955193822e-62,1.3993856814946496e-62,1.4859277757548858e-62,1.5778218856730827e-62,1.675398995515934e-62,1.7790105585830305e-62,1.8890297630716265e-62,2.005852876226198e-62,2.129900671613844e-62,2.2616199446671323e-62,2.4014851219519737e-62,2.549999969957596e-62,2.707699409563021e-62,2.875151442715531e-62,3.0529591982601354e-62,3.2417631042899296e-62,3.4422431948401137e-62,3.655121559235115e-62,3.8811649429105088e-62,4.121187509076809e-62,4.376053771173706e-62,4.646681706674731e-62,4.934046063459242e-62,5.239181870660132e-62,5.563188166631871e-62,5.907231957468453e-62,6.272552420326155e-62,6.660465366692793e-62,7.072367981678417e-62,7.509743856397792e-62,7.974168331569025e-62,8.467314171578065e-62,8.990957589441769e-62,9.546984644373338e-62,1.0137398034991945e-61,1.0764324312642826e-61,1.1430021540813012e-61,1.2136887428224816e-61,1.2887467964904984e-61,1.3684466592333665e-61,1.453075394070021e-61,1.5429378168343183e-61,1.6383575940607615e-61,1.7396784087668775e-61,1.8472651983309403e-61,1.9615054689237202e-61,2.082810691228249e-61,2.2116177824755265e-61,2.348390680133084e-61,2.4936220129153147e-61,2.6478348751339873e-61,2.8115847107793875e-61,2.9854613141192943e-61,3.170090954020082e-61,3.366138629642411e-61,3.574310465635753e-61,3.7953562554582285e-61,4.030072161983773e-61,4.279303585121725e-61,4.543948206778879e-61,4.824959224130783e-61,5.123348782848102e-61,5.4401916226430054e-61,5.776628948268228e-61,6.133872539908555e-61,6.513209117771641e-61,6.916004976597912e-61,7.343710906781103e-61,7.797867419827215e-61,8.280110296969132e-61,8.792176480924757e-61,9.335910332018712e-61,9.913270271199548e-61,1.0526335833883177e-60,1.117731516002391e-60,1.186855294739467e-60,1.260253889672101e-60,1.3381916679087218e-60,1.4209493457911116e-60,1.508824999978935e-60,1.6021351410623058e-60,1.7012158535698774e-60,1.806424006478376e-60,1.9181385385833173e-60,2.0367618233613124e-60,2.1627211182389295e-60,2.2964701034888272e-60,2.438490516295734e-60,2.58929388587749e-60,2.7494233759117285e-60,2.919455740902912e-60,3.1000034035371536e-60,3.291716660506663e-60,3.4952860247489015e-60,3.711444712536158e-60,3.940971284374982e-60,4.1846924492255614e-60,4.443486042142702e-60,4.7182841860628474e-60,5.010076649124573e-60,5.319914409616904e-60,5.648913441393113e-60,5.998258733386219e-60,6.369208557703098e-60,6.763099001669087e-60,7.181348780149267e-60,7.625464345475912e-60,8.097045313389688e-60,8.597790224536695e-60,9.129502662273566e-60,9.694097748814184e-60,1.0293609043119664e-59,1.0930195865371393e-59,1.1606151074412147e-59,1.2323909326166963e-59,1.3086055842787087e-59,1.3895335724106908e-59,1.475466383494502e-59,1.566713530386663e-59,1.6636036671220148e-59,1.7664857726598572e-59,1.875730407836872e-59,1.991731050053213e-59,2.114905510499712e-59,2.24569743903051e-59,2.3845779221014616e-59,2.5320471795293836e-59,2.68863636618452e-59,2.8549094851042495e-59,3.0314654189196684e-59,3.2189400869115432e-59,3.418008735464441e-59,3.6293883701701446e-59,3.8538403383385198e-59,4.092173071218856e-59,4.3452449958082e-59,4.613967626733811e-59,4.8993088493478625e-59,5.202296405857092e-59,5.524021597045476e-59,5.865643212922132e-59,6.228391706452122e-59,6.613573625402071e-59,7.022576318265817e-59,7.45687293121647e-59,7.91802771408545e-59,8.40770165447882e-59,8.927658460322613e-59,9.479770912388612e-59,1.0066027609676477e-58,1.068854013195118e-58,1.1349550645232735e-58,1.2051439977630006e-58,1.2796736194610853e-58,1.3588123704588807e-58,1.4428452927627378e-58,1.532075056208497e-58,1.6268230486179505e-58,1.7274305333735312e-58,1.8342598785812636e-58,1.9476958622482716e-58,2.0681470581765074e-58,2.1960473075642075e-58,2.3318572816151627e-58,2.4760661407849362e-58,2.629193296639078e-58,2.7917902826701084e-58,2.9644427408113076e-58,3.1477725308018885e-58,3.342439970002315e-58,3.549146211725488e-58,3.768635770651301e-58,4.0016992044201074e-58,4.249175961063885e-58,4.51195740253024e-58,4.790990015191173e-58,5.087278818897865e-58,5.401890986861963e-58,5.735959689400932e-58,6.090688175391024e-58,6.46735410613083e-58,6.867314157221983e-58,7.292008905044398e-58,7.74296801542547e-58,8.221815753190593e-58,8.730276832442597e-58,9.2701826286373e-58,9.84347777483307e-58,1.0452227165871474e-57,1.1098623395717214e-57,1.1784994654743297e-57,1.2513813115410516e-57,1.3287703836538673e-57,1.4109454218245483e-57,1.4982024041606618e-57,1.5908556129195492e-57,1.6892387664906177e-57,1.7937062213822977e-57,1.904634248543591e-57,2.0224223886170853e-57,2.1474948910044806e-57,2.2803022419287052e-57,2.4213227869952732e-57,2.5710644540978617e-57,2.730066582873339e-57,2.898901867295713e-57,3.0781784184053415e-57,3.268541954604171e-57,3.470678127404389e-57,3.6853149910085803e-57,3.9132256246159495e-57,4.1552309168990664e-57,4.4122025226818764e-57,4.6850660024662095e-57,4.9748041561163204e-57,5.282460562708244e-57,5.609143339293023e-57,5.956029132114317e-57,6.324367354653054e-57,6.715484687765893e-57,7.130789858125211e-57,7.571778712171999e-57,8.040039603855723e-57,8.537259115569897e-57,9.065228132884853e-57,9.625848294960797e-57,1.022113884387329e-56,1.0853243897519572e-56,1.1524440172305528e-56,1.2237145183423254e-56,1.2993925952259173e-56,1.3797508252293766e-56,1.465078642679278e-56,1.5556833813657029e-56,1.6518913814971397e-56,1.7540491651129028e-56,1.862524684186446e-56,1.9777086459150815e-56,2.100015919969206e-56,2.229887032770483e-56,2.3677897541799885e-56,2.514220782312064e-56,2.6697075325419536e-56,2.834810037150749e-56,3.010122962450094e-56,3.196277750651796e-56,3.3939448941967356e-56,3.603836350734839e-56,3.8267081074548976e-56,4.063362903999604e-56,4.314653123773555e-56,4.581483864058766e-56,4.864816195994198e-56,5.165670626162854e-56,5.485130772252908e-56,5.824347266032373e-56,6.184541897695828e-56,6.567012016508951e-56,6.973135203601686e-56,7.4043742337415195e-56,7.862282343955853e-56,8.348508827982864e-56,8.864804976698528e-56,9.413030385916862e-56,9.995159654284115e-56,1.0613289495389154e-55,1.126964628970741e-55,1.1966594103580604e-55,1.2706643204111232e-55,1.3492459100645438e-55,1.432687214540591e-55,1.5212887727855763e-55,1.6153697099513522e-55,1.7152688868204423e-55,1.8213461203149605e-55,1.9339834794856082e-55,2.0535866616480386e-55,2.1805864536239017e-55,2.3154402833490346e-55,2.458633867437603e-55,2.6106829606367207e-55,2.7721352134721553e-55,2.9435721447762347e-55,3.1256112362030416e-55,3.318908156273922e-55,3.5241591219651e-55,3.742103406342336e-55,3.973526001274975e-55,4.219260444820506e-55,4.480191823462349e-55,4.7572599600147465e-55,5.0514627986776474e-55,5.363859999432268e-55,5.695576754725599e-55,6.047807842189129e-55,6.421821927989445e-55,6.81896613631138e-55,7.240670901430581e-55,7.688455119852318e-55,8.163931621074643e-55,8.66881297667791e-55,9.204917668667014e-55,9.774176639280791e-55,1.0378640245860618e-54,1.1020485645829683e-54,1.170202463837967e-54,1.2425711991110125e-54,1.319415428161319e-54,1.401011928584514e-54,1.4876545947104936e-54,1.5796554961521667e-54,1.6773460018179253e-54,1.7810779734365315e-54,1.891225032892868e-54,2.0081839079394105e-54,2.132375861130697e-54,2.2642482071268574e-54,2.404275923832059e-54,2.552963363170158e-54,2.7108460676596844e-54,2.8784926993314535e-54,3.0565070879357554e-54,3.245530405816615e-54,3.4462434772870774e-54,3.6593692308223063e-54,3.8856753029041856e-54,4.1259768028947803e-54,4.3811392488975975e-54,4.6520816851816166e-54,4.939779992395393e-54,5.245270402494418e-54,5.56965323104255e-54,5.914096840328773e-54,6.279841847575801e-54,6.668205593395812e-54,7.080586886588442e-54,7.51847104237182e-54,7.983435232191657e-54,8.477154164378064e-54,9.00140611611192e-54,9.558079338423881e-54,1.0149178857299054e-53,1.07768336953806e-53,1.1443304540284432e-53,1.2150991887146278e-53,1.2902444684726259e-53,1.3700369516213676e-53,1.4547640347801413e-53,1.5447308880137788e-53,1.6402615539945378e-53,1.741700115139159e-53,1.8494119329250695e-53,1.9637849638497405e-53,2.0852311567725938e-53,2.214187936672587e-53,2.3511197801660015e-53,2.496519888458385e-53,2.6509119637572067e-53,2.814852095542731e-53,2.988930763491353e-53,3.1737749642659286e-53,3.3700504698326644e-53,3.5784642254388845e-53,3.7997668958892285e-53,4.0347555692902492e-53,4.284276628003251e-53,4.549228797144701e-53,4.830566381614756e-53,5.129302703313663e-53,5.44651375092509e-53,5.783342055412642e-53,6.1410008051891975e-53,6.520778215779091e-53,6.924042169714246e-53,7.352245143374161e-53,7.806929438515975e-53,8.289732737338578e-53,8.802394001087182e-53,9.346759733444697e-53,9.924790631270806e-53,1.0538568646640199e-52,1.1190304485619875e-52,1.188234557079138e-52,1.2617184496198494e-52,1.3397468005175103e-52,1.4226006523386686e-52,1.5105784281422702e-52,1.603997006340175e-52,1.7031928620298643e-52,1.808523278910825e-52,1.9203676361491567e-52,2.039128774825622e-52,2.1652344488890795e-52,2.299138865840869e-52,2.441324322699595e-52,2.5923029431390758e-52,2.752618522055465e-52,2.922848484208319e-52,3.103605963989386e-52,3.295542013810328e-52,3.499347949063992e-52,3.715757838104539e-52,3.945551146215165e-52,4.18955554308705e-52,4.448649883920166e-52,4.723767374884928e-52,5.015898934344638e-52,5.326096761945692e-52,5.6554781284313844e-52,6.005229399828229e-52,6.376610310499645e-52,6.77095850045862e-52,7.189694333279697e-52,7.634326011966095e-52,8.10645501119604e-52,8.60778184551497e-52,9.140112194250635e-52,9.70536340520981e-52,1.030557140058247e-51,1.0942898009928656e-51,1.1619638756656495e-51,1.2338231126040987e-51,1.3101263344559685e-51,1.391148370216797e-51,1.4771810451092746e-51,1.5685342316794768e-51,1.6655369658959378e-51,1.7685386322717774e-51,1.8779102222778916e-51,1.9940456705804447e-51,2.1173632739149525e-51,2.2483071977076455e-51,2.3873490758709757e-51,2.5349897095348794e-51,2.691760870832508e-51,2.8582272182377046e-51,3.034988330351975e-51,3.2226808654673655e-51,3.421980854682623e-51,3.6336061368322995e-51,3.8583189439994374e-51,4.096928646923463e-51,4.3502946701920777e-51,4.6193295877177184e-51,4.905002409646402e-51,5.208342072539559e-51,5.530441145398257e-51,5.872459764878709e-51,6.235629813873721e-51,6.621259358509112e-51,7.030737359536866e-51,7.465538675095547e-51,7.927229372854565e-51,8.41747237067845e-51,8.938033426125264e-51,9.49078749635294e-51,1.0077725491341986e-50,1.0700961444756038e-50,1.1362740128269258e-50,1.2065445136787504e-50,1.28116074736808e-50,1.3603914666954117e-50,1.444522044918708e-50,1.533855503610926e-50,1.628713604083438e-50,1.7294380063060877e-50,1.8363914994982187e-50,1.9499593088232998e-50,2.0705504828929725e-50,2.1985993670788004e-50,2.334567167937645e-50,2.478943614385648e-50,2.632248721604361e-50,2.795034664031689e-50,2.967887764184026e-50,3.15143060447336e-50,3.346324269624697e-50,3.5532707277717633e-50,3.77301535880618e-50,4.0063496390870896e-50,4.254113992181548e-50,4.51720081590255e-50,4.796557696547865e-50,5.093190821917451e-50,5.408168605400811e-50,5.742625534189538e-50,6.097766255473851e-50,6.47486991534138e-50,6.875294766006905e-50,7.300483057965864e-50,7.751966234692829e-50,8.231370448596355e-50,8.740422418094963e-50,9.280955646913468e-50,9.854917027997625e-50,1.0464373855833992e-49,1.1111521272433424e-49,1.1798690173794657e-49,1.2528355605326564e-49,1.3303145676469514e-49,1.4125851026620347e-49,1.499943487646047e-49,1.5927043700885592e-49,1.6912018561980414e-49,1.795790714285958e-49,1.9068476525714513e-49,2.0247726760091727e-49,2.1499905270275833e-49,2.282952215366294e-49,2.4241366425234504e-49,2.57405232666339e-49,2.7332392341975923e-49,2.9022707246362722e-49,3.0817556157149552e-49,3.272340376234463e-49,3.4747114545129814e-49,3.689597750835707e-49,3.917773242808715e-49,4.160059773071885e-49,4.4173300094120915e-49,4.69051058793896e-49,4.98058545064328e-49,5.288599389359695e-49,5.615661808899132e-49,5.962950722903201e-49,6.3317169968150545e-49,6.7232888532471656e-49,7.139076655974124e-49,7.580577989782383e-49,8.049383054471883e-49,8.547180392438413e-49,9.075762970467526e-49,9.637034637642565e-49,1.0233016982630427e-48,1.0865856615040636e-48,1.1537832897084791e-48,1.2251366153385798e-48,1.3009026388504318e-48,1.3813542543582325e-48,1.4667812325446438e-48,1.5574912643568762e-48,1.6538110692482892e-48,1.7560875719566813e-48,1.864689152057965e-48,1.9800069707961148e-48,2.1024563799679318e-48,2.2324784179373315e-48,2.3705413981678227e-48,2.5171425959940107e-48,2.6728100397084523e-48,2.838104412414225e-48,3.013621071493578e-48,3.1999921929667845e-48,3.3978890484640466e-48,3.608024423011954e-48,3.831155182343403e-48,4.068084998976704e-48,4.319667246884155e-48,4.5868080751748453e-48,4.8704696718629195e-48,5.1716737294773886e-48,5.491505124994796e-48,5.831115827349589e-48,6.191729046597145e-48,6.574643639671921e-48,6.981238788611817e-48,7.412978968096727e-48,7.871419220194102e-48,8.35821075531111e-48,8.87510689952512e-48,9.423969409714339e-48,1.0006775179235856e-47,1.0625623358300429e-47,1.1282742914694056e-47,1.1980500662075268e-47,1.2721409784765616e-47,1.3508138889739634e-47,1.434352161841478e-47,1.523056685286234e-47,1.6172469553202328e-47,1.717262226521127e-47,1.8234627339597407e-47,1.9362309906949282e-47,2.0559731655092773e-47,2.183120545848265e-47,2.3181310912315933e-47,2.461491082731991e-47,2.613716874462936e-47,2.775356753382975e-47,2.946992914116305e-47,3.1292435559016624e-47,3.3227651092226165e-47,3.528254600139583e-47,3.7464521608386387e-47,3.978143695439956e-47,4.224163710668161e-47,4.485398321578772e-47,4.762788443168401e-47,5.057333179362859e-47,5.37009342159012e-47,5.7021956699001965e-47,6.05483609039358e-47,6.42928482357284e-47,6.826890559136128e-47,7.249085393687925e-47,7.697389988866202e-47,8.173419048462267e-47,8.678887134261594e-47,9.215614841554294e-47,9.785535356556132e-47,1.0390701419359513e-46,1.1033292717495074e-46,1.1715623736730546e-46,1.2440152097388195e-46,1.3209487406202915e-46,1.4026400655604938e-46,1.4893834204283315e-46,1.5814912374974912e-46,1.6792952707651433e-46,1.783147790863868e-46,1.893422853870069e-46,2.010517648579569e-46,2.1348539271024132e-46,2.2668795239298086e-46,2.4070699689448682e-46,2.5559302001863844e-46,2.71399638253488e-46,2.881837838871887e-46,3.0600591006671817e-46,3.249302085380911e-46,3.450248408522223e-46,3.663621838692308e-46,3.8901909044549174e-46,4.1307716624229324e-46,4.38623063653143e-46,4.6574879390845845e-46,4.945520584816294e-46,5.2513660099029445e-46,5.576125808601548e-46,5.9209697009724315e-46,6.28713974597819e-46,6.675954815132284e-46,7.088815342811038e-46,7.527208370339782e-46,7.992712902018497e-46,8.487005592381286e-46,9.011866785171505e-46,9.569186925784653e-46,1.0160973370276612e-45,1.0789357615459684e-45,1.1456602976128773e-45,1.2165112737071177e-45,1.2917438809218091e-45,1.3716290921120249e-45,1.4564546378849588e-45,1.5465260429481516e-45,1.6421677265487107e-45,1.7437241709667146e-45,1.8515611622716434e-45,1.9660671078110602e-45,2.0876544351762524e-45,2.2167610776843892e-45,2.3538520517269676e-45,2.4994211316660534e-45,2.6539926283113058e-45,2.8181232773829154e-45,2.992404244762566e-45,3.177463255755384e-45,3.373966856031029e-45,3.5826228123886365e-45,3.8041826619916285e-45,4.0394444192546027e-45,4.2892554501324997e-45,4.554515524163726e-45,4.836180055260474e-45,5.135263542919645e-45,5.452843226247275e-45,5.79006296395956e-45,6.148137354333752e-45,6.528356109948771e-45,6.932088702973349e-45,7.360789297731569e-45,7.816001988312575e-45,8.299366360090422e-45,8.812623395182915e-45,9.357621743122941e-45,9.936324379325297e-45,1.0550815675332403e-44,1.1203308906305942e-44,1.1896154222802447e-44,1.2631847115546622e-44,1.3413037403692673e-44,1.424253877894332e-44,1.5123338939907736e-44,1.605861035319587e-44,1.7051721680010114e-44,1.8106249909392796e-44,1.9225993241827112e-44,2.0414984769597306e-44,2.1677507003185061e-44,2.3018107296016367e-44,2.444161422312417e-44,2.595315497271238e-44,2.755817381326459e-44,2.9262451702716094e-44,3.1072127110311106e-44,3.299371812614397e-44,3.5034145938023543e-44,3.720075976020836e-44,3.950136330381486e-44,4.1944242884227963e-44,4.45381972667555e-44,4.729256935803115e-44,5.021727985729686e-44,5.332286298878851e-44,5.662050444391006e-44,6.012208166986179e-44,6.384020664984227e-44,6.77882713288958e-44,7.198049584902595e-44,7.643197976731932e-44,8.115875644153234e-44,8.617785077905725e-44,9.150734055724208e-44,9.716642153593708e-44,1.0317547659680308e-43,1.0955614915838474e-43,1.1633142113138517e-43,1.235256956949381e-43,1.3116488519198189e-43,1.3927650446036543e-43,1.4788976993580492e-43,1.5703570488365497e-43,1.667472511385387e-43,1.7705938775426438e-43,1.8800925699139675e-43,1.996362980962937e-43,2.1198238935338914e-43,2.2509199892244514e-43,2.3901234500399176e-43,2.5379356590986292e-43,2.6948890065142123e-43,2.8615488069585563e-43,3.0385153358124535e-43,3.226425991238147e-43,3.4259575899601252e-43,3.637828805024355e-43,3.862802754315223e-43,4.101689749153867e-43,4.355350212878359e-43,4.624697779916909e-43,4.9107025865167614e-43,5.214394764982031e-43,5.536868154004386e-43,5.879284238452473e-43,6.242876332808697e-43,6.628954023321876e-43,7.0389078848763815e-43,7.474214489565458e-43,7.936441725009238e-43,8.427254441574167e-43,8.948420448831288e-43,9.501816882854732e-43,1.0089436967291378e-42,1.0713397192554663e-42,1.137594493900201e-42,1.2079466571550525e-42,1.2826496034887209e-42,1.3619723980233834e-42,1.446200745653488e-42,1.5356380200979643e-42,1.6306063565918346e-42,1.731447812153049e-42,1.8385255976038135e-42,1.9522253857835143e-42,2.07295670066532e-42,2.201154392380096e-42,2.337280203459668e-42,2.4818244319415897e-42,2.635307697324862e-42,2.798282815737473e-42,2.97133679107012e-42,3.1550929292471125e-42,3.350213083249931e-42,3.5574000369800497e-42,3.777400036546089e-42,4.011005478093894e-42,4.2590577618593604e-42,4.522450322724185e-42,4.802131848190571e-42,5.0991096953643483e-42,5.4144535192542446e-42,5.749299125456516e-42,6.104852561099707e-42,6.482394458786544e-42,6.883284649177096e-42,7.30896705882744e-42,7.760974910925872e-42,8.240936247656959e-42,8.750579794084587e-42,9.291741184675891e-42,9.866369574889717e-42,1.0476534661646954e-41,1.1124434137965934e-41,1.1812401608614125e-41,1.2542914995288264e-41,1.3318605461593962e-41,1.414226688997196e-41,1.5016865944707076e-41,1.5945552757260052e-41,1.6931672272414584e-41,1.797877629610112e-41,1.9090636288293041e-41,2.0271256947055195e-41,2.1524890632667407e-41,2.2856052683777615e-41,2.426953768075376e-41,2.5770436714804053e-41,2.7364155725074963e-41,2.9056434969765595e-41,3.0853369701392163e-41,3.276143212067504e-41,3.4787494688114525e-41,3.6938854877222133e-41,3.9223261458569017e-41,4.16489424093089e-41,4.422463454871542e-41,4.695961500646218e-41,4.986373463699251e-41,5.294745350033749e-41,5.622187853716541e-41,5.969880357376558e-41,6.339075180106539e-41,6.731102088066104e-41,7.147373084035012e-41,7.589387493165472e-41,8.058737363252145e-41,8.557113198971587e-41,9.086310050742835e-41,9.64823398014081e-41,1.0244908925151063e-40,1.087848398998991e-40,1.1551241185750398e-40,1.226560364975101e-40,1.3024144373192728e-40,1.3829595468561487e-40,1.468485801015229e-40,1.55930124831599e-40,1.655732987897391e-40,1.7581283476636021e-40,1.866856135290036e-40,1.982307966595021e-40,2.1048996760618265e-40,2.23507281459175e-40,2.373296239882374e-40,2.5200678051594265e-40,2.6759161523451014e-40,2.841402616120607e-40,3.0171232457420502e-40,3.2037109518909456e-40,3.4018377862921894e-40,3.6122173623106784e-40,3.835607425244284e-40,4.0728125815712044e-40,4.32468719698249e-40,4.59213847363652e-40,4.876129717720745e-40,5.1776838090883996e-40,5.4978868854676135e-40,5.837892254513433e-40,6.1989245477919125e-40,6.582284131658635e-40,6.989351790919731e-40,7.421593702142792e-40,7.880566714533272e-40,8.367923957394742e-40,8.885420794370748e-40,9.434921145915444e-40,1.0018404202763223e-39,1.0637971554578788e-39,1.1295854759465194e-39,1.1994423381590141e-39,1.2736193525884861e-39,1.3523836900552109e-39,1.4360190440025957e-39,1.524826652304526e-39,1.6191263822640903e-39,1.719257882711776e-39,1.825581807353011e-39,1.938481113770735e-39,2.058362442762448e-39,2.1856575829792418e-39,2.3208250261423514e-39,2.4643516184391277e-39,2.6167543140458775e-39,2.778582037093645e-39,2.950417658783775e-39,3.132880096773486e-39,3.3266265443941835e-39,3.5323548377307306e-39,3.7508059690877684e-39,3.9827667558965866e-39,4.229072674674541e-39,4.490610870244749e-39,4.768323351055318e-39,5.063210382105515e-39,5.376334087701358e-39,5.7088222770154766e-39,6.061872506230687e-39,6.43675639189913e-39,6.834824191051401e-39,7.25750966455293e-39,7.706335241225492e-39,8.182917501331562e-39,8.68897299917491e-39,9.22632444578676e-39,9.796907273967188e-39,1.0402776609329036e-38,1.1046114672450384e-38,1.1729238638797591e-38,1.2454608984730532e-38,1.3224838349646708e-38,1.4042700946188738e-38,1.4911142552404878e-38,1.583329112185367e-38,1.681246804987042e-38,1.7852200136570568e-38,1.8956232289679925e-38,2.012854101294757e-38,2.1373348728717636e-38,2.2695138986254835e-38,2.4098672610594453e-38,2.558900485008407e-38,2.7171503584382437e-38,2.885186865849113e-38,3.06361524124588e-38,3.2530781480706466e-38,3.4542579939480273e-38,3.6678793885817e-38,3.894711753653996e-38,4.13557209412926e-38,4.3913279409431973e-38,4.662900475676236e-38,4.951267848465751e-38,5.257468701108343e-38,5.582605908040011e-38,5.92785054867053e-38,6.294446125377862e-38,6.683713042355566e-38,7.097053361446029e-38,7.535955852087519e-38,8.002001353564599e-38,8.496868468876873e-38,9.022339610731504e-38,9.580307421439302e-38,1.017278158983475e-37,1.0801896089774137e-37,1.146991686628487e-37,1.21792499970474e-37,1.2932450358606892e-37,1.3732230828530465e-37,1.4581472056650016e-37,1.548323284058999e-37,1.6440761142946228e-37,1.7457505789799063e-37,1.853712889269877e-37,1.9683519038860795e-37,2.09008052970809e-37,2.2193372089819875e-37,2.3565874985016963e-37,2.502325746451969e-37,2.657076872951928e-37,2.8213982607125807e-37,2.995881762618463e-37,3.181155833463655e-37,3.377887793520537e-37,3.586786232094708e-37,3.808603559722048e-37,4.0441387182018274e-37,4.294240058225683e-37,4.559808394967515e-37,4.841800252640536e-37,5.1412313097066675e-37,5.4591800571476686e-37,5.796791682975189e-37,6.155282196969108e-37,6.5359428105029275e-37,6.940144587229542e-37,7.369343381378909e-37,7.825085081455373e-37,8.309011178219644e-37,8.822864677010956e-37,9.368496375705685e-37,9.947871530921396e-37,1.0563076936480345e-36,1.12163284396245e-36,1.190997892205513e-36,1.2646526774544617e-36,1.3428624895641592e-36,1.425909024688211e-36,1.5140913998924914e-36,1.6077272305150347e-36,1.7071537741533152e-36,1.8127291453988323e-36,1.924833605694403e-36,2.0438709329602325e-36,2.1702698759214297e-36,2.3044856983753556e-36,2.4470018189612877e-36,2.5983315523377428e-36,2.759019958039791e-36,2.929645803674762e-36,3.1108236495276694e-36,3.3032060620850997e-36,3.507485964449512e-36,3.724399132109973e-36,3.954726843059156e-36,4.199298691800524e-36,4.4589955773827424e-36,4.734752876222316e-36,5.027563811142779e-36,5.338483028765717e-36,5.668630398137503e-36,6.019195044274118e-36,6.391439631152994e-36,6.786704909576309e-36,7.206414546288725e-36,7.652080251740985e-36,8.125307224969287e-36,8.62779993520288e-36,9.161368261022184e-36,9.727934009180273e-36,1.032953783656862e-35,1.0968346600255389e-35,1.1646661162073643e-35,1.2366924675866655e-35,1.3131731387240504e-35,1.394383597752065e-35,1.4806163485564533e-35,1.572181984316781e-35,1.6694103062013046e-35,1.772651511244866e-35,1.8822774536889648e-35,1.9986829843265536e-35,2.1222873726757966e-35,2.253535817105468e-35,2.3929010483506604e-35,2.5408850321945537e-35,2.698020777449349e-35,2.864874255747481e-35,3.0420464400588795e-35,3.2301754692757144e-35,3.429938946661341e-35,3.642056380442452e-35,3.867291775334174e-35,4.106456384332586e-35,4.3604116306866854e-35,4.630072210572772e-35,4.916409387648159e-35,5.220454491349101e-35,5.543302631533616e-35,5.886116642849336e-35,6.250131273031928e-35,6.636657630220031e-35,7.047087905306045e-35,7.482900386329492e-35,7.945664782976526e-35,8.437047880361073e-35,8.958819542452194e-35,9.512859086772008e-35,1.010116205332249e-34,1.0725847392122328e-34,1.1389165095243534e-34,1.2093504300833189e-34,1.284140189831391e-34,1.3635551665753443e-34,1.4478813972315706e-34,1.537422608074148e-34,1.6325013086962877e-34,1.7334599536255302e-34,1.8406621757768525e-34,1.9544940961857534e-34,2.0753657147394315e-34,2.2037123869145862e-34,2.3399963918409643e-34,2.4847085973388228e-34,2.638370227926892e-34,2.8015347421690736e-34,2.974789826122132e-34,3.1587595100634155e-34,3.3541064161238074e-34,3.5615341449204513e-34,3.7817898097857662e-34,4.01566672772104e-34,4.264007276766005e-34,4.527705930076435e-34,4.807712477638576e-34,5.105035447222855e-34,5.420745736900334e-34,5.7559804722039215e-34,6.111947101827618e-34,6.4899277466165055e-34,6.891283817510261e-34,7.317460919073668e-34,7.769994056276799e-34,8.250513163276126e-34,8.760748974113202e-34,9.302539256473388e-34,9.87783543095833e-34,1.0488709599714752e-33,1.1137362009733003e-33,1.1826128977697655e-33,1.2557491304935592e-33,1.3334083212766586e-33,1.4158701830444597e-33,1.5034317269859326e-33,1.596408332328654e-33,1.6951348822720435e-33,1.7999669701698406e-33,1.9112821803064037e-33,2.0294814478802152e-33,2.1549905030923372e-33,2.2882614045419267e-33,2.4297741674511256e-33,2.580038492584099e-33,2.7395956020877925e-33,2.9090201888661297e-33,3.088922486509171e-33,3.279950467233152e-33,3.482792175746907e-33,3.698178207452068e-33,3.926884339901955e-33,4.169734326997506e-33,4.4276028659849584e-33,4.7014187479408255e-33,4.99216820309201e-33,5.300898453020961e-33,5.628721482548515e-33,5.976818044882075e-33,6.346441914453102e-33,6.738924402762417e-33,7.155679153499387e-33,7.59820723420447e-33,8.068102542814947e-33,8.567057548568337e-33,9.096869387938327e-33,9.65944633756295e-33,1.0256814687476326e-32,1.0891126039401013e-32,1.1564665056389376e-32,1.227985769172412e-32,1.3039279926717898e-32,1.384566704888574e-32,1.470192350390401e-32,1.5611133356846104e-32,1.6576571400369586e-32,1.7601714949865815e-32,1.8690256368058237e-32,1.9846116364156293e-32,2.107345811546759e-32,2.2376702262334665e-32,2.376054283039801e-32,2.522996413754288e-32,2.6790258746417966e-32,2.844704652718986e-32,3.0206294899197457e-32,3.2074340324405843e-32,3.40579111300779e-32,3.616415174287104e-32,3.84006484216342e-32,4.077545658160346e-32,4.329712980840068e-32,4.597475066634198e-32,4.881796341202756e-32,5.183700873102998e-32,5.504276062279997e-32,5.844676556665006e-32,6.206128410986544e-32,6.589933502775687e-32,6.997474221469216e-32,7.430218447500504e-32,7.889724839312816e-32,8.377648447336087e-32,8.895746675148274e-32,9.445885609293587e-32,1.0030046740553254e-31,1.0650334100881253e-31,1.1308981841707644e-31,1.2008362280906192e-31,1.2750994447411403e-31,1.353955315425821e-31,1.4376878632724744e-31,1.5265986762280589e-31,1.6210079933181889e-31,1.7212558580844165e-31,1.8277033433532293e-31,1.9407338517483175e-31,2.060754496630552e-31,2.1881975684390906e-31,2.323522091715276e-31,2.4672154784177502e-31,2.6197952834829166e-31,2.7818110689548915e-31,2.9538463833983492e-31,3.136520863724001e-31,3.330492466997481e-31,3.5364598402694325e-31,3.755164836962768e-31,3.987395188881172e-31,4.233987343461623e-31,4.495829476491712e-31,4.7738646911416405e-31,5.06909441483363e-31,5.382582006184288e-31,5.715456585010196e-31,6.068917099192177e-31,6.444236643047127e-31,6.84276704275932e-31,7.265943725389463e-31,7.715290888996609e-31,8.192426992495403e-31,8.69907058502312e-31,9.23704649581081e-31,9.808292406854033e-31,1.0414865832058086e-30,1.1058951527991864e-30,1.1742869362946537e-30,1.2469082672638314e-30,1.3240207132652123e-30,1.4059020179584716e-30,1.4928471014817189e-30,1.585169122694984e-30,1.683200607116155e-30,1.787294644611435e-30,1.8978261611548207e-30,2.0151932692366613e-30,2.1398187017854045e-30,2.2721513347675053e-30,2.412667803949111e-30,2.5618742216429722e-30,2.72030799962435e-30,2.8885397847808216e-30,3.0671755144688835e-30,3.256858598979424e-30,3.4582722389731954e-30,3.672141886233678e-30,3.899237856599682e-30,4.1403781044892754e-30,4.396431169008938e-30,4.668319302257844e-30,4.957021791096498e-30,5.263578484342651e-30,5.589093538099226e-30,5.934739392704945e-30,6.301760995630534e-30,6.69148028553107e-30,7.105300953606139e-30,7.544713499414998e-30,8.011300599359559e-30,8.506742807169048e-30,9.032824606919167e-30,9.591440840388744e-30,1.0184603531901803e-29,1.0814449135237656e-29,1.1483246228712575e-29,1.2193403686145487e-29,1.2947479353142394e-29,1.374818925994597e-29,1.4598417404034483e-29,1.5501226137706982e-29,1.645986719806535e-29,1.747779341912244e-29,1.8558671168223554e-29,1.970639355156887e-29,2.0925094436407728e-29,2.2219163340403747e-29,2.3593261241801505e-29,2.5052337367342937e-29,2.6601647018394697e-29,2.824677049949495e-29,2.999363321750062e-29,3.184852702371865e-29,3.3818132875903115e-29,3.5909544901732164e-29,3.813029595044029e-29,4.0488384724642686e-29,4.299230459006635e-29,4.565107416695853e-29,4.8474269813363394e-29,5.147206011724983e-29,5.465524252174298e-29,5.803528221536027e-29,6.162435342733257e-29,6.54353832767559e-29,6.94820983334956e-29,7.377907405855158e-29,7.83417873019706e-29,8.318667204736674e-29,8.833117860386218e-29,9.379383645861928e-29,9.959432101635563e-29,1.0575352446623774e-28,1.122936310313785e-28,1.1923819687198172e-28,1.2661223492994696e-28,1.3444230502048705e-28,1.4275660949530042e-28,1.5158509482181567e-28,1.6095955944439098e-28,1.709137683159863e-28,1.8148357451278167e-28,1.9270704836981512e-28,2.046246146027451e-28,2.172791979096106e-28,2.307163775770425e-28,2.4498455164776546e-28,2.601351112407078e-28,2.762226256515577e-28,2.933050389004957e-28,3.114438784350016e-28,3.307044767394646e-28,3.511562066497565e-28,3.728727312203671e-28,3.9593226904403776e-28,4.204178759795528e-28,4.464177443023706e-28,4.740255203556312e-28,5.033406418456116e-28,5.344686959965367e-28,5.675217998546941e-28,6.026190041116991e-28,6.398867219013487e-28,6.794591841145485e-28,7.214789228721998e-28,7.660972848975051e-28,8.134749766366872e-28,8.637826430915974e-28,9.17201482448964e-28,9.73923898720165e-28,1.0341541947421116e-27,1.098109308035373e-27,1.1660195921698392e-27,1.238129646452393e-27,1.3146991969248396e-27,1.396004031845376e-27,1.4823369950228689e-27,1.5740090405819174e-27,1.6713503529576073e-27,1.7747115361540758e-27,1.8844648765501815e-27,2.0010056838008767e-27,2.124753714663762e-27,2.2561546848793163e-27,2.395681874550061e-27,2.5438378328012085e-27,2.7011561878624056e-27,2.868203569090321e-27,3.0455816478545344e-27,3.233929304637948e-27,3.4339249301568955e-27,3.646288868789378e-27,3.8717860131117825e-27,4.111228558889569e-27,4.3654789304444706e-27,4.635452886935112e-27,4.922122820738783e-27,5.2265212598150724e-27,5.549744586665693e-27,5.892956987285872e-27,6.257394644330011e-27,6.644370189595355e-27,7.055277431859992e-27,7.491596377104436e-27,7.95489855919787e-27,8.446852700250085e-27,8.969230721015773e-27,9.523914123000145e-27,1.011290076525194e-26,1.0738312060253728e-26,1.1402400614826673e-26,1.2107558343571606e-26,1.2856325084068163e-26,1.3651397744863796e-26,1.4495640019200603e-26,1.5392092699467967e-26,1.6343984629530035e-26,1.7354744334378092e-26,1.842801236899394e-26,1.9567654430903793e-26,2.0777775283649464e-26,2.206273354132892e-26,2.3427157367455182e-26,2.4875961144679414e-26,2.641436317541669e-26,2.804790447713175e-26,2.978246873997907e-26,3.1624303518682803e-26,3.3580042734982363e-26,3.565673057169699e-26,3.786184684446767e-26,4.0203333942563206e-26,4.268962543578162e-26,4.532967645048851e-26,4.813299592419664e-26,5.110968085486477e-26,5.427045266826967e-26,5.762669583444595e-26,6.119049887227718e-26,6.497469788993292e-26,6.899292281796925e-26,7.32596465016234e-26,7.779023682911649e-26,8.260101208372581e-26,8.770929971898516e-26,9.313349876872082e-26,9.889314611670258e-26,1.0500898686460763e-25,1.1150304905173758e-25,1.183987229956278e-25,1.2572084553930727e-25,1.3349578950865998e-25,1.4175155870208163e-25,1.5051788875458288e-25,1.5982635423961746e-25,1.6971048239440645e-25,1.8020587387835719e-25,1.9135033099954644e-25,2.0318399387109657e-25,2.157494849878674e-25,2.290920627441784e-25,2.4325978444552925e-25,2.583036794014317e-25,2.7427793272281807e-25,2.912400804859992e-25,3.0925121696615e-25,3.283762146867063e-25,3.4868395807727267e-25,3.702475915815933e-25,3.931447831092676e-25,4.174580037800737e-25,4.432748249685147e-25,4.7068823371843665e-25,4.997969676638368e-25,5.307058706621332e-25,5.635262704208554e-25,5.983763794778343e-25,6.353817209792142e-25,6.746755807887965e-25,7.1639948755717195e-25,7.607037224796816e-25,8.077478605793444e-25,8.577013454642725e-25,9.107440996297955e-25,9.670671725033893e-25,1.026873428566656e-24,1.0903782780327352e-24,1.157810452710985e-24,1.2294128298533204e-24,1.3054433069496934e-24,1.3861757306234251e-24,1.4719008829721983e-24,1.5629275289071528e-24,1.6595835282625877e-24,1.76221701668171e-24,1.8711976595318764e-24,1.9869179833654892e-24,2.1097947897224432e-24,2.2402706563661624e-24,2.3788155313605493e-24,2.525928425729142e-24,2.682139210793415e-24,2.848010526663624e-24,3.024139808756411e-24,3.2111614396379727e-24,3.4097490339436865e-24,3.620617864603712e-24,3.8445274391136134e-24,4.082284235128813e-24,4.3347446052364486e-24,4.602817861366642e-24,4.887469549952945e-24,5.189724929637938e-24,5.5106726640506236e-24,5.8514687429557424e-24,6.2133406458986435e-24,6.5975917633416926e-24,7.00560609121707e-24,7.438853215804158e-24,7.898893606886587e-24,8.387384238253048e-24,8.906084555786792e-24,9.456862814638876e-24,1.004170280831108e-23,1.0662711013884278e-23,1.1322124179129261e-23,1.2022317378826205e-23,1.276581256931094e-23,1.3555287672058473e-23,1.4393586219022674e-23,1.5283727594471394e-23,1.6228917910207158e-23,1.7232561553342177e-23,1.8298273448222545e-23,1.9429892076664928e-23,2.0631493303403484e-23,2.1907405056541393e-23,2.3262222915885724e-23,2.4700826665309558e-23,2.6228397868761503e-23,2.7850438533225157e-23,2.9572790925852253e-23,3.1401658616643975e-23,3.3343628822474444e-23,3.540569613293155e-23,3.75952877034353e-23,3.992029000637065e-23,4.2389077236590174e-23,4.5010541473593025e-23,4.779412470902392e-23,5.0749852854844334e-23,5.388837185467036e-23,5.722098602833745e-23,6.075969878780852e-23,6.451725587107044e-23,6.850719124974343e-23,7.274387587574647e-23,7.724256944260326e-23,8.201947534781558e-23,8.709179905427358e-23,9.24778100609001e-23,9.819690770574644e-23,1.0426969103853974e-22,1.107180330143571e-22,1.1756515927564546e-22,1.2483573180635904e-22,1.3255593775950786e-22,1.4075358377806693e-22,1.494581961489558e-22,1.5870112715084238e-22,1.685156679787991e-22,1.7893716865255624e-22,1.9000316534021986e-22,2.0175351555607163e-22,2.1423054171938806e-22,2.274791835913643e-22,2.415471601391674e-22,2.564851414101502e-22,2.7234693103525814e-22,2.891896600189911e-22,3.070739925138822e-22,3.260643443206906e-22,3.462291149012716e-22,3.676409337398136e-22,3.903769219397488e-22,4.1451896999860447e-22,4.401540327612464e-22,4.673744426139098e-22,4.962782420470315e-22,5.269695367847697e-22,5.59558870753064e-22,5.94163624236838e-22,6.309084366603641e-22,6.699256555136417e-22,7.113558130416652e-22,7.553481324135794e-22,8.020610651947595e-22,8.516628620577857e-22,9.043321787878165e-22,9.602587197651408e-22,1.019643921242505e-21,1.0827016768783667e-21,1.149659108139204e-21,1.2207573823457964e-21,1.2962525813097961e-21,1.3764166236893986e-21,1.461538244386131e-21,1.5519240345104545e-21,1.6478995456617698e-21,1.7498104625004275e-21,1.8580238478349443e-21,1.972929464709126e-21,2.0949411802507826e-21,2.2244984563386764e-21,2.3620679324565824e-21,2.50814510643576e-21,2.663256119139276e-21,2.82795964951658e-21,3.0028489268536838e-21,3.1885538674668836e-21,3.3857433435356467e-21,3.595127592246957e-21,3.817460773928044e-21,4.053543688381659e-21,4.304226659207185e-21,4.5704125964968535e-21,4.853060248937852e-21,5.153187657034129e-21,5.4718758198851626e-21,5.810272588729369e-21,6.169596801275388e-21,6.551142671712732e-21,6.956284452213064e-21,7.386481382712757e-21,7.843282946804179e-21,8.328334452666951e-21,8.843382959139733e-21,9.390283568278119e-21,9.971006107062352e-21,1.0587642222321736e-20,1.1242412914429174e-20,1.193767653690207e-20,1.2675937290721449e-20,1.345985424396509e-20,1.429225090924017e-20,1.5176125413413227e-20,1.6114661296265304e-20,1.7111238976968117e-20,1.8169447929679432e-20,1.9293099612113923e-20,2.0486241193653867e-20,2.1753170132447112e-20,2.309844965399387e-20,2.452692518697593e-20,2.60437418155246e-20,2.7654362810788934e-20,2.936458930854829e-20,3.118058120374785e-20,3.310887933721185e-20,3.5156429054449465e-20,3.7330605221403474e-20,3.96392387872483e-20,4.2090644989907454e-20,4.469365330588421e-20,4.745763925227432e-20,5.0392558155510796e-20,5.3508981008464793e-20,5.681813254505622e-20,6.033193166950572e-20,6.406303438585329e-20,6.802487938236133e-20,7.223173643499288e-20,7.669875780429744e-20,8.144203281083501e-20,8.647864578570062e-20,9.182673760488191e-20,9.75055710290748e-20,1.035356000843103e-19,1.0993854373327776e-19,1.1673746410270225e-19,1.2395684954852363e-19,1.316227028580763e-19,1.397626349069442e-19,1.484059641078351e-19,1.5758382200965325e-19,1.6732926542713678e-19,1.776773955049131e-19,1.886654841448301e-19,2.0033310825190974e-19,2.1272229228247597e-19,2.2587765960786687e-19,2.3984659323892974e-19,2.5467940649017196e-19,2.7042952419829697e-19,2.871536751478134e-19,3.049120963968172e-19,3.2376875023885586e-19,3.43791554582368e-19,3.6505262757744687e-19,3.876285473710521e-19,4.116006279262154e-19,4.370552118987371e-19,4.640839816262156e-19,4.927842893495662e-19,5.232595078563672e-19,5.556194028090492e-19,5.899805280989233e-19,6.264666456500821e-19,6.652091711851564e-19,7.063476475585681e-19,7.50030247362069e-19,7.964143066129003e-19,8.456668914467352e-19,8.979653998566182e-19,9.534982006451629e-19,1.0124653118914594e-18,1.0750791213762846e-18,1.1415651515605802e-18,1.2121628718723886e-18,1.2871265612280322e-18,1.3667262238940357e-18,1.451248561988706e-18,1.540998008125995e-18,1.6362978219211367e-18,1.7374912543072805e-18,1.8449427838569752e-18,1.959039429561311e-18,2.0801921447952354e-18,2.208837297489614e-18,2.3454382418415898e-18,2.490486987224008e-18,2.6445059703051757e-18,2.8080499367615023e-18,2.981707939360913e-18,3.1661054596134652e-18,3.36190666063116e-18,3.56981677931095e-18,3.790584666457557e-18,4.025005483994749e-18,4.273923568980204e-18,4.538235474739124e-18,4.818893200070709e-18,5.116907618158009e-18,5.433352117531774e-18,5.769366468201772e-18,6.126160926881312e-18,6.505020596090603e-18,6.907310052840056e-18,7.334478263564405e-18,7.788063803011158e-18,8.269700395880052e-18,8.781122801174e-18,9.32417306045489e-18,9.900807132510337e-18,1.0513101938327234e-17,1.1163262841747434e-17,1.1853631592748294e-17,1.258669476195958e-17,1.3365092696795076e-17,1.4191629031458032e-17,1.5069280785072174e-17,1.6001209084311526e-17,1.6990770549148377e-17,1.8041529382729834e-17,1.915727020892638e-17,2.0342011703793144e-17,2.1600021070039736e-17,2.2935829406644424e-17,2.4354248028968585e-17,2.586038579815617e-17,2.7459667522232878e-17,2.915785349518407e-17,3.09610602443844e-17,3.2875782561110945e-17,3.490891689348634e-17,3.7067786186111223e-17,3.936016625584957e-17,4.1794313798772025e-17,4.437899612912878e-17,4.7123522757469164e-17,5.0037778921641146e-17,5.3132261191448845e-17,5.641811527520396e-17,5.990717616434702e-17,6.361201076072518e-17,6.75459631400692e-17,7.17232026146935e-17,7.61587747685367e-17,8.086865564835304e-17,8.586980930625014e-17,9.118024890082221e-17,9.681910157695918e-17,1.0280667735800634e-16,1.0916454229842238e-16,1.1591559616040741e-16,1.2308415489428508e-16,1.306960382197038e-16,1.3877866262312361e-16,1.4736114010653353e-16,1.564743830430839e-16,1.6615121551728676e-16,1.7642649155082935e-16,1.8733722063981038e-16,1.9892270105557324e-16,2.1122466138923825e-16,2.2428741084977513e-16,2.381579988569387e-16,2.5288638450390713e-16,2.6852561649996724e-16,2.851320242413977e-16,3.0276542069872267e-16,3.214893178511172e-16,3.413711554438843e-16,3.6248254389298253e-16,3.848995222114658e-16,4.0870283188686195e-16,4.339782076959009e-16,4.608166865041014e-16,4.89314935162408e-16,5.195755986819332e-16,5.517076699408072e-16,5.858268822548127e-16,6.220561262257112e-16,6.605258923687122e-16,7.013747411132729e-16,7.447498018701624e-16,7.90807302962262e-16,8.397131343278661e-16,8.916434450231397e-16,9.46785277675928e-16,1.0053372421760073e-15,1.0675102310283469e-15,1.1335281789458318e-15,1.2036288694174911e-15,1.2780647911572105e-15,1.3571040475177872e-15,1.4410313221457137e-15,1.5301489043549603e-15,1.624777777912808e-15,1.7252587771594432e-15,1.8319538146252447e-15,1.9452471845676225e-15,2.0655469471223048e-15,2.193286398054667e-15,2.3289256294046255e-15,2.4729531866465084e-15,2.6258878283324413e-15,2.7882803945573224e-15,2.9607157909749347e-15,3.143815095511594e-15,3.3382377953649984e-15,3.544684162345751e-15,3.763897775116702e-15,3.996668197415159e-15,4.24383382190404e-15,4.50628488989524e-15,4.7849666978212134e-15,5.080883002004413e-15,5.395099633987413e-15,5.72874833944583e-15,6.0830308545104286e-15,6.459223234181271e-15,6.858680448423382e-15,7.282841262498676e-15,7.733233419111347e-15,8.211479141032762e-15,8.719300974024406e-15,9.258527991104615e-15,9.831102380504628e-15,1.04390864410437e-14,1.1084670010118236e-14,1.17701783510599e-14,1.249808052827018e-14,1.3270998300298461e-14,1.409171556289383e-14,1.4963188376042333e-14,1.588855561110619e-14,1.687115025641236e-14,1.791451142201258e-14,1.9022397086851836e-14,2.0198797634259946e-14,2.1447950224516386e-14,2.277435405625759e-14,2.4182786571692993e-14,2.5678320664000248e-14,2.7266342948874564e-14,2.895257316604546e-14,3.0743084780638403e-14,3.2644326858586337e-14,3.466314729487886e-14,3.680681747831587e-14,3.908305848159967e-14,4.1500068871100803e-14,4.4066554236458826e-14,4.6791758546382034e-14,4.9685497443578946e-14,5.27581935987481e-14,5.602091425095892e-14,5.948541106964233e-14,6.316416248176e-14,6.707041861661261e-14,7.121824903016261e-14,7.562259338077232e-14,8.029931523887327e-14,8.526525922438706e-14,9.053831167768634e-14,9.613746508262996e-14,1.0208288647370156e-13,1.0839599007365048e-13,1.1509951442325087e-13,1.2221760428099595e-13,1.2977589758770229e-13,1.3780161780926548e-13,1.463236719901543e-13,1.5537275487082663e-13,1.6498145944406214e-13,1.7518439434842986e-13,1.8601830852170113e-13,1.9752222356320318e-13,2.0973757428183654e-13,2.22708357936003e-13,2.3648129270295455e-13,2.5110598594836157e-13,2.666351129021495e-13,2.831246063841838e-13,3.006338582631309e-13,3.1922593337413834e-13,3.3896779666579193e-13,3.599305543945211e-13,3.8218971023515166e-13,4.0582543723010253e-13,4.3092286655669273e-13,4.575723941526841e-13,4.85870006304419e-13,5.159176253703026e-13,5.478234768848092e-13,5.817024793652984e-13,6.176766582255927e-13,6.558755852872113e-13,6.96436845471226e-13,7.395065323517409e-13,7.852397743558054e-13,8.338012935051078e-13,8.853659987118411e-13,9.401196157657636e-13,9.98259356281448e-13,1.0599946280152333e-12,1.1255477891101934e-12,1.1951549489858762e-12,1.2690668187573371e-12,1.3475496142466343e-12,1.4308860148391207e-12,1.5193761816382793e-12,1.6133388385861485e-12,1.713112420443471e-12,1.8190562917641985e-12,1.9315520412550277e-12,2.0510048561818128e-12,2.177844981773381e-12,2.3125292708790323e-12,2.455542829461496e-12,2.6074007638518486e-12,2.7686500360599116e-12,2.9398714338223107e-12,3.1216816624842123e-12,3.314735566248968e-12,3.519728486796489e-12,3.737398767765285e-12,3.9685304141191734e-12,4.213955915976777e-12,4.474559247075106e-12,4.751279048666631e-12,5.045112010318108e-12,5.35711645978759e-12,5.6884161749101955e-12,6.040204431221723e-12,6.4137482998994265e-12,6.810393211499669e-12,7.2315678019307744e-12,7.678789058114614e-12,8.153667781871317e-12,8.657914391706132e-12,9.19334508339617e-12,9.761888371565332e-12,1.0365592035809829e-11,1.1006630496391831e-11,1.1687312646068112e-11,1.2410090166261222e-11,1.31775663575276e-11,1.399250551612692e-11,1.4857842890466575e-11,1.5776695253280973e-11,1.6752372127626058e-11,1.7788387707121247e-11,1.8888473513374825e-11,2.005659183618047e-11,2.1296950004895818e-11,2.26140155424036e-11,2.4012532256239158e-11,2.5497537324838947e-11,2.7074379440453906e-11,2.874873807407204e-11,3.052664393174162e-11,3.241450067597145e-11,3.441910799044762e-11,3.654768607113787e-11,3.8807901631999227e-11,4.120789551895245e-11,4.375631203158738e-11,4.646233005820588e-11,4.933569613634905e-11,5.238675955788142e-11,5.5626509645078656e-11,5.906661533197445e-11,6.271946719353648e-11,6.6598222074046e-11,7.071685047543013e-11,7.509018687622316e-11,7.973398316240326e-11,8.466496536254394e-11,8.990089389163707e-11,9.546062752056513e-11,1.0136419130163748e-10,1.0763284869483428e-10,1.1428917815455395e-10,1.2135715445270213e-10,1.2886223503104454e-10,1.3683145169383437e-10,1.4529350797098639e-10,1.5427888250246662e-10,1.638199388162821e-10,1.739510418954535e-10,1.8470868195383841e-10,1.9613160586660349e-10,2.0826095672875023e-10,2.211404220443368e-10,2.348163910801652e-10,2.493381219506673e-10,2.64757919035821e-10,2.811313213710942e-10,2.9851730268798687e-10,3.169784838256495e-10,3.365813582786714e-10,3.5739653169338536e-10,3.79498976175341e-10,4.029683003238753e-10,4.2788903596642923e-10,4.5435094262532923e-10,4.824493308137069e-10,5.122854053249564e-10,5.439666297522402e-10,5.776071135509172e-10,6.133280230380702e-10,6.512580178094119e-10,6.915337141455199e-10,7.3430017707643e-10,7.797114428769773e-10,8.279310738747334e-10,8.791327475689297e-10,9.335008821821675e-10,9.91231300898119e-10,1.052531937177577e-9,1.1176235836933601e-9,1.1867406875814796e-9,1.2601321948730233e-9,1.3380624471481035e-9,1.4208121336415724e-9,1.5086793022296583e-9,1.6019804329390467e-9,1.7010515778448095e-9,1.8062495714630387e-9,1.9179533159975984e-9,2.0365651460703865e-9,2.162512277850393e-9,2.2962483478012374e-9,2.438255046589231e-9,2.589043854037202e-9,2.7491578813727994e-9,2.919173827406944e-9,3.099704055687921e-9,3.2913988001128933e-9,3.4949485069407077e-9,3.7110863216417802e-9,3.940590729541846e-9,4.184288359771031e-9,4.443056962617096e-9,4.71782857100713e-9,5.009592857504241e-9,5.319400698910998e-9,5.648367961318054e-9,5.997679519231529e-9,6.368593523254649e-9,6.762445931695588e-9,7.180655322422828e-9,7.624728002300061e-9,8.096263432603059e-9,8.596959989960583e-9,9.128621083568233e-9,9.69316165070914e-9,1.0292615053976099e-8,1.0929140405038587e-8,1.1605030341332336e-8,1.2322719283682687e-8,1.3084792204602823e-8,1.3893993938849851e-8,1.4753239069772094e-8,1.566562242705774e-8,1.6634430233694077e-8,1.7663151942288075e-8,1.8755492803378672e-8,1.9915387211011135e-8,2.1147012873639643e-8,2.2454805861400954e-8,2.38434765839542e-8,2.5318026756438178e-8,2.6883767414651638e-8,2.8546338044346263e-8,3.0311726893529496e-8,3.2186292540941003e-8,3.4176786798385006e-8,3.6290379029411467e-8,3.8534681971933535e-8,4.091777915779311e-8,4.3448254028030154e-8,4.613522084872753e-8,4.8988357538779446e-8,5.201794052782754e-8,5.5234881769910634e-8,5.865076804614959e-8,6.227790269802175e-8,6.612934994154612e-8,7.021898192198373e-8,7.456152867854146e-8,7.917263119903525e-8,8.406889775561252e-8,8.92679637244357e-8,9.478855510479434e-8,1.0065055596641927e-7,1.06875080067941e-7,1.1348454690443691e-7,1.205027624579863e-7,1.279550049420707e-7,1.3586811584866076e-7,1.4427059662592018e-7,1.531927113347405e-7,1.626665956538561e-7,1.7272637262615323e-7,1.8340827556306882e-7,1.9475077854975592e-7,2.0679473502106924e-7,2.1958352490749435e-7,2.331632108810102e-7,2.47582704263652e-7,2.628939411963436e-7,2.791520697025248e-7,2.96415648320339e-7,3.1474685701881516e-7,3.342117211577218e-7,3.5488034929775215e-7,3.768271857175851e-7,4.001312785473377e-7,4.2487656448417346e-7,4.5115217111555425e-7,4.790527379390446e-7,5.086787572349175e-7,5.401369360193164e-7,5.735405803816581e-7,6.090100035905809e-7,6.466729594383562e-7,6.866651023845838e-7,7.291304761565143e-7,7.74222032565843e-7,8.221021824106481e-7,8.729433804467108e-7,9.269287465351715e-7,9.842527252037673e-7,1.045121785997263e-6,1.109755167139595e-6,1.178385665186254e-6,1.2512604735110737e-6,1.3286420726474906e-6,1.4108091756911048e-6,1.4980577321686956e-6,1.5907019939894232e-6,1.6890756473175678e-6,1.7935330144435782e-6,1.904450329982335e-6,2.0222270959952396e-6,2.147287520917005e-6,2.2800820474698803e-6,2.421088975068551e-6,2.57081618255929e-6,2.7298029574983257e-6,2.8986219385581242e-6,3.077881178057743e-6,3.2682263320460817e-6,3.4703429858262692e-6,3.6849591232972716e-6,3.912847749006783e-6,4.154829672359526e-6,4.411776464009115e-6,4.684613595081816e-6,4.974323770539078e-6,5.281950468684912e-6,5.608601699566751e-6,5.955453995806779e-6,6.323756650237917e-6,6.714836215607589e-6,7.1301012825562905e-6,7.571047553080306e-6,8.039263227752158e-6,8.536434726102497e-6,9.064352760767088e-6,9.62491878727679e-6,1.022015185272136e-5,1.0852195867954604e-5,1.1523327329533944e-5,1.223596351920722e-5,1.2992671210479731e-5,1.379617591362075e-5,1.4649371692408245e-5,1.5555331587969728e-5,1.6517318687263856e-5,1.7538797876069214e-5,1.8623448318812234e-5,1.9775176710184096e-5,2.099813134627628e-5,2.229671706591621e-5,2.3675611116018693e-5,2.5139779998096976e-5,2.6694497356611244e-5,2.8345362973584756e-5,3.0098322937902492e-5,3.1959691061938085e-5,3.393617162264743e-5,3.603488350903797e-5,3.826338586298784e-5,4.0629705305768156e-5,4.3142364848332916e-5,4.581041458950553e-5,4.8643464312630826e-5,5.165171809809916e-5,5.484601107641e-5,5.8237848454152176e-5,6.183944695346473e-5,6.566377881423486e-5,6.972461851752025e-5,7.403659239848421e-5,7.861523132753936e-5,8.34770266494472e-5,8.863948958185465e-5,9.412121428720951e-5,9.994194484522723e-5,0.00010612264636713046,0.00011268558050780067,0.00011965438564782165,0.00012705416203421448,0.00013491156218652412,0.0001432548868938821,0.00015211418714880778,0.00016152137238489346,0.00017151032540822341,0.0001821170244364878,0.00019337967268535109,0.0002053388359688198,0.00021803758880921872,0.00023152166958303414,0.0002458396452614289,0.00026104308633879183,0.00027718675257937866,0.00029432879025106793,0.00031253094155662747,0.00033185876701682156,0.00035238188160633906,0.0003741742054930543,0.0003973142302837395,0.00042188530173518517,0.00044797591994900297,0.0004756800581313512,0.0005050975010656916,0.0005363342045176889,0.0005695026768667593,0.0006047223843388262,0.0006421201812998529,0.0006818307671599829,0.0007239971715339658,0.0007687712694053194,0.0008163143281497465,0.0008667975883880777,0.0009204028807608535,0.0009773232808460476,0.0010377638045788124,0.001101942146678012,0.001170089464739207,0.0012424512118182356,0.0013192880205041954,0.0014008766416660776,0.0014875109412542322,0.0015795029587469434,0.0016771840310544342,0.001780905985928369,0.0018910424091752866,0.0020079899902382082,0.0021321699509929386,0.002264029562905301,0.002404043758013802,0.002552716839540166,0.002710584298289018,0.0028782147413790194,0.0030562119402523726,0.003245217005339204,0.0034459106952095396,0.003659015868529982,0.0038853000876565356,0.004125578383241218,0.004380716189810006,0.004651632462885492,0.004939302988881503,0.005244763899691255,0.005569115404627903,0.00591352575315918,0.006279235442709116,0.006667561686682488,0.007079903158804942,0.007517745030866959,0.007982664322016603,0.008476335578868144,0.009000536906885173,0.009557156374762059,0.010148198814871025,0.010775793044268747,0.011442199532271033,0.012149818542212736,0.012901198776717835,0.013699046557618246,0.014546235573585628,0.015445817230585142,0.016401031642431518,0.017415319301033155,0.018492333468358185,0.01963595333475587,0.020850297991027007,0.022139741264567935,0.02350892747302497,0.024962788152200825,0.026506559818463567,0.02814580282963477,0.029886421412290056,0.0317346849276063,0.03369725045235097,0.03578118675634562,0.03799399976276582,0.04034365958298026,0.0428386292233032,0.04548789506705631,0.04830099924173013,0.05128807398782524,0.05445987815316289,0.057827835944110284,0.06140407807329476,0.0652014854520126,0.06923373558470403,0.07351535183259778,0.07806175572396339,0.082889322499382,0.08801544009209886,0.09345857175589295,0.09923832256603675,0.10537551003286959,0.11189223908232022,0.11881198167344395,0.12615966133974035,0.13396174295875307,0.14224632807328336,0.15104325610754576,0.16038421184282642,0.17030283953974928,0.18083486411819671,0.19201821983134978,0.20389318689730687,0.21650253658040006,0.2298916852447638,0.24410885793502554,0.25920526207330385,0.27523527189813574,0.2922566243096452,0.31033062682634915,0.32952237840261833,0.349901003902135,0.37153990307187307,0.394517014913356,0.41891509840340474,0.44482203057547576,0.4723311230352191,0.5015414580502822,0.5325582454248875,0.5654932014445763,0.6004649512560002,0.6375994561310546,0.6770304671542714,0.7189000069675653,0.7633588813074803,0.810567222177393,0.8606950646110689,0.9139229591049619,0.9704426219251127,1.030457625630924,1.0941841323029422,1.161851672115583,1.2337039700590677,1.3099998237882566,1.3910140357602154,1.4770384030178882,1.568382768184884,1.6653761354568442,1.7683678556089761,1.8777288842879083,1.9938531181199874,2.117158813448411,2.2480900928092042,2.3871185445720675,2.534744921507683,2.6915009443993787,2.8579512171954025,3.0346952605998005,3.2223696714264918,3.421650415494098,3.6332552623200813,3.8579463703834747,4.096533032267801,4.349874589571642,4.618883528085785,4.904528764385155,5.207839135673184,5.529907105448334,5.8718926983398685,6.235027678285327,6.620619985098708,7.030058445408965,7.464817774936691,7.926463890126181,8.416659548264342,8.93717033640099,9.489871030641483,10.076752348716536,10.699928120150691,11.361642899854907,12.064280052565948,12.810370337251078,13.602601022397414,14.44382556501736,15.337073888231982,16.285563294450142,17.292710053450463,18.362141707104108,19.497710135057517,20.70350542843511,21.983870621532226,23.343417334558964,24.78704238377693,26.31994541885536,27.94764765097275,29.676011739118987,31.511262906224427,33.46001136117202,35.529276107452084,37.72651022421378,40.05962771077059,42.53703199124834,45.167646182043825,47.96094523111148,50.9269900448372,54.07646372541775,57.42071004926539,60.971774325029344,64.74244677839661,68.74630861993536,72.99778096190825,77.51217676024427,82.30575596875367,87.39578410424042,92.80059443345228,98.53965400585315,104.63363377005503,111.10448302645439,117.97550848423717,125.27145820749948,133.01861075284145,141.24486981949,149.97986475286143,159.2550572635575,169.10385474617584,179.56173060608617,190.6663520275655,202.45771564348763,214.9782915952224,228.27317650161916,242.39025588803875,257.380376660471,273.2975302459544,290.1990470589348,308.14580299398983,327.20243868866737,347.43759234617664,368.9241469565151,391.7394928064701,415.96580622400586,441.6903455610167,469.0057654805172,498.0104506802695,528.8088702548537,561.5119539725224,596.237491822115,633.1105582691173,672.2639627489563,713.8387280201125,757.984598099987,804.8605776130025,854.635504493567,907.4886581066587,963.6104049763625,1023.2028844481447,1086.4807367544822,1153.6718761061961,1225.0183115940088,1300.7770188570482,1381.2208656578787,1466.6395946977893,1557.34086721225,1653.6513711053562,1755.9179976145392,1864.5090907436595,1979.8157739646842,2102.2533589664727,2232.2628415246936,2370.312489880707,2516.8995313504283,2672.551943238008,2837.830354504841,3013.3300650433353,3199.683189828454,3397.5609356698724,3607.6760187651016,3830.7852317611714,4067.692169570891,4319.250123761546,4586.365155941036,4869.999361211181,5171.174333442505,5490.974844851717,5830.552753135019,6191.131150229916,6574.008767648585,6980.564654249896,7412.263143298527,7870.659126701488,8357.403655418839,8874.249886220136,9423.059396205668,10005.808887836101,10624.59730862072,11281.65341110797,11979.3437804079,12720.18135815997,13506.834493647948,14342.13655466214,15229.096132725399,16170.907879440087,17170.964012986355,18232.866536215854,19360.440210348028,20557.74633099762,21829.097356151953,23179.07243878499,24612.533920053585,26134.644842481117,27750.8875462075,29467.0834152856,31289.413845146177,33224.44250675212,35279.1389876329,37460.9038949496,39777.595511006766,42237.558097218855,44849.651948476574,47623.285306163,50568.448244763655,53695.74865412347,57016.45044695158,60542.51412918963,64286.63987937009,68262.3132921278,72483.85395062377,76966.46700282942,81726.29792743865,86780.49068666389,92147.24947537069,97845.90428895889,103896.98054615308,110322.2730174695,117144.92432563503,124389.50830070132,132082.1184900822,140250.46214231043,148923.96000302376,158133.85228262655,167913.3111773003,178297.5603486422,189324.0017922731,201032.35055237025,213464.77776734007,226666.06256185286,240683.7533323238,255568.33900675914,271373.4308958109,288155.9557900314,305976.36099882575,324898.8320696113,344991.5239713651,366326.8065752373,388981.52531640104,413037.27797599253,438580.7085800539,465703.8194740439,494504.30269694794,525085.8918485291,557558.7357170773,592039.7950133889,628653.263639933,667531.0160125328,708813.0820457244,752648.1515125975,799194.1095957187,848618.6055580889,901099.6565823702,956826.288953294,1.0159992188926605e6,1.0788315754991593e6,1.1455496683969018e6,1.216393802857575e6,1.2916191453321315e6,1.371496642509483e6,1.4563139972124654e6,1.5463767046460593e6,1.6420091527302235e6,1.7435557904805231e6,1.8513823686448243e6,1.9658772570645818e6,2.0874528435055963e6,2.216547018996543e6,2.353624755025173e6,2.4991797782729315e6,2.653736348920045e6,2.817851148926194e6,2.9921152870879658e6,3.177156428094916e6,3.373641053252665e6,3.582276861015713e6,3.8038153159762067e6,4.0390543554896116e6,4.2888412636860125e6,4.55407572321866e6,4.835713055741555e6,5.134767662787623e6,5.45231667944083e6,5.7895038539620545e6,6.14754366734234e6,6.527725707621336e6,6.9314193147263685e6,7.360078512561907e6,7.815247246113834e6,8.298564942431534e6,8.811772415517332e6,9.356718136391526e6,9.935364890916618e6,1.054979684936057e7,1.120222707316293e7,1.1895005485940717e7,1.2630627337445183e7,1.3411742190953717e7,1.4241163466468973e7,1.5121878574096562e7,1.6057059674101148e7,1.7050075102395013e7,1.8104501502613027e7,1.922413670846964e7,2.041301342279938e7,2.1675413742548093e7,2.3015884582033172e7,2.4439254050021976e7,2.5950648839617852e7,2.755551269358614e7,2.9259626011631206e7,3.1069126670243204e7,3.2990532130106565e7,3.503076291069336e7,3.719716751659593e7,3.949754890537462e7,4.194019259225662e7,4.453389649290916e7,4.7288002611779206e7,5.02124306901301e7,5.33177139349736e7,5.661503695758055e7,6.0116276058222756e7,6.3834042002237655e7,6.778172544149302e7,7.19735451448441e7,7.642459921130663e7,8.115091945039801e7,8.616952912552172e7,9.149850426836652e7,9.71570387851719e7,1.0316551358935e8,1.0954557000947572e8,1.1632018773703575e8,1.2351376759469971e8,1.3115221942321639e8,1.3926305540349895e8,1.4787548915001294e8,1.570205409323962e8,1.6673114940428296e8,1.7704229024177256e8,1.8799110211883882e8,1.996170204734354e8,2.1196191954607773e8,2.2507026320251572e8,2.3898926508370975e8,2.5376905865996018e8,2.6946287780166787e8,2.8612724851713103e8,3.038221925479527e8,3.226114435553974e8,3.4256267667632663e8,3.6374775227556133e8,3.862429747725822e8,4.101293674748491e8,4.3549296440759367e8,4.6242512019123995e8,4.9102283908252573e8,5.2138912436451197e8,5.536333493438634e8,5.878716512917118e8,6.24227349746942e8,6.628313906886059e8,7.038228181772197e8,7.473492751637733e8,7.935675352701901e8,8.426440674566841e8,8.94755635609751e8,9.500899352104751e8,1.0088462693762152e9,1.0712362667107321e9,1.137484643548207e9,1.207830013336715e9,1.2825257460762696e9,1.361840880907093e9,1.4460610951349354e9,1.535489733183824e9,1.630448899182173e9,1.7312806171176906e9,1.8383480627395632e9,1.9520368716451588e9,2.07275652826253e9,2.200941840731755e9,2.337054506997129e9,2.4815847777511926e9,2.6350532222199383e9,2.7980126031494665e9,2.9710498677471414e9,3.154788261748513e9,3.349889574224143e9,3.5570565212120104e9,3.777035276760514e9,4.010618160498757e9,4.2586464914138165e9,4.522013618114143e9,4.801668136493061e9,5.098617306382215e9,5.413930679500575e9,5.748743951766677e9,6.104263053848789e9,6.481768494686964e9,6.882619973630823e9,7.308261277805767e9,7.760225482346223e9,8.240140472226886e9,8.749734805579702e9,9.290843939615934e9,9.86541684157693e9,1.047552300852589e10,1.112335992126352e10,1.1811260959216114e10,1.2541703804802856e10,1.3317319367554323e10,1.4140901260123854e10,1.5015415860323845e10,1.594401299542695e10,1.6930037287216478e10,1.7977040198646927e10,1.90887928255061e10,2.0269299479149952e10,2.1522812109234425e10,2.2853845618390026e10,2.4267194124001728e10,2.5767948225663548e10,2.7361513340504246e10,2.905362917242165e10,3.0850390385352753e10,3.2758268555037567e10,3.47841354783458e10,3.693528792411853e10,3.921947391467605e10,4.164492063264885e10,4.422036405365059e10,4.69550804115198e10,4.985891960946629e10,5.2942340697457924e10,5.621644954363507e10,5.969303883543255e10,6.338463055449061e10,6.730452107833517e10,7.146682907128107e10,7.588654633704474e10,8.05795918162349e10,8.55628689232014e10,9.085432642876653e10,9.647302310811746e10,1.0243919638671802e11,1.0877433523147855e11,1.1550125754973416e11,1.2264419237479575e11,1.3022886713410144e11,1.3828260031427866e11,1.4683439985689124e11,1.5591506763925876e11,1.6555731041668317e11,1.757958576256575e11,1.866675864723781e11,1.9821165475708585e11,2.104696419126622e11,2.234856987654532e11,2.37306706557751e11,2.5198244580467776e11,2.675657755936847e11,2.841128239724419e11,3.016831901108852e11,3.2034015896553876e11,3.401509292193222e11,3.611868553178025e11,3.8352370447369385e11,4.072419295652446e11,4.3242695891147906e11,4.5916950396796265e11,4.8756588605139526e11,5.177183832697819e11,5.4973559890780365e11,5.837328525941873e11,6.198325956600359e11,6.581648521840997e11,6.988676873136072e11,7.420877045473857e11,7.879805737724624e11,8.36711591955946e11,8.884562785117762e11,9.434010074866426e11,1.0017436788421757e12,1.0636944312511355e12,1.129476398975051e12,1.1993265155493237e12,1.2734963671706257e12,1.3522530988601968e12,1.435880376666998e12,1.5246794093762385e12,1.618970033403419e12,1.719091864781306e12,1.825405522389231e12,1.938293926830363e12,2.0581636796354456e12,2.1854465277604072e12,2.320600918652895e12,2.464113651488537e12,2.6165016305246035e12,2.778313726886039e12,2.950132755489921e12,3.1325775742285405e12,3.3263053129722544e12,3.532013740420208e12,3.7504437773241924e12,3.982382165137409e12,4.2286642997004653e12,4.490177240170563e12,4.767862904031883e12,5.062721459694482e12,5.375814928901683e12,5.708271011920548e12,6.061287149293617e12,6.436134834780894e12,6.834164195027084e12,7.25680885244848e12,7.705591088855324e12,8.182127328407251e12,8.688133959651123e12,9.22543351761022e12,9.795961248192355e12,1.0401772078559613e13,1.1045048018566658e13,1.1728106019925006e13,1.2453406321401547e13,1.3223561310107865e13,1.4041344930798232e13,1.490970267706531e13,1.5831762200421344e13,1.6810844575475045e13,1.78504762617808e13,1.895440180544258e13,2.0126597326223086e13,2.137128483873408e13,2.269294745929197e13,2.4096345553208586e13,2.5586533880678773e13,2.716887980301838e13,2.884908261483054e13,3.063319407172806e13,3.252764018755161e13,3.4539244379589863e13,3.667525204516933e13,3.894335665813034e13,4.135172747918735e13,4.3909038979976484e13,4.662450208677451e13,4.9507897356418e13,5.256961020392082e13,5.5820668308667516e13,5.927278133391773e13,6.293838310267765e13,6.683067638185369e13,7.09636804359854e13,7.53522815218438e13,8.001228650575889e13,8.496047979680362e13,9.021468380088775e13,9.579382311351184e13,1.0171799268239034e14,1.0800853018544389e14,1.1468809288486442e14,1.2178073923405589e14,1.293120155313912e14,1.373090479328818e14,1.4580064015518784e14,1.548173772208623e14,1.6439173561950994e14,1.7455820028162294e14,1.853533887864309e14,1.9681618325111975e14,2.08987870376473e14,2.219122901533302e14,2.3563599376550038e14,2.5020841125784444e14,2.6568202957345047e14,2.821125816011303e14,2.9955924691418256e14,3.180848649234155e14,3.3775616121218775e14,3.5864398786864606e14,3.8082357868083256e14,4.0437482011378775e14,4.293825390446854e14,4.5593680829231825e14,4.841332710414489e14,5.140734853304897e14,5.458652898433282e14,5.796231923227498e14,6.154687820045161e14,6.53531167557548e14,6.93947442107634e14,7.368631770195154e14,7.82432946215943e14,8.308208829221258e14,8.822012708409141e14,9.367591718879234e14,9.946910927476881e14,1.0562056926515568e15,1.1215245349266808e15,1.1908828850229105e15,1.2645305578920795e15,1.3427328177716485e15,1.4257713336136505e15,1.5139451936000565e15,1.6075719823988245e15,1.7069889250405505e15,1.8125541015358552e15,1.9246477366081362e15,2.0436735691872785e15,2.1700603065967745e15,2.3042631686721105e15,2.4467655273717855e15,2.5980806477868135e15,2.758753536819237e15,2.9293629061884325e15,3.11052325683525e15,3.3028870922319925e15,3.507147268569814e15,3.7240394902887115e15,3.9543449599381255e15,4.1988931919128995e15,4.458565000198729e15,4.73429567088869e15,5.027078330897131e15,5.337967525004978e15,5.668083014119765e15,6.018613808431378e15,6.39082244998952e15,6.786049560128663e15,7.205718668118781e15,7.651341338434232e15,8.12452261510739e15,8.626966802777519e15,9.160483605256244e15,9.726994643720216e15,1.0328540378007164e16,1.0967287455945766e16,1.1645536517189096e16,1.2365730479660396e16,1.3130463338456014e16,1.3942489508898982e16,1.4804733747393798e16,1.5720301685816416e16,1.6692491017380604e16,1.772480337427197e16,1.8820956939828884e16,1.998489984069824e16,2.122082436719989e16,2.253318207312121e16,2.392669980932625e16,2.540639674893099e16,2.6977602465363464e16,2.864597612842552e16,3.0417526887494044e16,3.229863551528007e16,3.4296077390098948e16,3.64170468994333e16,3.866918335268221e16,4.1060598496432024e16,4.359990573134904e16,4.629625113593282e16,4.91593464088673e16,5.219950384862491e16,5.54276734963082e16,5.885548257551643e16,6.249527737128662e16,6.636016769895302e16,7.0464074123086136e16,7.482177809659323e16,7.944897520056435e16,8.436233167662902e16,8.95795444554332e16,9.511940489745813e16,1.0100186647575381e17,1.0724811664437446e17,1.1388065315136058e17,1.209233650711455e17,1.2840161884823829e17,1.3634234966210406e17,1.447741584423061e17,1.5372741488335664e17,1.6323436683030086e17,1.7332925642903136e17,1.840484434596654e17,1.954305362972297e17,2.0751653097132902e17,2.203499588256786e17,2.3397704330931888e17,2.4844686646427053e17,2.638115457092632e17,2.8012642155629654e17,2.974502569361225e17,3.1584544885061574e17,3.353782531143328e17,3.5611902299475866e17,3.781424626107386e17,4.015278960018331e17,4.263595528376908e17,4.527268717965416e17,4.807248227054696e17,5.104542486028118e17,5.420222289546745e17,5.75542465333841e17,6.111356909501504e17,6.48930105507468e17,6.890618369534566e17,7.316754317853284e17,7.769243756774872e17,8.249716463063521e17,8.759903003634501e17,9.301640968711489e17,9.876881590459904e17,1.048769677093646e18,1.1136286544667246e18,1.182498700273387e18,1.2556278706907423e18,1.333279562413782e18,1.415733461357756e18,1.5032865500311283e18,1.5962541772073175e18,1.694971193748157e18,1.799793158669932e18,1.9110976197961341e18,2.0292854736093878e18,2.1547824092007206e18,2.2880404415167887e18,2.429539539427677e18,2.5797893544790026e18,2.7393310565552563e18,2.9087392830658176e18,3.0886242086744443e18,3.279633743026662e18,3.4824558643912407e18,3.697821097620737e18,3.926505145356501e18,4.1693316819548175e18,4.427175320197854e18,4.700964761474507e18,4.991686140777817e18,5.300386578566456e18,5.628177952284021e18,5.976240901119883e18,6.345829078436378e18,6.738273667178076e18,7.154988174527571e18,7.597473523076499e18,8.067323456849749e18,8.566230281653445e18,9.095990960423336e18,9.658513585526985e18,1.0255824251332407e19,1.089007435179572e19,1.1563548329353599e19,1.227867190302942e19,1.3038020805390019e19,1.384433005982045e19,1.4700503831533396e19,1.5609625887793177e19,1.6574970705031178e19,1.760001526285662e19,1.8688451567444464e19,1.984419994940548e19,2.1071423184036213e19,2.2374541484805034e19,2.3758248424080486e19,2.52275278384431e19,2.6787671779472003e19,2.8444299574658826e19,3.0203378067105894e19,3.2071243106905326e19,3.4054622371609027e19,3.616065959798087e19,3.839694031231345e19,4.077151915198123e19,4.329294887664002e19,4.597031117356068e19,4.881324936805759e19,5.183200315682355e19,5.503744548927763e19,5.844112172975955e19,6.20552912416321e19,6.589297154306346e19,6.996798519353477e19,7.429500957994131e19,7.888962978161635e19,8.376839470467916e19,8.894887668789866e19,9.444973479475138e19,1.0029078201965108e20,1.0649305665040405e20,1.1307889804393115e20,1.2007202708817412e20,1.2749763164000856e20,1.3538245724688205e20,1.4375490347894863e20,1.52645126218654e20,1.6208514627621673e20,1.7210896472220195e20,1.827526853526049e20,1.9405464472752017e20,2.0605555025179453e20,2.1879862679498208e20,2.3232977237871447e20,2.4669772349221703e20,2.6195423063143416e20,2.7815424469399686e20,2.9535611490141045e20,3.13621798961308e20,3.33017086226771e20,3.536118346564609e20,3.754802224290711e20,3.987010151183262e20,4.23357849390888e20,4.495395342489514e20,4.773403709025813e20,5.068604924238549e20,5.382062244062403e20,5.714904679281833e20,6.068331062003031e20,6.443614363607973e20,6.842106279743749e20,7.265242098860756e20,7.714545871835811e20,8.191635901299314e20,8.698230570438948e20,9.236154532273273e20,9.807345281688459e20,1.0413860133908277e21,1.1057883634533701e21,1.1741735427840572e21,1.2467878611676234e21,1.3238928609046527e21,1.4057662588348434e21,1.4927029466176894e21,1.5850160528734985e21,1.6830380710102048e21,1.7871220567983897e21,1.8976429000077672e21,2.0149986746854634e21,2.1396120729393053e21,2.271931927390591e21,2.412434827779695e21,2.561626837547382e21,2.7200453165743473e21,2.88826085664446e21,3.066879336602596e21,3.25654410460955e21,3.457938295353748e21,3.671787290566309e21,3.8988613317013993e21,4.1399782941925295e21,4.3960066332766755e21,4.6678685119970416e21,4.956543122650463e21,5.263070213643016e21,5.588553834456318e21,5.934166312213827e21,6.301152474169381e21,6.690834131327006e21,7.104614839340426e21,7.543984953840913e21,8.010526998401116e21,8.505921364469735e21,9.031952363806241e21,9.590514655216387e21,1.0183620068735428e22,1.0813404851839187e22,1.1482137363781213e22,1.2192226245770943e22,1.294622909641906e22,1.3746861683698242e22,1.4597007726597535e22,1.5499729281703693e22,1.645827777211843e22,1.747610569843679e22,1.8556879073965427e22,1.9704490628972236e22,2.0923073831524566e22,2.221701777541788e22,2.359098298881585e22,2.5049918220544384e22,2.6599078264498138e22,2.8244042886361437e22,2.999073692081094e22,3.1845451611589877e22,3.381486727131356e22,3.590607734262478e22,3.8126613947358875e22,4.048447501574611e22,4.29881530933616e22,4.564666592958289e22,4.84695889577239e22,5.146708978383819e22,5.464996480840861e22,5.802967811283137e22,6.161840275074971e22,6.542906459296824e22,6.947538888386219e22,7.377194967697373e22,7.833422232784488e22,8.317863923316542e22,8.832264901698913e22,9.37847793772021e22,9.958470381859375e22,1.0574331251290193e23,1.1228278754104605e23,1.1922668278856428e23,1.2660000878200944e23,1.3442932277188342e23,1.427428243865581e23,1.5157045720171963e23,1.6094401659115354e23,1.708972642473472e23,1.8146604978437412e23,1.9268843986106314e23,2.046048552895082e23,2.1725821662278113e23,2.3069409874620576e23,2.4496089502901698e23,2.6010999162762068e23,2.7619595256829266e23,2.9327671627592155e23,3.114138042566743e23,3.3067254268618644e23,3.51122297701433e23,3.728367252437228e23,3.958940363527272e23,4.203772788670402e23,4.4637463654594886e23,4.7397974668975095e23,5.032920374026592e23,5.3441708571299374e23,5.674669978406066e23,6.0256081298113185e23,6.39824932061457e23,6.793935730106415e23,7.214092541861596e23,7.660233076966061e23,8.133964244698086e23,8.636992330294864e23,9.17112914065203e23,9.738298530090832e23,1.0340543329698178e24,1.0980032705196616e24,1.1659069969847154e24,1.2380100880524347e24,1.3145722446845396e24,1.3958692285080612e24,1.4821938550537886e24,1.573857048419424e24,1.67118896115625e24,1.774540163412746e24,1.8842829056184244e24,2.000812459255654e24,2.1245485405488062e24,2.255936822198348e24,2.39545053860513e24,2.543592190366336e24,2.7008953541825407e24,2.867926604694523e24,3.045287555172257e24,3.2336170244059473e24,3.4335933376040696e24,3.6459367695854253e24,3.8714121390655543e24,4.1108315633812463e24,4.365057383575423e24,4.6350052703775157e24,4.921647522267021e24,5.226016567498754e24,5.549208682703769e24,5.892387941459057e24,6.256790407048663e24,6.643728584517184e24,7.054596148051491e24,7.490872960717081e24,7.954130404630033e24,8.446037040762068e24,8.968364618764806e24,9.5229944584585e24,1.0111924225971256e25,1.0737275128934094e25,1.1401299556648319e25,1.210638919274237e25,1.2855083629539808e25,1.365007951516447e25,1.4494240266329888e25,1.539060638179494e25,1.6342406393634706e25,1.735306849576923e25,1.8426232891635166e25,1.9565764905472247e25,2.077576890445118e25,2.20606030817858e25,2.342489515407693e25,2.487355902942421e25,2.64118125063442e25,2.804519606724021e25,2.9779592834116305e25,3.1621249758408953e25,3.3576800121261634e25,3.565328742528085e25,3.785819076382957e25,4.01994517592292e25,4.268550316690116e25,4.5325299248470475e25,4.812834802323251e25,5.110474551414141e25,5.426521211167356e25,5.762113118653644e25,6.118459009030251e25,6.49684236916378e25,6.898626060494205e25,7.3252572277900275e25,7.778272511475474e25,8.259303582302707e25,8.770083018304833e25,9.3124505451965e25,9.888359662699482e25,1.0499884680658882e26,1.1149228190293996e26,1.1838728997492676e26,1.257087054672429e26,1.3348289865911175e26,1.4173787064477898e26,1.505033541878708e26,1.5981092081288594e26,1.696940945195277e26,1.801884725294725e26,1.913318535004644e26,2.031643736695513e26,2.157286514158025e26,2.2906994076322e26,2.432362943767099e26,2.582787366382092e26,2.7425144742632934e26,2.912119572614857e26,3.092213545193606e26,3.283445054590645e26,3.48650287858459e26,3.7021183909819105e26,3.9310681958795534e26,4.174176924838205e26,4.4323202070406395e26,4.7064278231335996e26,4.9974870541122934e26,5.3065462373098834e26,5.634718542299387e26,5.983185980308729e26,6.353203661589491e26,6.746104316074041e26,7.163303093602826e26,7.606302661012193e26,8.076698614440703e26,8.576185226348605e26,9.106561547949173e26,9.669737889032799e26,1.0267742698521945e27,1.090272987054012e27,1.157698650230875e27,1.2292941131815764e27,1.3053172484925178e27,1.3860418763434014e27,1.4717587507528814e27,1.5627766068166202e27,1.6594232727095407e27,1.7620468504576139e27,1.8710169697318997e27,1.9867261191809894e27,2.1095910600968565e27,2.2400543275060175e27,2.3785858240923974e27,2.525684512693191e27,2.68188021346351e27,2.847735512183046e27,3.023847786577802e27,3.2108513579556527e27,3.40941977590522e27,3.620268244287326e27,3.8441561972565925e27,4.0818900345919876e27,4.334326026188031e27,4.6023733961683974e27,4.8869975977297927e27,5.189223790512045e27,5.510140533018712e27,5.850903703387983e27,6.212740662635103e27,6.596954675362205e27,7.004929603857817e27,7.438134892492468e27,7.898130860365021e27,8.386574321260785e27,8.905224551164149e27,9.455949624820819e27,1.0040733144169712e28,1.0661681382882638e28,1.132103087274187e28,1.2021156459181308e28,1.2764579855007291e28,1.355397872310505e28,1.4392196320846068e28,1.5282251740935735e28,1.622735078558187e28,1.7230897513156725e28,1.8296506498936118e28,1.942801585407828e28,2.06295010497367e28,2.190528959609417e28,2.32599766291909e28,2.4698441461690717e28,2.622586515719013e28,2.7847749191379005e28,2.9569935267258453e28,3.139862635578929e28,3.334040903775946e28,3.5402277227334003e28,3.7591657362738207e28,3.991643515481129e28,4.238498398976077e28,4.5006195088434365e28,4.7789509530723674e28,5.07449522604499e28,5.388316819321717e28,5.721546055727497e28,6.075383160549056e28,6.451102584507712e28,6.850057594076161e28,7.273685145675176e28,7.723511061303965e28,8.201155524246526e28,8.708338914649514e28,9.246888005988334e28,9.818742544740639e28,1.0425962236967408e29,1.107073416696254e29,1.1755380674695503e29,1.2482367720416609e29,1.3254313766553733e29,1.4073999208893073e29,1.4944376391010094e29,1.5868580238021914e29,1.6849939547964184e29,1.789198898145631e29,1.899848179284604e29,2.017340334868286e29,2.1420985482213e29,2.2745721735600924e29,2.4152383544771742e29,2.5646037425171256e29,2.7232063220347054e29,2.8916173479069786e29,3.0704434030797713e29,3.2603285833584304e29,3.46195681731238e29,3.676054329649772e29,3.903392256934001e29,4.1447894250637265e29,4.401115298520922e29,4.673293112008172e29,4.9623031957564634e29,5.269186506479094e29,5.5950483766900336e29,5.941062495891743e29,6.308475137970616e29,6.698609650026813e29,7.11287121880736e29,7.552751931907969e29,8.019836151975818e29,8.515806223267722e29,9.042448531118435e29,9.601659936145232e29,1.019545460636145e30,1.082597127180772e30,1.1495480927832273e30,1.2206395014762301e30,1.296127410343244e30,1.3762837117850083e30,1.461397112821707e30,1.5517741749582223e30,1.647740418357516e30,1.7496414942992975e30,1.8578444301471963e30,1.9727389513079733e30,2.0947388849449273e30,2.2242836505007806e30,2.3618398423988202e30,2.5079029106231913e30,2.662998945230896e30,2.827686571223195e30,3.002558960601776e30,3.188245968855749e30,3.38541640357586e30,3.594780433366e30,3.8170921457288014e30,4.053152263138808e30,4.303811027085082e30,4.5699712604713804e30,4.8525916194047163e30,5.152690046083064e30,5.471347435220705e30,5.809711527215359e30,6.16900104208005e30,6.550510069030151e30,6.955612727534568e30,7.385768116619849e30,7.842525570254729e30,8.327530237741433e30,8.84252900921628e30,9.389376807599452e30,9.970043269657188e30,1.058661984024159e31,1.1241327305257735e31,1.1936523790491337e31,1.2674713255108888e31,1.3458554510418144e31,1.429087079637767e31,1.5174659950343945e31,1.6113105204683273e31,1.7109586652141512e31,1.816769342026383e31,1.9291236598715876e31,2.048426296607089e31,2.175106956549735e31,2.309621918185385e31,2.4524556775929935e31,2.6041226935027977e31,2.765169240274322e31,2.9361753754676405e31,3.1177570290949526e31,3.3105682220780044e31,3.515303421900737e31,3.7327000439430494e31,3.9635411075038846e31,4.208658056080485e31,4.468933752062469e31,4.745305656626027e31,5.038769206281999e31,5.350381398240241e31,5.681264597502322e31,6.032610579397042e31,6.405684822117416e31,6.801831064720584e31,7.222476147008585e31,7.66913514872066e31,8.143416846548143e31,8.64702950862817e31,9.181787047384108e31,9.749615552877347e31,1.0352560230199457e32,1.0992792765892788e32,1.167261914993337e32,1.2394487981446772e32,1.3160999288073508e32,1.3974913890751568e32,1.4839163347641657e32,1.575686051301667e32,1.6731310749141776e32,1.7766023831529682e32,1.8864726590453812e32,2.0031376334247467e32,2.1270175102738722e32,2.2585584802162274e32,2.3982343276053955e32,2.5465481370020887e32,2.704034105184373e32,2.871259465217857e32,3.0488265295163554e32,3.23737485925104e32,3.437583567922151e32,3.6501737673907764e32,3.875911165179656e32,4.1156088223993966e32,4.3701300822323834e32,4.6403916795226455e32,4.927367042672382e32,5.23208979973688e32,5.555657501346496e32,5.899235573865768e32,6.2640615170262664e32,6.651449361154507e32,7.062794400047049e32,7.499578216540301e32,7.963374018877164e32,8.45585230708927e32,8.978786889804734e32,9.534061273154095e32,1.0123675444782964e33,1.074975307740977e33,1.1414549177871222e33,1.2120458209206935e33,1.2870022715038946e33,1.3665942477306624e33,1.4511084240342436e33,1.5408492036314973e33,1.6361398149224432e33,1.737323475694676e33,1.8447646293253654e33,1.9588502574335718e33,2.0799912737110563e33,2.208624003951419e33,2.3452117576085382e33,2.4902464965450886e33,2.644250606980849e33,2.807778781023972e33,2.981420014561303e33,3.1657997287040186e33,3.361582022430059e33,3.5694720645361523e33,3.7902186335151057e33,4.0246168145070284e33,4.273510863037109e33,4.537797245856108e33,4.818427869834753e33,5.1164135105423255e33,5.432827452859184e33,5.768809356734782e33,6.125569362015384e33,6.504392447127142e33,6.906643057311568e33,7.333770019085943e33,7.78731175862739e33,8.26890184287696e33,8.780274863322779e33,9.323272683652545e33,9.899851073778968e33,1.0512086754134076e34,1.1162184875601162e34,1.1852486962029707e34,1.258547934393716e34,1.336380211377529e34,1.4190258635017998e34,1.5067825639317276e34,1.5999663948096591e34,1.6989129857201104e34,1.8039787225604512e34,1.9155420311720293e34,2.034004740354557e34,2.159793529173259e34,2.293361463771984e34,2.4351896292270688e34,2.585788862319781e34,2.745701591468817e34,2.915503790449061e34,3.095807052934573e34,3.2872607953369866e34,3.490554595873834e34,3.7064206782921016e34,3.9356365491920874e34,4.179027798451021e34,4.437471072833625e34,4.711897233498554e34,5.003294708775164e34,5.312713054285163e34,5.641266733232512e34,5.9901391304781825e34,6.360586814856343e34,6.75394406508454e34,7.171627675570304e34,7.615142059421455e34,8.086084667042912e34,8.58615173983437e34,9.11714441971332e34,9.68097523646993e34,1.0279674996317798e35,1.0915400096452672e35,1.1590440291966336e35,1.2307226943086816e35,1.3068341772454387e35,1.387652616397146e35,1.4734691036720343e35,1.5645927329514701e35,1.6613517133844508e35,1.7640945515314635e35,1.873191306615814e35,1.9890349234029857e35,2.112042647509542e35,2.2426575282385933e35,2.3813500143549736e35,2.528619648548105e35,2.6849968666851043e35,2.8510449083349265e35,3.0273618454452847e35,3.2145827364782784e35,3.413381913764672e35,3.624475412314425e35,3.8486235488319064e35,4.0866336602254086e35,4.339363011473632e35,4.607721883323063e35,4.892676850938205e35,5.195254265312144e35,5.516543949978707e35,5.857703126339411e35,6.219960581744022e35,6.604621095338138e35,7.013070137617368e35,7.446778860615587e35,7.907309396701993e35,8.396320485069714e35,8.915573446184481e35,9.46693852570957e35,1.0052401630757464e36,1.0674071482732199e36,1.1334187212523176e36,1.2035126425407797e36,1.2779413764712855e36,1.3569730005075237e36,1.4408921708059012e36,1.5300011474902303e36,1.624620883332376e36,1.725092179760292e36,1.8317769143567753e36,1.945059344270303e36,2.0653474902328686e36,2.1930746061691136e36,2.328700739690797e36,2.4727143890965163e36,2.625634262845094e36,2.788011147840258e36,2.960429893255186e36,3.143511517042521e36,3.3379154427175363e36,3.544341874469849e36,3.763534319159655e36,3.9962822642811125e36,4.243424021538746e36,4.505849746279436e36,4.784504643654397e36,5.080392373059508e36,5.394578663116868e36,5.728195150216302e36,6.082443454444575e36,6.458599507581227e36,6.85801814875022e36,7.282138004280936e36,7.732486669353215e36,8.210686210090348e36,8.71845900591869e36,9.257633953234127e36,9.830153052723158e36,1.0438078404061951e37,1.108359963318786e37,1.1769041778896472e37,1.2496873667167484e37,1.326971680338324e37,1.409035481446978e37,1.4961743474964722e37,1.5887021353129286e37,1.6869521115445044e37,1.7912781530213523e37,1.902056021349565e37,2.0196847163295152e37,2.144587913073515e37,2.2772154879993174e37,2.4180451391950617e37,2.567584106992785e37,2.726371000946902e37,2.8949777397983375e37,3.0740116114120574e37,3.2641174601068053e37,3.465980009255654e37,3.680326327523433e37,3.907928447622748e37,4.149606147022272e37,4.406229900621643e37,4.6787240160283405e37,4.968069962729815e37,5.275309907150779e37,5.6015504663286915e37,5.947966693728274e37,6.315806311549243e37,6.706394204773527e37,7.12113719313666e37,7.561529098211733e37,8.029156123857516e37,8.525702569408323e37,9.052956896184093e37,9.61281816917242e37,1.0207302897081082e38,1.0838552295401384e38,1.1508839998639175e38,1.2220580249492622e38,1.2976336594474133e38,1.377883111729347e38,1.4630954243260059e38,1.5535775150020173e38,1.6496552822121407e38,1.7516747789226877e38,1.8600034590252707e38,1.975031500832391e38,2.0971732124221014e38,2.226868523893048e38,2.3645845719048976e38,2.5108173822116868e38,2.6660936562474583e38,2.8309726682000723e38,3.0060482794052596e38,3.191951077316644e38,3.3893506467563013e38,3.59895798162571e38,3.8215280457639014e38,4.0578624921770724e38,4.3088125504325e38,4.5752820926181535e38,4.858230888909627e38,5.158678064470793e38,5.477705770139892e38,5.816463080120974e38,6.1761701307198714e38,6.558122515032537e38,6.96369594941244e38,7.394351228527276e38,7.851639486849929e38,8.337207785535302e38,8.852805044806945e38,9.400288343218785e38,9.981629606481492e38,1.059892270994675e39,1.1254391020327794e39,1.1950395403824134e39,1.2689442729490619e39,1.3474194898479502e39,1.430747843167885e39,1.5192294650276898e39,1.613183048592203e39,1.7129469959416825e39,1.8188806369284673e39,1.9313655234116418e39,2.0508068035307132e39,2.177634680968361e39,2.3123059644585173e39,2.455305713120296e39,2.607148983544142e39,2.7683826849232453e39,2.9395875489111533e39,3.1213802213016876e39,3.314415483064079e39,3.5193886087333484e39,3.737037870650867e39,3.9681471980740505e39,4.2135490007331e39,4.4741271670053225e39,4.75082024750441e39,5.0446248355530967e39,5.356599156713484e39,5.687866880304342e39,6.039621166634458e39,6.413128964528037e39,6.809735574621531e39,7.230869494869014e39,7.678047565706313e39,8.152880433408591e39,8.657078351316906e39,9.192457339829458e39,9.760945727345788e39,1.0364591095720978e40,1.1005567655246882e40,1.1686184075725238e40,1.240889180183488e40,1.317629388274795e40,1.3991154347793682e40,1.4856408161940497e40,1.577517179695593e40,1.675075445631621e40,1.7786669994296814e40,1.8886649572176798e40,2.0054655097136023e40,2.1294893492256877e40,2.2611831849021954e40,2.401021351688612e40,2.549507518787763e40,2.7071765037758033e40,2.874596198908395e40,3.052369616555686e40,3.241137061132347e40,3.441578435346734e40,3.6544156890748017e40,3.880415419679486e40,4.120391633141905e40,4.375208675948508e40,4.645784348294633e40,4.933093209818298e40,5.238170089769247e40,5.562113814258094e40,5.906091164008767e40,6.271341076869834e40,6.659179110222165e40,7.071002179354166e40,7.508293588871883e40,7.972628375267227e40,8.465678979884631e40,8.98922127272216e40,9.545140948760971e40,1.013544031986231e41,1.0762245526696527e41,1.14278141966776e41,1.2134543575486554e41,1.288497916147369e41,1.3681823874034912e41,1.4527947788989826e41,1.5426398476022277e41,1.6380411975418184e41,1.739342445363888e41,1.846908457970721e41,1.961126666698522e41,2.0824084627680455e41,2.2111906790335527e41,2.347937163367876e41,2.49314044934992e41,2.6473235302723244e41,2.811041742859262e41,2.98488476747853e41,3.1694787520525622e41,3.3654885673187267e41,3.573620201560846e41,3.794623303438586e41,4.029293882072377e41,4.2784771741094155e41,4.543070688097919e41,4.824027437133867e41,5.122359371423991e41,5.439141023129183e41,5.775513376614589e41,6.132687978048371e41,6.511951299149302e41,6.914669370801179e41,7.342292703224307e41,7.796361510423946e41,8.27851125773379e41,8.790478552436877e41,9.334107398677944e41,9.91135583919963e41,1.0524303007821797e42,1.117515661806666e42,1.1866260914903682e42,1.26001051182523e42,1.3379332388655318e42,1.4206749347417583e42,1.5085336185494975e42,1.6018257397549562e42,1.7008873179828044e42,1.8060751532918078e42,1.9177681112976606e42,2.0363684877713513e42,2.1623034576282447e42,2.2960266135271843e42,2.4380195996205924e42,2.5887938463409187e42,2.748892412471029e42,2.9188919411335706e42,3.099404736744784e42,3.291080970412858e42,3.4946110217245124e42,3.710727965354985e42,3.940210211456499e42,4.1838843093368207e42,4.4426279245249735e42,4.717372999947328e42,5.009109112600627e42,5.318887037810907e42,5.647822533916536e42,5.997100361007867e42,6.367978548196302e42,6.761792924784951e42,7.179961931659297e42,7.62399173022819e42,8.095481627317631e42,8.596129835554885e42,9.12773958999148e42,9.692225642997275e42,1.029162116081582e43,1.0928085046624799e43,1.1603909716474594e43,1.2321529356113421e43,1.3083528688440158e43,1.3892652283160566e43,1.4751814442179683e43,1.5664109696337748e43,1.6632823951291817e43,1.7661446322694448e43,1.8753681703292201e43,1.9913464107209986e43,2.1144970839487315e43,2.24526375418977e43,2.384117416924514e43,2.531558195368474e43,2.6881171418161356e43,2.8543581503857125e43,3.030879988053264e43,3.218318451291852e43,3.417348656084007e43,3.6286874695545667e43,3.8530960919834917e43,4.0913827984974154e43,4.3444058503153525e43,4.613076586034873e43,4.898362704091918e43,5.201291748217459e43,5.522954808445674e43,5.864510451002194e43,6.227188891229228e43,6.612296424575807e43,7.021220131613302e43,7.455432874023711e43,7.9164985995536e43,8.406077975041787e43,8.925934367811065e43,9.477940196964866e43,1.0064083677468495e44,1.0686475981302785e44,1.1347358841484274e44,1.204911262634157e44,1.27942649131272e44,1.3585499591846457e44,1.4425666532095507e44,1.5317791847722092e44,1.626508879628578e44,1.727096935257066e44,1.833905649783763e44,1.947319726908216e44,2.067747661529406e44,2.195623211062859e44,2.331406957748597e44,2.4755879675763176e44,2.628685551803823e44,2.7912511374125696e44,2.9638702532376133e44,3.147164638925992e44,3.3417944843188977e44,3.5484608073237387e44,3.767907978841239e44,4.000926403840654e44,4.248355368241274e44,4.511086061852872e44,4.790064788263552e44,5.086296373237023e44,5.400847783894538e44,5.7348519717175425e44,6.089511953213615e44,6.466105142941493e44,6.865987954504267e44,7.29060068608057e44,7.741472708091204e44,8.220227971687141e44,8.728590857897597e44,9.268392388506391e44,9.84157682102829e44,1.0450208651536002e45,1.1096480050564452e45,1.1782718758871699e45,1.2511396471496653e45,1.3285137740312874e45,1.4106729427140847e45,1.4979130741468105e45,1.590548389893335e45,1.6889125438959177e45,1.7933598242303516e45,1.9042664291809323e45,2.0220318222316038e45,2.1470801708539624e45,2.2798618742738666e45,2.420855185719569e45,2.5705679349947408e45,2.729539357579929e45,2.898342036851515e45,3.0775839664128096e45,3.267910739965679e45,3.470007876610629e45,3.6846032899498463e45,3.912469909886732e45,4.15442846656571e45,4.411350446478178e45,4.684161231383528e45,4.973843431349634e45,5.281440423918229e45,5.608060112143243e45,5.954878915036582e45,6.323146004794645e45,6.714187806068166e45,7.12941277347871e45,7.570316464592107e45,8.038486926618443e45,8.535610416241207e45,9.06347747317841e45,9.623989369349431e45,1.021916495687707e46,1.0851147939591423e46,1.1522214594222634e46,1.2234781969096986e46,1.299141658986277e46,1.3794843703603505e46,1.464795709463577e46,1.5553829507343037e46,1.6515723713587716e46,1.7537104264566612e46,1.8621649969431878e46,1.9773267145629972e46,2.0996103688677787e46,2.2294564012054556e46,2.367332491102302e46,2.513735240751294e46,2.6691919636741104e46,2.8342625839995746e46,3.0095416531984616e46,3.195660491539654e46,3.3932894619798006e46,3.6031403846769126e46,3.825969100824966e46,4.062578195043093e46,4.3138198861252186e46,4.580599096562685e46,4.863876711894213e46,5.164673041624504e46,5.484071494175534e46,5.823222479107487e46,6.18334755066513e46,6.565743807572507e46,6.971788564923698e46,7.402944314997895e46,7.860763994864303e46,8.346896579752616e46,8.863093022332825e46,9.411212559297323e46,9.993229407961602e46,1.0611239877001175e47,1.1267469916937078e47,1.1964283137567018e47,1.2704189321215456e47,1.3489853462470416e47,1.4324105366962314e47,1.5209949843759146e47,1.6150577528090975e47,1.7149376373381509e47,1.8209943853980246e47,1.933609992254969e47,2.053190076877139e47,2.1801653428934475e47,2.3149931299021145e47,2.458159060716633e47,2.610178790482535e47,2.7715998639643546e47,2.9430036876926036e47,3.1250076240744753e47,3.3182672150098513e47,3.5234785430228517e47,3.741380738412218e47,3.9727586414511546e47,4.218445629225855e47,4.479326617293513e47,4.7563412469715676e47,5.05048726973887e47,5.362824140937108e47,5.694476835718234e47,6.046639900980542e47,6.420581757888208e47,6.817649270471992e47,7.2392725967647814e47,7.686970339945422e47,8.162355018045389e47,8.66713887191645e47,9.2031400323817e47,9.772289068780057e47,1.037663594249177e48,1.1018357390491505e48,1.1699764765520662e48,1.2423312361118708e48,1.3191606251500452e48,1.4007413678114516e48,1.487367301669669e48,1.579350436071313e48,1.6770220759314387e48,1.7807340150279372e48,1.89085980309254e48,2.007796091262409e48,2.1319640607386546e48,2.263810939796847e48,2.403811614614318e48,2.5524703397154347e48,2.7103225541957698e48,2.8779368102672023e48,3.055916821069563e48,3.244903635124889e48,3.44557794526672e48,3.65866254035964e48,3.8849249086410294e48,4.125180002060574e48,4.380293171574563e48,4.651183283967885e48,4.938826031428872e48,5.2442574457978574e48,5.5685776301478425e48,5.912954721135896e48,6.278629096399082e48,6.666917842147248e48,7.079219497044723e48,7.517019089468374e48,7.981893486283542e48,8.475517072403837e48,8.999667781592611e48,9.556233500225052e48,1.0147218867079447e49,1.0774752493646128e49,1.1441094630961294e49,1.2148645310581592e49,1.2899952989018985e49,1.3697723726772546e49,1.4544830935020243e49,1.5444325725071747e49,1.6399447897864545e49,1.74136376130806e49,1.8490547779915006e49,1.9634057214128225e49,2.0848284608766635e49,2.2137603368872968e49,2.350665736362158e49,2.496037765260712e49,2.650400024654048e49,2.814308496631481e49,2.98835354683709e49,3.1731620508493204e49,3.369399652061756e49,3.5777731591977937e49,3.799033092095104e49,4.0339763849280946e49,4.283449256606308e49,4.5483502586861195e49,4.829633511774126e49,5.128312142079768e49,5.445461930493814e49,5.782225187336453e49,6.139814866731908e49,6.519518935426773e49,6.922705011790082e49,7.350825291701845e49,7.805421779072801e49,8.288131839835756e49,8.800694099411012e49,9.344954704888184e49,9.922873974480887e49,1.0536533458201163e50,1.118814343518864e50,1.1880050874695055e50,1.261474788939914e50,1.3394880711500722e50,1.4223259223921185e50,1.5102867080941032e50,1.6036872454729257e50,1.7028639446466335e50,1.8081740203167613e50,1.9199967783844227e50,2.0387349821344724e50,2.1648163029087346e50,2.2986948604928573e50,2.4408528587651568e50,2.5918023224990956e50,2.7520869415741866e50,2.9222840292388096e50,3.103006601477358e50,3.2949055849714837e50,3.498672161608514e50,3.7150402579807167e50,3.944789188842428e50,4.188746464046823e50,4.44779076907102e50,4.7228551298664244e50,5.014930273432057e50,5.325068196215511e50,5.6543859531948665e50,6.004069681287877e50,6.3753788715804425e50,6.769650905763043e50,7.188305873112295e50,7.632851685370107e50,8.104889507940946e50,8.606119526970096e50,9.138347073075934e50,9.703489123790652e50,1.0303581208130783e51,1.0940784738167937e51,1.16173947940031e51,1.2335848390188726e51,1.3098733253368968e51,1.3908797142754657e51,1.476895774700534e51,1.5682313193161776e51,1.6652153205481268e51,1.768197095437026e51,1.8775475638085988e51,1.9936605842530936e51,2.1169543727253508e51,2.247873008875215e51,2.386888035534089e51,2.5345001571181418e51,2.6912410430656974e51,2.857675242804822e51,3.034402219147536e51,3.2220585074356424e51,3.4213200082140394e51,3.6329044216896035e51,3.857573832744557e51,4.096137455814182e51,4.349454549515728e51,4.618437511527085e51,4.904055164860864e51,5.207336247372215e51,5.529373117067344e51,5.8713256865590696e51,6.234425600841305e51,6.619980673428611e51,7.0293795968395e51,7.464096944390725e51,7.925698481315668e51,8.41584680433931e51,8.936307330019948e51,9.488954653427343e51,1.0075779300061228e52,1.0698894895327063e52,1.1360545777392948e52,1.2063115080849403e52,1.280913332028387e52,1.360128750469099e52,1.4442430815542965e52,1.5335592883379822e52,1.6283990699935938e52,1.7291040205102477e52,1.8360368590461195e52,1.9495827363707235e52,2.0701506221010075e52,2.198174777728578e52,2.3341163207429594e52,2.478464885484771e52,2.631740386711217e52,2.7944948922253204e52,2.9673146113139776e52,3.150822006157241e52,3.3456780338126855e52,3.552584526851278e52,3.7722867212182853e52,4.0055759404244345e52,4.253292445735771e52,4.516328462627111e52,4.795631394400154e52,5.092207234541772e52,5.407124190111494e52,5.741516529210894e52,6.096588666391007e52,6.473619500713188e52,6.87396702208912e52,7.299073202489553e52,7.750469189639593e52,8.229780821908318e52,8.738734484253656e52,9.279163326317651e52,9.853013865065774e52,1.0462352995752587e53,1.1109375436467267e53,1.1796411633070332e53,1.2525936152994559e53,1.3300576598144804e53,1.41231230689949e53,1.4996538213974681e53,1.592396790033858e53,1.6908752544951708e53,1.795443914580686e53,1.9064794057603674e53,2.024381655740666e53,2.1495753249245886e53,2.282511335953598e53,2.42366849784129e53,2.573555230547935e53,2.732711396207721e53,2.90171024360476e53,3.0811604729008466e53,3.271708428051972e53,3.4740404248107207e53,3.6888852226984454e53,3.91701664985213e53,4.1592563901989605e53,4.416476942997856e53,4.689604765408232e53,4.979623609403861e53,5.2875780650511664e53,5.614577322914913e53,5.961799169140949e53,6.330494227607656e53,6.721990464423672e53,7.137697970996801e53,7.5791140429027525e53,8.047828572845095e53,8.545529777131505e53,9.074010276293179e53,9.635173551745727e53,1.0231040801750669e54,1.0863758221368342e54,1.1535604732624226e54,1.2249000192732716e54,1.3006514109940052e54,1.3810874898380262e54,1.46649797052803e54,1.5571904845905338e54,1.6534916883834544e54,1.7557484396471415e54,1.86432904681674e54,1.9796245955959055e54,2.1020503575694868e54,2.2320472859289032e54,2.3700836036978552e54,2.516656490178075e54,2.672293871690295e54,2.8375563230595323e54,3.0130390866937455e54,3.19937421652857e54,3.397232854559501e54,3.607327648161432e54,3.830415316902783e54,4.067299378098145e54,4.3188330409178504e54,4.585922279477187e54,4.869529095974371e54,5.1706749856310834e54,5.49044461591448e54,5.829989733292946e54,6.190533311597849e54,6.573373956930849e54,6.979890584984822e54,7.411547387623084e54,7.869899106606299e54,8.356596633463012e54,8.87339295567157e54,9.422149470571218e54,1.0004842689745141e55,1.0623571358020178e55,1.1280564012728283e55,1.1978187010453414e55,1.271895305017572e55,1.3505530223513405e55,1.4340751624656454e55,1.522762555460655e55,1.616934635647904e55,1.7169305920888436e55,1.8231105902863823e55,1.9358570694291763e55,2.0555761198612665e55,2.182698945738714e55,2.3176834181409456e55,2.4610157242310086e55,2.613212118405052e55,2.774820781737482e55,2.9464237964201705e55,3.1286392423063877e55,3.32212342311109e55,3.5275732302863376e55,3.745728653085281e55,3.9773754438558315e55,4.223347948164086e55,4.48453210994087e55,4.7618686624750146e55,5.056356516747199e55,5.369056359308343e55,5.701094472660536e55,6.053666791902997e55,6.428043212251328e55,6.8255721629471e55,7.247685464031197e55,7.695903483474417e55,8.171840613238986e55,8.677211083997884e55,9.213835139451188e55,9.783645592481269e55,1.0388694786759807e56,1.1031161988879448e56,1.1713361237639395e56,1.2437749678750773e56,1.3206936414985978e56,1.402369190364719e56,1.489095793519976e56,1.5811858229017418e56,1.6789709684395256e56,1.782803432736023e56,1.8930571996306848e56,2.010129381215018e56,2.1344416481509587e56,2.266441748444875e56,2.406605120146421e56,2.555436603781673e56,2.713472260688155e56,2.8812813038006167e56,3.0594681478430114e56,3.2486745863095634e56,3.4495821030770736e56,3.662914326974108e56,3.8894396381473882e56,4.1299739356145255e56,4.3853835759692485e56,4.656588493825262e56,4.9445655152373555e56,5.250351876034288e56,5.575048957734909e56,5.919826254505711e56,6.285925585445138e56,6.674665567368583e56,7.087446364203523e56,7.525754730100089e56,7.991169364424338e56,8.48536659791792e56,9.01012643050745e56,9.567338942509705e56,1.0159011102323115e57,1.078727399512946e57,1.1454390498636863e57,1.2162763433514496e57,1.2914944217873678e57,1.371364205696772e57,1.4561733701207686e57,1.5462273807646227e57,1.64185059422419e57,1.7433874262537587e57,1.8512035922829953e57,1.965687424650818e57,2.087251271301381e57,2.2163329809789754e57,2.3533974802719765e57,2.4989384481858167e57,2.6534800942760743e57,2.8175790467472174e57,2.9918263573161715e57,3.176849630062856e57,3.37331528193498e57,3.581930943049152e57,3.803448005433108e57,4.038664329390614e57,4.288427117234847e57,4.553635964742359e57,4.83524610131788e57,5.1342718305396834e57,5.4517901834797004e57,5.788944797954227e57,6.1469500376795065e57,6.527095366167961e57,6.930749991118004e57,7.359367796028328e57,7.81449257679575e57,8.297763602160483e57,8.810921518025384e57,9.355814616915801e57,9.934405495159775e57,1.0548778121770357e58,1.1201145344485587e58,1.18938568600052e58,1.262940767713014e58,1.3410447103285507e58,1.423978828679991e58,1.512041834930363e58,1.6055509144745647e58,1.7048428683779803e58,1.8102753264665914e58,1.9222280354386065e58,2.0411042266361877e58,2.1673320684044151e58,2.3013662082683177e58,2.443689410482704e58,2.5948142948525034e58,2.75528518308753e58,2.925680059340513e58,3.106612651990873e58,3.2987346441721e58,3.5027380210041376e58,3.7193575619863885e58,3.949373487526658e58,4.193614269139622e58,4.4529596134362156e58,4.7283436306509923e58,5.02075819912173e58,5.331256537837007e58,5.660956999921184e58,6.011047100719431e58,6.382787794991477e58,6.777518018618594e58,7.196659511184807e58,7.641721936798785e58,8.11430832160321e58,8.61612082755566e58,9.148966883275714e58,9.714765694044e58,1.0315555154396122e59,1.0953499188212787e59,1.163089554274263e59,1.2350184064628475e59,1.3113955487750552e59,1.3924960764532238e59,1.4786120974322667e59,1.5700537844542272e59,1.6671504922487168e59,1.7702519438028138e59,1.8797294899938283e59,1.9959774471209604e59,2.1194145171540543e59,2.250485295814698e59,2.38966187392114e59,2.5374455377656857e59,2.6943685746477565e59,2.8609961900667033e59,3.0379285434794364e59,3.225802909954821e59,3.425295975511949e59,3.6371262744079666e59,3.8620567771553225e59,4.100897638589473e59,4.354509115885232e59,4.623804667031155e59,4.909754240923852e59,5.2133877709301e59,5.535798884501652e59,5.878148842203492e59,6.241670720342254e59,6.627673852262264e59,7.037548544302621e59,7.472771083403653e59,7.934909054398435e59,8.425626986140003e59,8.9466923468038e59,9.49998190995488e59,1.0087488514312399e60,1.0711328241557448e60,1.1373748038037794e60,1.2077133807819467e60,1.2824019006239505e60,1.3617093764905843e60,1.4459214581015458e60,1.5353414605888306e60,1.6302914569772072e60,1.7311134382273064e60,1.8381705450187258e60,1.9518483757104153e60,2.0725563751891605e60,2.2007293096082217e60,2.3368288323286952e60,2.481345146702677e60,2.634798771688077e60,2.7977424166541522e60,2.9707629721305667e60,3.154483623669762e60,3.349566096437589e60,3.556713038615131e60,3.776670552197472e60,4.010230880304475e60,4.258235260682136e60,4.521576955673921e60,4.8012044695732406e60,5.0981249649469544e60,5.413407890234332e60,5.7481888316865536e60,6.103673603522927e60,6.481142591032758e60,6.881955362268091e60,7.30755556493683e60,7.759476126134236e60,8.239344773639905e60,8.748889898670048e60,9.289946781197296e60,9.864464200263539e60,1.0474511453093887e61,1.1122285808291619e61,1.1810120419963448e61,1.2540492731274416e61,1.3316033397704609e61,1.413953576214624e61,1.5013965915966364e61,1.594247338227909e61,1.6928402459898503e61,1.7975304268836754e61,1.9086949540730504e61,2.0267342200265223e61,2.1520733786511544e61,2.2851638766124874e61,2.4264850793552245e61,2.576545997682062e61,2.7358871211092197e61,2.9050823646016337e61,3.084741135700717e61,3.275510529488552e61,3.4780776592954606e61,3.6931721315453695e61,3.921568673652295e61,4.1640899244346784e61,4.421609397096032e61,4.6950546254454746e61,4.9854105046896316e61,5.293722838828997e61,5.621102107434893e61,5.968727465376407e61,6.337850989900614e61,6.729802190365389e61,7.145992796867298e61,7.587921845011217e61,8.057181075138945e61,8.555460665459873e61,9.08455531973617e61,9.646370731448273e61,1.0242930447721865e62,1.0876383157742857e62,1.1549010431906494e62,1.226323493957939e62,1.3021629175071676e62,1.3826924723249117e62,1.468202209815577e62,1.5590001190089698e62,1.6554132358752396e62,1.7577888212432936e62,1.8664956115651357e62,1.9819251470308565e62,2.1044931818186623e62,2.2346411815583485e62,2.372837913402552e62,2.5195811344326664e62,2.675399384480348e62,2.840853889823055e62,3.0165405846089524e62,3.2030922572929976e62,3.401180829814817e62,3.611519777727704e62,3.834866699994938e62,4.0720260477108384e62,4.323852021572858e62,4.591251648542331e62,4.875188048774917e62,5.17668390458689e62,5.496825143953788e62,5.836764851805997e62,6.197727423210951e62,6.5810129734002995e62,6.98800202052508e62,7.420160458008007e62,7.879044834398669e62,8.366307959751315e62,8.883704858717213e62,9.433099091793882e62,1.0016469467497486e63,1.0635917169638234e63,1.1293673325364605e63,1.1992107041238866e63,1.2733733936287032e63,1.352122520275573e63,1.435741722721634e63,1.5245321806662647e63,1.618813699640363e63,1.718925862882169e63,1.825229254448208e63,1.9381067579654715e63,2.0579649357017343e63,2.185235492921849e63,2.3203768328040578e63,2.4638757075169368e63,2.6162489714034074e63,2.7780454425874636e63,2.949847879707388e63,3.132275080896274e63,3.325984112569649e63,3.531672676047359e63,3.750081620535199e63,3.981997611515716e63,4.228255964160565e63,4.489743651969374e63,4.767402501470992e63,5.062232584495652e63,5.375295820233871e63,5.7077198000578256e63,6.060701848880703e63,6.435513337682569e63,6.833504262734484e63,7.256108108017053e63,7.704847008343276e63,8.181337231784916e63,8.687295001148171e63,9.224542675465149e63,9.795015313769288e63,1.0400767644791339e64,1.1043981467682917e64,1.1726973510422475e64,1.2452203774206379e64,1.3222284393884803e64,1.403998904634951e64,1.4908262940765457e64,1.5830233426627126e64,1.680922125784851e64,1.7848752553454916e64,1.895257149796359e64,2.0124653827188213e64,2.1369221148047255e64,2.269075614395125e64,2.409401872053237e64,2.5584063149879469e64,2.716625627501621e64,2.8846296840200476e64,3.063023601666613e64,3.252449919773216e64,3.453590914179375e64,3.6671710546534684e64,3.893959614288512e64,4.1347734402705054e64,4.390479895999294e64,4.661999985158153e64,4.9503116689861994e64,5.256453388699358e64,5.581527805748748e64,5.926705773387604e64,6.293230553850643e64,6.682422296337797e64,7.09568279192784e64,7.534500522550593e64,8.000456022202364e64,8.495227569713458e64,9.020597233575317e64,9.578457290595134e64,1.0170817041499943e65,1.079981004803732e65,1.1467701817639843e65,1.2176897963329993e65,1.2929952868260646e65,1.3729578886092785e65,1.4578656110353032e65,1.548024274795689e65,1.6437586134258712e65,1.7454134429308933e65,1.8533549037437556e65,1.967971779490314e65,2.089676897310463e65,2.2189086147789712e65,2.3561323987824324e65,2.5018425020379847e65,2.656563743293131e65,2.820853397618258e65,2.995303203600442e65,3.180541494667551e65,3.377235462220506e65,3.586093558723385e65,3.807868049408068e65,4.0433577217837644e65,4.293410762709946e65,4.558927813397017e65,4.840865213335987e65,5.140238444842801e65,5.4581257906233765e65,5.79567221753237e65,6.1540935005164575e65,6.534680601592766e65,6.938804319636872e65,7.367920227727113e65,7.823573915828895e65,8.307406557700791e65,8.82116082207658e65,9.36668714940981e65,9.945950416791662e65,1.0561037015046894e66,1.1214162363496502e66,1.1907678889458288e66,1.2644084501219984e66,1.342603158500728e66,1.4256336558350723e66,1.5137990014258658e66,1.6074167492739498e66,1.706824091846229e66,1.812379074575764e66,1.924461885470052e66,2.043476224472504e66,2.169850757508943e66,2.3040406604571607e66,2.4465292585994776e66,2.5978297674641227e66,2.758487141325346e66,2.929080036019777e66,3.110222893149865e66,3.3025681531797524e66,3.5068086053958485e66,3.723679883195854e66,3.953963113693204e66,4.198487731181851e66,4.458134464592848e66,4.73383850970451e66,5.026592897531188e66,5.337452071023197e66,5.6675356829595426e66,6.0180326287149315e66,6.390205328423352e66,6.785394273963897e66,7.205022857145523e66,7.650602496479801e66,8.123738081010336e66,8.626133750802398e66,9.159599034915951e66,9.726055368968916e66,1.0327543015764159e67,1.0966228413911052e67,1.1644411980904437e67,1.2364536398770162e67,1.3129195412118841e67,1.3941143170297327e67,1.4803304147284103e67,1.5718783675063937e67,1.669087912841318e67,1.772309180138683e67,1.8819139518282313e67,1.998297002449945e67,2.121877520553558e67,2.2531006185319513e67,2.392438935827318e67,2.5403943412842937e67,2.6974997407812155e67,2.86432099665129e67,3.041458965805647e67,3.2295516639002375e67,3.4292765633410425e67,3.641353033404749e67,3.8665449312630823e67,4.105663353244682e67,4.3595695562420033e67,4.629178059787072e67,4.915459939968681e67,5.219446327054352e67,5.542232119416833e67,5.884979927139261e67,6.248924259505066e67,6.635375971454523e67,7.045726985022215e67,7.481455302763844e67,7.944130331226104e67,8.435418533636418e67,8.957089432171293e67,9.51102198142276e67,1.0099211336017221e68,1.072377603676628e68,1.1386965641227435e68,1.209116882616224e68,1.2838921991074242e68,1.3632918393812964e68,1.447601785115396e68,1.537125703928739e68,1.6321860431320716e68,1.7331251911188576e68,1.8403067105798303e68,1.9541166479836212e68,2.0749649240390025e68,2.203286810147615e68,2.339544496164797e68,2.4842287551153807e68,2.637860710860028e68,2.800993715079912e68,2.974215340338898e68,3.15814949640287e68,3.353458677438434e68,3.56084634818448e68,3.781059477692499e68,4.014891229759855e68,4.263183819747766e68,4.526831548073287e68,4.806784021300645e68,5.104049572435546e68,5.419698892739178e68,5.754868888144834e68,6.110766774166468e68,6.488674424048518e68,6.8899529858170985e68,7.31604778486494e68,7.768493529724655e68,8.24891983978313e68,8.759057114845978e68,9.300742767691729e68,9.87592784206786e68,1.048668403996053e69,1.1135211183452391e69,1.18238451380436e69,1.2555066225972404e69,1.3331508159843398e69,1.4155967528734065e69,1.5031413870951505e69,1.5961000369717497e69,1.6948075210306425e69,1.7996193639539335e69,1.9109130771077132e69,2.029089518262564e69,2.1545743354033935e69,2.2878194998286945e69,2.429304934060817e69,2.5795402404316073e69,2.7390665365681805e69,2.9084584043908135e69,3.0883259596425776e69,3.2793170494042848e69,3.482119585511049e69,3.697464022273258e69,3.926125987427482e69,4.168929075792971e69,4.42674781569616e69,4.7005108188468755e69,4.991204125013353e69,5.299874753540451e69,5.6276344745047494e69,5.975663813088923e69,6.345216301597467e69,6.737622994431181e69,7.15429726227915e69,7.596739882798402e69,8.066544446116101e69,8.565403094622643e69,9.09511261773257e69,9.657580923561024e69,1.0254833910828685e70,1.0889022765745138e70,1.1562431710153133e70,1.2277486228839058e70,1.3036761805647571e70,1.3842993199859793e70,1.4699084296251414e70,1.5608118564307285e70,1.6573370164262097e70,1.7598315739975523e70,1.8686646941108684e70,1.9842283719710796e70,2.1069388449105677e70,2.2372380915928426e70,2.3755954239319368e70,2.522509177460141e70,2.6785085062333183e70,2.844155288738333e70,3.0200461516674486e70,3.20681461884841e70,3.40513339307149e70,3.615716779030519e70,3.8393232561060967e70,4.076758210257242e70,4.3288768348606276e70,4.59658721094733e70,4.880853577929253e70,5.1826998065973965e70,5.503213086900512e70,5.843547843785974e70,6.204929895209239e70,6.58866086728518e70,6.996122882486045e70,7.428783537771107e70,7.888201190578596e70,8.376030571717678e70,8.894028745380305e70,9.444061437735334e70,1.0028109756902504e71,1.0648277328509296e71,1.1306797872529927e71,1.2006043248701221e71,1.274853199948743e71,1.3536938421368459e71,1.4374102197123129e71,1.5263038623798902e71,1.6206949473213176e71,1.7209234524095613e71,1.8273503807413819e71,1.9403590608985304e71,2.0603565276209497e71,2.1877749878645422e71,2.3230733775248144e71,2.466739014432268e71,2.619289353574145e71,2.7812738508642254e71,2.953275942173193e71,3.1359151447488083e71,3.32984928859324e71,3.5357768858356864e71,3.754439646633934e71,3.9866251506660804e71,4.233169683836169e71,4.494961250408909e71,4.772942771424133e71,5.068115480910427e71,5.38154253213068e71,5.714352826847618e71,6.067745081403815e71,6.442992144258435e71,6.841445580533812e71,7.264540540083817e71,7.713800926616748e71,8.190844886493931e71,8.697390636969582e71,9.235262654867051e71,9.80639824798095e71,1.0412854532872568e72,1.1056815844195298e72,1.1740601602231595e72,1.2466674666982756e72,1.3237650208899733e72,1.4056305128206209e72,1.4925588056738103e72,1.5848629978330035e72,1.6828755505993454e72,1.7869494856510393e72,1.897459656557118e72,2.0148040989250672e72,2.1394054640460558e72,2.2717125412004365e72,2.412201874107324e72,2.561379477340156e72,2.7197826588900352e72,2.8879819554424363e72,3.0665831873363436e72,3.25622964060842e72,3.457604383981089e72,3.671432729140016e72,3.8984848431618154e72,4.1395785225029514e72,4.395582138539161e72,4.667417765266156e72,4.9560645004265014e72,5.262561992023961e72,5.5880141829292e72,5.933593287061408e72,6.300544011469321e72,6.690188039518089e72,7.103928791328555e72,7.543256478617897e72,8.009753472144456e72,8.505100001091982e72,9.031080204920225e72,9.58958855947991e72,1.0182636700536057e73,1.0812360669280602e73,1.148102860592597e73,1.2191048919094244e73,1.2944978960425341e73,1.3745534235646402e73,1.459559818528428e73,1.5498232570242163e73,1.6456688499652384e73,1.7474418140723968e73,1.8555087152758848e73,1.9702587890128878e73,2.0921053421758526e73,2.2214872417615746e73,2.3588704955826436e73,2.5047499307347633e73,2.659650975865038e73,2.8241315536616383e73,2.9987840903798426e73,3.184237649643387e73,3.38116019820634e73,3.59026101183583e73,3.8122932299825356e73,4.0480565684384965e73,4.2984001997540794e73,4.564225811788369e73,4.84649085540859e73,5.14621199303804e73,5.4644687604709875e73,5.802407455145544e73,6.161245264878542e73,6.542274651933616e73,6.946868008211918e73,7.376482598335263e73,7.832665808422119e73,8.317060719464132e73,8.831412025376594e73,9.377572317037171e73,9.957508754950425e73,1.0573310154566877e74,1.1227194509780136e74,1.192151698169912e74,1.26587783814676e74,1.3441634177689396e74,1.427290406089571e74,1.5155582099508658e74,1.609284752387895e74,1.7088076177240348e74,1.81448526748222e74,1.9266983314921797e74,2.0458509788430254e74,2.1723723736197952e74,2.3067182206670065e74,2.4493724069464127e74,2.6008487444017673e74,2.7616928206067776e74,2.9324839638628525e74,3.1138373298242584e74,3.3064061171658145e74,3.5108839202748363e74,3.728007227439521e74,3.958558073533046e74,4.2033668567472964e74,4.463315329521754e74,4.739339774439528e74,5.032434376531326e74,5.343654804131277e74,5.674122011183972e74,6.025026274697292e74,6.397631481882265e74,6.793279682423867e74,7.213395922275815e74,7.659493376392205e74,8.133178798882306e74,8.636158310217671e74,9.170243542339344e74,9.737358163794118e74,1.0339544808405403e75,1.0978972432433115e75,1.1657944126722095e75,1.2378905411974977e75,1.3144453047032197e75,1.3957344381878475e75,1.4820507289068144e75,1.573705070933892e75,1.6710275849394972e75,1.774368807219805e75,1.884100952258443e75,2.0006192533689116e75,2.1243433862462554e75,2.2557189805550258e75,2.3952192249988577e75,2.5433465716516275e75,2.7006345456897254e75,2.8676496670433953e75,3.044993490888683e75,3.233304774328933e75,3.4332617770710536e75,3.645584704381455e75,3.871038301121939e75,4.110434606208373e75,4.364635877412539e75,4.6345576970434375e75,4.921172269691811e75,5.2255119239174e75,5.548672830490802e75,5.8918189505814625e75,6.256186228114713e75,6.643087041394831e75,7.053914930030238e75,7.490149614185395e75,7.953362324238112e75,8.445221460037281e75,8.967498600147891e75,9.522074882723015e75,1.0110947780988689e76,1.0736238297744628e76,1.1400198604792314e76,1.2105220154810684e76,1.2853842294890821e76,1.3648761412758303e76,1.4492840648624718e76,1.5389120207646382e76,1.6340828310139697e76,1.7351392818985694e76,1.842445358610921e76,1.9563875562500023e76,2.0773762718996476e76,2.2058472827968082e76,2.342263315914641e76,2.487115714612601e76,2.6409262083573426e76,2.8042487918883385e76,2.9776717205961914e76,3.161819629301755e76,3.35735578206595e76,3.5649844611347733e76,3.785453503623674e76,4.019556995077352e76,4.2681381296082305e76,4.532092246913165e76,4.812370057108663e76,5.109981064999218e76,5.4259972061125466e76,5.761556707597082e76,6.117868187890177e76,6.496215009920213e76,6.897959903524194e76,7.324549873729205e76,7.777521412575258e76,8.258506033254572e76,8.769236146496074e76,9.31155130036373e76,9.887404805942268e76,1.0498870772773245e77,1.1148151579385824e77,1.1837585805824154e77,1.256965665674681e77,1.3347000905434995e77,1.4172418390924702e77,1.504888210246726e77,1.5979548887646349e77,1.6967770822712186e77,1.801710728609242e77,1.9131337778564242e77,2.0314475536260706e77,2.1570781985550472e77,2.2904782091844074e77,2.4321280657617884e77,2.582537962835562e77,2.7422496468736125e77,2.911838367526552e77,3.091914949562022e77,3.283127992933813e77,3.4861662089096183e77,3.701760900671841e77,3.9306885973254733e77,4.173773850801759e77,4.431892205729489e77,4.705973352972332e77,4.997004478190151e77,5.306033817484415e77,5.634174432936516e77,5.982608221634984e77,6.352590172633335e77,6.745452887170684e77,7.16261137843502e77,7.605568168159778e77,8.075918698406884e77,8.575357078031226e77,9.105682184523061e77,9.668804143206447e77,1.0266751207128815e78,1.090167706242577e78,1.1575868585468201e78,1.2291754079735379e78,1.3051912022080434e78,1.3859080349888541e78,1.47161663225838e78,1.5626256992996746e78,1.6592630326313655e78,1.761876700665426e78,1.8708362973800148e78,1.986534273523608e78,2.109387350144175e78,2.2398380195353755e78,2.3783561390055995e78,2.525440623210408e78,2.6816212411433873e78,2.847460524258889e78,3.023555792597917e78,3.2105413062159264e78,3.409090549661207e78,3.619918657731602e78,3.843784991248065e78,4.081495872120603e78,4.333907487559162e78,4.601928973889429e78,4.886525691080136e78,5.188722699778009e78,5.50960845337139e78,5.8503387183825025e78,6.212140737308089e78,6.596317648902441e78,7.004253181822698e78,7.437416638544747e78,7.89736818749715e78,8.385764482476997e78,8.904364629586936e78,9.455036523183696e78,1.0039763573662717e79,1.066065185130607e79,1.1319937671928046e79,1.2019995651639298e79,1.276334725973939e79,1.3552669900548602e79,1.4390806556883298e79,1.528077602991365e79,1.622578381228373e79,1.7229233633657544e79,1.8294739720272878e79,1.9426139812666654e79,2.0627508988449474e79,2.190317433992336e79,2.3257730559406363e79,2.4696056488395823e79,2.6223332690186803e79,2.7845060109225894e79,2.956707988441724e79,3.139559438774143e79,3.3337189563959566e79,3.5398858651878685e79,3.7588027372600573e79,3.9912580675489855e79,4.238089113818988e79,4.5001849122979774e79,4.7784894798082203e79,5.074005213927506e79,5.387796503424925e79,5.720993561977169e79,6.074796498973082e79,6.45047964206778e79,6.84939612705786e79,7.272982771606157e79,7.722765250372726e79,8.200363590191089e79,8.707498005081052e79,9.245995092118068e79,9.817794410470914e79,1.042495546730743e80,1.1069665135728812e80,1.1754245531450946e80,1.2481162376601032e80,1.3253033880759142e80,1.4072640171225954e80,1.4942933306487455e80,1.586704790894161e80,1.6848312455181638e80,1.7890261264507876e80,1.8996647228839653e80,2.017145532988437e80,2.1418916992247875e80,2.2743525324180044e80,2.415005130085864e80,2.564356094848856e80,2.7229433591119007e80,2.8913381225896435e80,3.0701469096540584e80,3.2600137539139915e80,3.4616225178963555e80,3.6756993561823004e80,3.9030153308713553e80,4.144389188793531e80,4.400690310471737e80,4.672841841457817e80,4.961824017318366e80,5.268677694247963e80,5.594508098025861e80,5.940488804818326e80,6.307865968166971e80,6.697962807384819e80,7.112184373528653e80,7.552022610112862e80,8.019061726792807e80,8.514983905371329e80,9.041575358683624e80,9.600732764178942e80,1.0194470095374927e81,1.0824925875789077e81,1.1494370881472978e81,1.2205216319896787e81,1.296002251463675e81,1.3761508127150658e81,1.461255994885492e81,1.5516243298770184e81,1.6475813064191862e81,1.7494725424143775e81,1.8576650297846474e81,1.9725484563034747e81,2.0945366091735034e81,2.2240688654053348e81,2.361611774366282e81,2.507660738197968e81,2.662741796156146e81,2.827413519299325e81,3.0022690223500653e81,3.1879380999764492e81,3.3850894951866347e81,3.5944333080079426e81,3.816723553125722e81,4.05276087569352e81,4.303395435097961e81,4.569529967062986e81,4.852123035124087e81,5.152192483183087e81,5.470819101579152e81,5.809150519879535e81,6.168405340413436e81,6.549877527434084e81,6.954941067720205e81,7.3850549194027236e81,7.841768266840319e81,8.326726100473896e81,8.841675141753469e81,9.388470134480833e81,9.969080525227324e81,1.0585597556886683e82,1.1240241800916752e82,1.1935371155394166e82,1.2673489337693484e82,1.3457254902378111e82,1.4289490816784305e82,1.5173194628785224e82,1.6111549263363227e82,1.7107934486869654e82,1.816593908026992e82,1.928937376521774e82,2.048228492951278e82,2.1748969201386136e82,2.3093988925096674e82,2.4522188593586163e82,2.6038712297377926e82,2.7649022252562623e82,2.9358918474616136e82,3.117455966889635e82,3.310248541307297e82,3.51496397113827e82,3.7323396005549455e82,3.963158373244751e82,4.208251652417864e82,4.468502215211375e82,4.7448474322766734e82,5.0382826440018255e82,5.34986474552869e82,5.680715993479381e82,6.0320280481003745e82,6.405066265385316e82,6.80117425463528e82,7.221778717870889e82,7.668394588529727e82,8.142630487953885e82,8.646194519323551e82,9.180900419904209e82,9.748674093766995e82,1.0351560548510186e83,1.0991731260970561e83,1.1671491998449046e83,1.2393291123625204e83,1.3159728413071932e83,1.3973564421131002e83,1.4837730422881707e83,1.5755338972007973e83,1.6729695111596671e83,1.77643082782445e83,1.8862904942347115e83,2.0029442030105596e83,2.126812117558399e83,2.258340385415816e83,2.3980027451860775e83,2.546302232850224e83,2.703772993602116e83,2.870982205733372e83,3.0485321234962456e83,3.237062246303459e83,3.437251622077715e83,3.6498212930465773e83,3.8755368927934143e83,4.11521140391658e83,4.3697080862307724e83,4.6399435860569485e83,4.926891237799131e83,5.231584569701689e83,5.555121026411556e83,5.898665921755216e83,6.263456635966826e83,6.650807072485364e83,7.062112390372164e83,7.498854029396867e83,7.962605045887443e83,8.45503577856571e83,8.977919864774723e83,9.533140628765922e83,1.0122697865059181e84,1.0748715041303075e84,1.141344694658231e84,1.2119287812718904e84,1.2868779937816621e84,1.3664622843113976e84,1.450968299612033e84,1.5407004135060816e84,1.6359818231814692e84,1.7371557132834348e84,1.844586491997019e84,1.9586611035729965e84,2.07979042202375e84,2.208410731009609e84,2.3449852952456956e84,2.4900060290888254e84,2.643995268315353e84,2.8075076514702675e84,2.9811321175647387e84,3.16549402731713e84,3.361257415577301e84,3.5691273830482948e84,3.7898526359181816e84,4.024228182550592e84,4.273098196946373e84,4.537359059290199e84,4.817962584532814e84,5.115919450639509e84,5.4323028388502006e84,5.768252299064463e84,6.12497785427329e84,6.503764358820034e84,6.9059761261906475e84,7.333061842998252e84,7.786559786863711e84,8.268103366985231e84,8.779427007351777e84,9.322372393793932e84,9.898895107368254e84,1.0511071667970652e85,1.1161107013547145e85,1.1851342441841169e85,1.2584264043280021e85,1.3362511655378998e85,1.4188888370908636e85,1.5066370634076442e85,1.5998118961086094e85,1.6987489323685022e85,1.8038045236708355e85,1.915357059314729e85,2.033808329297784e85,2.1595849714836252e85,2.2931400082662058e85,2.434954478266523e85,2.5855391689376123e85,2.7454364563191957e85,2.9152222585680645e85,3.095508110300571e85,3.2869433652180704e85,3.490217534950033e85,3.7060627725371545e85,3.935256509500751e85,4.1786242559962504e85,4.4370425741357615e85,4.711442235190762e85,5.0028115720442324e85,5.3122000389688156e85,5.64072199155207e85,5.9895607003825455e85,6.359972612955515e85,6.753291879145787e85,7.170935156549775e85,7.614406713003773e85,8.085303844657087e85,8.58532262911347e85,9.116264034365913e85,9.68004040552348e85,1.0278682352697429e86,1.0914346064854377e86,1.158932107597794e86,1.230603851151558e86,1.306707984480668e86,1.3875186195035236e86,1.4733268200195199e86,1.5644416500626687e86,1.661191287088889e86,1.763924204005625e86,1.8730104243018388e86,1.9888428547988603e86,2.111838700822499e86,2.24244096889323e86,2.381120062347725e86,2.5283754756376776e86,2.684737593409307e86,2.8507696008432183e86,3.0270695121348385e86,3.214272324422821e86,3.4130523049218543e86,3.6241254194988446e86,3.848251911439363e86,4.0862390396919906e86,4.338943986454776e86,4.607276944574233e86,4.892204395878648e86,5.194752592252976e86,5.516011251993724e86,5.857137484756423e86,6.219359959234875e86,6.603983328580276e86,7.012392929501957e86,7.446059771974286e86,7.906545837520543e86,8.395509705160248e86,8.914712525279379e86,9.466024362943205e86,1.0051430933498184e87,1.0673040754721695e87,1.1333092741284451e87,1.203396426887376e87,1.2778179737027143e87,1.3568419661516276e87,1.4407530329030902e87,1.5298534048934524e87,1.6244640039022677e87,1.724925598448417e87,1.8316000311704268e87,1.9448715221115815e87,2.0651480526037162e87,2.192862834734971e87,2.328475871693172e87,2.4724756146056683e87,2.62538072184301e87,2.787741927122716e87,2.9601440231427844e87,3.143207967888136e87,3.337593121197573e87,3.5439996196464854e87,3.7631708982993467e87,3.995896368414203e87,4.243014260745297e87,4.505414644682748e87,4.78404263410518e87,5.079901791491665e87,5.394057742553168e87,5.727642014404782e87,6.081856111100298e87,6.457975841210451e87,6.8573559130312735e87,7.28143481397258e87,7.7317399917040155e87,8.209893355716351e87,8.717617119116358e87,9.256740001695126e87,9.829203816612518e87,1.0437070464419999e88,1.108252935961706e88,1.1767905316484755e88,1.2495666922603603e88,1.3268435430214357e88,1.4088994197444606e88,1.496029871341213e88,1.5885487243306148e88,1.6867892131793332e88,1.7911051805459565e88,1.9018723517515185e88,2.0194896880675084e88,2.1443808236946504e88,2.2769955916088987e88,2.4178116437701537e88,2.567336171529482e88,2.726107732430979e88,2.894698189989114e88,3.0737147734268438e88,3.263802264794301e88,3.465645321345313e88,3.679970941535971e88,3.9075510835287266e88,4.149205445631444e88,4.4058044186874084e88,4.678272221049776e88,4.967590227431339e88,5.274800503621396e88,5.6010095597984996e88,5.947392335959686e88,6.315196433820142e88,6.705746610426092e88,7.120449549664856e88,7.560798928860935e88,8.02838079870327e88,8.524879295883846e88,9.052082709022626e88,9.61188991972568e88,1.020631724197972e89,1.0837505684512194e89,1.1507728662278192e89,1.2219400184848299e89,1.2975083551188515e89,1.3777500582154217e89,1.4629541423945e89,1.553427495783553e89,1.6494959853674172e89,1.751505630696273e89,1.8598238501788963e89,1.9748407844508185e89,2.09697070158294e89,2.2266534891925898e89,2.3643562388311113e89,2.5105749283542557e89,2.6658362083359495e89,2.830699298958426e89,3.0057580042119154e89,3.1916428506583466e89,3.3890233584619814e89,3.598610452868119e89,3.8211590248137754e89,4.057470649894448e89,4.308396475479636e89,4.5748402863761354e89,4.8577617600802454e89,5.15817992334558e89,5.477176822513811e89,5.815901420830028e89,6.175573736779503e89,6.557489238350393e89,6.963023509052232e89,7.393637202492863e89,7.85088130336175e89,8.336402713767904e89,8.851950185052073e89,9.399380616441869e89,9.980665743231745e89,1.059789923858072e90,1.1253304254505774e90,1.19492414292326e90,1.268821738974261e90,1.3472893780145663e90,1.4306096848390297e90,1.51908276258458e90,1.6130272736419468e90,1.7127815874138925e90,1.8187049990546201e90,1.9311790235791258e90,2.0506087700042778e90,2.177424400470807e90,2.3120826796013497e90,2.4550686196759315e90,2.606897227549287e90,2.7681153596029497e90,2.939303691412936e90,3.121078809227511e90,3.3140954307876007e90,3.519048763490109e90,3.7366770083860426e90,3.967764019033637e90,4.213142124782746e90,4.473695128658781e90,4.7503614906457355e90,5.044137707831527e90,5.35608190359199e90,5.687317638740518e90,6.03903795836952e90,6.412509688961972e90,6.8090780012472785e90,7.23017125523825e90,7.677306144899166e90,8.15209316097533e90,8.656242391658815e90,9.191569681986595e90,9.760003174151542e90,1.0363590252286474e91,1.100450491673402e91,1.1685055614361268e91,1.2407693553127064e91,1.3175021530843286e91,1.3989803309934032e91,1.4854973571957402e91,1.5773648487741828e91,1.674913694121472e91,1.778495244734118e91,1.8884825807104976e91,2.005271854511001e91,2.1292837178202893e91,2.2609648366505772e91,2.400789500143925e91,2.5492613288669594e91,2.7069150887518215e91,2.8743186172165454e91,3.052074868401924e91,3.2408240848926165e91,3.441246103743005e91,3.6540628051148285e91,3.880040712345745e91,4.1199937528131675e91,4.374786189539076e91,4.6453357340927325e91,4.932616852004927e91,5.2376642725985794e91,5.561576715877664e91,5.905520849897036e91,6.270735492869131e91,6.658536075139631e91,7.070319377105509e91,7.507568560139815e91,7.971858508642459e91,8.464861502461147e91,8.98835324010923e91,9.544219234478009e91,1.0134461604078612e92,1.0761206284272657e92,1.1426710684469336e92,1.2133371818863037e92,1.288373494000095e92,1.3680502706275384e92,1.4526544916361003e92,1.5424908845655974e92,1.637883022196296e92,1.739174487993408e92,1.8467301136262872e92,1.960937293019436e92,2.082207377667981e92,2.2109771582440895e92,2.3477104378296915e92,2.4928997024427836e92,2.647067894873973e92,2.810770298221876e92,2.9845965359125903e92,3.1691726954054614e92,3.3651635832353805e92,3.5732751195134106e92,3.794256880510419e92,4.028904798480972e92,4.278064028453286e92,4.5426319923087644e92,4.823561611116831e92,5.121864737366824e92,5.438615799458392e92,5.774955671579279e92,6.132095782906169e92,6.511322480931258e92,6.914001664629698e92,7.341583704154668e92,7.795608664782714e92,8.277711853921132e92,8.789629711159483e92,9.33320606257885e92,9.910398761846151e92,1.052328674201167e93,1.1174077503413143e93,1.1865115064650896e93,1.2598888405275858e93,1.3378040430598158e93,1.4205377490903745e93,1.5083879489370945e93,1.601671061508626e93,1.7007230739823113e93,1.8059007519630754e93,1.917582924481818e93,2.0361718484623718e93,2.1620946575705613e93,2.2958049006645764e93,2.4377841753875533e93,2.588543862786362e93,2.7486269692039126e93,2.9186100820801936e93,3.0991054467050195e93,3.2907631714035925e93,3.4942735690972063e93,3.710369643672392e93,3.9398297301153924e93,4.183480297919251e93,4.442198927862284e93,4.716917472879245e93,5.008625414409325e93,5.318373426311841e93,5.647277159183537e93,5.99652125870977e93,6.36736363252214e93,6.761139980931234e93,7.179268607852128e93,7.623255529253515e93,8.094699897526284e93,8.595299761311858e93,9.126858181535183e93,9.691289725669761e93,1.0290627363629556e94,1.0927029790120419e94,1.1602789199828346e94,1.2320339543448205e94,1.3082265294287586e94,1.389131075702654e94,1.475038995215466e94,1.5662597111692378e94,1.6631217823997922e94,1.7659740867802166e94,1.875187077809222e94,1.991154118911096e94,2.114292900252154e94,2.245046943177511e94,2.3838871976866226e94,2.5313137387010448e94,2.687857567235014e94,2.8540825229549984e94,3.0305873150178496e94,3.2180076785019345e94,3.417018664197809e94,3.628337070007137e94,3.852724022705506e94,4.09098771936944e94,4.343986338341175e94,4.6126311302161145e94,4.8978896999853206e94,5.2007894921565786e94,5.522421491404216e94,5.863944152078555e94,6.2265875707277435e94,6.6116579166596296e94,7.020542136504281e94,7.454712949718609e94,7.91573415302846e94,8.405266252912948e94,8.925072446416867e94,9.477024971836373e94,1.0063111852147228e95,1.0685444055467497e95,1.1346263098343944e95,1.2047949119248165e95,1.2793029451359584e95,1.358418772551778e95,1.4424273536124546e95,1.531631270481522e95,1.626351817886554e95,1.72693016035855e95,1.833728561038837e95,1.9471316864785192e95,2.067547992130764e95,2.195411193525988e95,2.3311818284284988e95,2.4753489156020873e95,2.6284317161579e95,2.790981603829514e95,2.9635840509112234e95,3.146860737012626e95,3.3414717882243086e95,3.548118154760962e95,3.767544135643991e95,4.000540059518313e95,4.2479451312587224e95,4.510650454618093e95,4.7896022418061763e95,5.0858052215569106e95,5.400326257961161e95,5.73429819309868e95,6.088923927308827e95,6.465480751798765e95,6.865324949191161e95,7.289896678584003e95,7.740725162716599e95,8.2194341959253e95,8.727747992726108e95,9.267497398093031e95,9.840626481795847e95,1.0449199540552126e96,1.1095408533212838e96,1.178158097575997e96,1.2510188324556992e96,1.3283854878040826e96,1.4105367228922018e96,1.4977684300936655e96,1.5903948006298175e96,1.6887494562241368e96,1.7931866507410222e96,1.904082546137637e96,2.0218365673243e96,2.146872840813455e96,2.2796417223385866e96,2.420621418946159e96,2.570319711401844e96,2.729275783115676e96,2.898062162173307e96,3.0772867834677214e96,3.2675951783600207e96,3.4696727997543984e96,3.6842474909629455e96,3.9120921072522924e96,4.154027299513786e96,4.410924470085069e96,4.683708911367176e96,4.973363138543431e96,5.280930428403289e96,5.607518577017539e96,5.954303889798301e96,6.322535418317578e96,6.713539459141435e96,7.128724330886011e96,7.569585446700662e96,8.037710700447206e96,8.534786185978342e96,9.062602270110803e96,9.62306004116995e96,1.0218178156331276e97,1.085010011242002e97,1.152110196636116e97,1.2233600533081667e97,1.2990162090396388e97,1.3793511622229212e97,1.4646542633462401e97,1.5552327571762775e97,1.6514128893928192e97,1.7535410816605055e97,1.8619851793706527e97,1.977135776547085e97,2.0994076226877333e97,2.2292411166099783e97,2.367103892679192e97,2.513492505134563e97,2.66893421657856e97,2.8339888970714322e97,3.009251040672004e97,3.1953519066864887e97,3.3929617933387487e97,3.602792452050888e97,3.825599651030113e97,4.062185897394732e97,4.313403327645472e97,4.5801567768908776e97,4.863407037883113e97,5.164174321602092e97,5.483541931851483e97,5.8226601671039374e97,6.18275046364633e97,6.565109794949939e97,6.971115343110559e97,7.402229459183117e97,7.860004930279833e97,8.346090572399123e97,8.862237169132358e97,9.410303777637371e97,9.992264424592058e97,1.061021521624387e98,1.1266381888168358e98,1.196312782192396e98,1.2702962557481566e98,1.3488550832087638e98,1.43227221781151e98,1.5208481114477166e98,1.6149017968304122e98,1.7147720365866052e98,1.8208185434127956e98,1.9334232756882e98,2.0529918132130008e98,2.1799548180257418e98,2.3147695855621992e98,2.4579216917423856e98,2.609926741918299e98,2.771332227981334e98,2.9427195003193716e98,3.124705861724717e98,3.317946790795775e98,3.523138302840408e98,3.741019456783943e98,3.9723750171126876e98,4.218038280438796e98,4.4788940768686654e98,4.755881956984734e98,5.049999575918869e98,5.36230628670808e98,5.69392695587247e98,6.04605601496036e98,6.41996176265263e98,6.816990932921955e98,7.238573545699373e98,7.686228057522143e98,8.161566830710794e98,8.66630194077698e98,9.202251342978477e98,9.771345420230607e98,1.0375633935962249e99,1.101729341695412e99,1.1698634992754648e99,1.2422112719908272e99,1.3190332420976557e99,1.4006061070193703e99,1.4872236759554845e99,1.5791979281238093e99,1.6768601364474098e99,1.780562060733691e99,1.8906772146429103e99,2.0076022110102206e99,2.1317581903658554e99,2.2635923377994185e99,2.403579493631508e99,2.552223863693631e99,2.7100608353775065e99,2.877658905993464e99,3.055621730384508e99,3.2445902951708226e99,3.4452452274554486e99,3.6583092463079767e99,3.884549765854221e99,4.124781659349021e99,4.379870194187276e99,4.650734148424758e99,4.938349120033011e99,5.243751040809544e99,5.568039907597171e99,5.912383744253499e99,6.278022808640218e99,6.666274059783998e99,7.078535901301434e99,7.516293218169434e99,7.98112272498511e99,8.474698644977698e99,8.99879874022596e99,9.555310714804234e99,1.0146239013915313e100,1.0773712043502743e100,1.1439989836344779e100,1.2147472192242303e100,1.289870732161799e100,1.3696401023664341e100,1.4543426432091683e100,1.5442834363583433e100,1.6397864306230138e100,1.7411956087518002e100,1.8488762263904557e100,1.963216127659716e100,2.0846271420925588e100,2.2135465679621532e100,2.3504387473428254e100,2.49579673857802e100,2.6501440921779286e100,2.814036736544131e100,2.9880649803128827e100,3.1728556385292446e100,3.3690742903095804e100,3.577427676125386e100,3.798666243341249e100,4.033586849176755e100,4.2830356308274766e100,4.547911053082008e100,4.829167144413758e100,5.127816933200872e100,5.44493609645264e100,5.781666834183838e100,6.13922198339085e100,6.518889386449739e100,6.922036529667146e100,7.350115468693543e100,7.804668058538246e100,8.287331507024057e100,8.799844271682563e100,9.344052321333024e100,9.92191578489318e100,1.0535516011373142e101,1.1187063066479957e101,1.1878903692832506e101,1.2613529762462481e101,1.3393587252039535e101,1.4221885773152116e101,1.51014086919688e101,1.6035323874726854e101,1.7026995097757482e101,1.8079994163136032e101,1.919811376360149e101,2.0385381143079734e101,2.164607260201403e101,2.298472889974439e101,2.4406171609421202e101,2.5915520484348273e101,2.7518211898314293e101,2.9220018426328405e101,3.1027069636281485e101,3.29458741664327e101,3.498334316822398e101,3.714681519887069e101,3.9444082653383043e101,4.1883419831215256e101,4.447361273864938e101,4.7223990734234356e101,5.01444601312769e101,5.324553987840743e101,5.65383994467379e101,6.003489906006398e101,6.374763241303645e101,6.768997203113286e101,7.18761174358303e101,7.632114628845346e101,8.104106869689684e101,8.605288488085464e101,9.137464640321522e101,9.702552118819435e101,1.0302586256038051e102,1.0939728255334144e102,1.1616272975187815e102,1.2334657194824189e102,1.3097468391006733e102,1.3907454057612792e102,1.4767531601559303e102,1.5680798850719323e102,1.665054521168299e102,1.7680263517542763e102,1.8773662608382401e102,1.9934680689780224e102,2.1167499517438373e102,2.247655945903659e102,2.386657548754934e102,2.534255416363917e102,2.6909811668291e102,2.8573992950633365e102,3.034109205992441e102,3.221747373491959e102,3.4209896328392725e102,3.6325536149375527e102,3.8572013310793373e102,4.0957419175588844e102,4.3490345500204553e102,4.617991538037308e102,4.90358161106903e102,5.206833407632107e102,5.528839180250231e102,5.870758729531042e102,6.233823581536157e102,6.619341423492715e102,7.028700813822294e102,7.463376183450791e102,7.924933146415868e102,8.41503413889589e102,8.935444406973843e102,9.488038364701867e102,1.0074806345367322e103,1.0697861770275436e103,1.1359448760873242e103,1.206195022162661e103,1.2807896422767421e103,1.3599974113822972e103,1.4441036200750699e103,1.5334112021539009e103,1.6282418257277406e103,1.7289370518000961e103,1.835859564503733e103,1.949394477416423e103,2.069950720663592e103,2.197962513802916e103,2.3338909297966686e103,2.478225555704621e103,2.6314862560791202e103,2.794225045413285e103,2.9670280763876137e103,3.150517751074814e103,3.3453549627080775e103,3.5522414760868687e103,3.771922455193454e103,4.005189147125619e103,4.252881732010608e103,4.515892349166567e103,4.79516831041067e103,5.0917155120869245e103,5.406602058105085e103,5.740962107037512e103,6.09599995713241e103,6.472994383956055e103,6.873303246287693e103,7.298368376855418e103,7.749720775531405e103,8.228986123687526e103,8.737890639575785e103,9.278267295822639e103,9.852062421429996e103,1.0461342712065849e104,1.1108302673889111e104,1.1795272527723615e104,1.2524726602049398e104,1.3299292245039268e104,1.412175928774529e104,1.499509009251278e104,1.5922430222819313e104,1.6907119772967366e104,1.7952705398438725e104,1.9062953090238567e104,2.0241861739247343e104,2.14936775394267e104,2.28229092817642e104,2.4234344594040413e104,2.5733067184907145e104,2.7324475154396692e104,2.901430043679949e104,3.0808629445949565e104,3.271392499727485e104,3.473704958556649e104,3.688529010232258e104,3.916638408167527e104,4.158854756944729e104,4.416050471571129e104,4.689151919744072e104,4.9791427584422546e104,5.287067476862864e104,5.614035158462958e104,5.961223475657129e104,6.329882931558976e104,6.721341364043349e104,7.137008728354739e104,7.578382175484344e104,8.047051444609669e104,8.54470458901841e104,9.073134056138959e104,9.634243143580167e104,1.0230052854429014e105,1.0862709176501113e105,1.1534490811761062e105,1.2247817383753056e105,1.3005258152601206e105,1.3809541268974423e105,1.466356360033997e105,1.557040116490299e105,1.653332021081141e105,1.7555788980528832e105,1.8641490202755334e105,1.9794334356880334e105,2.1018473757750349e105,2.2318317511480003e105,2.369854739617089e105,2.5164134724746786e105,2.672035825062941e105,2.8372823180756655e105,3.012748136442069e105,3.1990652730643637e105,3.396904805129855e105,3.6069793111977364e105,3.830045437764673e105,4.0669066245547453e105,4.318415998349308e105,4.5854794457791187e105,4.869058876148127e105,5.17017568603858e105,5.489914438178031e105,5.829426767818266e105,6.189935530695268e105,6.572739207512797e105,6.979216580810417e105,7.410831701063536e105,7.869139159901379e105,8.355789689436403e105,8.87253610787139e105,9.421239632802603e105,1.0003876584953664e106,1.0622545506489088e106,1.127947471954517e106,1.197703035220089e106,1.2717724860801475e106,1.350422607932413e106,1.433936682838453e106,1.5226155118492459e106,1.6167784984304368e106,1.7167647988902052e106,1.8229345439525191e106,1.935670135876257e106,2.0553776257919215e106,2.1824881762169336e106,2.317459614016833e106,2.460778079406751e106,2.612959776931325e106,2.7745528347306315e106,2.9461392787885716e106,3.1283371292741213e106,3.321802626527275e106,3.5272325947056246e106,3.745366951606153e106,3.976991373701766e106,4.2229401259908924e106,4.4840990668543706e106,4.76140883874033e106,5.055868256170895e106,5.368537903272995e106,5.700543953791156e106,6.0530822273401985e106,6.427422496510077e106,6.824913060333025e106,7.24698560058806e106,7.695160338433601e106,8.171051509940184e106,8.676373180248305e106,9.212945417288548e106,9.782700847303686e106,1.0387691615783465e107,1.1030096778882454e107,1.171223015194767e107,1.2436548643419114e107,1.3205661104124523e107,1.4022337723840025e107,1.488952000896195e107,1.5810331377224872e107,1.678808840763217e107,1.782631278611087e107,1.892874398992279e107,2.009935275651681e107,2.1342355385331415e107,2.2662228924068188e107,2.406372729412301e107,2.555189841326388e107,2.7132102377225277e107,2.8810030765701534e107,3.059172714228688e107,3.24836088221839e107,3.449248998609444e107,3.6625606223540237e107,3.88906405940152e107,4.1295751299829916e107,4.384960107033657e107,4.656138836334918e107,4.944088049615608e107,5.249844882545142e107,5.574510610288875e107,5.919254614082598e107,6.285318593110085e107,6.674021036856195e107,7.086761974043366e107,7.525028015255225e107,7.990397707412754e107,8.484547219384874e107,9.009256379214791e107,9.566415084705836e107,1.0158030110456923e108,1.078623233586351e108,1.1453284420122115e108,1.2161588951876617e108,1.2913697102863914e108,1.3712317816726396e108,1.456032756608541e108,1.5460780713024578e108,1.641692051029167e108,1.7432190782848912e108,1.8510248331844567e108,1.9654976105679673e108,2.0870497185617274e108,2.2161189636297256e108,2.3531702274652993e108,2.49869714140233e108,2.6532238643769857e108,2.817306970843434e108,2.99153745544452e108,3.1765428616563823e108,3.372989542075032e108,3.581585058485684e108,3.803080730358868e108,4.0382743409539923e108,4.2880130107752325e108,4.553196248730828e108,4.834779191985007e108,5.133776046171121e108,5.451263738358978e108,5.788385795930956e108,6.146356465339825e108,6.526465085582432e108,6.930080732141966e108,7.358657148124166e108,7.813737980351367e108,8.2969623392699e108,8.810070702699387e108,9.354911184687177e108,9.933446192045716e108,1.0547759492552267e109,1.1200063720264065e109,1.1892708344985401e109,1.2628188134589897e109,1.340915214067568e109,1.4238413239923301e109,1.5118958265515484e109,1.6053958765115196e109,1.704678242414817e109,1.8101005195535024e109,1.922042417955887e109,2.040907130026664e109,2.167122782765387e109,2.3011439797946303e109,2.4434534387516917e109,2.594563729941028e109,2.7550191225107255e109,2.9253975448012154e109,3.106312665928025e109,3.2984161060957005e109,3.5023997836035284e109,3.7189984069978746e109,3.94899212134556e109,4.193209318160975e109,4.452529619107186e109,4.727887044217971e109,5.0202733760512705e109,5.3307417318930505e109,5.6604103568753355e109,6.0104666516724016e109,6.3821714492815006e109,6.77686355629128e109,7.195964574997306e109,7.640984023729471e109,8.113524773836297e109,8.615288822908276e109,9.148083425032962e109,9.71382760016539e109,1.0314559046054493e110,1.0952441477624448e110,1.1629772420244544e110,1.234899148495794e110,1.3112689155472979e110,1.3923616118571184e110,1.4784693171531406e110,1.5699021742259756e110,1.6669895060015178e110,1.7700810016962946e110,1.8795479763285953e110,1.9957847081209723e110,2.1192098586118518e110,2.2502679805910072e110,2.389431119289842e110,2.537200512594595e110,2.6941083964050484e110,2.8607199216422084e110,3.037635189809272e110,3.225491414437715e110,3.424965216203052e110,3.636775059978179e110,3.8616838426002755e110,4.1005016406732365e110,4.354088628302246e110,4.623358175268961e110,4.909280136808122e110,5.212884346832313e110,5.535264327188556e110,5.8775812263061976e110,6.241068001421441e110,6.627033859444522e110,7.03686897246139e110,7.47204948485662e110,7.934142830091243e110,8.42481337628588e110,8.945828420942006e110,9.499064556396667e110,1.0086514428933105e111,1.0710293915895703e111,1.1372649746658736e111,1.207596759489647e111,1.2822780671306082e111,1.3615778847726406e111,1.4457818345520424e111,1.5351932023115735e111,1.6301340299753878e111,1.7309462754803366e111,1.8379930444397183e111,1.9516598979775604e111,2.0723562414432863e111,2.2005167990074055e111,2.3366031794522382e111,2.481105538793905e111,2.6345443457269233e111,2.797472256249169e111,2.9704761042175827e111,3.1541790150079846e111,3.349242649887157e111,3.556369589186233e111,3.7763058628537365e111,4.009843637507251e111,4.2578240696603926e111,4.5211403353993186e111,4.800740847426839e111,5.097632671054211e111,5.412885151450332e111,5.747633765210847e111,6.103084210116384e111,6.480516747818157e111,6.881290815082946e111,7.306849920214252e111,7.758726842282788e111,8.238549151888273e111,8.748045073347743e111,9.289049709411937e111,9.86351165094084e111,1.0473499995341323e112,1.1121211799039662e112,1.1808979990845491e112,1.2539281774692136e112,1.3314747552033065e112,1.4138170396025986e112,1.5012516111620366e112,1.5940933917801938e112,1.6926767790446067e112,1.7973568506654545e112,1.9085106433950152e112,2.026538511038183e112,2.1518655664479147e112,2.284943212696093e112,2.4262507689383633e112,2.5762971968253257e112,2.735622933681291e112,2.9048018390522877e112,3.084443261632676e112,3.275194234018974e112,3.4777418031911227e112,3.6928155051192266e112,3.921189992407356e112,4.16368782443636e112,4.421182430060526e112,4.694601253522642e112,4.98492909492391e112,5.293211657278504e112,5.620559312925417e112,5.96815110287064e112,6.3372389834557175e112,6.729152335655777e112,7.145302753246025e112,7.587189127078488e112,8.056403043791254e112,8.554634518383416e112,9.083678081313367e112,9.64543924204143e112,1.0241941352291518e113,1.0875332893765008e113,1.154789521653968e113,1.22620507560395e113,1.302037175816634e113,1.382558954401215e113,1.4680604347538858e113,1.5588495761636883e113,1.6552533830211354e113,1.7576190826222557e113,1.866315375812332e113,1.981733764973188e113,2.1042899641359927e113,2.234425396301212e113,2.372608783355473e113,2.5193378343146802e113,2.6751410379731383e113,2.840579566413846e113,3.016249296239668e113,3.202782954801003e113,3.4008523991540084e113,3.6111710359563976e113,3.83449639101468e113,4.071632837742713e113,4.323434494352954e113,4.5908083002205794e113,4.874717282499161e113,5.1761840247506943e113,5.4962943500899184e113,5.8362012321007765e113,6.197128947618217e113,6.580377486330428e113,6.987327233080117e113,7.419443939738479e113,7.878284004548618e113,8.36550007796283e113,8.882847015161603e113,9.43218819668888e113,1.0015502239981282e114,1.0634890125949542e114,1.1292582766297386e114,1.1990949038816778e114,1.2732504319615132e114,1.351991954300093e114,1.435603082165169e114,1.5243849661732477e114,1.6186573809735394e114,1.7187598770127188e114,1.8250530035282595e114,1.9379196071742394e114,2.0577662109594838e114,2.185024478461677e114,2.3201527685938156e114,2.463637786522064e114,2.615996336679832e114,2.777777184195417e114,2.949563031433624e114,3.131972616773921e114,3.325662943183313e114,3.531331644608828e114,3.7497194987174107e114,3.981613095028078e114,4.2278476680511064e114,4.4893101056370086e114,4.766942143368113e114,5.061743756504408e114,5.374776761693295e114,5.707168641422209e114,6.06011660498683e114,6.434891900598062e114,6.832844394167375e114,7.255407431251906e114,7.704102999682461e114,8.180547211457568e114,8.686456123657832e114,9.223651919343039e114,9.794069470688885e114,1.039976330801496e115,1.1042915019789725e115,1.1725841110278771e115,1.2451001343133547e115,1.3221007600965093e115,1.4038633292830083e115,1.490682334349242e115,1.582870480045721e115,1.6807598096975383e115,1.7847029011576144e115,1.8950741367225898e115,2.012271051582555e115,2.13671576566383e115,2.2688565040211844e115,2.409169211254291e115,2.5581592657663107e115,2.716363300035252e115,2.8843511334575473e115,3.062727824724455e115,3.25213585112172e115,3.4532574226060476e115,3.666816938988148e115,3.89358359907695e115,4.134374171181082e115,4.390055934943976e115,4.661549805114095e115,4.949833648494351e115,5.2559458060254735e115,5.580988832681232e115,5.926133468652412e115,6.2926228561206945e115,6.6817770168066425e115,7.0949976064276125e115,7.533772963179723e115,7.999683468436365e115,8.494407238968329e115,9.019726171182745e115,9.577532359162526e115,1.0169834909608678e116,1.0798767178243516e116,1.1466594453734665e116,1.2175722116809039e116,1.2928704303959824e116,1.3728253106932403e116,1.4577248341140043e116,1.5478747918187586e116,1.6435998859853764e116,1.7452448993223263e116,1.85317593690664e116,1.9677817448216704e116,2.0894751103433475e116,2.218694348716887e116,2.3559048818818606e116,2.5016009148284078e116,2.6563072156254334e116,2.820581005531066e116,2.995013965991507e116,3.180234369760911e116,3.376909343813284e116,3.585747272202278e116,3.807500347518063e116,4.042967280135617e116,4.292996175011004e116,4.558487586384784e116,4.840397761400776e116,5.139742084315934e116,5.457598733712728e116,5.795112565884463e116,6.1534992383772824e116,6.534049588548902e116,6.938134282905138e116,7.367208753968363e116,7.822818442456666e116,8.30660436365035e116,8.82030901800533e116,9.365782667289307e116,9.944989998857068e116,1.0560017202064511e117,1.1213079482302932e117,1.1906529039731958e117,1.264286354143142e117,1.342473511750198e117,1.4254959913511517e117,1.5136528233684814e117,1.6072615311389622e117,1.7066592745688615e117,1.8122040645169396e117,1.9242760522785267e117,2.0432788988139961e117,2.1696412286559348e117,2.3038181737283654e117,2.4462930126421778e117,2.5975789113674794e117,2.758220771555476e117,2.9287971931660953e117,3.1099225584686256e117,3.302249244925476e117,3.506469974924583e117,3.7233203108278344e117,3.953581304320748e117,4.198082309603478e117,4.457703970561086e117,4.733381392665681e117,5.026107511040567e117,5.33693666681553e117,5.666988404651449e117,6.017451505119358e117,6.389588266448963e117,6.784739051076097e117,7.204327113362254e117,7.649863725870425e117,8.122953622670811e117,8.625300779270179e117,9.158714549993125e117,9.725116184917338e117,1.0326545749829792e118,1.0965169474141373e118,1.1643287553209512e118,1.2363342433184903e118,1.3127927608217909e118,1.3939796961702634e118,1.4801874685221802e118,1.571726581089577e118,1.6689267395095867e118,1.7721380393778282e118,1.881732227223192e118,1.9981040394650742e118,2.121672624174534e118,2.2528830507629793e118,2.3922079130326697e118,2.5401490313657047e118,2.697239260181469e118,2.864044407171034e118,3.04116527122487e118,3.22923980638961e118,3.428945419651791e118,3.6410014108234043e118,3.866171563315085e118,4.105266895133327e118,4.359148580004215e118,4.6287310491501045e118,4.914985284889448e118,5.2189423179197225e118,5.541696940886666e118,5.884411651607187e118,6.2483208401555565e118,6.634735234891528e118,7.045046623440154e118,7.480732865636315e118,7.943363216478605e118,8.434603978274082e118,8.95622450232855e118,9.510103561793948e118,1.0098236118638698e119,1.0722740509098865e119,1.138586607350749e119,1.2090001257966056e119,1.2837682217052857e119,1.363160194854855e119,1.4474619993072302e119,1.536977273358314e119,1.632028433182065e119,1.7329578341095035e119,1.840129003724685e119,1.9539279512179104e119,2.0747645577147005e119,2.2030740525851678e119,2.3393185810537473e119,2.4839888687545936e119,2.637605989226574e119,2.8007232407173903e119,2.973928139052579e119,3.157844533750798e119,3.35313485500601e119,3.560502499627748e119,3.7806943645377005e119,4.0145035369421966e119,4.262772150874769e119,4.526394420395843e119,4.806319860371857e119,5.103556706440542e119,5.419175546472905e119,5.754313176618051e119,6.110176695817353e119,6.488047853531946e119,6.889287666351507e119,7.31534132010184e119,7.767743375119205e119,8.248123293427996e119,8.758211307739245e119,9.299844653405528e119,9.874974185773026e119,1.0485671406777741e120,1.1134135926078808e120,1.1822703383615524e120,1.255385386211896e120,1.3330220819870932e120,1.415460057590136e120,1.5029962381766984e120,1.595945911620559e120,1.6946438641179622e120,1.7994455860201347e120,1.9107285522394202e120,2.028893581837989e120,2.1543662816984757e120,2.287598579475518e120,2.4290703513482365e120,2.57929115043959e120,2.738802042124235e120,2.908177552838519e120,3.088027739410702e120,3.2790003863629047e120,3.481783339103196e120,3.697106981406407e120,3.9257468661113884e120,4.1685265085084504e120,4.426320352475732e120,4.700056920053598e120,4.99072215579398e120,5.29936297793821e120,5.627091049205952e120,5.975086780783473e120,6.344603583930521e120,6.736972384515473e120,7.153606416747836e120,7.596006313363607e120,8.065765510606282e120,8.564575987468033e120,9.094234359857579e120,9.656648351656369e120,1.0253843665956286e121,1.0887971281239766e121,1.1561315198777487e121,1.2276300669141365e121,1.303550292747882e121,1.3841656468991792e121,1.4697664898045244e121,1.5606611386373925e121,1.657176977804659e121,1.759661638120667e121,1.8684842489034993e121,1.9840367675054513e121,2.106735391065641e121,2.2370220555683586e121,2.3753660276093253e121,2.522265594599582e121,2.6782498594977575e121,2.8438806465339373e121,3.019754524787495e121,3.2065049569112596e121,3.404804580736387e121,3.6153676319811696e121,3.8389525167844362e121,4.076364543333799e121,4.328458822425955e121,4.596143347403714e121,4.880382264568947e121,5.1821993458436395e121,5.502681676192975e121,5.842983569089675e121,6.204330724118866e121,6.588024641706251e121,6.995447310860868e121,7.428066186824951e121,7.887439476556541e121,8.375221751077412e121,8.89316990491158e121,9.443149484066004e121,1.0027141405356697e122,1.0647249091278033e122,1.1305706046107338e122,1.200488390054681e122,1.2747300953860276e122,1.3535631244286874e122,1.4372714180396188e122,1.5261564768066593e122,1.6205384469941806e122,1.7207572736455407e122,1.827173924997596e122,1.940171692616667e122,2.0601575719376366e122,2.1875637281812386e122,2.322849052926127e122,2.466500816945839e122,2.6190364252601168e122,2.781005280724999e122,2.952990762872894e122,3.135612329128273e122,3.3295277459711424e122,3.5354354580796065e122,3.754077103988843e122,3.986240187325951e122,4.232760913239557e122,4.494527200245848e122,4.772481878332469e122,5.067626084844843e122,5.381022870384235e122,5.713801027702123e122,6.067159157389062e122,6.442369984992937e122,6.840784945123543e122,7.263839049051897e122,7.713056053332089e122,8.190053948071878e122,8.696550784607623e122,9.234370863583891e122,9.805451305722396e122,1.0411849028941061e123,1.10557481569667e123,1.1739467886109365e123,1.246547083854674e123,1.3236371932200572e123,1.405494779914488e123,1.492414678648706e123,1.5847099575720273e123,1.6827130458820728e123,1.786776931167877e123,1.8972764308010567e123,2.0146095419536148e123,2.139198875103668e123,2.2714931761950438e123,2.4119689429299108e123,2.5611321410188412e123,2.719520026568906e123,2.8877030811720674e123,3.066287066667365e123,3.255915206973219e123,3.457270504852202e123,3.671078201951465e123,3.8981083909772256e123,4.139178789416813e123,4.3951576847925916e123,4.666967062061117e123,4.955585924420011e123,5.262053819480489e123,5.587474583512837e123,5.933020317242637e123,6.299935607524725e123,6.689542010098103e123,7.103242809563779e123,7.542528073739153e123,8.008980020582593e123,8.504278717028189e123,9.030208130253495e123,9.588662553170338e123,1.01816534272943e124,1.0811316587551861e124,1.1479919955136587e124,1.2189871706105106e124,1.294372894514885e124,1.3744206915777781e124,1.459418878008116e124,1.5496736003308765e124,1.6455099380652977e124,1.7472730745967243e124,1.8553295404586706e124,1.9700685335020493e124,2.0919033207090757e124,2.2212727266978124e124,2.358642714281269e124,2.504508062772995e124,2.659394150082614e124,2.8238588450234353e124,2.9984945166437145e124,3.183930167822286e124,3.3808337008121227e124,3.5899143228898607e124,3.811925100780541e124,4.0476656730524834e124,4.297985130256554e124,4.563785073181852e124,4.8460228602403355e124,5.145715055683013e124,5.463941091059908e124,5.801847153118063e124,6.160650312138772e124,6.541642905579842e124,6.946197192820249e124,7.375770297761977e124,7.831909457102953e124,8.316257593172424e124,8.830559231410805e124,9.376666783804164e124,9.956547220899459e124,1.0572289156444531e125,1.1226110370154725e125,1.192036579571484e125,1.2657556002782993e125,1.3440336203539382e125,1.4271525816236887e125,1.5154118620178545e125,1.6091293538715846e125,1.7086426089099887e125,1.8143100540415297e125,1.9265122823410603e125,2.0456534238695264e125,2.1721626012701642e125,2.3064954753831122e125,2.4491358864440727e125,2.6005975967814175e125,2.7614261412847594e125,2.9322007923132482e125,3.1135366461196696e125,3.306086838303379e125,3.5105448962759204e125,3.727647237207272e125,3.958175820454191e125,4.2029609640226654e125,4.4628843352062936e125,4.738882126177998e125,5.0319484259656394e125,5.343138800964651e125,5.673574096875871e125,6.0244444757691e125,6.3970137028107186e125,6.792623698091527e125,7.212699369958261e125,7.658753747246858e125,8.132393428911747e125,8.635324370676495e125,9.169358029543061e125,9.736417888302667e125,1.0338546383533924e126,1.0977912262053646e126,1.165681839231255e126,1.237771005886405e126,1.314318376979696e126,1.3955996608835377e126,1.481907616580654e126,1.5735531081238484e126,1.670866224305772e126,1.7741974675736546e126,1.8839190164686217e126,2.000426066138862e126,2.1241382517541362e126,2.255501159947222e126,2.394987933729087e126,2.5431009766548474e126,2.7003737623815673e126,2.867372756134519e126,3.044699455000941e126,3.2329925544039234e126,3.4329302485546574e126,3.6452326731742346e126,3.870664499277669e126,4.110037687366983e126,4.3642144119518256e126,4.634110166928573e126,4.9206970630087906e126,5.2250073290664925e126,5.54813703002148e126,5.891250014647701e126,6.255582107522349e126,6.642445560222266e126,7.053233777790177e126,7.489426337502844e126,7.952594318014831e126,8.444405958067702e126,8.966632665156952e126,9.521155395785516e126,1.0109971430295424e127,1.0735201566675283e127,1.1399097759247906e127,1.2104051229765644e127,1.285260108011018e127,1.36474434376331e127,1.4491441166071632e127,1.5387634177007774e127,1.63392503790303e127,1.734971730401223e127,1.8422674452399742e127,1.956198640197061e127,2.0771756727265756e127,2.2056342779855435e127,2.342037138264186e127,2.486875549476276e127,2.6406711907082076e127,2.803978003203424e127,2.9773841855488644e127,3.1615143122479215e127,3.3570315833146196e127,3.5646402129866784e127,3.785087966165294e127,4.019168851715941e127,4.2677259823285405e127,4.531654611243091e127,4.81190535677177e127,5.109487626237248e127,5.425473251657574e127,5.761000350269436e127,6.117277423801989e127,6.495587711257015e127,6.897293810880872e127,7.323842587973015e127,7.7767703862036685e127,8.257708561220737e127,8.768389356464716e127,9.310652142365448e127,9.88645004138943e127,1.0497856962793947e128,1.1147075072439202e128,1.1836442724546804e128,1.256844288398715e128,1.3345712069426196e128,1.4171049849535208e128,1.5047428926484962e128,1.597800584302016e128,1.6966132351703854e128,1.801536748725602e128,1.9129490385489597e128,2.03125138950078e128,2.1568699030677373e128,2.290257032096375e128,2.4318932104372574e128,2.5822885833722558e128,2.7419848450566285e128,2.9115571895923734e128,3.091616382763942e128,3.282810961893749e128,3.485829571744771e128,3.701403444882338e128,3.930309035426701e128,4.173370815687639e128,4.431464245747893e128,4.705518926696458e128,4.996521948867261e128,5.305521447139919e128,5.6336303761148675e128,5.9820305187519766e128,6.351976742917998e128,6.7448015211716256e128,7.161919730061547e128,7.604833746232723e128,8.075138857684883e128,8.574529009682986e128,9.10480290601194e128,9.667870487545717e128,1.0265759811477705e129,1.0900624355974175e129,1.1574750776577938e129,1.2290567142281678e129,1.3050651680950108e129,1.3857742065585156e129,1.4714745274873266e129,1.5624748063549304e129,1.6591028080266268e129,1.7617065673034592e129,1.8706556424745105e129,1.9863424463915e129,2.1091836598624832e129,2.2396217324523142e129,2.378126476098081e129,2.5251967572784808e129,2.6813622938304997e129,2.847185562888587e129,3.0232638268141644e129,3.210231284415994e129,3.408761355208455e129,3.6195691049331265e129,3.8434138210845685e129,4.081101747711155e129,4.3334889893459693e129,4.601484594525462e129,4.8860538299993656e129,5.188221657431156e129,5.509076425103812e129,5.849773787934116e129,6.211540869912359e129,6.595680683956037e129,7.003576825105404e129,7.436698453954086e129,7.896605588275805e129,8.384954721894611e129,8.903504791046568e129,9.454123509719061e129,1.0038794096780769e130,1.0659622419144898e130,1.1318844576678237e130,1.2018834956188666e130,1.2762114783495287e130,1.355136120437654e130,1.43894169271213e130,1.5279300461392358e130,1.6224216990298585e130,1.7227569914828504e130,1.8292973112215832e130,1.9424263952412558e130],"x":[-300.0,-299.9399939993999,-299.8799879987999,-299.8199819981998,-299.7599759975998,-299.6999699969997,-299.6399639963996,-299.5799579957996,-299.5199519951995,-299.4599459945995,-299.3999399939994,-299.3399339933993,-299.2799279927993,-299.2199219921992,-299.1599159915992,-299.0999099909991,-299.039903990399,-298.979897989799,-298.9198919891989,-298.8598859885989,-298.7998799879988,-298.73987398739877,-298.6798679867987,-298.6198619861986,-298.5598559855986,-298.4998499849985,-298.43984398439846,-298.3798379837984,-298.3198319831983,-298.2598259825983,-298.1998199819982,-298.13981398139816,-298.0798079807981,-298.019801980198,-297.95979597959797,-297.8997899789979,-297.83978397839786,-297.7797779777978,-297.7197719771977,-297.65976597659767,-297.5997599759976,-297.53975397539756,-297.4797479747975,-297.4197419741974,-297.35973597359737,-297.2997299729973,-297.23972397239726,-297.1797179717972,-297.1197119711971,-297.05970597059707,-296.999699969997,-296.93969396939696,-296.8796879687969,-296.81968196819685,-296.75967596759676,-296.6996699669967,-296.63966396639665,-296.57965796579657,-296.51965196519654,-296.45964596459646,-296.3996399639964,-296.33963396339635,-296.27962796279627,-296.21962196219624,-296.15961596159616,-296.0996099609961,-296.03960396039605,-295.97959795979597,-295.91959195919594,-295.85958595859586,-295.7995799579958,-295.73957395739575,-295.67956795679567,-295.61956195619564,-295.55955595559556,-295.4995499549955,-295.43954395439545,-295.37953795379536,-295.31953195319534,-295.25952595259525,-295.19951995199517,-295.13951395139514,-295.07950795079506,-295.01950195019504,-294.95949594959495,-294.8994899489949,-294.83948394839484,-294.77947794779476,-294.71947194719473,-294.65946594659465,-294.5994599459946,-294.53945394539454,-294.47944794479446,-294.41944194419443,-294.35943594359435,-294.2994299429943,-294.23942394239424,-294.17941794179416,-294.11941194119413,-294.05940594059405,-293.999399939994,-293.93939393939394,-293.87938793879385,-293.8193819381938,-293.75937593759375,-293.6993699369937,-293.63936393639364,-293.57935793579355,-293.5193519351935,-293.45934593459344,-293.3993399339934,-293.33933393339333,-293.27932793279325,-293.2193219321932,-293.15931593159314,-293.0993099309931,-293.03930393039303,-292.979297929793,-292.9192919291929,-292.85928592859284,-292.7992799279928,-292.73927392739273,-292.6792679267927,-292.6192619261926,-292.55925592559254,-292.4992499249925,-292.43924392439243,-292.3792379237924,-292.3192319231923,-292.25922592259224,-292.1992199219922,-292.1392139213921,-292.0792079207921,-292.019201920192,-291.95919591959193,-291.8991899189919,-291.8391839183918,-291.7791779177918,-291.7191719171917,-291.65916591659163,-291.5991599159916,-291.5391539153915,-291.4791479147915,-291.4191419141914,-291.35913591359133,-291.2991299129913,-291.2391239123912,-291.1791179117912,-291.1191119111911,-291.0591059105911,-290.999099909991,-290.9390939093909,-290.8790879087909,-290.8190819081908,-290.7590759075908,-290.6990699069907,-290.6390639063906,-290.5790579057906,-290.5190519051905,-290.4590459045905,-290.3990399039904,-290.3390339033903,-290.2790279027903,-290.2190219021902,-290.1590159015902,-290.0990099009901,-290.03900390039,-289.97899789979,-289.9189918991899,-289.8589858985899,-289.7989798979898,-289.7389738973897,-289.6789678967897,-289.6189618961896,-289.5589558955896,-289.4989498949895,-289.4389438943894,-289.3789378937894,-289.3189318931893,-289.2589258925893,-289.1989198919892,-289.13891389138917,-289.0789078907891,-289.018901890189,-288.958895889589,-288.8988898889889,-288.83888388838886,-288.7788778877888,-288.7188718871887,-288.65886588658867,-288.5988598859886,-288.53885388538856,-288.4788478847885,-288.4188418841884,-288.35883588358837,-288.2988298829883,-288.23882388238826,-288.1788178817882,-288.1188118811881,-288.05880588058807,-287.998799879988,-287.93879387938796,-287.8787878787879,-287.8187818781878,-287.75877587758777,-287.6987698769877,-287.63876387638766,-287.5787578757876,-287.5187518751875,-287.45874587458746,-287.3987398739874,-287.33873387338735,-287.2787278727873,-287.21872187218725,-287.15871587158716,-287.0987098709871,-287.03870387038705,-286.97869786978697,-286.91869186918694,-286.85868586858686,-286.7986798679868,-286.73867386738675,-286.67866786678667,-286.61866186618664,-286.55865586558656,-286.4986498649865,-286.43864386438645,-286.37863786378637,-286.31863186318634,-286.25862586258626,-286.1986198619862,-286.13861386138615,-286.07860786078606,-286.01860186018604,-285.95859585958596,-285.8985898589859,-285.83858385838585,-285.77857785778576,-285.71857185718574,-285.65856585658565,-285.59855985598557,-285.53855385538554,-285.47854785478546,-285.41854185418543,-285.35853585358535,-285.2985298529853,-285.23852385238524,-285.17851785178516,-285.11851185118513,-285.05850585058505,-284.998499849985,-284.93849384938494,-284.87848784878486,-284.81848184818483,-284.75847584758475,-284.6984698469847,-284.63846384638464,-284.57845784578456,-284.51845184518453,-284.45844584458445,-284.3984398439844,-284.33843384338434,-284.27842784278425,-284.2184218421842,-284.15841584158414,-284.0984098409841,-284.03840384038403,-283.97839783978395,-283.9183918391839,-283.85838583858384,-283.7983798379838,-283.73837383738373,-283.67836783678365,-283.6183618361836,-283.55835583558354,-283.4983498349835,-283.43834383438343,-283.3783378337834,-283.3183318331833,-283.25832583258324,-283.1983198319832,-283.13831383138313,-283.0783078307831,-283.018301830183,-282.95829582958294,-282.8982898289829,-282.8382838283828,-282.7782778277828,-282.7182718271827,-282.65826582658264,-282.5982598259826,-282.5382538253825,-282.4782478247825,-282.4182418241824,-282.35823582358233,-282.2982298229823,-282.2382238223822,-282.1782178217822,-282.1182118211821,-282.05820582058203,-281.998199819982,-281.9381938193819,-281.8781878187819,-281.8181818181818,-281.75817581758173,-281.6981698169817,-281.6381638163816,-281.5781578157816,-281.5181518151815,-281.4581458145815,-281.3981398139814,-281.3381338133813,-281.2781278127813,-281.2181218121812,-281.1581158115812,-281.0981098109811,-281.038103810381,-280.978097809781,-280.9180918091809,-280.8580858085809,-280.7980798079808,-280.7380738073807,-280.6780678067807,-280.6180618061806,-280.5580558055806,-280.4980498049805,-280.4380438043804,-280.3780378037804,-280.3180318031803,-280.2580258025803,-280.1980198019802,-280.1380138013801,-280.0780078007801,-280.01800180018,-279.95799579958,-279.8979897989799,-279.8379837983798,-279.7779777977798,-279.7179717971797,-279.6579657965797,-279.5979597959796,-279.53795379537956,-279.4779477947795,-279.4179417941794,-279.3579357935794,-279.2979297929793,-279.23792379237926,-279.1779177917792,-279.1179117911791,-279.05790579057907,-278.997899789979,-278.93789378937896,-278.8778877887789,-278.8178817881788,-278.75787578757877,-278.6978697869787,-278.63786378637866,-278.5778577857786,-278.5178517851785,-278.45784578457847,-278.3978397839784,-278.33783378337836,-278.2778277827783,-278.2178217821782,-278.15781578157817,-278.0978097809781,-278.03780378037806,-277.977797779778,-277.9177917791779,-277.85778577857786,-277.7977797779778,-277.73777377737775,-277.67776777677767,-277.61776177617764,-277.55775577557756,-277.4977497749775,-277.43774377437745,-277.37773777377737,-277.31773177317734,-277.25772577257726,-277.1977197719772,-277.13771377137715,-277.07770777077707,-277.01770177017704,-276.95769576957696,-276.8976897689769,-276.83768376837685,-276.77767776777677,-276.71767176717674,-276.65766576657666,-276.5976597659766,-276.53765376537655,-276.47764776477646,-276.41764176417644,-276.35763576357635,-276.29762976297627,-276.23762376237624,-276.17761776177616,-276.11761176117614,-276.05760576057605,-275.99759975997597,-275.93759375937594,-275.87758775877586,-275.81758175817583,-275.75757575757575,-275.6975697569757,-275.63756375637564,-275.57755775577556,-275.51755175517553,-275.45754575457545,-275.3975397539754,-275.33753375337534,-275.27752775277526,-275.21752175217523,-275.15751575157515,-275.0975097509751,-275.03750375037504,-274.97749774977495,-274.9174917491749,-274.85748574857485,-274.7974797479748,-274.73747374737474,-274.67746774677465,-274.6174617461746,-274.55745574557454,-274.4974497449745,-274.43744374437443,-274.37743774377435,-274.3174317431743,-274.25742574257424,-274.1974197419742,-274.13741374137413,-274.07740774077405,-274.017401740174,-273.95739573957394,-273.8973897389739,-273.83738373837383,-273.7773777377738,-273.7173717371737,-273.65736573657364,-273.5973597359736,-273.53735373537353,-273.4773477347735,-273.4173417341734,-273.35733573357334,-273.2973297329733,-273.2373237323732,-273.1773177317732,-273.1173117311731,-273.05730573057303,-272.997299729973,-272.9372937293729,-272.8772877287729,-272.8172817281728,-272.75727572757273,-272.6972697269727,-272.6372637263726,-272.5772577257726,-272.5172517251725,-272.45724572457243,-272.3972397239724,-272.3372337233723,-272.2772277227723,-272.2172217221722,-272.15721572157213,-272.0972097209721,-272.037203720372,-271.977197719772,-271.9171917191719,-271.8571857185719,-271.7971797179718,-271.7371737173717,-271.6771677167717,-271.6171617161716,-271.5571557155716,-271.4971497149715,-271.4371437143714,-271.3771377137714,-271.3171317131713,-271.2571257125713,-271.1971197119712,-271.1371137113711,-271.0771077107711,-271.017101710171,-270.957095709571,-270.8970897089709,-270.8370837083708,-270.7770777077708,-270.7170717071707,-270.6570657065707,-270.5970597059706,-270.5370537053705,-270.4770477047705,-270.4170417041704,-270.3570357035704,-270.2970297029703,-270.2370237023702,-270.1770177017702,-270.1170117011701,-270.0570057005701,-269.99699969997,-269.93699369936996,-269.8769876987699,-269.8169816981698,-269.75697569756977,-269.6969696969697,-269.63696369636966,-269.5769576957696,-269.5169516951695,-269.45694569456947,-269.3969396939694,-269.33693369336936,-269.2769276927693,-269.2169216921692,-269.15691569156917,-269.0969096909691,-269.03690369036906,-268.976897689769,-268.9168916891689,-268.85688568856887,-268.7968796879688,-268.73687368736876,-268.6768676867687,-268.6168616861686,-268.55685568556856,-268.4968496849685,-268.43684368436845,-268.3768376837684,-268.3168316831683,-268.25682568256826,-268.1968196819682,-268.13681368136815,-268.07680768076807,-268.01680168016804,-267.95679567956796,-267.8967896789679,-267.83678367836785,-267.77677767776777,-267.71677167716774,-267.65676567656766,-267.5967596759676,-267.53675367536755,-267.47674767476747,-267.41674167416744,-267.35673567356736,-267.2967296729673,-267.23672367236725,-267.17671767176716,-267.11671167116714,-267.05670567056706,-266.996699669967,-266.93669366936695,-266.87668766876686,-266.81668166816684,-266.75667566756675,-266.69666966696667,-266.63666366636664,-266.57665766576656,-266.51665166516653,-266.45664566456645,-266.39663966396637,-266.33663366336634,-266.27662766276626,-266.21662166216623,-266.15661566156615,-266.0966096609661,-266.03660366036604,-265.97659765976596,-265.91659165916593,-265.85658565856585,-265.7965796579658,-265.73657365736574,-265.67656765676566,-265.61656165616563,-265.55655565556555,-265.4965496549655,-265.43654365436544,-265.37653765376535,-265.3165316531653,-265.25652565256524,-265.1965196519652,-265.13651365136514,-265.07650765076505,-265.016501650165,-264.95649564956494,-264.8964896489649,-264.83648364836483,-264.77647764776475,-264.7164716471647,-264.65646564656464,-264.5964596459646,-264.53645364536453,-264.47644764476445,-264.4164416441644,-264.35643564356434,-264.2964296429643,-264.23642364236423,-264.1764176417642,-264.1164116411641,-264.05640564056404,-263.996399639964,-263.9363936393639,-263.8763876387639,-263.8163816381638,-263.75637563756374,-263.6963696369637,-263.6363636363636,-263.5763576357636,-263.5163516351635,-263.45634563456343,-263.3963396339634,-263.3363336333633,-263.2763276327633,-263.2163216321632,-263.15631563156313,-263.0963096309631,-263.036303630363,-262.976297629763,-262.9162916291629,-262.85628562856283,-262.7962796279628,-262.7362736273627,-262.6762676267627,-262.6162616261626,-262.5562556255625,-262.4962496249625,-262.4362436243624,-262.3762376237624,-262.3162316231623,-262.2562256225623,-262.1962196219622,-262.1362136213621,-262.0762076207621,-262.016201620162,-261.956195619562,-261.8961896189619,-261.8361836183618,-261.7761776177618,-261.7161716171617,-261.6561656165617,-261.5961596159616,-261.5361536153615,-261.4761476147615,-261.4161416141614,-261.3561356135614,-261.2961296129613,-261.2361236123612,-261.1761176117612,-261.1161116111611,-261.0561056105611,-260.996099609961,-260.9360936093609,-260.8760876087609,-260.8160816081608,-260.7560756075608,-260.6960696069607,-260.6360636063606,-260.5760576057606,-260.5160516051605,-260.4560456045605,-260.3960396039604,-260.33603360336036,-260.2760276027603,-260.2160216021602,-260.15601560156017,-260.0960096009601,-260.03600360036006,-259.97599759976,-259.9159915991599,-259.85598559855987,-259.7959795979598,-259.73597359735976,-259.6759675967597,-259.6159615961596,-259.55595559555957,-259.4959495949595,-259.43594359435946,-259.3759375937594,-259.3159315931593,-259.25592559255927,-259.1959195919592,-259.13591359135916,-259.0759075907591,-259.015901590159,-258.95589558955896,-258.8958895889589,-258.83588358835885,-258.77587758775877,-258.7158715871587,-258.65586558655866,-258.5958595859586,-258.53585358535855,-258.47584758475847,-258.41584158415844,-258.35583558355836,-258.2958295829583,-258.23582358235825,-258.17581758175817,-258.11581158115814,-258.05580558055806,-257.995799579958,-257.93579357935795,-257.87578757875787,-257.81578157815784,-257.75577557755776,-257.6957695769577,-257.63576357635765,-257.57575757575756,-257.51575157515754,-257.45574557455745,-257.39573957395737,-257.33573357335734,-257.27572757275726,-257.21572157215724,-257.15571557155715,-257.09570957095707,-257.03570357035704,-256.97569756975696,-256.91569156915693,-256.85568556855685,-256.79567956795677,-256.73567356735674,-256.67566756675666,-256.61566156615663,-256.55565556555655,-256.4956495649565,-256.43564356435644,-256.37563756375636,-256.31563156315633,-256.25562556255625,-256.1956195619562,-256.13561356135614,-256.07560756075605,-256.01560156015603,-255.95559555955595,-255.8955895589559,-255.83558355835584,-255.77557755775578,-255.71557155715573,-255.65556555655564,-255.5955595559556,-255.53555355535553,-255.47554755475548,-255.41554155415542,-255.35553555355534,-255.2955295529553,-255.23552355235523,-255.17551755175518,-255.11551155115512,-255.05550555055507,-254.99549954995499,-254.93549354935493,-254.87548754875488,-254.81548154815482,-254.75547554755477,-254.69546954695468,-254.63546354635463,-254.57545754575457,-254.51545154515452,-254.45544554455446,-254.39543954395438,-254.33543354335433,-254.27542754275427,-254.21542154215422,-254.15541554155416,-254.0954095409541,-254.03540354035403,-253.97539753975397,-253.91539153915392,-253.85538553855386,-253.7953795379538,-253.73537353735372,-253.67536753675367,-253.6153615361536,-253.55535553555356,-253.4953495349535,-253.43534353435342,-253.37533753375337,-253.3153315331533,-253.25532553255326,-253.1953195319532,-253.13531353135315,-253.07530753075307,-253.015301530153,-252.95529552955296,-252.8952895289529,-252.83528352835285,-252.77527752775276,-252.7152715271527,-252.65526552655265,-252.5952595259526,-252.53525352535254,-252.47524752475246,-252.4152415241524,-252.35523552355235,-252.2952295229523,-252.23522352235224,-252.1752175217522,-252.1152115211521,-252.05520552055205,-251.995199519952,-251.93519351935194,-251.8751875187519,-251.8151815181518,-251.75517551755175,-251.6951695169517,-251.63516351635164,-251.57515751575158,-251.5151515151515,-251.45514551455145,-251.3951395139514,-251.33513351335134,-251.27512751275128,-251.21512151215123,-251.15511551155114,-251.0951095109511,-251.03510351035104,-250.97509750975098,-250.91509150915093,-250.85508550855084,-250.7950795079508,-250.73507350735073,-250.67506750675068,-250.61506150615062,-250.55505550555054,-250.4950495049505,-250.43504350435043,-250.37503750375038,-250.31503150315032,-250.25502550255027,-250.19501950195018,-250.13501350135013,-250.07500750075008,-250.01500150015002,-249.95499549954997,-249.89498949894988,-249.83498349834983,-249.77497749774977,-249.71497149714972,-249.65496549654966,-249.59495949594958,-249.53495349534953,-249.47494749474947,-249.41494149414942,-249.35493549354936,-249.2949294929493,-249.23492349234922,-249.17491749174917,-249.11491149114912,-249.05490549054906,-248.994899489949,-248.93489348934892,-248.87488748874887,-248.8148814881488,-248.75487548754876,-248.6948694869487,-248.63486348634862,-248.57485748574857,-248.5148514851485,-248.45484548454846,-248.3948394839484,-248.33483348334835,-248.27482748274826,-248.2148214821482,-248.15481548154816,-248.0948094809481,-248.03480348034805,-247.97479747974796,-247.9147914791479,-247.85478547854785,-247.7947794779478,-247.73477347734774,-247.67476747674766,-247.6147614761476,-247.55475547554755,-247.4947494749475,-247.43474347434744,-247.3747374737474,-247.3147314731473,-247.25472547254725,-247.1947194719472,-247.13471347134714,-247.0747074707471,-247.014701470147,-246.95469546954695,-246.8946894689469,-246.83468346834684,-246.77467746774678,-246.7146714671467,-246.65466546654665,-246.5946594659466,-246.53465346534654,-246.47464746474648,-246.41464146414643,-246.35463546354634,-246.2946294629463,-246.23462346234624,-246.17461746174618,-246.11461146114613,-246.05460546054604,-245.994599459946,-245.93459345934593,-245.87458745874588,-245.81458145814582,-245.75457545754574,-245.6945694569457,-245.63456345634563,-245.57455745574558,-245.51455145514552,-245.45454545454547,-245.39453945394538,-245.33453345334533,-245.27452745274528,-245.21452145214522,-245.15451545154517,-245.09450945094508,-245.03450345034503,-244.97449744974497,-244.91449144914492,-244.85448544854486,-244.79447944794478,-244.73447344734473,-244.67446744674467,-244.61446144614462,-244.55445544554456,-244.4944494449445,-244.43444344434442,-244.37443744374437,-244.31443144314431,-244.25442544254426,-244.1944194419442,-244.13441344134412,-244.07440744074407,-244.014401440144,-243.95439543954396,-243.8943894389439,-243.83438343834382,-243.77437743774377,-243.7143714371437,-243.65436543654366,-243.5943594359436,-243.53435343534355,-243.47434743474346,-243.4143414341434,-243.35433543354335,-243.2943294329433,-243.23432343234325,-243.17431743174316,-243.1143114311431,-243.05430543054305,-242.994299429943,-242.93429342934294,-242.87428742874286,-242.8142814281428,-242.75427542754275,-242.6942694269427,-242.63426342634264,-242.5742574257426,-242.5142514251425,-242.45424542454245,-242.3942394239424,-242.33423342334234,-242.27422742274229,-242.2142214221422,-242.15421542154215,-242.0942094209421,-242.03420342034204,-241.97419741974198,-241.9141914191419,-241.85418541854185,-241.7941794179418,-241.73417341734174,-241.67416741674168,-241.61416141614163,-241.55415541554154,-241.4941494149415,-241.43414341434143,-241.37413741374138,-241.31413141314133,-241.25412541254124,-241.1941194119412,-241.13411341134113,-241.07410741074108,-241.01410141014102,-240.95409540954094,-240.89408940894089,-240.83408340834083,-240.77407740774078,-240.71407140714072,-240.65406540654067,-240.59405940594058,-240.53405340534053,-240.47404740474047,-240.41404140414042,-240.35403540354037,-240.29402940294028,-240.23402340234023,-240.17401740174017,-240.11401140114012,-240.05400540054006,-239.99399939993998,-239.93399339933993,-239.87398739873987,-239.81398139813982,-239.75397539753976,-239.6939693969397,-239.63396339633962,-239.57395739573957,-239.51395139513951,-239.45394539453946,-239.3939393939394,-239.33393339333932,-239.27392739273927,-239.2139213921392,-239.15391539153916,-239.0939093909391,-239.03390339033902,-238.97389738973897,-238.9138913891389,-238.85388538853886,-238.7938793879388,-238.73387338733875,-238.67386738673866,-238.6138613861386,-238.55385538553855,-238.4938493849385,-238.43384338433845,-238.37383738373836,-238.3138313831383,-238.25382538253825,-238.1938193819382,-238.13381338133814,-238.07380738073806,-238.013801380138,-237.95379537953795,-237.8937893789379,-237.83378337833784,-237.7737773777378,-237.7137713771377,-237.65376537653765,-237.5937593759376,-237.53375337533754,-237.47374737473748,-237.4137413741374,-237.35373537353735,-237.2937293729373,-237.23372337233724,-237.17371737173718,-237.1137113711371,-237.05370537053705,-236.993699369937,-236.93369336933694,-236.87368736873688,-236.81368136813683,-236.75367536753674,-236.6936693669367,-236.63366336633663,-236.57365736573658,-236.51365136513652,-236.45364536453644,-236.3936393639364,-236.33363336333633,-236.27362736273628,-236.21362136213622,-236.15361536153614,-236.09360936093609,-236.03360336033603,-235.97359735973598,-235.91359135913592,-235.85358535853587,-235.79357935793578,-235.73357335733573,-235.67356735673567,-235.61356135613562,-235.55355535553556,-235.49354935493548,-235.43354335433543,-235.37353735373537,-235.31353135313532,-235.25352535253526,-235.19351935193518,-235.13351335133513,-235.07350735073507,-235.01350135013502,-234.95349534953496,-234.8934893489349,-234.83348334833482,-234.77347734773477,-234.7134713471347,-234.65346534653466,-234.5934593459346,-234.53345334533452,-234.47344734473447,-234.4134413441344,-234.35343534353436,-234.2934293429343,-234.23342334233422,-234.17341734173417,-234.1134113411341,-234.05340534053406,-233.993399339934,-233.93339333933395,-233.87338733873386,-233.8133813381338,-233.75337533753375,-233.6933693369337,-233.63336333633364,-233.57335733573356,-233.5133513351335,-233.45334533453345,-233.3933393339334,-233.33333333333334,-233.27332733273326,-233.2133213321332,-233.15331533153315,-233.0933093309331,-233.03330333033304,-232.973297329733,-232.9132913291329,-232.85328532853285,-232.7932793279328,-232.73327332733274,-232.67326732673268,-232.6132613261326,-232.55325532553255,-232.4932493249325,-232.43324332433244,-232.37323732373238,-232.3132313231323,-232.25322532253224,-232.1932193219322,-232.13321332133214,-232.07320732073208,-232.01320132013203,-231.95319531953194,-231.8931893189319,-231.83318331833183,-231.77317731773178,-231.71317131713172,-231.65316531653164,-231.5931593159316,-231.53315331533153,-231.47314731473148,-231.41314131413142,-231.35313531353134,-231.29312931293128,-231.23312331233123,-231.17311731173118,-231.11311131113112,-231.05310531053107,-230.99309930993098,-230.93309330933093,-230.87308730873087,-230.81308130813082,-230.75307530753076,-230.69306930693068,-230.63306330633063,-230.57305730573057,-230.51305130513052,-230.45304530453046,-230.39303930393038,-230.33303330333032,-230.27302730273027,-230.21302130213022,-230.15301530153016,-230.0930093009301,-230.03300330033002,-229.97299729972997,-229.9129912991299,-229.85298529852986,-229.7929792979298,-229.73297329732972,-229.67296729672967,-229.6129612961296,-229.55295529552956,-229.4929492949295,-229.43294329432942,-229.37293729372936,-229.3129312931293,-229.25292529252926,-229.1929192919292,-229.13291329132915,-229.07290729072906,-229.012901290129,-228.95289528952895,-228.8928892889289,-228.83288328832884,-228.77287728772876,-228.7128712871287,-228.65286528652865,-228.5928592859286,-228.53285328532854,-228.47284728472846,-228.4128412841284,-228.35283528352835,-228.2928292829283,-228.23282328232824,-228.1728172817282,-228.1128112811281,-228.05280528052805,-227.992799279928,-227.93279327932794,-227.87278727872788,-227.8127812781278,-227.75277527752775,-227.6927692769277,-227.63276327632764,-227.57275727572758,-227.5127512751275,-227.45274527452744,-227.3927392739274,-227.33273327332734,-227.27272727272728,-227.21272127212723,-227.15271527152714,-227.0927092709271,-227.03270327032703,-226.97269726972698,-226.91269126912692,-226.85268526852684,-226.7926792679268,-226.73267326732673,-226.67266726672668,-226.61266126612662,-226.55265526552654,-226.49264926492648,-226.43264326432643,-226.37263726372638,-226.31263126312632,-226.25262526252627,-226.19261926192618,-226.13261326132613,-226.07260726072607,-226.01260126012602,-225.95259525952596,-225.89258925892588,-225.83258325832583,-225.77257725772577,-225.71257125712572,-225.65256525652566,-225.59255925592558,-225.53255325532552,-225.47254725472547,-225.41254125412541,-225.35253525352536,-225.2925292529253,-225.23252325232522,-225.17251725172517,-225.1125112511251,-225.05250525052506,-224.992499249925,-224.93249324932492,-224.87248724872487,-224.8124812481248,-224.75247524752476,-224.6924692469247,-224.63246324632462,-224.57245724572456,-224.5124512451245,-224.45244524452445,-224.3924392439244,-224.33243324332435,-224.27242724272426,-224.2124212421242,-224.15241524152415,-224.0924092409241,-224.03240324032404,-223.97239723972396,-223.9123912391239,-223.85238523852385,-223.7923792379238,-223.73237323732374,-223.67236723672366,-223.6123612361236,-223.55235523552355,-223.4923492349235,-223.43234323432344,-223.37233723372339,-223.3123312331233,-223.25232523252325,-223.1923192319232,-223.13231323132314,-223.07230723072308,-223.012301230123,-222.95229522952295,-222.8922892289229,-222.83228322832284,-222.77227722772278,-222.7122712271227,-222.65226522652264,-222.5922592259226,-222.53225322532253,-222.47224722472248,-222.41224122412243,-222.35223522352234,-222.2922292229223,-222.23222322232223,-222.17221722172218,-222.11221122112212,-222.05220522052204,-221.99219921992199,-221.93219321932193,-221.87218721872188,-221.81218121812182,-221.75217521752174,-221.69216921692168,-221.63216321632163,-221.57215721572157,-221.51215121512152,-221.45214521452147,-221.39213921392138,-221.33213321332133,-221.27212721272127,-221.21212121212122,-221.15211521152116,-221.09210921092108,-221.03210321032103,-220.97209720972097,-220.91209120912092,-220.85208520852086,-220.79207920792078,-220.73207320732072,-220.67206720672067,-220.61206120612061,-220.55205520552056,-220.4920492049205,-220.43204320432042,-220.37203720372037,-220.3120312031203,-220.25202520252026,-220.1920192019202,-220.13201320132012,-220.07200720072007,-220.01200120012,-219.95199519951996,-219.8919891989199,-219.83198319831982,-219.77197719771976,-219.7119711971197,-219.65196519651965,-219.5919591959196,-219.53195319531955,-219.47194719471946,-219.4119411941194,-219.35193519351935,-219.2919291929193,-219.23192319231924,-219.17191719171916,-219.1119111911191,-219.05190519051905,-218.991899189919,-218.93189318931894,-218.87188718871886,-218.8118811881188,-218.75187518751875,-218.6918691869187,-218.63186318631864,-218.57185718571859,-218.5118511851185,-218.45184518451845,-218.3918391839184,-218.33183318331834,-218.27182718271828,-218.2118211821182,-218.15181518151815,-218.0918091809181,-218.03180318031804,-217.97179717971798,-217.9117911791179,-217.85178517851784,-217.7917791779178,-217.73177317731773,-217.67176717671768,-217.61176117611762,-217.55175517551754,-217.4917491749175,-217.43174317431743,-217.37173717371738,-217.31173117311732,-217.25172517251724,-217.19171917191719,-217.13171317131713,-217.07170717071708,-217.01170117011702,-216.95169516951694,-216.89168916891688,-216.83168316831683,-216.77167716771677,-216.71167116711672,-216.65166516651666,-216.59165916591658,-216.53165316531653,-216.47164716471647,-216.41164116411642,-216.35163516351636,-216.29162916291628,-216.23162316231623,-216.17161716171617,-216.11161116111612,-216.05160516051606,-215.99159915991598,-215.93159315931592,-215.87158715871587,-215.8115811581158,-215.75157515751576,-215.6915691569157,-215.63156315631562,-215.57155715571557,-215.5115511551155,-215.45154515451546,-215.3915391539154,-215.33153315331532,-215.27152715271527,-215.2115211521152,-215.15151515151516,-215.0915091509151,-215.03150315031502,-214.97149714971496,-214.9114911491149,-214.85148514851485,-214.7914791479148,-214.73147314731474,-214.67146714671466,-214.6114611461146,-214.55145514551455,-214.4914491449145,-214.43144314431444,-214.37143714371436,-214.3114311431143,-214.25142514251425,-214.1914191419142,-214.13141314131414,-214.07140714071406,-214.011401140114,-213.95139513951395,-213.8913891389139,-213.83138313831384,-213.77137713771378,-213.7113711371137,-213.65136513651365,-213.5913591359136,-213.53135313531354,-213.47134713471348,-213.4113411341134,-213.35133513351334,-213.2913291329133,-213.23132313231324,-213.17131713171318,-213.1113111311131,-213.05130513051304,-212.991299129913,-212.93129312931293,-212.87128712871288,-212.81128112811282,-212.75127512751274,-212.6912691269127,-212.63126312631263,-212.57125712571258,-212.51125112511252,-212.45124512451244,-212.39123912391238,-212.33123312331233,-212.27122712271228,-212.21122112211222,-212.15121512151214,-212.09120912091208,-212.03120312031203,-211.97119711971197,-211.91119111911192,-211.85118511851186,-211.79117911791178,-211.73117311731173,-211.67116711671167,-211.61116111611162,-211.55115511551156,-211.49114911491148,-211.43114311431142,-211.37113711371137,-211.31113111311132,-211.25112511251126,-211.19111911191118,-211.13111311131112,-211.07110711071107,-211.011101110111,-210.95109510951096,-210.8910891089109,-210.83108310831082,-210.77107710771077,-210.7110711071107,-210.65106510651066,-210.5910591059106,-210.53105310531052,-210.47104710471046,-210.4110411041104,-210.35103510351036,-210.2910291029103,-210.23102310231022,-210.17101710171016,-210.1110111011101,-210.05100510051005,-209.99099909991,-209.93099309930994,-209.87098709870986,-209.8109810981098,-209.75097509750975,-209.6909690969097,-209.63096309630964,-209.57095709570956,-209.5109510951095,-209.45094509450945,-209.3909390939094,-209.33093309330934,-209.27092709270926,-209.2109210921092,-209.15091509150915,-209.0909090909091,-209.03090309030904,-208.97089708970898,-208.9108910891089,-208.85088508850885,-208.7908790879088,-208.73087308730874,-208.67086708670868,-208.6108610861086,-208.55085508550854,-208.4908490849085,-208.43084308430844,-208.37083708370838,-208.3108310831083,-208.25082508250824,-208.1908190819082,-208.13081308130813,-208.07080708070808,-208.01080108010802,-207.95079507950794,-207.8907890789079,-207.83078307830783,-207.77077707770778,-207.71077107710772,-207.65076507650764,-207.59075907590758,-207.53075307530753,-207.47074707470748,-207.41074107410742,-207.35073507350734,-207.29072907290728,-207.23072307230723,-207.17071707170717,-207.11071107110712,-207.05070507050706,-206.99069906990698,-206.93069306930693,-206.87068706870687,-206.81068106810682,-206.75067506750676,-206.69066906690668,-206.63066306630662,-206.57065706570657,-206.51065106510652,-206.45064506450646,-206.39063906390638,-206.33063306330632,-206.27062706270627,-206.2106210621062,-206.15061506150616,-206.0906090609061,-206.03060306030602,-205.97059705970597,-205.9105910591059,-205.85058505850586,-205.7905790579058,-205.73057305730572,-205.67056705670566,-205.6105610561056,-205.55055505550555,-205.4905490549055,-205.43054305430542,-205.37053705370536,-205.3105310531053,-205.25052505250525,-205.1905190519052,-205.13051305130514,-205.07050705070506,-205.010501050105,-204.95049504950495,-204.8904890489049,-204.83048304830484,-204.77047704770476,-204.7104710471047,-204.65046504650465,-204.5904590459046,-204.53045304530454,-204.47044704470446,-204.4104410441044,-204.35043504350435,-204.2904290429043,-204.23042304230424,-204.17041704170418,-204.1104110411041,-204.05040504050405,-203.990399039904,-203.93039303930394,-203.87038703870388,-203.8103810381038,-203.75037503750374,-203.6903690369037,-203.63036303630363,-203.57035703570358,-203.5103510351035,-203.45034503450344,-203.3903390339034,-203.33033303330333,-203.27032703270328,-203.21032103210322,-203.15031503150314,-203.0903090309031,-203.03030303030303,-202.97029702970298,-202.91029102910292,-202.85028502850284,-202.79027902790278,-202.73027302730273,-202.67026702670267,-202.61026102610262,-202.55025502550254,-202.49024902490248,-202.43024302430243,-202.37023702370237,-202.31023102310232,-202.25022502250226,-202.19021902190218,-202.13021302130213,-202.07020702070207,-202.01020102010202,-201.95019501950196,-201.89018901890188,-201.83018301830182,-201.77017701770177,-201.71017101710171,-201.65016501650166,-201.59015901590158,-201.53015301530152,-201.47014701470147,-201.4101410141014,-201.35013501350136,-201.2901290129013,-201.23012301230122,-201.17011701170117,-201.1101110111011,-201.05010501050106,-200.990099009901,-200.93009300930092,-200.87008700870086,-200.8100810081008,-200.75007500750075,-200.6900690069007,-200.63006300630062,-200.57005700570056,-200.5100510051005,-200.45004500450045,-200.3900390039004,-200.33003300330034,-200.27002700270026,-200.2100210021002,-200.15001500150015,-200.0900090009001,-200.03000300030004,-199.96999699969996,-199.9099909990999,-199.84998499849985,-199.7899789978998,-199.72997299729974,-199.66996699669966,-199.6099609960996,-199.54995499549955,-199.4899489948995,-199.42994299429944,-199.36993699369938,-199.3099309930993,-199.24992499249925,-199.1899189918992,-199.12991299129914,-199.06990699069908,-199.009900990099,-198.94989498949894,-198.8898889888989,-198.82988298829883,-198.76987698769878,-198.7098709870987,-198.64986498649864,-198.5898589858986,-198.52985298529853,-198.46984698469848,-198.40984098409842,-198.34983498349834,-198.28982898289829,-198.22982298229823,-198.16981698169818,-198.10981098109812,-198.04980498049804,-197.98979897989798,-197.92979297929793,-197.86978697869787,-197.80978097809782,-197.74977497749774,-197.68976897689768,-197.62976297629763,-197.56975697569757,-197.50975097509752,-197.44974497449746,-197.38973897389738,-197.32973297329733,-197.26972697269727,-197.20972097209722,-197.14971497149716,-197.08970897089708,-197.02970297029702,-196.96969696969697,-196.9096909690969,-196.84968496849686,-196.78967896789678,-196.72967296729672,-196.66966696669667,-196.6096609660966,-196.54965496549656,-196.4896489648965,-196.42964296429642,-196.36963696369637,-196.3096309630963,-196.24962496249626,-196.1896189618962,-196.12961296129612,-196.06960696069606,-196.009600960096,-195.94959495949595,-195.8895889588959,-195.82958295829582,-195.76957695769576,-195.7095709570957,-195.64956495649565,-195.5895589558956,-195.52955295529554,-195.46954695469546,-195.4095409540954,-195.34953495349535,-195.2895289528953,-195.22952295229524,-195.16951695169516,-195.1095109510951,-195.04950495049505,-194.989498949895,-194.92949294929494,-194.86948694869486,-194.8094809480948,-194.74947494749475,-194.6894689468947,-194.62946294629464,-194.56945694569458,-194.5094509450945,-194.44944494449445,-194.3894389438944,-194.32943294329434,-194.26942694269428,-194.2094209420942,-194.14941494149414,-194.0894089408941,-194.02940294029403,-193.96939693969398,-193.9093909390939,-193.84938493849384,-193.7893789378938,-193.72937293729373,-193.66936693669368,-193.60936093609362,-193.54935493549354,-193.48934893489348,-193.42934293429343,-193.36933693369338,-193.30933093309332,-193.24932493249324,-193.18931893189318,-193.12931293129313,-193.06930693069307,-193.00930093009302,-192.94929492949294,-192.88928892889288,-192.82928292829283,-192.76927692769277,-192.70927092709272,-192.64926492649266,-192.58925892589258,-192.52925292529252,-192.46924692469247,-192.40924092409242,-192.34923492349236,-192.28922892289228,-192.22922292229222,-192.16921692169217,-192.1092109210921,-192.04920492049206,-191.98919891989198,-191.92919291929192,-191.86918691869187,-191.8091809180918,-191.74917491749176,-191.6891689168917,-191.62916291629162,-191.56915691569156,-191.5091509150915,-191.44914491449146,-191.3891389138914,-191.32913291329132,-191.26912691269126,-191.2091209120912,-191.14911491149115,-191.0891089108911,-191.02910291029102,-190.96909690969096,-190.9090909090909,-190.84908490849085,-190.7890789078908,-190.72907290729074,-190.66906690669066,-190.6090609060906,-190.54905490549055,-190.4890489048905,-190.42904290429044,-190.36903690369036,-190.3090309030903,-190.24902490249025,-190.1890189018902,-190.12901290129014,-190.06900690069006,-190.00900090009,-189.94899489948995,-189.8889888988899,-189.82898289828984,-189.76897689768978,-189.7089708970897,-189.64896489648964,-189.5889588958896,-189.52895289528954,-189.46894689468948,-189.4089408940894,-189.34893489348934,-189.2889288928893,-189.22892289228923,-189.16891689168918,-189.1089108910891,-189.04890489048904,-188.988898889889,-188.92889288928893,-188.86888688868888,-188.80888088808882,-188.74887488748874,-188.68886888688868,-188.62886288628863,-188.56885688568858,-188.50885088508852,-188.44884488448844,-188.38883888388838,-188.32883288328833,-188.26882688268827,-188.20882088208822,-188.14881488148814,-188.08880888088808,-188.02880288028803,-187.96879687968797,-187.90879087908792,-187.84878487848786,-187.78877887788778,-187.72877287728772,-187.66876687668767,-187.60876087608762,-187.54875487548756,-187.48874887488748,-187.42874287428742,-187.36873687368737,-187.3087308730873,-187.24872487248726,-187.18871887188718,-187.12871287128712,-187.06870687068707,-187.008700870087,-186.94869486948696,-186.8886888688869,-186.82868286828682,-186.76867686768676,-186.7086708670867,-186.64866486648666,-186.5886588658866,-186.52865286528652,-186.46864686468646,-186.4086408640864,-186.34863486348635,-186.2886288628863,-186.22862286228622,-186.16861686168616,-186.1086108610861,-186.04860486048605,-185.988598859886,-185.92859285928594,-185.86858685868586,-185.8085808580858,-185.74857485748575,-185.6885688568857,-185.62856285628564,-185.56855685568556,-185.5085508550855,-185.44854485448545,-185.3885388538854,-185.32853285328534,-185.26852685268526,-185.2085208520852,-185.14851485148515,-185.0885088508851,-185.02850285028504,-184.96849684968498,-184.9084908490849,-184.84848484848484,-184.7884788478848,-184.72847284728473,-184.66846684668468,-184.6084608460846,-184.54845484548454,-184.4884488448845,-184.42844284428443,-184.36843684368438,-184.3084308430843,-184.24842484248424,-184.1884188418842,-184.12841284128413,-184.06840684068408,-184.00840084008402,-183.94839483948394,-183.88838883888388,-183.82838283828383,-183.76837683768377,-183.70837083708372,-183.64836483648364,-183.58835883588358,-183.52835283528353,-183.46834683468347,-183.40834083408342,-183.34833483348334,-183.28832883288328,-183.22832283228323,-183.16831683168317,-183.10831083108312,-183.04830483048306,-182.98829882988298,-182.92829282928292,-182.86828682868287,-182.80828082808281,-182.74827482748276,-182.68826882688268,-182.62826282628262,-182.56825682568257,-182.5082508250825,-182.44824482448246,-182.38823882388238,-182.32823282328232,-182.26822682268227,-182.2082208220822,-182.14821482148216,-182.0882088208821,-182.02820282028202,-181.96819681968196,-181.9081908190819,-181.84818481848185,-181.7881788178818,-181.72817281728172,-181.66816681668166,-181.6081608160816,-181.54815481548155,-181.4881488148815,-181.42814281428141,-181.36813681368136,-181.3081308130813,-181.24812481248125,-181.1881188118812,-181.12811281128114,-181.06810681068106,-181.008100810081,-180.94809480948095,-180.8880888088809,-180.82808280828084,-180.76807680768076,-180.7080708070807,-180.64806480648065,-180.5880588058806,-180.52805280528054,-180.46804680468045,-180.4080408040804,-180.34803480348035,-180.2880288028803,-180.22802280228024,-180.16801680168018,-180.1080108010801,-180.04800480048004,-179.98799879988,-179.92799279927993,-179.86798679867988,-179.8079807980798,-179.74797479747974,-179.6879687968797,-179.62796279627963,-179.56795679567958,-179.5079507950795,-179.44794479447944,-179.38793879387939,-179.32793279327933,-179.26792679267928,-179.20792079207922,-179.14791479147914,-179.08790879087908,-179.02790279027903,-178.96789678967897,-178.90789078907892,-178.84788478847884,-178.78787878787878,-178.72787278727873,-178.66786678667867,-178.60786078607862,-178.54785478547853,-178.48784878487848,-178.42784278427843,-178.36783678367837,-178.30783078307832,-178.24782478247826,-178.18781878187818,-178.12781278127812,-178.06780678067807,-178.00780078007801,-177.94779477947796,-177.88778877887788,-177.82778277827782,-177.76777677767777,-177.7077707770777,-177.64776477647766,-177.58775877587757,-177.52775277527752,-177.46774677467747,-177.4077407740774,-177.34773477347736,-177.2877287728773,-177.22772277227722,-177.16771677167716,-177.1077107710771,-177.04770477047705,-176.987698769877,-176.92769276927692,-176.86768676867686,-176.8076807680768,-176.74767476747675,-176.6876687668767,-176.62766276627661,-176.56765676567656,-176.5076507650765,-176.44764476447645,-176.3876387638764,-176.32763276327634,-176.26762676267626,-176.2076207620762,-176.14761476147615,-176.0876087608761,-176.02760276027604,-175.96759675967596,-175.9075907590759,-175.84758475847585,-175.7875787578758,-175.72757275727574,-175.66756675667565,-175.6075607560756,-175.54755475547555,-175.4875487548755,-175.42754275427544,-175.36753675367538,-175.3075307530753,-175.24752475247524,-175.1875187518752,-175.12751275127513,-175.06750675067508,-175.007500750075,-174.94749474947494,-174.8874887488749,-174.82748274827483,-174.76747674767478,-174.7074707470747,-174.64746474647464,-174.58745874587459,-174.52745274527453,-174.46744674467448,-174.40744074407442,-174.34743474347434,-174.28742874287428,-174.22742274227423,-174.16741674167417,-174.10741074107412,-174.04740474047404,-173.98739873987398,-173.92739273927393,-173.86738673867387,-173.80738073807382,-173.74737473747373,-173.68736873687368,-173.62736273627362,-173.56735673567357,-173.50735073507352,-173.44734473447346,-173.38733873387338,-173.32733273327332,-173.26732673267327,-173.2073207320732,-173.14731473147316,-173.08730873087308,-173.02730273027302,-172.96729672967297,-172.9072907290729,-172.84728472847286,-172.78727872787277,-172.72727272727272,-172.66726672667266,-172.6072607260726,-172.54725472547256,-172.4872487248725,-172.42724272427242,-172.36723672367236,-172.3072307230723,-172.24722472247225,-172.1872187218722,-172.12721272127212,-172.06720672067206,-172.007200720072,-171.94719471947195,-171.8871887188719,-171.8271827182718,-171.76717671767176,-171.7071707170717,-171.64716471647165,-171.5871587158716,-171.52715271527154,-171.46714671467146,-171.4071407140714,-171.34713471347135,-171.2871287128713,-171.22712271227124,-171.16711671167116,-171.1071107110711,-171.04710471047105,-170.987098709871,-170.92709270927094,-170.86708670867085,-170.8070807080708,-170.74707470747074,-170.6870687068707,-170.62706270627064,-170.56705670567058,-170.5070507050705,-170.44704470447044,-170.3870387038704,-170.32703270327033,-170.26702670267028,-170.2070207020702,-170.14701470147014,-170.0870087008701,-170.02700270027003,-169.96699669966998,-169.9069906990699,-169.84698469846984,-169.78697869786978,-169.72697269726973,-169.66696669666968,-169.60696069606962,-169.54695469546954,-169.48694869486948,-169.42694269426943,-169.36693669366937,-169.30693069306932,-169.24692469246924,-169.18691869186918,-169.12691269126913,-169.06690669066907,-169.00690069006902,-168.94689468946893,-168.88688868886888,-168.82688268826882,-168.76687668766877,-168.70687068706872,-168.64686468646866,-168.58685868586858,-168.52685268526852,-168.46684668466847,-168.4068406840684,-168.34683468346836,-168.28682868286828,-168.22682268226822,-168.16681668166817,-168.1068106810681,-168.04680468046806,-167.98679867986797,-167.92679267926792,-167.86678667866786,-167.8067806780678,-167.74677467746776,-167.6867686768677,-167.62676267626762,-167.56675667566756,-167.5067506750675,-167.44674467446745,-167.3867386738674,-167.32673267326732,-167.26672667266726,-167.2067206720672,-167.14671467146715,-167.0867086708671,-167.026702670267,-166.96669666966696,-166.9066906690669,-166.84668466846685,-166.7866786678668,-166.72667266726674,-166.66666666666666,-166.6066606660666,-166.54665466546655,-166.4866486648665,-166.42664266426644,-166.36663666366636,-166.3066306630663,-166.24662466246625,-166.1866186618662,-166.12661266126614,-166.06660666066605,-166.006600660066,-165.94659465946594,-165.8865886588659,-165.82658265826583,-165.76657665766578,-165.7065706570657,-165.64656465646564,-165.5865586558656,-165.52655265526553,-165.46654665466548,-165.4065406540654,-165.34653465346534,-165.2865286528653,-165.22652265226523,-165.16651665166518,-165.1065106510651,-165.04650465046504,-164.98649864986498,-164.92649264926493,-164.86648664866487,-164.80648064806482,-164.74647464746474,-164.68646864686468,-164.62646264626463,-164.56645664566457,-164.50645064506452,-164.44644464446444,-164.38643864386438,-164.32643264326433,-164.26642664266427,-164.20642064206422,-164.14641464146413,-164.08640864086408,-164.02640264026402,-163.96639663966397,-163.90639063906391,-163.84638463846386,-163.78637863786378,-163.72637263726372,-163.66636663666367,-163.6063606360636,-163.54635463546356,-163.48634863486348,-163.42634263426342,-163.36633663366337,-163.3063306330633,-163.24632463246326,-163.18631863186317,-163.12631263126312,-163.06630663066306,-163.006300630063,-162.94629462946295,-162.8862886288629,-162.82628262826282,-162.76627662766276,-162.7062706270627,-162.64626462646265,-162.5862586258626,-162.52625262526252,-162.46624662466246,-162.4062406240624,-162.34623462346235,-162.2862286228623,-162.2262226222622,-162.16621662166216,-162.1062106210621,-162.04620462046205,-161.986198619862,-161.92619261926194,-161.86618661866186,-161.8061806180618,-161.74617461746175,-161.6861686168617,-161.62616261626164,-161.56615661566155,-161.5061506150615,-161.44614461446145,-161.3861386138614,-161.32613261326134,-161.26612661266125,-161.2061206120612,-161.14611461146114,-161.0861086108611,-161.02610261026103,-160.96609660966098,-160.9060906090609,-160.84608460846084,-160.7860786078608,-160.72607260726073,-160.66606660666068,-160.6060606060606,-160.54605460546054,-160.48604860486049,-160.42604260426043,-160.36603660366038,-160.3060306030603,-160.24602460246024,-160.18601860186018,-160.12601260126013,-160.06600660066007,-160.00600060006002,-159.94599459945994,-159.88598859885988,-159.82598259825983,-159.76597659765977,-159.70597059705972,-159.64596459645963,-159.58595859585958,-159.52595259525953,-159.46594659465947,-159.40594059405942,-159.34593459345933,-159.28592859285928,-159.22592259225922,-159.16591659165917,-159.10591059105911,-159.04590459045906,-158.98589858985898,-158.92589258925892,-158.86588658865887,-158.8058805880588,-158.74587458745876,-158.68586858685867,-158.62586258625862,-158.56585658565857,-158.5058505850585,-158.44584458445846,-158.38583858385837,-158.32583258325832,-158.26582658265826,-158.2058205820582,-158.14581458145815,-158.0858085808581,-158.02580258025802,-157.96579657965796,-157.9057905790579,-157.84578457845785,-157.7857785778578,-157.72577257725771,-157.66576657665766,-157.6057605760576,-157.54575457545755,-157.4857485748575,-157.4257425742574,-157.36573657365736,-157.3057305730573,-157.24572457245725,-157.1857185718572,-157.12571257125714,-157.06570657065706,-157.005700570057,-156.94569456945695,-156.8856885688569,-156.82568256825684,-156.76567656765675,-156.7056705670567,-156.64566456645665,-156.5856585658566,-156.52565256525654,-156.46564656465645,-156.4056405640564,-156.34563456345634,-156.2856285628563,-156.22562256225623,-156.16561656165618,-156.1056105610561,-156.04560456045604,-155.985598559856,-155.92559255925593,-155.86558655865588,-155.8055805580558,-155.74557455745574,-155.68556855685569,-155.62556255625563,-155.56555655565558,-155.5055505550555,-155.44554455445544,-155.38553855385538,-155.32553255325533,-155.26552655265527,-155.20552055205522,-155.14551455145514,-155.08550855085508,-155.02550255025503,-154.96549654965497,-154.90549054905492,-154.84548454845483,-154.78547854785478,-154.72547254725472,-154.66546654665467,-154.60546054605462,-154.54545454545453,-154.48544854485448,-154.42544254425442,-154.36543654365437,-154.3054305430543,-154.24542454245426,-154.18541854185418,-154.12541254125412,-154.06540654065407,-154.005400540054,-153.94539453945396,-153.88538853885387,-153.82538253825382,-153.76537653765376,-153.7053705370537,-153.64536453645366,-153.58535853585357,-153.52535253525352,-153.46534653465346,-153.4053405340534,-153.34533453345335,-153.2853285328533,-153.22532253225322,-153.16531653165316,-153.1053105310531,-153.04530453045305,-152.985298529853,-152.9252925292529,-152.86528652865286,-152.8052805280528,-152.74527452745275,-152.6852685268527,-152.6252625262526,-152.56525652565256,-152.5052505250525,-152.44524452445245,-152.3852385238524,-152.32523252325234,-152.26522652265226,-152.2052205220522,-152.14521452145215,-152.0852085208521,-152.02520252025204,-151.96519651965195,-151.9051905190519,-151.84518451845184,-151.7851785178518,-151.72517251725174,-151.66516651665165,-151.6051605160516,-151.54515451545154,-151.4851485148515,-151.42514251425143,-151.36513651365138,-151.3051305130513,-151.24512451245124,-151.1851185118512,-151.12511251125113,-151.06510651065108,-151.005100510051,-150.94509450945094,-150.88508850885088,-150.82508250825083,-150.76507650765078,-150.7050705070507,-150.64506450645064,-150.58505850585058,-150.52505250525053,-150.46504650465047,-150.40504050405042,-150.34503450345034,-150.28502850285028,-150.22502250225023,-150.16501650165017,-150.10501050105012,-150.04500450045003,-149.98499849984998,-149.92499249924992,-149.86498649864987,-149.80498049804982,-149.74497449744973,-149.68496849684968,-149.62496249624962,-149.56495649564957,-149.5049504950495,-149.44494449444946,-149.38493849384938,-149.32493249324932,-149.26492649264927,-149.2049204920492,-149.14491449144916,-149.08490849084907,-149.02490249024902,-148.96489648964896,-148.9048904890489,-148.84488448844886,-148.78487848784877,-148.72487248724872,-148.66486648664866,-148.6048604860486,-148.54485448544855,-148.4848484848485,-148.42484248424842,-148.36483648364836,-148.3048304830483,-148.24482448244825,-148.1848184818482,-148.1248124812481,-148.06480648064806,-148.004800480048,-147.94479447944795,-147.8847884788479,-147.8247824782478,-147.76477647764776,-147.7047704770477,-147.64476447644765,-147.5847584758476,-147.52475247524754,-147.46474647464746,-147.4047404740474,-147.34473447344735,-147.2847284728473,-147.22472247224724,-147.16471647164715,-147.1047104710471,-147.04470447044704,-146.984698469847,-146.92469246924693,-146.86468646864685,-146.8046804680468,-146.74467446744674,-146.6846684668467,-146.62466246624663,-146.56465646564658,-146.5046504650465,-146.44464446444644,-146.3846384638464,-146.32463246324633,-146.26462646264628,-146.2046204620462,-146.14461446144614,-146.08460846084608,-146.02460246024603,-145.96459645964597,-145.9045904590459,-145.84458445844584,-145.78457845784578,-145.72457245724573,-145.66456645664567,-145.60456045604562,-145.54455445544554,-145.48454845484548,-145.42454245424543,-145.36453645364537,-145.30453045304532,-145.24452445244523,-145.18451845184518,-145.12451245124512,-145.06450645064507,-145.00450045004501,-144.94449444944493,-144.88448844884488,-144.82448244824482,-144.76447644764477,-144.7044704470447,-144.64446444644466,-144.58445844584458,-144.52445244524452,-144.46444644464447,-144.4044404440444,-144.34443444344436,-144.28442844284427,-144.22442244224422,-144.16441644164416,-144.1044104410441,-144.04440444044405,-143.98439843984397,-143.92439243924392,-143.86438643864386,-143.8043804380438,-143.74437443744375,-143.6843684368437,-143.62436243624362,-143.56435643564356,-143.5043504350435,-143.44434443444345,-143.3843384338434,-143.3243324332433,-143.26432643264326,-143.2043204320432,-143.14431443144315,-143.0843084308431,-143.024302430243,-142.96429642964296,-142.9042904290429,-142.84428442844285,-142.7842784278428,-142.72427242724274,-142.66426642664266,-142.6042604260426,-142.54425442544255,-142.4842484248425,-142.42424242424244,-142.36423642364235,-142.3042304230423,-142.24422442244224,-142.1842184218422,-142.12421242124213,-142.06420642064205,-142.004200420042,-141.94419441944194,-141.8841884188419,-141.82418241824183,-141.76417641764178,-141.7041704170417,-141.64416441644164,-141.58415841584159,-141.52415241524153,-141.46414641464148,-141.4041404140414,-141.34413441344134,-141.28412841284128,-141.22412241224123,-141.16411641164117,-141.1041104110411,-141.04410441044104,-140.98409840984098,-140.92409240924093,-140.86408640864087,-140.80408040804082,-140.74407440744073,-140.68406840684068,-140.62406240624063,-140.56405640564057,-140.50405040504052,-140.44404440444043,-140.38403840384038,-140.32403240324032,-140.26402640264027,-140.20402040204021,-140.14401440144013,-140.08400840084008,-140.02400240024002,-139.96399639963997,-139.9039903990399,-139.84398439843986,-139.78397839783977,-139.72397239723972,-139.66396639663967,-139.6039603960396,-139.54395439543956,-139.48394839483947,-139.42394239423942,-139.36393639363936,-139.3039303930393,-139.24392439243925,-139.18391839183917,-139.12391239123912,-139.06390639063906,-139.003900390039,-138.94389438943895,-138.8838883888389,-138.82388238823881,-138.76387638763876,-138.7038703870387,-138.64386438643865,-138.5838583858386,-138.5238523852385,-138.46384638463846,-138.4038403840384,-138.34383438343835,-138.2838283828383,-138.2238223822382,-138.16381638163816,-138.1038103810381,-138.04380438043805,-137.983798379838,-137.92379237923794,-137.86378637863785,-137.8037803780378,-137.74377437743775,-137.6837683768377,-137.62376237623764,-137.56375637563755,-137.5037503750375,-137.44374437443744,-137.3837383738374,-137.32373237323733,-137.26372637263725,-137.2037203720372,-137.14371437143714,-137.0837083708371,-137.02370237023703,-136.96369636963698,-136.9036903690369,-136.84368436843684,-136.78367836783679,-136.72367236723673,-136.66366636663668,-136.6036603660366,-136.54365436543654,-136.48364836483648,-136.42364236423643,-136.36363636363637,-136.3036303630363,-136.24362436243624,-136.18361836183618,-136.12361236123613,-136.06360636063607,-136.00360036003602,-135.94359435943593,-135.88358835883588,-135.82358235823583,-135.76357635763577,-135.70357035703572,-135.64356435643563,-135.58355835583558,-135.52355235523552,-135.46354635463547,-135.4035403540354,-135.34353435343533,-135.28352835283528,-135.22352235223522,-135.16351635163517,-135.1035103510351,-135.04350435043506,-134.98349834983497,-134.92349234923492,-134.86348634863486,-134.8034803480348,-134.74347434743476,-134.68346834683467,-134.62346234623462,-134.56345634563456,-134.5034503450345,-134.44344434443445,-134.38343834383437,-134.32343234323432,-134.26342634263426,-134.2034203420342,-134.14341434143415,-134.0834083408341,-134.02340234023401,-133.96339633963396,-133.9033903390339,-133.84338433843385,-133.7833783378338,-133.7233723372337,-133.66336633663366,-133.6033603360336,-133.54335433543355,-133.4833483348335,-133.4233423342334,-133.36333633363336,-133.3033303330333,-133.24332433243325,-133.1833183318332,-133.12331233123314,-133.06330633063305,-133.003300330033,-132.94329432943294,-132.8832883288329,-132.82328232823284,-132.76327632763275,-132.7032703270327,-132.64326432643264,-132.5832583258326,-132.52325232523253,-132.46324632463245,-132.4032403240324,-132.34323432343234,-132.2832283228323,-132.22322232223223,-132.16321632163218,-132.1032103210321,-132.04320432043204,-131.98319831983198,-131.92319231923193,-131.86318631863188,-131.8031803180318,-131.74317431743174,-131.68316831683168,-131.62316231623163,-131.56315631563157,-131.5031503150315,-131.44314431443144,-131.38313831383138,-131.32313231323133,-131.26312631263127,-131.20312031203122,-131.14311431143113,-131.08310831083108,-131.02310231023102,-130.96309630963097,-130.90309030903092,-130.84308430843083,-130.78307830783078,-130.72307230723072,-130.66306630663067,-130.6030603060306,-130.54305430543053,-130.48304830483048,-130.42304230423042,-130.36303630363037,-130.3030303030303,-130.24302430243026,-130.18301830183017,-130.12301230123012,-130.06300630063006,-130.00300030003,-129.94299429942996,-129.88298829882987,-129.82298229822982,-129.76297629762976,-129.7029702970297,-129.64296429642965,-129.58295829582957,-129.52295229522952,-129.46294629462946,-129.4029402940294,-129.34293429342935,-129.2829282928293,-129.2229222922292,-129.16291629162916,-129.1029102910291,-129.04290429042905,-128.982898289829,-128.9228922892289,-128.86288628862886,-128.8028802880288,-128.74287428742875,-128.6828682868287,-128.6228622862286,-128.56285628562856,-128.5028502850285,-128.44284428442845,-128.3828382838284,-128.32283228322834,-128.26282628262825,-128.2028202820282,-128.14281428142814,-128.0828082808281,-128.02280228022803,-127.96279627962797,-127.9027902790279,-127.84278427842784,-127.78277827782779,-127.72277227722772,-127.66276627662766,-127.60276027602761,-127.54275427542754,-127.48274827482749,-127.42274227422742,-127.36273627362736,-127.30273027302731,-127.24272427242724,-127.18271827182718,-127.12271227122713,-127.06270627062706,-127.002700270027,-126.94269426942694,-126.88268826882688,-126.82268226822683,-126.76267626762676,-126.7026702670267,-126.64266426642665,-126.58265826582658,-126.52265226522653,-126.46264626462646,-126.4026402640264,-126.34263426342635,-126.28262826282628,-126.22262226222622,-126.16261626162617,-126.1026102610261,-126.04260426042605,-125.98259825982598,-125.92259225922592,-125.86258625862587,-125.8025802580258,-125.74257425742574,-125.68256825682569,-125.62256225622562,-125.56255625562557,-125.5025502550255,-125.44254425442544,-125.38253825382539,-125.32253225322532,-125.26252625262526,-125.20252025202521,-125.14251425142514,-125.08250825082509,-125.02250225022502,-124.96249624962496,-124.90249024902491,-124.84248424842484,-124.78247824782478,-124.72247224722473,-124.66246624662466,-124.6024602460246,-124.54245424542454,-124.48244824482448,-124.42244224422443,-124.36243624362436,-124.3024302430243,-124.24242424242425,-124.18241824182418,-124.12241224122413,-124.06240624062406,-124.002400240024,-123.94239423942395,-123.88238823882388,-123.82238223822382,-123.76237623762377,-123.7023702370237,-123.64236423642365,-123.58235823582358,-123.52235223522352,-123.46234623462347,-123.4023402340234,-123.34233423342334,-123.28232823282329,-123.22232223222322,-123.16231623162317,-123.1023102310231,-123.04230423042304,-122.98229822982299,-122.92229222922292,-122.86228622862286,-122.80228022802281,-122.74227422742274,-122.68226822682269,-122.62226222622262,-122.56225622562256,-122.50225022502251,-122.44224422442244,-122.38223822382238,-122.32223222322233,-122.26222622262226,-122.2022202220222,-122.14221422142214,-122.08220822082208,-122.02220222022203,-121.96219621962196,-121.9021902190219,-121.84218421842185,-121.78217821782178,-121.72217221722173,-121.66216621662166,-121.6021602160216,-121.54215421542155,-121.48214821482148,-121.42214221422142,-121.36213621362137,-121.3021302130213,-121.24212421242125,-121.18211821182118,-121.12211221122112,-121.06210621062107,-121.002100210021,-120.94209420942094,-120.88208820882089,-120.82208220822082,-120.76207620762077,-120.7020702070207,-120.64206420642064,-120.58205820582059,-120.52205220522052,-120.46204620462046,-120.40204020402041,-120.34203420342034,-120.28202820282029,-120.22202220222022,-120.16201620162016,-120.10201020102011,-120.04200420042004,-119.98199819981998,-119.92199219921993,-119.86198619861986,-119.8019801980198,-119.74197419741974,-119.68196819681968,-119.62196219621963,-119.56195619561956,-119.5019501950195,-119.44194419441945,-119.38193819381938,-119.32193219321933,-119.26192619261926,-119.2019201920192,-119.14191419141915,-119.08190819081908,-119.02190219021902,-118.96189618961897,-118.9018901890189,-118.84188418841885,-118.78187818781878,-118.72187218721872,-118.66186618661867,-118.6018601860186,-118.54185418541854,-118.48184818481849,-118.42184218421842,-118.36183618361837,-118.3018301830183,-118.24182418241824,-118.18181818181819,-118.12181218121812,-118.06180618061806,-118.00180018001801,-117.94179417941794,-117.88178817881789,-117.82178217821782,-117.76177617761776,-117.7017701770177,-117.64176417641764,-117.58175817581758,-117.52175217521753,-117.46174617461746,-117.4017401740174,-117.34173417341734,-117.28172817281728,-117.22172217221723,-117.16171617161716,-117.1017101710171,-117.04170417041705,-116.98169816981698,-116.92169216921693,-116.86168616861686,-116.8016801680168,-116.74167416741675,-116.68166816681668,-116.62166216621662,-116.56165616561657,-116.5016501650165,-116.44164416441645,-116.38163816381638,-116.32163216321632,-116.26162616261627,-116.2016201620162,-116.14161416141614,-116.08160816081609,-116.02160216021602,-115.96159615961597,-115.9015901590159,-115.84158415841584,-115.78157815781579,-115.72157215721572,-115.66156615661566,-115.60156015601561,-115.54155415541554,-115.48154815481548,-115.42154215421542,-115.36153615361536,-115.3015301530153,-115.24152415241524,-115.18151815181518,-115.12151215121513,-115.06150615061506,-115.001500150015,-114.94149414941494,-114.88148814881488,-114.82148214821483,-114.76147614761476,-114.7014701470147,-114.64146414641465,-114.58145814581458,-114.52145214521452,-114.46144614461446,-114.4014401440144,-114.34143414341435,-114.28142814281428,-114.22142214221422,-114.16141614161417,-114.1014101410141,-114.04140414041404,-113.98139813981398,-113.92139213921392,-113.86138613861387,-113.8013801380138,-113.74137413741374,-113.68136813681369,-113.62136213621362,-113.56135613561356,-113.5013501350135,-113.44134413441344,-113.38133813381339,-113.32133213321332,-113.26132613261326,-113.20132013201321,-113.14131413141314,-113.08130813081308,-113.02130213021302,-112.96129612961296,-112.9012901290129,-112.84128412841284,-112.78127812781278,-112.72127212721273,-112.66126612661266,-112.6012601260126,-112.54125412541254,-112.48124812481248,-112.42124212421243,-112.36123612361236,-112.3012301230123,-112.24122412241225,-112.18121812181218,-112.12121212121212,-112.06120612061206,-112.001200120012,-111.94119411941195,-111.88118811881188,-111.82118211821182,-111.76117611761177,-111.7011701170117,-111.64116411641164,-111.58115811581158,-111.52115211521152,-111.46114611461147,-111.4011401140114,-111.34113411341134,-111.28112811281129,-111.22112211221122,-111.16111611161116,-111.1011101110111,-111.04110411041104,-110.98109810981099,-110.92109210921092,-110.86108610861086,-110.80108010801081,-110.74107410741074,-110.68106810681068,-110.62106210621062,-110.56105610561056,-110.5010501050105,-110.44104410441044,-110.38103810381038,-110.32103210321033,-110.26102610261026,-110.2010201020102,-110.14101410141014,-110.08100810081008,-110.02100210021003,-109.96099609960996,-109.9009900990099,-109.84098409840985,-109.78097809780978,-109.72097209720972,-109.66096609660966,-109.6009600960096,-109.54095409540955,-109.48094809480948,-109.42094209420942,-109.36093609360937,-109.3009300930093,-109.24092409240924,-109.18091809180918,-109.12091209120912,-109.06090609060907,-109.000900090009,-108.94089408940894,-108.88088808880889,-108.82088208820882,-108.76087608760876,-108.7008700870087,-108.64086408640864,-108.58085808580859,-108.52085208520852,-108.46084608460846,-108.40084008400841,-108.34083408340834,-108.28082808280828,-108.22082208220822,-108.16081608160816,-108.1008100810081,-108.04080408040804,-107.98079807980798,-107.92079207920793,-107.86078607860786,-107.8007800780078,-107.74077407740774,-107.68076807680768,-107.62076207620763,-107.56075607560756,-107.5007500750075,-107.44074407440745,-107.38073807380738,-107.32073207320732,-107.26072607260726,-107.2007200720072,-107.14071407140715,-107.08070807080708,-107.02070207020702,-106.96069606960697,-106.9006900690069,-106.84068406840684,-106.78067806780678,-106.72067206720672,-106.66066606660667,-106.6006600660066,-106.54065406540654,-106.48064806480649,-106.42064206420642,-106.36063606360636,-106.3006300630063,-106.24062406240624,-106.18061806180619,-106.12061206120612,-106.06060606060606,-106.00060006000601,-105.94059405940594,-105.88058805880588,-105.82058205820582,-105.76057605760576,-105.7005700570057,-105.64056405640564,-105.58055805580558,-105.52055205520553,-105.46054605460546,-105.4005400540054,-105.34053405340534,-105.28052805280528,-105.22052205220523,-105.16051605160516,-105.1005100510051,-105.04050405040505,-104.98049804980498,-104.92049204920492,-104.86048604860486,-104.8004800480048,-104.74047404740475,-104.68046804680468,-104.62046204620462,-104.56045604560457,-104.5004500450045,-104.44044404440444,-104.38043804380438,-104.32043204320432,-104.26042604260427,-104.2004200420042,-104.14041404140414,-104.08040804080409,-104.02040204020402,-103.96039603960396,-103.9003900390039,-103.84038403840384,-103.78037803780379,-103.72037203720372,-103.66036603660366,-103.60036003600361,-103.54035403540354,-103.48034803480348,-103.42034203420341,-103.36033603360336,-103.3003300330033,-103.24032403240324,-103.18031803180318,-103.12031203120313,-103.06030603060306,-103.000300030003,-102.94029402940293,-102.88028802880288,-102.82028202820283,-102.76027602760276,-102.7002700270027,-102.64026402640265,-102.58025802580258,-102.52025202520252,-102.46024602460245,-102.4002400240024,-102.34023402340235,-102.28022802280228,-102.22022202220222,-102.16021602160217,-102.1002100210021,-102.04020402040204,-101.98019801980197,-101.92019201920192,-101.86018601860187,-101.8001800180018,-101.74017401740174,-101.68016801680169,-101.62016201620162,-101.56015601560156,-101.5001500150015,-101.44014401440144,-101.38013801380139,-101.32013201320132,-101.26012601260126,-101.20012001200121,-101.14011401140114,-101.08010801080108,-101.02010201020101,-100.96009600960096,-100.9000900090009,-100.84008400840084,-100.78007800780078,-100.72007200720073,-100.66006600660066,-100.6000600060006,-100.54005400540053,-100.48004800480048,-100.42004200420043,-100.36003600360036,-100.3000300030003,-100.24002400240025,-100.18001800180018,-100.12001200120012,-100.06000600060005,-100.0,-99.93999399939995,-99.87998799879988,-99.81998199819982,-99.75997599759975,-99.6999699969997,-99.63996399639964,-99.57995799579957,-99.51995199519952,-99.45994599459947,-99.3999399939994,-99.33993399339934,-99.27992799279927,-99.21992199219922,-99.15991599159916,-99.0999099909991,-99.03990399039904,-98.97989798979899,-98.91989198919892,-98.85988598859886,-98.79987998799879,-98.73987398739874,-98.67986798679868,-98.61986198619861,-98.55985598559856,-98.4998499849985,-98.43984398439844,-98.37983798379838,-98.31983198319831,-98.25982598259826,-98.1998199819982,-98.13981398139813,-98.07980798079808,-98.01980198019803,-97.95979597959796,-97.8997899789979,-97.83978397839783,-97.77977797779778,-97.71977197719772,-97.65976597659765,-97.5997599759976,-97.53975397539755,-97.47974797479748,-97.41974197419742,-97.35973597359735,-97.2997299729973,-97.23972397239724,-97.17971797179717,-97.11971197119712,-97.05970597059707,-96.999699969997,-96.93969396939694,-96.87968796879687,-96.81968196819682,-96.75967596759676,-96.6996699669967,-96.63966396639664,-96.57965796579659,-96.51965196519652,-96.45964596459646,-96.39963996399639,-96.33963396339634,-96.27962796279628,-96.21962196219621,-96.15961596159616,-96.0996099609961,-96.03960396039604,-95.97959795979598,-95.91959195919591,-95.85958595859586,-95.7995799579958,-95.73957395739573,-95.67956795679568,-95.61956195619562,-95.55955595559556,-95.4995499549955,-95.43954395439543,-95.37953795379538,-95.31953195319532,-95.25952595259525,-95.1995199519952,-95.13951395139514,-95.07950795079508,-95.01950195019502,-94.95949594959495,-94.8994899489949,-94.83948394839484,-94.77947794779477,-94.71947194719472,-94.65946594659466,-94.5994599459946,-94.53945394539454,-94.47944794479447,-94.41944194419442,-94.35943594359436,-94.2994299429943,-94.23942394239424,-94.17941794179418,-94.11941194119412,-94.05940594059406,-93.99939993999399,-93.93939393939394,-93.87938793879388,-93.81938193819381,-93.75937593759376,-93.6993699369937,-93.63936393639364,-93.57935793579358,-93.51935193519351,-93.45934593459346,-93.3993399339934,-93.33933393339333,-93.27932793279328,-93.21932193219322,-93.15931593159316,-93.0993099309931,-93.03930393039303,-92.97929792979298,-92.91929192919292,-92.85928592859285,-92.7992799279928,-92.73927392739274,-92.67926792679268,-92.61926192619262,-92.55925592559255,-92.4992499249925,-92.43924392439244,-92.37923792379237,-92.31923192319232,-92.25922592259226,-92.1992199219922,-92.13921392139214,-92.07920792079207,-92.01920192019202,-91.95919591959196,-91.8991899189919,-91.83918391839184,-91.77917791779178,-91.71917191719172,-91.65916591659166,-91.59915991599159,-91.53915391539154,-91.47914791479148,-91.41914191419141,-91.35913591359136,-91.2991299129913,-91.23912391239124,-91.17911791179118,-91.11911191119111,-91.05910591059106,-90.999099909991,-90.93909390939093,-90.87908790879088,-90.81908190819082,-90.75907590759076,-90.6990699069907,-90.63906390639063,-90.57905790579058,-90.51905190519052,-90.45904590459045,-90.3990399039904,-90.33903390339034,-90.27902790279028,-90.21902190219022,-90.15901590159015,-90.0990099009901,-90.03900390039004,-89.97899789978997,-89.91899189918992,-89.85898589858986,-89.7989798979898,-89.73897389738974,-89.67896789678967,-89.61896189618962,-89.55895589558956,-89.4989498949895,-89.43894389438944,-89.37893789378938,-89.31893189318932,-89.25892589258926,-89.19891989198919,-89.13891389138914,-89.07890789078908,-89.01890189018901,-88.95889588958896,-88.8988898889889,-88.83888388838884,-88.77887788778878,-88.71887188718871,-88.65886588658866,-88.5988598859886,-88.53885388538853,-88.47884788478848,-88.41884188418842,-88.35883588358836,-88.2988298829883,-88.23882388238823,-88.17881788178818,-88.11881188118812,-88.05880588058805,-87.998799879988,-87.93879387938794,-87.87878787878788,-87.81878187818782,-87.75877587758775,-87.6987698769877,-87.63876387638764,-87.57875787578757,-87.51875187518752,-87.45874587458746,-87.3987398739874,-87.33873387338734,-87.27872787278727,-87.21872187218722,-87.15871587158716,-87.0987098709871,-87.03870387038704,-86.97869786978698,-86.91869186918692,-86.85868586858686,-86.79867986798679,-86.73867386738674,-86.67866786678668,-86.61866186618661,-86.55865586558656,-86.4986498649865,-86.43864386438644,-86.37863786378638,-86.31863186318631,-86.25862586258626,-86.1986198619862,-86.13861386138613,-86.07860786078608,-86.01860186018602,-85.95859585958596,-85.8985898589859,-85.83858385838583,-85.77857785778578,-85.71857185718572,-85.65856585658565,-85.5985598559856,-85.53855385538554,-85.47854785478548,-85.41854185418542,-85.35853585358535,-85.2985298529853,-85.23852385238524,-85.17851785178517,-85.11851185118512,-85.05850585058506,-84.998499849985,-84.93849384938494,-84.87848784878487,-84.81848184818482,-84.75847584758476,-84.6984698469847,-84.63846384638464,-84.57845784578458,-84.51845184518452,-84.45844584458446,-84.39843984398439,-84.33843384338434,-84.27842784278428,-84.21842184218421,-84.15841584158416,-84.0984098409841,-84.03840384038403,-83.97839783978398,-83.91839183918391,-83.85838583858386,-83.7983798379838,-83.73837383738373,-83.67836783678368,-83.61836183618362,-83.55835583558355,-83.4983498349835,-83.43834383438343,-83.37833783378338,-83.31833183318332,-83.25832583258325,-83.1983198319832,-83.13831383138314,-83.07830783078307,-83.01830183018302,-82.95829582958295,-82.8982898289829,-82.83828382838284,-82.77827782778277,-82.71827182718272,-82.65826582658266,-82.5982598259826,-82.53825382538254,-82.47824782478247,-82.41824182418242,-82.35823582358236,-82.2982298229823,-82.23822382238224,-82.17821782178218,-82.11821182118211,-82.05820582058206,-81.99819981998199,-81.93819381938194,-81.87818781878188,-81.81818181818181,-81.75817581758176,-81.6981698169817,-81.63816381638163,-81.57815781578158,-81.51815181518151,-81.45814581458146,-81.3981398139814,-81.33813381338133,-81.27812781278128,-81.21812181218122,-81.15811581158115,-81.0981098109811,-81.03810381038103,-80.97809780978098,-80.91809180918092,-80.85808580858085,-80.7980798079808,-80.73807380738074,-80.67806780678067,-80.61806180618062,-80.55805580558055,-80.4980498049805,-80.43804380438044,-80.37803780378037,-80.31803180318032,-80.25802580258026,-80.1980198019802,-80.13801380138014,-80.07800780078007,-80.01800180018002,-79.95799579957996,-79.89798979897989,-79.83798379837984,-79.77797779777978,-79.71797179717971,-79.65796579657966,-79.59795979597959,-79.53795379537954,-79.47794779477948,-79.41794179417941,-79.35793579357936,-79.2979297929793,-79.23792379237923,-79.17791779177918,-79.11791179117911,-79.05790579057906,-78.997899789979,-78.93789378937893,-78.87788778877888,-78.81788178817882,-78.75787578757875,-78.6978697869787,-78.63786378637863,-78.57785778577858,-78.51785178517852,-78.45784578457845,-78.3978397839784,-78.33783378337834,-78.27782778277827,-78.21782178217822,-78.15781578157815,-78.0978097809781,-78.03780378037804,-77.97779777977797,-77.91779177917792,-77.85778577857786,-77.7977797779778,-77.73777377737774,-77.67776777677767,-77.61776177617762,-77.55775577557756,-77.49774977497749,-77.43774377437744,-77.37773777377738,-77.31773177317731,-77.25772577257726,-77.19771977197719,-77.13771377137714,-77.07770777077708,-77.01770177017701,-76.95769576957696,-76.8976897689769,-76.83768376837683,-76.77767776777678,-76.71767176717671,-76.65766576657666,-76.5976597659766,-76.53765376537653,-76.47764776477648,-76.41764176417642,-76.35763576357635,-76.2976297629763,-76.23762376237623,-76.17761776177618,-76.11761176117612,-76.05760576057605,-75.997599759976,-75.93759375937594,-75.87758775877587,-75.81758175817582,-75.75757575757575,-75.6975697569757,-75.63756375637564,-75.57755775577557,-75.51755175517552,-75.45754575457546,-75.3975397539754,-75.33753375337534,-75.27752775277527,-75.21752175217522,-75.15751575157516,-75.09750975097509,-75.03750375037504,-74.97749774977498,-74.91749174917491,-74.85748574857486,-74.79747974797479,-74.73747374737474,-74.67746774677468,-74.61746174617461,-74.55745574557456,-74.4974497449745,-74.43744374437443,-74.37743774377438,-74.31743174317431,-74.25742574257426,-74.1974197419742,-74.13741374137413,-74.07740774077408,-74.01740174017402,-73.95739573957395,-73.8973897389739,-73.83738373837383,-73.77737773777378,-73.71737173717372,-73.65736573657365,-73.5973597359736,-73.53735373537354,-73.47734773477347,-73.41734173417342,-73.35733573357335,-73.2973297329733,-73.23732373237324,-73.17731773177317,-73.11731173117312,-73.05730573057306,-72.997299729973,-72.93729372937294,-72.87728772877287,-72.81728172817282,-72.75727572757276,-72.69726972697269,-72.63726372637264,-72.57725772577258,-72.51725172517251,-72.45724572457246,-72.39723972397239,-72.33723372337234,-72.27722772277228,-72.21722172217221,-72.15721572157216,-72.0972097209721,-72.03720372037203,-71.97719771977198,-71.91719171917191,-71.85718571857186,-71.7971797179718,-71.73717371737173,-71.67716771677168,-71.61716171617162,-71.55715571557155,-71.4971497149715,-71.43714371437143,-71.37713771377138,-71.31713171317132,-71.25712571257125,-71.1971197119712,-71.13711371137114,-71.07710771077107,-71.01710171017102,-70.95709570957095,-70.8970897089709,-70.83708370837084,-70.77707770777077,-70.71707170717072,-70.65706570657066,-70.5970597059706,-70.53705370537054,-70.47704770477047,-70.41704170417042,-70.35703570357036,-70.29702970297029,-70.23702370237024,-70.17701770177018,-70.11701170117011,-70.05700570057006,-69.99699969996999,-69.93699369936994,-69.87698769876988,-69.81698169816981,-69.75697569756976,-69.6969696969697,-69.63696369636963,-69.57695769576958,-69.51695169516951,-69.45694569456946,-69.3969396939694,-69.33693369336933,-69.27692769276928,-69.21692169216922,-69.15691569156915,-69.0969096909691,-69.03690369036903,-68.97689768976898,-68.91689168916892,-68.85688568856885,-68.7968796879688,-68.73687368736874,-68.67686768676867,-68.61686168616862,-68.55685568556855,-68.4968496849685,-68.43684368436844,-68.37683768376837,-68.31683168316832,-68.25682568256826,-68.1968196819682,-68.13681368136814,-68.07680768076807,-68.01680168016802,-67.95679567956796,-67.89678967896789,-67.83678367836784,-67.77677767776778,-67.71677167716771,-67.65676567656766,-67.59675967596759,-67.53675367536754,-67.47674767476748,-67.41674167416741,-67.35673567356736,-67.2967296729673,-67.23672367236723,-67.17671767176718,-67.11671167116711,-67.05670567056706,-66.996699669967,-66.93669366936693,-66.87668766876688,-66.81668166816682,-66.75667566756675,-66.6966696669667,-66.63666366636663,-66.57665766576658,-66.51665166516652,-66.45664566456645,-66.3966396639664,-66.33663366336634,-66.27662766276627,-66.21662166216622,-66.15661566156615,-66.0966096609661,-66.03660366036604,-65.97659765976597,-65.91659165916592,-65.85658565856586,-65.7965796579658,-65.73657365736574,-65.67656765676567,-65.61656165616562,-65.55655565556556,-65.49654965496549,-65.43654365436544,-65.37653765376538,-65.31653165316531,-65.25652565256526,-65.19651965196519,-65.13651365136514,-65.07650765076508,-65.01650165016501,-64.95649564956496,-64.8964896489649,-64.83648364836483,-64.77647764776478,-64.71647164716471,-64.65646564656466,-64.5964596459646,-64.53645364536453,-64.47644764476448,-64.41644164416442,-64.35643564356435,-64.2964296429643,-64.23642364236423,-64.17641764176417,-64.11641164116412,-64.05640564056405,-63.996399639964,-63.936393639363935,-63.87638763876387,-63.81638163816382,-63.75637563756376,-63.696369636963695,-63.63636363636363,-63.57635763576358,-63.51635163516352,-63.456345634563455,-63.39633963396339,-63.33633363336334,-63.27632763276328,-63.216321632163215,-63.15631563156315,-63.0963096309631,-63.03630363036304,-62.976297629762975,-62.91629162916291,-62.85628562856286,-62.7962796279628,-62.736273627362735,-62.67626762676267,-62.61626162616262,-62.55625562556256,-62.496249624962495,-62.43624362436243,-62.37623762376238,-62.31623162316232,-62.256225622562255,-62.19621962196219,-62.13621362136214,-62.07620762076208,-62.016201620162015,-61.95619561956195,-61.8961896189619,-61.83618361836184,-61.776177617761775,-61.71617161716171,-61.65616561656166,-61.5961596159616,-61.536153615361535,-61.47614761476147,-61.41614161416142,-61.35613561356136,-61.296129612961295,-61.23612361236123,-61.17611761176118,-61.11611161116112,-61.056105610561055,-60.99609960996099,-60.93609360936094,-60.876087608760876,-60.816081608160815,-60.75607560756075,-60.6960696069607,-60.636063606360636,-60.576057605760575,-60.51605160516051,-60.45604560456046,-60.396039603960396,-60.336033603360335,-60.27602760276027,-60.21602160216022,-60.156015601560156,-60.096009600960095,-60.03600360036003,-59.97599759975998,-59.915991599159916,-59.855985598559855,-59.79597959795979,-59.73597359735974,-59.675967596759676,-59.615961596159615,-59.55595559555955,-59.4959495949595,-59.435943594359436,-59.375937593759375,-59.31593159315931,-59.25592559255926,-59.195919591959196,-59.135913591359135,-59.07590759075907,-59.01590159015902,-58.955895589558956,-58.895889588958894,-58.83588358835883,-58.77587758775878,-58.715871587158716,-58.655865586558654,-58.59585958595859,-58.53585358535854,-58.475847584758476,-58.415841584158414,-58.35583558355835,-58.2958295829583,-58.235823582358236,-58.175817581758174,-58.11581158115811,-58.05580558055806,-57.995799579957996,-57.935793579357934,-57.87578757875787,-57.81578157815782,-57.755775577557756,-57.695769576957694,-57.63576357635763,-57.57575757575758,-57.515751575157516,-57.455745574557454,-57.39573957395739,-57.33573357335734,-57.275727572757276,-57.215721572157214,-57.15571557155715,-57.0957095709571,-57.035703570357036,-56.975697569756974,-56.91569156915691,-56.85568556855686,-56.795679567956796,-56.735673567356734,-56.67566756675667,-56.61566156615662,-56.555655565556556,-56.495649564956494,-56.43564356435643,-56.37563756375638,-56.315631563156316,-56.255625562556254,-56.19561956195619,-56.13561356135614,-56.075607560756076,-56.015601560156014,-55.95559555955595,-55.8955895589559,-55.835583558355836,-55.775577557755774,-55.71557155715571,-55.65556555655566,-55.595559555955596,-55.535553555355534,-55.47554755475547,-55.41554155415542,-55.355535553555356,-55.295529552955294,-55.23552355235523,-55.17551755175518,-55.115511551155116,-55.055505550555054,-54.99549954995499,-54.93549354935494,-54.875487548754876,-54.815481548154814,-54.75547554755475,-54.6954695469547,-54.635463546354636,-54.575457545754574,-54.51545154515451,-54.45544554455446,-54.395439543954396,-54.335433543354334,-54.27542754275427,-54.21542154215422,-54.155415541554156,-54.095409540954094,-54.03540354035403,-53.97539753975398,-53.915391539153916,-53.855385538553854,-53.79537953795379,-53.73537353735374,-53.675367536753676,-53.615361536153614,-53.55535553555355,-53.4953495349535,-53.435343534353436,-53.375337533753374,-53.31533153315331,-53.25532553255326,-53.195319531953196,-53.135313531353134,-53.07530753075307,-53.01530153015302,-52.955295529552956,-52.895289528952894,-52.83528352835283,-52.77527752775278,-52.715271527152716,-52.655265526552654,-52.59525952595259,-52.53525352535254,-52.475247524752476,-52.415241524152414,-52.35523552355235,-52.2952295229523,-52.235223522352236,-52.175217521752174,-52.11521152115211,-52.05520552055206,-51.995199519951996,-51.935193519351934,-51.87518751875187,-51.81518151815182,-51.755175517551756,-51.695169516951694,-51.63516351635163,-51.57515751575158,-51.515151515151516,-51.455145514551454,-51.39513951395139,-51.33513351335134,-51.275127512751276,-51.215121512151214,-51.15511551155115,-51.0951095109511,-51.035103510351036,-50.975097509750974,-50.91509150915091,-50.85508550855086,-50.795079507950796,-50.735073507350734,-50.67506750675067,-50.61506150615062,-50.555055505550555,-50.495049504950494,-50.43504350435043,-50.37503750375038,-50.315031503150315,-50.255025502550254,-50.19501950195019,-50.13501350135014,-50.075007500750075,-50.015001500150014,-49.95499549954995,-49.8949894989499,-49.834983498349835,-49.774977497749774,-49.71497149714971,-49.65496549654966,-49.594959495949595,-49.534953495349534,-49.47494749474947,-49.41494149414942,-49.354935493549355,-49.294929492949294,-49.23492349234923,-49.17491749174918,-49.114911491149115,-49.054905490549054,-48.99489948994899,-48.93489348934894,-48.874887488748875,-48.814881488148814,-48.75487548754875,-48.6948694869487,-48.634863486348635,-48.57485748574857,-48.51485148514851,-48.45484548454846,-48.394839483948395,-48.33483348334833,-48.27482748274827,-48.21482148214822,-48.154815481548155,-48.09480948094809,-48.03480348034803,-47.97479747974798,-47.914791479147915,-47.85478547854785,-47.79477947794779,-47.73477347734774,-47.674767476747675,-47.61476147614761,-47.55475547554755,-47.4947494749475,-47.434743474347435,-47.37473747374737,-47.31473147314731,-47.25472547254726,-47.194719471947195,-47.13471347134713,-47.07470747074707,-47.01470147014702,-46.954695469546955,-46.89468946894689,-46.83468346834683,-46.77467746774678,-46.714671467146715,-46.65466546654665,-46.59465946594659,-46.53465346534654,-46.474647464746475,-46.41464146414641,-46.35463546354635,-46.2946294629463,-46.234623462346235,-46.17461746174617,-46.11461146114611,-46.05460546054606,-45.994599459945995,-45.93459345934593,-45.87458745874587,-45.81458145814582,-45.754575457545755,-45.69456945694569,-45.63456345634563,-45.57455745574558,-45.514551455145515,-45.45454545454545,-45.39453945394539,-45.33453345334534,-45.274527452745275,-45.21452145214521,-45.15451545154515,-45.0945094509451,-45.034503450345035,-44.97449744974497,-44.91449144914491,-44.85448544854486,-44.794479447944795,-44.73447344734473,-44.67446744674467,-44.61446144614462,-44.554455445544555,-44.49444944494449,-44.43444344434443,-44.37443744374438,-44.314431443144315,-44.25442544254425,-44.19441944194419,-44.13441344134414,-44.074407440744075,-44.01440144014401,-43.95439543954395,-43.8943894389439,-43.834383438343835,-43.77437743774377,-43.71437143714371,-43.65436543654366,-43.594359435943595,-43.53435343534353,-43.47434743474347,-43.41434143414342,-43.354335433543355,-43.29432943294329,-43.23432343234323,-43.17431743174318,-43.114311431143115,-43.05430543054305,-42.99429942994299,-42.93429342934294,-42.874287428742875,-42.81428142814281,-42.75427542754275,-42.6942694269427,-42.634263426342635,-42.57425742574257,-42.51425142514251,-42.45424542454246,-42.394239423942395,-42.33423342334233,-42.27422742274227,-42.21422142214222,-42.154215421542155,-42.09420942094209,-42.03420342034203,-41.97419741974198,-41.914191419141915,-41.85418541854185,-41.79417941794179,-41.73417341734174,-41.674167416741675,-41.61416141614161,-41.55415541554155,-41.494149414941496,-41.434143414341435,-41.37413741374137,-41.31413141314131,-41.254125412541256,-41.194119411941195,-41.13411341134113,-41.07410741074107,-41.014101410141016,-40.954095409540955,-40.89408940894089,-40.83408340834083,-40.774077407740776,-40.714071407140715,-40.65406540654065,-40.59405940594059,-40.534053405340536,-40.474047404740475,-40.41404140414041,-40.35403540354035,-40.294029402940296,-40.234023402340235,-40.17401740174017,-40.11401140114011,-40.054005400540056,-39.993999399939995,-39.93399339933993,-39.87398739873987,-39.813981398139816,-39.753975397539755,-39.69396939693969,-39.63396339633963,-39.573957395739576,-39.513951395139514,-39.45394539453945,-39.39393939393939,-39.333933393339336,-39.273927392739274,-39.21392139213921,-39.15391539153915,-39.093909390939096,-39.033903390339034,-38.97389738973897,-38.91389138913891,-38.853885388538856,-38.793879387938794,-38.73387338733873,-38.67386738673867,-38.613861386138616,-38.553855385538554,-38.49384938493849,-38.43384338433843,-38.373837383738376,-38.313831383138314,-38.25382538253825,-38.19381938193819,-38.133813381338136,-38.073807380738074,-38.01380138013801,-37.95379537953795,-37.893789378937896,-37.833783378337834,-37.77377737773777,-37.71377137713771,-37.653765376537656,-37.593759375937594,-37.53375337533753,-37.47374737473747,-37.413741374137416,-37.353735373537354,-37.29372937293729,-37.23372337233723,-37.173717371737176,-37.113711371137114,-37.05370537053705,-36.99369936993699,-36.933693369336936,-36.873687368736874,-36.81368136813681,-36.75367536753675,-36.693669366936696,-36.633663366336634,-36.57365736573657,-36.51365136513651,-36.453645364536456,-36.393639363936394,-36.33363336333633,-36.27362736273627,-36.213621362136216,-36.153615361536154,-36.09360936093609,-36.03360336033603,-35.973597359735976,-35.913591359135914,-35.85358535853585,-35.79357935793579,-35.733573357335736,-35.673567356735674,-35.61356135613561,-35.55355535553555,-35.493549354935496,-35.433543354335434,-35.37353735373537,-35.31353135313531,-35.253525352535256,-35.193519351935194,-35.13351335133513,-35.07350735073507,-35.013501350135016,-34.953495349534954,-34.89348934893489,-34.83348334833483,-34.773477347734776,-34.713471347134714,-34.65346534653465,-34.59345934593459,-34.533453345334536,-34.473447344734474,-34.41344134413441,-34.35343534353435,-34.293429342934296,-34.233423342334234,-34.17341734173417,-34.11341134113411,-34.053405340534056,-33.993399339933994,-33.93339333933393,-33.87338733873387,-33.813381338133816,-33.753375337533754,-33.69336933693369,-33.63336333633363,-33.573357335733576,-33.513351335133514,-33.45334533453345,-33.39333933393339,-33.333333333333336,-33.273327332733274,-33.21332133213321,-33.15331533153315,-33.093309330933096,-33.033303330333034,-32.97329732973297,-32.91329132913291,-32.853285328532856,-32.793279327932794,-32.73327332733273,-32.67326732673267,-32.613261326132616,-32.553255325532554,-32.49324932493249,-32.43324332433243,-32.373237323732376,-32.313231323132314,-32.25322532253225,-32.19321932193219,-32.133213321332136,-32.073207320732074,-32.01320132013201,-31.953195319531954,-31.893189318931892,-31.833183318331834,-31.773177317731772,-31.713171317131714,-31.653165316531652,-31.593159315931594,-31.533153315331532,-31.473147314731474,-31.413141314131412,-31.353135313531354,-31.293129312931292,-31.233123312331234,-31.173117311731172,-31.113111311131114,-31.053105310531052,-30.993099309930994,-30.933093309330932,-30.873087308730874,-30.813081308130812,-30.753075307530754,-30.693069306930692,-30.633063306330634,-30.573057305730572,-30.513051305130514,-30.453045304530452,-30.393039303930394,-30.333033303330332,-30.273027302730274,-30.213021302130212,-30.153015301530154,-30.093009300930092,-30.033003300330034,-29.972997299729972,-29.912991299129914,-29.852985298529852,-29.792979297929794,-29.732973297329732,-29.672967296729674,-29.612961296129612,-29.552955295529554,-29.492949294929492,-29.432943294329434,-29.372937293729372,-29.312931293129314,-29.252925292529252,-29.192919291929194,-29.13291329132913,-29.072907290729074,-29.01290129012901,-28.952895289528954,-28.89288928892889,-28.832883288328834,-28.77287728772877,-28.712871287128714,-28.65286528652865,-28.592859285928593,-28.53285328532853,-28.472847284728473,-28.41284128412841,-28.352835283528353,-28.29282928292829,-28.232823282328233,-28.17281728172817,-28.112811281128113,-28.05280528052805,-27.992799279927993,-27.93279327932793,-27.872787278727873,-27.81278127812781,-27.752775277527753,-27.69276927692769,-27.632763276327633,-27.57275727572757,-27.512751275127513,-27.45274527452745,-27.392739273927393,-27.33273327332733,-27.272727272727273,-27.21272127212721,-27.152715271527153,-27.09270927092709,-27.032703270327033,-26.97269726972697,-26.912691269126913,-26.85268526852685,-26.792679267926793,-26.73267326732673,-26.672667266726673,-26.61266126612661,-26.552655265526553,-26.49264926492649,-26.432643264326433,-26.37263726372637,-26.312631263126313,-26.25262526252625,-26.192619261926193,-26.13261326132613,-26.072607260726073,-26.01260126012601,-25.952595259525953,-25.89258925892589,-25.832583258325833,-25.77257725772577,-25.712571257125713,-25.65256525652565,-25.592559255925593,-25.53255325532553,-25.472547254725473,-25.41254125412541,-25.352535253525353,-25.29252925292529,-25.232523252325233,-25.17251725172517,-25.112511251125113,-25.05250525052505,-24.992499249924993,-24.93249324932493,-24.872487248724873,-24.81248124812481,-24.752475247524753,-24.69246924692469,-24.632463246324633,-24.57245724572457,-24.512451245124513,-24.45244524452445,-24.392439243924393,-24.33243324332433,-24.272427242724273,-24.21242124212421,-24.152415241524153,-24.09240924092409,-24.032403240324033,-23.97239723972397,-23.912391239123913,-23.85238523852385,-23.792379237923793,-23.73237323732373,-23.672367236723673,-23.61236123612361,-23.552355235523553,-23.49234923492349,-23.432343234323433,-23.37233723372337,-23.312331233123313,-23.25232523252325,-23.192319231923193,-23.13231323132313,-23.072307230723073,-23.01230123012301,-22.952295229522953,-22.89228922892289,-22.832283228322833,-22.77227722772277,-22.712271227122713,-22.65226522652265,-22.592259225922593,-22.53225322532253,-22.472247224722473,-22.41224122412241,-22.352235223522353,-22.29222922292229,-22.232223222322233,-22.17221722172217,-22.112211221122113,-22.05220522052205,-21.992199219921993,-21.93219321932193,-21.872187218721873,-21.81218121812181,-21.752175217521753,-21.69216921692169,-21.632163216321633,-21.57215721572157,-21.512151215121513,-21.45214521452145,-21.392139213921393,-21.33213321332133,-21.272127212721273,-21.21212121212121,-21.152115211521153,-21.09210921092109,-21.032103210321033,-20.97209720972097,-20.912091209120913,-20.85208520852085,-20.792079207920793,-20.73207320732073,-20.672067206720673,-20.61206120612061,-20.552055205520553,-20.49204920492049,-20.432043204320433,-20.37203720372037,-20.312031203120313,-20.25202520252025,-20.192019201920193,-20.13201320132013,-20.072007200720073,-20.01200120012001,-19.951995199519953,-19.89198919891989,-19.831983198319833,-19.77197719771977,-19.711971197119713,-19.65196519651965,-19.591959195919593,-19.53195319531953,-19.471947194719473,-19.41194119411941,-19.351935193519353,-19.29192919291929,-19.231923192319233,-19.17191719171917,-19.111911191119113,-19.05190519051905,-18.991899189918993,-18.93189318931893,-18.871887188718873,-18.81188118811881,-18.751875187518753,-18.69186918691869,-18.631863186318633,-18.57185718571857,-18.511851185118513,-18.45184518451845,-18.391839183918393,-18.33183318331833,-18.271827182718273,-18.21182118211821,-18.151815181518153,-18.09180918091809,-18.031803180318033,-17.97179717971797,-17.911791179117913,-17.85178517851785,-17.791779177917793,-17.73177317731773,-17.671767176717672,-17.61176117611761,-17.551755175517552,-17.49174917491749,-17.431743174317432,-17.37173717371737,-17.311731173117312,-17.25172517251725,-17.191719171917192,-17.13171317131713,-17.071707170717072,-17.01170117011701,-16.951695169516952,-16.89168916891689,-16.831683168316832,-16.77167716771677,-16.711671167116712,-16.65166516651665,-16.591659165916592,-16.53165316531653,-16.471647164716472,-16.41164116411641,-16.351635163516352,-16.29162916291629,-16.231623162316232,-16.17161716171617,-16.111611161116112,-16.05160516051605,-15.991599159915992,-15.931593159315932,-15.871587158715872,-15.811581158115812,-15.751575157515752,-15.691569156915692,-15.631563156315632,-15.571557155715572,-15.511551155115512,-15.451545154515452,-15.391539153915392,-15.331533153315332,-15.271527152715272,-15.211521152115212,-15.151515151515152,-15.091509150915092,-15.031503150315032,-14.971497149714972,-14.911491149114912,-14.851485148514852,-14.791479147914792,-14.731473147314732,-14.671467146714672,-14.611461146114612,-14.551455145514552,-14.491449144914492,-14.431443144314432,-14.371437143714372,-14.311431143114312,-14.251425142514252,-14.191419141914192,-14.131413141314132,-14.071407140714072,-14.011401140114012,-13.951395139513952,-13.891389138913892,-13.831383138313832,-13.771377137713772,-13.711371137113712,-13.651365136513652,-13.591359135913592,-13.531353135313532,-13.471347134713472,-13.411341134113412,-13.351335133513352,-13.291329132913292,-13.231323132313232,-13.171317131713172,-13.111311131113112,-13.051305130513052,-12.991299129912992,-12.931293129312932,-12.871287128712872,-12.811281128112812,-12.751275127512752,-12.691269126912692,-12.631263126312632,-12.571257125712572,-12.511251125112512,-12.451245124512452,-12.391239123912392,-12.331233123312332,-12.271227122712272,-12.211221122112212,-12.151215121512152,-12.091209120912092,-12.031203120312032,-11.971197119711972,-11.911191119111912,-11.851185118511852,-11.791179117911792,-11.731173117311732,-11.671167116711672,-11.611161116111612,-11.551155115511552,-11.491149114911492,-11.431143114311432,-11.371137113711372,-11.311131113111312,-11.251125112511252,-11.191119111911192,-11.131113111311132,-11.071107110711072,-11.011101110111012,-10.951095109510952,-10.891089108910892,-10.831083108310832,-10.771077107710772,-10.711071107110712,-10.651065106510652,-10.591059105910592,-10.531053105310532,-10.471047104710472,-10.411041104110412,-10.351035103510352,-10.291029102910292,-10.231023102310232,-10.171017101710172,-10.111011101110112,-10.051005100510052,-9.990999099909992,-9.930993099309932,-9.870987098709872,-9.810981098109812,-9.750975097509752,-9.690969096909692,-9.630963096309632,-9.570957095709572,-9.510951095109512,-9.450945094509452,-9.390939093909392,-9.330933093309332,-9.270927092709272,-9.210921092109212,-9.150915091509152,-9.090909090909092,-9.030903090309032,-8.970897089708972,-8.910891089108912,-8.850885088508852,-8.790879087908792,-8.730873087308732,-8.670867086708672,-8.610861086108612,-8.550855085508552,-8.490849084908492,-8.430843084308432,-8.370837083708372,-8.310831083108312,-8.250825082508252,-8.190819081908192,-8.130813081308132,-8.070807080708072,-8.010801080108012,-7.950795079507951,-7.890789078907891,-7.830783078307831,-7.770777077707771,-7.710771077107711,-7.650765076507651,-7.590759075907591,-7.530753075307531,-7.470747074707471,-7.410741074107411,-7.350735073507351,-7.290729072907291,-7.230723072307231,-7.170717071707171,-7.110711071107111,-7.050705070507051,-6.990699069906991,-6.930693069306931,-6.870687068706871,-6.810681068106811,-6.750675067506751,-6.690669066906691,-6.630663066306631,-6.570657065706571,-6.510651065106511,-6.450645064506451,-6.390639063906391,-6.330633063306331,-6.270627062706271,-6.210621062106211,-6.150615061506151,-6.0906090609060906,-6.0306030603060305,-5.9705970597059705,-5.9105910591059105,-5.8505850585058505,-5.7905790579057905,-5.7305730573057305,-5.6705670567056705,-5.6105610561056105,-5.5505550555055505,-5.4905490549054905,-5.4305430543054305,-5.3705370537053705,-5.3105310531053105,-5.2505250525052505,-5.1905190519051905,-5.1305130513051305,-5.0705070507050705,-5.0105010501050105,-4.9504950495049505,-4.8904890489048904,-4.83048304830483,-4.77047704770477,-4.71047104710471,-4.65046504650465,-4.59045904590459,-4.53045304530453,-4.47044704470447,-4.41044104410441,-4.35043504350435,-4.29042904290429,-4.23042304230423,-4.17041704170417,-4.11041104110411,-4.05040504050405,-3.9903990399039904,-3.9303930393039304,-3.8703870387038704,-3.8103810381038103,-3.7503750375037503,-3.6903690369036903,-3.6303630363036303,-3.5703570357035703,-3.5103510351035103,-3.4503450345034503,-3.3903390339033903,-3.3303330333033303,-3.2703270327032703,-3.2103210321032103,-3.1503150315031503,-3.0903090309030903,-3.0303030303030303,-2.9702970297029703,-2.9102910291029103,-2.8502850285028503,-2.7902790279027903,-2.7302730273027302,-2.6702670267026702,-2.6102610261026102,-2.5502550255025502,-2.4902490249024902,-2.43024302430243,-2.37023702370237,-2.31023102310231,-2.25022502250225,-2.19021902190219,-2.13021302130213,-2.07020702070207,-2.01020102010201,-1.9501950195019502,-1.8901890189018902,-1.8301830183018302,-1.7701770177017702,-1.7101710171017102,-1.6501650165016502,-1.5901590159015901,-1.5301530153015301,-1.4701470147014701,-1.4101410141014101,-1.3501350135013501,-1.2901290129012901,-1.2301230123012301,-1.17011701170117,-1.11011101110111,-1.05010501050105,-0.9900990099009901,-0.9300930093009301,-0.8700870087008701,-0.8100810081008101,-0.7500750075007501,-0.6900690069006901,-0.6300630063006301,-0.57005700570057,-0.51005100510051,-0.45004500450045004,-0.39003900390039004,-0.33003300330033003,-0.27002700270027,-0.21002100210021002,-0.15001500150015,-0.09000900090009001,-0.030003000300030003,0.030003000300030003,0.09000900090009001,0.15001500150015,0.21002100210021002,0.27002700270027,0.33003300330033003,0.39003900390039004,0.45004500450045004,0.51005100510051,0.57005700570057,0.6300630063006301,0.6900690069006901,0.7500750075007501,0.8100810081008101,0.8700870087008701,0.9300930093009301,0.9900990099009901,1.05010501050105,1.11011101110111,1.17011701170117,1.2301230123012301,1.2901290129012901,1.3501350135013501,1.4101410141014101,1.4701470147014701,1.5301530153015301,1.5901590159015901,1.6501650165016502,1.7101710171017102,1.7701770177017702,1.8301830183018302,1.8901890189018902,1.9501950195019502,2.01020102010201,2.07020702070207,2.13021302130213,2.19021902190219,2.25022502250225,2.31023102310231,2.37023702370237,2.43024302430243,2.4902490249024902,2.5502550255025502,2.6102610261026102,2.6702670267026702,2.7302730273027302,2.7902790279027903,2.8502850285028503,2.9102910291029103,2.9702970297029703,3.0303030303030303,3.0903090309030903,3.1503150315031503,3.2103210321032103,3.2703270327032703,3.3303330333033303,3.3903390339033903,3.4503450345034503,3.5103510351035103,3.5703570357035703,3.6303630363036303,3.6903690369036903,3.7503750375037503,3.8103810381038103,3.8703870387038704,3.9303930393039304,3.9903990399039904,4.05040504050405,4.11041104110411,4.17041704170417,4.23042304230423,4.29042904290429,4.35043504350435,4.41044104410441,4.47044704470447,4.53045304530453,4.59045904590459,4.65046504650465,4.71047104710471,4.77047704770477,4.83048304830483,4.8904890489048904,4.9504950495049505,5.0105010501050105,5.0705070507050705,5.1305130513051305,5.1905190519051905,5.2505250525052505,5.3105310531053105,5.3705370537053705,5.4305430543054305,5.4905490549054905,5.5505550555055505,5.6105610561056105,5.6705670567056705,5.7305730573057305,5.7905790579057905,5.8505850585058505,5.9105910591059105,5.9705970597059705,6.0306030603060305,6.0906090609060906,6.150615061506151,6.210621062106211,6.270627062706271,6.330633063306331,6.390639063906391,6.450645064506451,6.510651065106511,6.570657065706571,6.630663066306631,6.690669066906691,6.750675067506751,6.810681068106811,6.870687068706871,6.930693069306931,6.990699069906991,7.050705070507051,7.110711071107111,7.170717071707171,7.230723072307231,7.290729072907291,7.350735073507351,7.410741074107411,7.470747074707471,7.530753075307531,7.590759075907591,7.650765076507651,7.710771077107711,7.770777077707771,7.830783078307831,7.890789078907891,7.950795079507951,8.010801080108012,8.070807080708072,8.130813081308132,8.190819081908192,8.250825082508252,8.310831083108312,8.370837083708372,8.430843084308432,8.490849084908492,8.550855085508552,8.610861086108612,8.670867086708672,8.730873087308732,8.790879087908792,8.850885088508852,8.910891089108912,8.970897089708972,9.030903090309032,9.090909090909092,9.150915091509152,9.210921092109212,9.270927092709272,9.330933093309332,9.390939093909392,9.450945094509452,9.510951095109512,9.570957095709572,9.630963096309632,9.690969096909692,9.750975097509752,9.810981098109812,9.870987098709872,9.930993099309932,9.990999099909992,10.051005100510052,10.111011101110112,10.171017101710172,10.231023102310232,10.291029102910292,10.351035103510352,10.411041104110412,10.471047104710472,10.531053105310532,10.591059105910592,10.651065106510652,10.711071107110712,10.771077107710772,10.831083108310832,10.891089108910892,10.951095109510952,11.011101110111012,11.071107110711072,11.131113111311132,11.191119111911192,11.251125112511252,11.311131113111312,11.371137113711372,11.431143114311432,11.491149114911492,11.551155115511552,11.611161116111612,11.671167116711672,11.731173117311732,11.791179117911792,11.851185118511852,11.911191119111912,11.971197119711972,12.031203120312032,12.091209120912092,12.151215121512152,12.211221122112212,12.271227122712272,12.331233123312332,12.391239123912392,12.451245124512452,12.511251125112512,12.571257125712572,12.631263126312632,12.691269126912692,12.751275127512752,12.811281128112812,12.871287128712872,12.931293129312932,12.991299129912992,13.051305130513052,13.111311131113112,13.171317131713172,13.231323132313232,13.291329132913292,13.351335133513352,13.411341134113412,13.471347134713472,13.531353135313532,13.591359135913592,13.651365136513652,13.711371137113712,13.771377137713772,13.831383138313832,13.891389138913892,13.951395139513952,14.011401140114012,14.071407140714072,14.131413141314132,14.191419141914192,14.251425142514252,14.311431143114312,14.371437143714372,14.431443144314432,14.491449144914492,14.551455145514552,14.611461146114612,14.671467146714672,14.731473147314732,14.791479147914792,14.851485148514852,14.911491149114912,14.971497149714972,15.031503150315032,15.091509150915092,15.151515151515152,15.211521152115212,15.271527152715272,15.331533153315332,15.391539153915392,15.451545154515452,15.511551155115512,15.571557155715572,15.631563156315632,15.691569156915692,15.751575157515752,15.811581158115812,15.871587158715872,15.931593159315932,15.991599159915992,16.05160516051605,16.111611161116112,16.17161716171617,16.231623162316232,16.29162916291629,16.351635163516352,16.41164116411641,16.471647164716472,16.53165316531653,16.591659165916592,16.65166516651665,16.711671167116712,16.77167716771677,16.831683168316832,16.89168916891689,16.951695169516952,17.01170117011701,17.071707170717072,17.13171317131713,17.191719171917192,17.25172517251725,17.311731173117312,17.37173717371737,17.431743174317432,17.49174917491749,17.551755175517552,17.61176117611761,17.671767176717672,17.73177317731773,17.791779177917793,17.85178517851785,17.911791179117913,17.97179717971797,18.031803180318033,18.09180918091809,18.151815181518153,18.21182118211821,18.271827182718273,18.33183318331833,18.391839183918393,18.45184518451845,18.511851185118513,18.57185718571857,18.631863186318633,18.69186918691869,18.751875187518753,18.81188118811881,18.871887188718873,18.93189318931893,18.991899189918993,19.05190519051905,19.111911191119113,19.17191719171917,19.231923192319233,19.29192919291929,19.351935193519353,19.41194119411941,19.471947194719473,19.53195319531953,19.591959195919593,19.65196519651965,19.711971197119713,19.77197719771977,19.831983198319833,19.89198919891989,19.951995199519953,20.01200120012001,20.072007200720073,20.13201320132013,20.192019201920193,20.25202520252025,20.312031203120313,20.37203720372037,20.432043204320433,20.49204920492049,20.552055205520553,20.61206120612061,20.672067206720673,20.73207320732073,20.792079207920793,20.85208520852085,20.912091209120913,20.97209720972097,21.032103210321033,21.09210921092109,21.152115211521153,21.21212121212121,21.272127212721273,21.33213321332133,21.392139213921393,21.45214521452145,21.512151215121513,21.57215721572157,21.632163216321633,21.69216921692169,21.752175217521753,21.81218121812181,21.872187218721873,21.93219321932193,21.992199219921993,22.05220522052205,22.112211221122113,22.17221722172217,22.232223222322233,22.29222922292229,22.352235223522353,22.41224122412241,22.472247224722473,22.53225322532253,22.592259225922593,22.65226522652265,22.712271227122713,22.77227722772277,22.832283228322833,22.89228922892289,22.952295229522953,23.01230123012301,23.072307230723073,23.13231323132313,23.192319231923193,23.25232523252325,23.312331233123313,23.37233723372337,23.432343234323433,23.49234923492349,23.552355235523553,23.61236123612361,23.672367236723673,23.73237323732373,23.792379237923793,23.85238523852385,23.912391239123913,23.97239723972397,24.032403240324033,24.09240924092409,24.152415241524153,24.21242124212421,24.272427242724273,24.33243324332433,24.392439243924393,24.45244524452445,24.512451245124513,24.57245724572457,24.632463246324633,24.69246924692469,24.752475247524753,24.81248124812481,24.872487248724873,24.93249324932493,24.992499249924993,25.05250525052505,25.112511251125113,25.17251725172517,25.232523252325233,25.29252925292529,25.352535253525353,25.41254125412541,25.472547254725473,25.53255325532553,25.592559255925593,25.65256525652565,25.712571257125713,25.77257725772577,25.832583258325833,25.89258925892589,25.952595259525953,26.01260126012601,26.072607260726073,26.13261326132613,26.192619261926193,26.25262526252625,26.312631263126313,26.37263726372637,26.432643264326433,26.49264926492649,26.552655265526553,26.61266126612661,26.672667266726673,26.73267326732673,26.792679267926793,26.85268526852685,26.912691269126913,26.97269726972697,27.032703270327033,27.09270927092709,27.152715271527153,27.21272127212721,27.272727272727273,27.33273327332733,27.392739273927393,27.45274527452745,27.512751275127513,27.57275727572757,27.632763276327633,27.69276927692769,27.752775277527753,27.81278127812781,27.872787278727873,27.93279327932793,27.992799279927993,28.05280528052805,28.112811281128113,28.17281728172817,28.232823282328233,28.29282928292829,28.352835283528353,28.41284128412841,28.472847284728473,28.53285328532853,28.592859285928593,28.65286528652865,28.712871287128714,28.77287728772877,28.832883288328834,28.89288928892889,28.952895289528954,29.01290129012901,29.072907290729074,29.13291329132913,29.192919291929194,29.252925292529252,29.312931293129314,29.372937293729372,29.432943294329434,29.492949294929492,29.552955295529554,29.612961296129612,29.672967296729674,29.732973297329732,29.792979297929794,29.852985298529852,29.912991299129914,29.972997299729972,30.033003300330034,30.093009300930092,30.153015301530154,30.213021302130212,30.273027302730274,30.333033303330332,30.393039303930394,30.453045304530452,30.513051305130514,30.573057305730572,30.633063306330634,30.693069306930692,30.753075307530754,30.813081308130812,30.873087308730874,30.933093309330932,30.993099309930994,31.053105310531052,31.113111311131114,31.173117311731172,31.233123312331234,31.293129312931292,31.353135313531354,31.413141314131412,31.473147314731474,31.533153315331532,31.593159315931594,31.653165316531652,31.713171317131714,31.773177317731772,31.833183318331834,31.893189318931892,31.953195319531954,32.01320132013201,32.073207320732074,32.133213321332136,32.19321932193219,32.25322532253225,32.313231323132314,32.373237323732376,32.43324332433243,32.49324932493249,32.553255325532554,32.613261326132616,32.67326732673267,32.73327332733273,32.793279327932794,32.853285328532856,32.91329132913291,32.97329732973297,33.033303330333034,33.093309330933096,33.15331533153315,33.21332133213321,33.273327332733274,33.333333333333336,33.39333933393339,33.45334533453345,33.513351335133514,33.573357335733576,33.63336333633363,33.69336933693369,33.753375337533754,33.813381338133816,33.87338733873387,33.93339333933393,33.993399339933994,34.053405340534056,34.11341134113411,34.17341734173417,34.233423342334234,34.293429342934296,34.35343534353435,34.41344134413441,34.473447344734474,34.533453345334536,34.59345934593459,34.65346534653465,34.713471347134714,34.773477347734776,34.83348334833483,34.89348934893489,34.953495349534954,35.013501350135016,35.07350735073507,35.13351335133513,35.193519351935194,35.253525352535256,35.31353135313531,35.37353735373537,35.433543354335434,35.493549354935496,35.55355535553555,35.61356135613561,35.673567356735674,35.733573357335736,35.79357935793579,35.85358535853585,35.913591359135914,35.973597359735976,36.03360336033603,36.09360936093609,36.153615361536154,36.213621362136216,36.27362736273627,36.33363336333633,36.393639363936394,36.453645364536456,36.51365136513651,36.57365736573657,36.633663366336634,36.693669366936696,36.75367536753675,36.81368136813681,36.873687368736874,36.933693369336936,36.99369936993699,37.05370537053705,37.113711371137114,37.173717371737176,37.23372337233723,37.29372937293729,37.353735373537354,37.413741374137416,37.47374737473747,37.53375337533753,37.593759375937594,37.653765376537656,37.71377137713771,37.77377737773777,37.833783378337834,37.893789378937896,37.95379537953795,38.01380138013801,38.073807380738074,38.133813381338136,38.19381938193819,38.25382538253825,38.313831383138314,38.373837383738376,38.43384338433843,38.49384938493849,38.553855385538554,38.613861386138616,38.67386738673867,38.73387338733873,38.793879387938794,38.853885388538856,38.91389138913891,38.97389738973897,39.033903390339034,39.093909390939096,39.15391539153915,39.21392139213921,39.273927392739274,39.333933393339336,39.39393939393939,39.45394539453945,39.513951395139514,39.573957395739576,39.63396339633963,39.69396939693969,39.753975397539755,39.813981398139816,39.87398739873987,39.93399339933993,39.993999399939995,40.054005400540056,40.11401140114011,40.17401740174017,40.234023402340235,40.294029402940296,40.35403540354035,40.41404140414041,40.474047404740475,40.534053405340536,40.59405940594059,40.65406540654065,40.714071407140715,40.774077407740776,40.83408340834083,40.89408940894089,40.954095409540955,41.014101410141016,41.07410741074107,41.13411341134113,41.194119411941195,41.254125412541256,41.31413141314131,41.37413741374137,41.434143414341435,41.494149414941496,41.55415541554155,41.61416141614161,41.674167416741675,41.73417341734174,41.79417941794179,41.85418541854185,41.914191419141915,41.97419741974198,42.03420342034203,42.09420942094209,42.154215421542155,42.21422142214222,42.27422742274227,42.33423342334233,42.394239423942395,42.45424542454246,42.51425142514251,42.57425742574257,42.634263426342635,42.6942694269427,42.75427542754275,42.81428142814281,42.874287428742875,42.93429342934294,42.99429942994299,43.05430543054305,43.114311431143115,43.17431743174318,43.23432343234323,43.29432943294329,43.354335433543355,43.41434143414342,43.47434743474347,43.53435343534353,43.594359435943595,43.65436543654366,43.71437143714371,43.77437743774377,43.834383438343835,43.8943894389439,43.95439543954395,44.01440144014401,44.074407440744075,44.13441344134414,44.19441944194419,44.25442544254425,44.314431443144315,44.37443744374438,44.43444344434443,44.49444944494449,44.554455445544555,44.61446144614462,44.67446744674467,44.73447344734473,44.794479447944795,44.85448544854486,44.91449144914491,44.97449744974497,45.034503450345035,45.0945094509451,45.15451545154515,45.21452145214521,45.274527452745275,45.33453345334534,45.39453945394539,45.45454545454545,45.514551455145515,45.57455745574558,45.63456345634563,45.69456945694569,45.754575457545755,45.81458145814582,45.87458745874587,45.93459345934593,45.994599459945995,46.05460546054606,46.11461146114611,46.17461746174617,46.234623462346235,46.2946294629463,46.35463546354635,46.41464146414641,46.474647464746475,46.53465346534654,46.59465946594659,46.65466546654665,46.714671467146715,46.77467746774678,46.83468346834683,46.89468946894689,46.954695469546955,47.01470147014702,47.07470747074707,47.13471347134713,47.194719471947195,47.25472547254726,47.31473147314731,47.37473747374737,47.434743474347435,47.4947494749475,47.55475547554755,47.61476147614761,47.674767476747675,47.73477347734774,47.79477947794779,47.85478547854785,47.914791479147915,47.97479747974798,48.03480348034803,48.09480948094809,48.154815481548155,48.21482148214822,48.27482748274827,48.33483348334833,48.394839483948395,48.45484548454846,48.51485148514851,48.57485748574857,48.634863486348635,48.6948694869487,48.75487548754875,48.814881488148814,48.874887488748875,48.93489348934894,48.99489948994899,49.054905490549054,49.114911491149115,49.17491749174918,49.23492349234923,49.294929492949294,49.354935493549355,49.41494149414942,49.47494749474947,49.534953495349534,49.594959495949595,49.65496549654966,49.71497149714971,49.774977497749774,49.834983498349835,49.8949894989499,49.95499549954995,50.015001500150014,50.075007500750075,50.13501350135014,50.19501950195019,50.255025502550254,50.315031503150315,50.37503750375038,50.43504350435043,50.495049504950494,50.555055505550555,50.61506150615062,50.67506750675067,50.735073507350734,50.795079507950796,50.85508550855086,50.91509150915091,50.975097509750974,51.035103510351036,51.0951095109511,51.15511551155115,51.215121512151214,51.275127512751276,51.33513351335134,51.39513951395139,51.455145514551454,51.515151515151516,51.57515751575158,51.63516351635163,51.695169516951694,51.755175517551756,51.81518151815182,51.87518751875187,51.935193519351934,51.995199519951996,52.05520552055206,52.11521152115211,52.175217521752174,52.235223522352236,52.2952295229523,52.35523552355235,52.415241524152414,52.475247524752476,52.53525352535254,52.59525952595259,52.655265526552654,52.715271527152716,52.77527752775278,52.83528352835283,52.895289528952894,52.955295529552956,53.01530153015302,53.07530753075307,53.135313531353134,53.195319531953196,53.25532553255326,53.31533153315331,53.375337533753374,53.435343534353436,53.4953495349535,53.55535553555355,53.615361536153614,53.675367536753676,53.73537353735374,53.79537953795379,53.855385538553854,53.915391539153916,53.97539753975398,54.03540354035403,54.095409540954094,54.155415541554156,54.21542154215422,54.27542754275427,54.335433543354334,54.395439543954396,54.45544554455446,54.51545154515451,54.575457545754574,54.635463546354636,54.6954695469547,54.75547554755475,54.815481548154814,54.875487548754876,54.93549354935494,54.99549954995499,55.055505550555054,55.115511551155116,55.17551755175518,55.23552355235523,55.295529552955294,55.355535553555356,55.41554155415542,55.47554755475547,55.535553555355534,55.595559555955596,55.65556555655566,55.71557155715571,55.775577557755774,55.835583558355836,55.8955895589559,55.95559555955595,56.015601560156014,56.075607560756076,56.13561356135614,56.19561956195619,56.255625562556254,56.315631563156316,56.37563756375638,56.43564356435643,56.495649564956494,56.555655565556556,56.61566156615662,56.67566756675667,56.735673567356734,56.795679567956796,56.85568556855686,56.91569156915691,56.975697569756974,57.035703570357036,57.0957095709571,57.15571557155715,57.215721572157214,57.275727572757276,57.33573357335734,57.39573957395739,57.455745574557454,57.515751575157516,57.57575757575758,57.63576357635763,57.695769576957694,57.755775577557756,57.81578157815782,57.87578757875787,57.935793579357934,57.995799579957996,58.05580558055806,58.11581158115811,58.175817581758174,58.235823582358236,58.2958295829583,58.35583558355835,58.415841584158414,58.475847584758476,58.53585358535854,58.59585958595859,58.655865586558654,58.715871587158716,58.77587758775878,58.83588358835883,58.895889588958894,58.955895589558956,59.01590159015902,59.07590759075907,59.135913591359135,59.195919591959196,59.25592559255926,59.31593159315931,59.375937593759375,59.435943594359436,59.4959495949595,59.55595559555955,59.615961596159615,59.675967596759676,59.73597359735974,59.79597959795979,59.855985598559855,59.915991599159916,59.97599759975998,60.03600360036003,60.096009600960095,60.156015601560156,60.21602160216022,60.27602760276027,60.336033603360335,60.396039603960396,60.45604560456046,60.51605160516051,60.576057605760575,60.636063606360636,60.6960696069607,60.75607560756075,60.816081608160815,60.876087608760876,60.93609360936094,60.99609960996099,61.056105610561055,61.11611161116112,61.17611761176118,61.23612361236123,61.296129612961295,61.35613561356136,61.41614161416142,61.47614761476147,61.536153615361535,61.5961596159616,61.65616561656166,61.71617161716171,61.776177617761775,61.83618361836184,61.8961896189619,61.95619561956195,62.016201620162015,62.07620762076208,62.13621362136214,62.19621962196219,62.256225622562255,62.31623162316232,62.37623762376238,62.43624362436243,62.496249624962495,62.55625562556256,62.61626162616262,62.67626762676267,62.736273627362735,62.7962796279628,62.85628562856286,62.91629162916291,62.976297629762975,63.03630363036304,63.0963096309631,63.15631563156315,63.216321632163215,63.27632763276328,63.33633363336334,63.39633963396339,63.456345634563455,63.51635163516352,63.57635763576358,63.63636363636363,63.696369636963695,63.75637563756376,63.81638163816382,63.87638763876387,63.936393639363935,63.996399639964,64.05640564056405,64.11641164116412,64.17641764176417,64.23642364236423,64.2964296429643,64.35643564356435,64.41644164416442,64.47644764476448,64.53645364536453,64.5964596459646,64.65646564656466,64.71647164716471,64.77647764776478,64.83648364836483,64.8964896489649,64.95649564956496,65.01650165016501,65.07650765076508,65.13651365136514,65.19651965196519,65.25652565256526,65.31653165316531,65.37653765376538,65.43654365436544,65.49654965496549,65.55655565556556,65.61656165616562,65.67656765676567,65.73657365736574,65.7965796579658,65.85658565856586,65.91659165916592,65.97659765976597,66.03660366036604,66.0966096609661,66.15661566156615,66.21662166216622,66.27662766276627,66.33663366336634,66.3966396639664,66.45664566456645,66.51665166516652,66.57665766576658,66.63666366636663,66.6966696669667,66.75667566756675,66.81668166816682,66.87668766876688,66.93669366936693,66.996699669967,67.05670567056706,67.11671167116711,67.17671767176718,67.23672367236723,67.2967296729673,67.35673567356736,67.41674167416741,67.47674767476748,67.53675367536754,67.59675967596759,67.65676567656766,67.71677167716771,67.77677767776778,67.83678367836784,67.89678967896789,67.95679567956796,68.01680168016802,68.07680768076807,68.13681368136814,68.1968196819682,68.25682568256826,68.31683168316832,68.37683768376837,68.43684368436844,68.4968496849685,68.55685568556855,68.61686168616862,68.67686768676867,68.73687368736874,68.7968796879688,68.85688568856885,68.91689168916892,68.97689768976898,69.03690369036903,69.0969096909691,69.15691569156915,69.21692169216922,69.27692769276928,69.33693369336933,69.3969396939694,69.45694569456946,69.51695169516951,69.57695769576958,69.63696369636963,69.6969696969697,69.75697569756976,69.81698169816981,69.87698769876988,69.93699369936994,69.99699969996999,70.05700570057006,70.11701170117011,70.17701770177018,70.23702370237024,70.29702970297029,70.35703570357036,70.41704170417042,70.47704770477047,70.53705370537054,70.5970597059706,70.65706570657066,70.71707170717072,70.77707770777077,70.83708370837084,70.8970897089709,70.95709570957095,71.01710171017102,71.07710771077107,71.13711371137114,71.1971197119712,71.25712571257125,71.31713171317132,71.37713771377138,71.43714371437143,71.4971497149715,71.55715571557155,71.61716171617162,71.67716771677168,71.73717371737173,71.7971797179718,71.85718571857186,71.91719171917191,71.97719771977198,72.03720372037203,72.0972097209721,72.15721572157216,72.21722172217221,72.27722772277228,72.33723372337234,72.39723972397239,72.45724572457246,72.51725172517251,72.57725772577258,72.63726372637264,72.69726972697269,72.75727572757276,72.81728172817282,72.87728772877287,72.93729372937294,72.997299729973,73.05730573057306,73.11731173117312,73.17731773177317,73.23732373237324,73.2973297329733,73.35733573357335,73.41734173417342,73.47734773477347,73.53735373537354,73.5973597359736,73.65736573657365,73.71737173717372,73.77737773777378,73.83738373837383,73.8973897389739,73.95739573957395,74.01740174017402,74.07740774077408,74.13741374137413,74.1974197419742,74.25742574257426,74.31743174317431,74.37743774377438,74.43744374437443,74.4974497449745,74.55745574557456,74.61746174617461,74.67746774677468,74.73747374737474,74.79747974797479,74.85748574857486,74.91749174917491,74.97749774977498,75.03750375037504,75.09750975097509,75.15751575157516,75.21752175217522,75.27752775277527,75.33753375337534,75.3975397539754,75.45754575457546,75.51755175517552,75.57755775577557,75.63756375637564,75.6975697569757,75.75757575757575,75.81758175817582,75.87758775877587,75.93759375937594,75.997599759976,76.05760576057605,76.11761176117612,76.17761776177618,76.23762376237623,76.2976297629763,76.35763576357635,76.41764176417642,76.47764776477648,76.53765376537653,76.5976597659766,76.65766576657666,76.71767176717671,76.77767776777678,76.83768376837683,76.8976897689769,76.95769576957696,77.01770177017701,77.07770777077708,77.13771377137714,77.19771977197719,77.25772577257726,77.31773177317731,77.37773777377738,77.43774377437744,77.49774977497749,77.55775577557756,77.61776177617762,77.67776777677767,77.73777377737774,77.7977797779778,77.85778577857786,77.91779177917792,77.97779777977797,78.03780378037804,78.0978097809781,78.15781578157815,78.21782178217822,78.27782778277827,78.33783378337834,78.3978397839784,78.45784578457845,78.51785178517852,78.57785778577858,78.63786378637863,78.6978697869787,78.75787578757875,78.81788178817882,78.87788778877888,78.93789378937893,78.997899789979,79.05790579057906,79.11791179117911,79.17791779177918,79.23792379237923,79.2979297929793,79.35793579357936,79.41794179417941,79.47794779477948,79.53795379537954,79.59795979597959,79.65796579657966,79.71797179717971,79.77797779777978,79.83798379837984,79.89798979897989,79.95799579957996,80.01800180018002,80.07800780078007,80.13801380138014,80.1980198019802,80.25802580258026,80.31803180318032,80.37803780378037,80.43804380438044,80.4980498049805,80.55805580558055,80.61806180618062,80.67806780678067,80.73807380738074,80.7980798079808,80.85808580858085,80.91809180918092,80.97809780978098,81.03810381038103,81.0981098109811,81.15811581158115,81.21812181218122,81.27812781278128,81.33813381338133,81.3981398139814,81.45814581458146,81.51815181518151,81.57815781578158,81.63816381638163,81.6981698169817,81.75817581758176,81.81818181818181,81.87818781878188,81.93819381938194,81.99819981998199,82.05820582058206,82.11821182118211,82.17821782178218,82.23822382238224,82.2982298229823,82.35823582358236,82.41824182418242,82.47824782478247,82.53825382538254,82.5982598259826,82.65826582658266,82.71827182718272,82.77827782778277,82.83828382838284,82.8982898289829,82.95829582958295,83.01830183018302,83.07830783078307,83.13831383138314,83.1983198319832,83.25832583258325,83.31833183318332,83.37833783378338,83.43834383438343,83.4983498349835,83.55835583558355,83.61836183618362,83.67836783678368,83.73837383738373,83.7983798379838,83.85838583858386,83.91839183918391,83.97839783978398,84.03840384038403,84.0984098409841,84.15841584158416,84.21842184218421,84.27842784278428,84.33843384338434,84.39843984398439,84.45844584458446,84.51845184518452,84.57845784578458,84.63846384638464,84.6984698469847,84.75847584758476,84.81848184818482,84.87848784878487,84.93849384938494,84.998499849985,85.05850585058506,85.11851185118512,85.17851785178517,85.23852385238524,85.2985298529853,85.35853585358535,85.41854185418542,85.47854785478548,85.53855385538554,85.5985598559856,85.65856585658565,85.71857185718572,85.77857785778578,85.83858385838583,85.8985898589859,85.95859585958596,86.01860186018602,86.07860786078608,86.13861386138613,86.1986198619862,86.25862586258626,86.31863186318631,86.37863786378638,86.43864386438644,86.4986498649865,86.55865586558656,86.61866186618661,86.67866786678668,86.73867386738674,86.79867986798679,86.85868586858686,86.91869186918692,86.97869786978698,87.03870387038704,87.0987098709871,87.15871587158716,87.21872187218722,87.27872787278727,87.33873387338734,87.3987398739874,87.45874587458746,87.51875187518752,87.57875787578757,87.63876387638764,87.6987698769877,87.75877587758775,87.81878187818782,87.87878787878788,87.93879387938794,87.998799879988,88.05880588058805,88.11881188118812,88.17881788178818,88.23882388238823,88.2988298829883,88.35883588358836,88.41884188418842,88.47884788478848,88.53885388538853,88.5988598859886,88.65886588658866,88.71887188718871,88.77887788778878,88.83888388838884,88.8988898889889,88.95889588958896,89.01890189018901,89.07890789078908,89.13891389138914,89.19891989198919,89.25892589258926,89.31893189318932,89.37893789378938,89.43894389438944,89.4989498949895,89.55895589558956,89.61896189618962,89.67896789678967,89.73897389738974,89.7989798979898,89.85898589858986,89.91899189918992,89.97899789978997,90.03900390039004,90.0990099009901,90.15901590159015,90.21902190219022,90.27902790279028,90.33903390339034,90.3990399039904,90.45904590459045,90.51905190519052,90.57905790579058,90.63906390639063,90.6990699069907,90.75907590759076,90.81908190819082,90.87908790879088,90.93909390939093,90.999099909991,91.05910591059106,91.11911191119111,91.17911791179118,91.23912391239124,91.2991299129913,91.35913591359136,91.41914191419141,91.47914791479148,91.53915391539154,91.59915991599159,91.65916591659166,91.71917191719172,91.77917791779178,91.83918391839184,91.8991899189919,91.95919591959196,92.01920192019202,92.07920792079207,92.13921392139214,92.1992199219922,92.25922592259226,92.31923192319232,92.37923792379237,92.43924392439244,92.4992499249925,92.55925592559255,92.61926192619262,92.67926792679268,92.73927392739274,92.7992799279928,92.85928592859285,92.91929192919292,92.97929792979298,93.03930393039303,93.0993099309931,93.15931593159316,93.21932193219322,93.27932793279328,93.33933393339333,93.3993399339934,93.45934593459346,93.51935193519351,93.57935793579358,93.63936393639364,93.6993699369937,93.75937593759376,93.81938193819381,93.87938793879388,93.93939393939394,93.99939993999399,94.05940594059406,94.11941194119412,94.17941794179418,94.23942394239424,94.2994299429943,94.35943594359436,94.41944194419442,94.47944794479447,94.53945394539454,94.5994599459946,94.65946594659466,94.71947194719472,94.77947794779477,94.83948394839484,94.8994899489949,94.95949594959495,95.01950195019502,95.07950795079508,95.13951395139514,95.1995199519952,95.25952595259525,95.31953195319532,95.37953795379538,95.43954395439543,95.4995499549955,95.55955595559556,95.61956195619562,95.67956795679568,95.73957395739573,95.7995799579958,95.85958595859586,95.91959195919591,95.97959795979598,96.03960396039604,96.0996099609961,96.15961596159616,96.21962196219621,96.27962796279628,96.33963396339634,96.39963996399639,96.45964596459646,96.51965196519652,96.57965796579659,96.63966396639664,96.6996699669967,96.75967596759676,96.81968196819682,96.87968796879687,96.93969396939694,96.999699969997,97.05970597059707,97.11971197119712,97.17971797179717,97.23972397239724,97.2997299729973,97.35973597359735,97.41974197419742,97.47974797479748,97.53975397539755,97.5997599759976,97.65976597659765,97.71977197719772,97.77977797779778,97.83978397839783,97.8997899789979,97.95979597959796,98.01980198019803,98.07980798079808,98.13981398139813,98.1998199819982,98.25982598259826,98.31983198319831,98.37983798379838,98.43984398439844,98.4998499849985,98.55985598559856,98.61986198619861,98.67986798679868,98.73987398739874,98.79987998799879,98.85988598859886,98.91989198919892,98.97989798979899,99.03990399039904,99.0999099909991,99.15991599159916,99.21992199219922,99.27992799279927,99.33993399339934,99.3999399939994,99.45994599459947,99.51995199519952,99.57995799579957,99.63996399639964,99.6999699969997,99.75997599759975,99.81998199819982,99.87998799879988,99.93999399939995,100.0,100.06000600060005,100.12001200120012,100.18001800180018,100.24002400240025,100.3000300030003,100.36003600360036,100.42004200420043,100.48004800480048,100.54005400540053,100.6000600060006,100.66006600660066,100.72007200720073,100.78007800780078,100.84008400840084,100.9000900090009,100.96009600960096,101.02010201020101,101.08010801080108,101.14011401140114,101.20012001200121,101.26012601260126,101.32013201320132,101.38013801380139,101.44014401440144,101.5001500150015,101.56015601560156,101.62016201620162,101.68016801680169,101.74017401740174,101.8001800180018,101.86018601860187,101.92019201920192,101.98019801980197,102.04020402040204,102.1002100210021,102.16021602160217,102.22022202220222,102.28022802280228,102.34023402340235,102.4002400240024,102.46024602460245,102.52025202520252,102.58025802580258,102.64026402640265,102.7002700270027,102.76027602760276,102.82028202820283,102.88028802880288,102.94029402940293,103.000300030003,103.06030603060306,103.12031203120313,103.18031803180318,103.24032403240324,103.3003300330033,103.36033603360336,103.42034203420341,103.48034803480348,103.54035403540354,103.60036003600361,103.66036603660366,103.72037203720372,103.78037803780379,103.84038403840384,103.9003900390039,103.96039603960396,104.02040204020402,104.08040804080409,104.14041404140414,104.2004200420042,104.26042604260427,104.32043204320432,104.38043804380438,104.44044404440444,104.5004500450045,104.56045604560457,104.62046204620462,104.68046804680468,104.74047404740475,104.8004800480048,104.86048604860486,104.92049204920492,104.98049804980498,105.04050405040505,105.1005100510051,105.16051605160516,105.22052205220523,105.28052805280528,105.34053405340534,105.4005400540054,105.46054605460546,105.52055205520553,105.58055805580558,105.64056405640564,105.7005700570057,105.76057605760576,105.82058205820582,105.88058805880588,105.94059405940594,106.00060006000601,106.06060606060606,106.12061206120612,106.18061806180619,106.24062406240624,106.3006300630063,106.36063606360636,106.42064206420642,106.48064806480649,106.54065406540654,106.6006600660066,106.66066606660667,106.72067206720672,106.78067806780678,106.84068406840684,106.9006900690069,106.96069606960697,107.02070207020702,107.08070807080708,107.14071407140715,107.2007200720072,107.26072607260726,107.32073207320732,107.38073807380738,107.44074407440745,107.5007500750075,107.56075607560756,107.62076207620763,107.68076807680768,107.74077407740774,107.8007800780078,107.86078607860786,107.92079207920793,107.98079807980798,108.04080408040804,108.1008100810081,108.16081608160816,108.22082208220822,108.28082808280828,108.34083408340834,108.40084008400841,108.46084608460846,108.52085208520852,108.58085808580859,108.64086408640864,108.7008700870087,108.76087608760876,108.82088208820882,108.88088808880889,108.94089408940894,109.000900090009,109.06090609060907,109.12091209120912,109.18091809180918,109.24092409240924,109.3009300930093,109.36093609360937,109.42094209420942,109.48094809480948,109.54095409540955,109.6009600960096,109.66096609660966,109.72097209720972,109.78097809780978,109.84098409840985,109.9009900990099,109.96099609960996,110.02100210021003,110.08100810081008,110.14101410141014,110.2010201020102,110.26102610261026,110.32103210321033,110.38103810381038,110.44104410441044,110.5010501050105,110.56105610561056,110.62106210621062,110.68106810681068,110.74107410741074,110.80108010801081,110.86108610861086,110.92109210921092,110.98109810981099,111.04110411041104,111.1011101110111,111.16111611161116,111.22112211221122,111.28112811281129,111.34113411341134,111.4011401140114,111.46114611461147,111.52115211521152,111.58115811581158,111.64116411641164,111.7011701170117,111.76117611761177,111.82118211821182,111.88118811881188,111.94119411941195,112.001200120012,112.06120612061206,112.12121212121212,112.18121812181218,112.24122412241225,112.3012301230123,112.36123612361236,112.42124212421243,112.48124812481248,112.54125412541254,112.6012601260126,112.66126612661266,112.72127212721273,112.78127812781278,112.84128412841284,112.9012901290129,112.96129612961296,113.02130213021302,113.08130813081308,113.14131413141314,113.20132013201321,113.26132613261326,113.32133213321332,113.38133813381339,113.44134413441344,113.5013501350135,113.56135613561356,113.62136213621362,113.68136813681369,113.74137413741374,113.8013801380138,113.86138613861387,113.92139213921392,113.98139813981398,114.04140414041404,114.1014101410141,114.16141614161417,114.22142214221422,114.28142814281428,114.34143414341435,114.4014401440144,114.46144614461446,114.52145214521452,114.58145814581458,114.64146414641465,114.7014701470147,114.76147614761476,114.82148214821483,114.88148814881488,114.94149414941494,115.001500150015,115.06150615061506,115.12151215121513,115.18151815181518,115.24152415241524,115.3015301530153,115.36153615361536,115.42154215421542,115.48154815481548,115.54155415541554,115.60156015601561,115.66156615661566,115.72157215721572,115.78157815781579,115.84158415841584,115.9015901590159,115.96159615961597,116.02160216021602,116.08160816081609,116.14161416141614,116.2016201620162,116.26162616261627,116.32163216321632,116.38163816381638,116.44164416441645,116.5016501650165,116.56165616561657,116.62166216621662,116.68166816681668,116.74167416741675,116.8016801680168,116.86168616861686,116.92169216921693,116.98169816981698,117.04170417041705,117.1017101710171,117.16171617161716,117.22172217221723,117.28172817281728,117.34173417341734,117.4017401740174,117.46174617461746,117.52175217521753,117.58175817581758,117.64176417641764,117.7017701770177,117.76177617761776,117.82178217821782,117.88178817881789,117.94179417941794,118.00180018001801,118.06180618061806,118.12181218121812,118.18181818181819,118.24182418241824,118.3018301830183,118.36183618361837,118.42184218421842,118.48184818481849,118.54185418541854,118.6018601860186,118.66186618661867,118.72187218721872,118.78187818781878,118.84188418841885,118.9018901890189,118.96189618961897,119.02190219021902,119.08190819081908,119.14191419141915,119.2019201920192,119.26192619261926,119.32193219321933,119.38193819381938,119.44194419441945,119.5019501950195,119.56195619561956,119.62196219621963,119.68196819681968,119.74197419741974,119.8019801980198,119.86198619861986,119.92199219921993,119.98199819981998,120.04200420042004,120.10201020102011,120.16201620162016,120.22202220222022,120.28202820282029,120.34203420342034,120.40204020402041,120.46204620462046,120.52205220522052,120.58205820582059,120.64206420642064,120.7020702070207,120.76207620762077,120.82208220822082,120.88208820882089,120.94209420942094,121.002100210021,121.06210621062107,121.12211221122112,121.18211821182118,121.24212421242125,121.3021302130213,121.36213621362137,121.42214221422142,121.48214821482148,121.54215421542155,121.6021602160216,121.66216621662166,121.72217221722173,121.78217821782178,121.84218421842185,121.9021902190219,121.96219621962196,122.02220222022203,122.08220822082208,122.14221422142214,122.2022202220222,122.26222622262226,122.32223222322233,122.38223822382238,122.44224422442244,122.50225022502251,122.56225622562256,122.62226222622262,122.68226822682269,122.74227422742274,122.80228022802281,122.86228622862286,122.92229222922292,122.98229822982299,123.04230423042304,123.1023102310231,123.16231623162317,123.22232223222322,123.28232823282329,123.34233423342334,123.4023402340234,123.46234623462347,123.52235223522352,123.58235823582358,123.64236423642365,123.7023702370237,123.76237623762377,123.82238223822382,123.88238823882388,123.94239423942395,124.002400240024,124.06240624062406,124.12241224122413,124.18241824182418,124.24242424242425,124.3024302430243,124.36243624362436,124.42244224422443,124.48244824482448,124.54245424542454,124.6024602460246,124.66246624662466,124.72247224722473,124.78247824782478,124.84248424842484,124.90249024902491,124.96249624962496,125.02250225022502,125.08250825082509,125.14251425142514,125.20252025202521,125.26252625262526,125.32253225322532,125.38253825382539,125.44254425442544,125.5025502550255,125.56255625562557,125.62256225622562,125.68256825682569,125.74257425742574,125.8025802580258,125.86258625862587,125.92259225922592,125.98259825982598,126.04260426042605,126.1026102610261,126.16261626162617,126.22262226222622,126.28262826282628,126.34263426342635,126.4026402640264,126.46264626462646,126.52265226522653,126.58265826582658,126.64266426642665,126.7026702670267,126.76267626762676,126.82268226822683,126.88268826882688,126.94269426942694,127.002700270027,127.06270627062706,127.12271227122713,127.18271827182718,127.24272427242724,127.30273027302731,127.36273627362736,127.42274227422742,127.48274827482749,127.54275427542754,127.60276027602761,127.66276627662766,127.72277227722772,127.78277827782779,127.84278427842784,127.9027902790279,127.96279627962797,128.02280228022803,128.0828082808281,128.14281428142814,128.2028202820282,128.26282628262825,128.32283228322834,128.3828382838284,128.44284428442845,128.5028502850285,128.56285628562856,128.6228622862286,128.6828682868287,128.74287428742875,128.8028802880288,128.86288628862886,128.9228922892289,128.982898289829,129.04290429042905,129.1029102910291,129.16291629162916,129.2229222922292,129.2829282928293,129.34293429342935,129.4029402940294,129.46294629462946,129.52295229522952,129.58295829582957,129.64296429642965,129.7029702970297,129.76297629762976,129.82298229822982,129.88298829882987,129.94299429942996,130.00300030003,130.06300630063006,130.12301230123012,130.18301830183017,130.24302430243026,130.3030303030303,130.36303630363037,130.42304230423042,130.48304830483048,130.54305430543053,130.6030603060306,130.66306630663067,130.72307230723072,130.78307830783078,130.84308430843083,130.90309030903092,130.96309630963097,131.02310231023102,131.08310831083108,131.14311431143113,131.20312031203122,131.26312631263127,131.32313231323133,131.38313831383138,131.44314431443144,131.5031503150315,131.56315631563157,131.62316231623163,131.68316831683168,131.74317431743174,131.8031803180318,131.86318631863188,131.92319231923193,131.98319831983198,132.04320432043204,132.1032103210321,132.16321632163218,132.22322232223223,132.2832283228323,132.34323432343234,132.4032403240324,132.46324632463245,132.52325232523253,132.5832583258326,132.64326432643264,132.7032703270327,132.76327632763275,132.82328232823284,132.8832883288329,132.94329432943294,133.003300330033,133.06330633063305,133.12331233123314,133.1833183318332,133.24332433243325,133.3033303330333,133.36333633363336,133.4233423342334,133.4833483348335,133.54335433543355,133.6033603360336,133.66336633663366,133.7233723372337,133.7833783378338,133.84338433843385,133.9033903390339,133.96339633963396,134.02340234023401,134.0834083408341,134.14341434143415,134.2034203420342,134.26342634263426,134.32343234323432,134.38343834383437,134.44344434443445,134.5034503450345,134.56345634563456,134.62346234623462,134.68346834683467,134.74347434743476,134.8034803480348,134.86348634863486,134.92349234923492,134.98349834983497,135.04350435043506,135.1035103510351,135.16351635163517,135.22352235223522,135.28352835283528,135.34353435343533,135.4035403540354,135.46354635463547,135.52355235523552,135.58355835583558,135.64356435643563,135.70357035703572,135.76357635763577,135.82358235823583,135.88358835883588,135.94359435943593,136.00360036003602,136.06360636063607,136.12361236123613,136.18361836183618,136.24362436243624,136.3036303630363,136.36363636363637,136.42364236423643,136.48364836483648,136.54365436543654,136.6036603660366,136.66366636663668,136.72367236723673,136.78367836783679,136.84368436843684,136.9036903690369,136.96369636963698,137.02370237023703,137.0837083708371,137.14371437143714,137.2037203720372,137.26372637263725,137.32373237323733,137.3837383738374,137.44374437443744,137.5037503750375,137.56375637563755,137.62376237623764,137.6837683768377,137.74377437743775,137.8037803780378,137.86378637863785,137.92379237923794,137.983798379838,138.04380438043805,138.1038103810381,138.16381638163816,138.2238223822382,138.2838283828383,138.34383438343835,138.4038403840384,138.46384638463846,138.5238523852385,138.5838583858386,138.64386438643865,138.7038703870387,138.76387638763876,138.82388238823881,138.8838883888389,138.94389438943895,139.003900390039,139.06390639063906,139.12391239123912,139.18391839183917,139.24392439243925,139.3039303930393,139.36393639363936,139.42394239423942,139.48394839483947,139.54395439543956,139.6039603960396,139.66396639663967,139.72397239723972,139.78397839783977,139.84398439843986,139.9039903990399,139.96399639963997,140.02400240024002,140.08400840084008,140.14401440144013,140.20402040204021,140.26402640264027,140.32403240324032,140.38403840384038,140.44404440444043,140.50405040504052,140.56405640564057,140.62406240624063,140.68406840684068,140.74407440744073,140.80408040804082,140.86408640864087,140.92409240924093,140.98409840984098,141.04410441044104,141.1041104110411,141.16411641164117,141.22412241224123,141.28412841284128,141.34413441344134,141.4041404140414,141.46414641464148,141.52415241524153,141.58415841584159,141.64416441644164,141.7041704170417,141.76417641764178,141.82418241824183,141.8841884188419,141.94419441944194,142.004200420042,142.06420642064205,142.12421242124213,142.1842184218422,142.24422442244224,142.3042304230423,142.36423642364235,142.42424242424244,142.4842484248425,142.54425442544255,142.6042604260426,142.66426642664266,142.72427242724274,142.7842784278428,142.84428442844285,142.9042904290429,142.96429642964296,143.024302430243,143.0843084308431,143.14431443144315,143.2043204320432,143.26432643264326,143.3243324332433,143.3843384338434,143.44434443444345,143.5043504350435,143.56435643564356,143.62436243624362,143.6843684368437,143.74437443744375,143.8043804380438,143.86438643864386,143.92439243924392,143.98439843984397,144.04440444044405,144.1044104410441,144.16441644164416,144.22442244224422,144.28442844284427,144.34443444344436,144.4044404440444,144.46444644464447,144.52445244524452,144.58445844584458,144.64446444644466,144.7044704470447,144.76447644764477,144.82448244824482,144.88448844884488,144.94449444944493,145.00450045004501,145.06450645064507,145.12451245124512,145.18451845184518,145.24452445244523,145.30453045304532,145.36453645364537,145.42454245424543,145.48454845484548,145.54455445544554,145.60456045604562,145.66456645664567,145.72457245724573,145.78457845784578,145.84458445844584,145.9045904590459,145.96459645964597,146.02460246024603,146.08460846084608,146.14461446144614,146.2046204620462,146.26462646264628,146.32463246324633,146.3846384638464,146.44464446444644,146.5046504650465,146.56465646564658,146.62466246624663,146.6846684668467,146.74467446744674,146.8046804680468,146.86468646864685,146.92469246924693,146.984698469847,147.04470447044704,147.1047104710471,147.16471647164715,147.22472247224724,147.2847284728473,147.34473447344735,147.4047404740474,147.46474647464746,147.52475247524754,147.5847584758476,147.64476447644765,147.7047704770477,147.76477647764776,147.8247824782478,147.8847884788479,147.94479447944795,148.004800480048,148.06480648064806,148.1248124812481,148.1848184818482,148.24482448244825,148.3048304830483,148.36483648364836,148.42484248424842,148.4848484848485,148.54485448544855,148.6048604860486,148.66486648664866,148.72487248724872,148.78487848784877,148.84488448844886,148.9048904890489,148.96489648964896,149.02490249024902,149.08490849084907,149.14491449144916,149.2049204920492,149.26492649264927,149.32493249324932,149.38493849384938,149.44494449444946,149.5049504950495,149.56495649564957,149.62496249624962,149.68496849684968,149.74497449744973,149.80498049804982,149.86498649864987,149.92499249924992,149.98499849984998,150.04500450045003,150.10501050105012,150.16501650165017,150.22502250225023,150.28502850285028,150.34503450345034,150.40504050405042,150.46504650465047,150.52505250525053,150.58505850585058,150.64506450645064,150.7050705070507,150.76507650765078,150.82508250825083,150.88508850885088,150.94509450945094,151.005100510051,151.06510651065108,151.12511251125113,151.1851185118512,151.24512451245124,151.3051305130513,151.36513651365138,151.42514251425143,151.4851485148515,151.54515451545154,151.6051605160516,151.66516651665165,151.72517251725174,151.7851785178518,151.84518451845184,151.9051905190519,151.96519651965195,152.02520252025204,152.0852085208521,152.14521452145215,152.2052205220522,152.26522652265226,152.32523252325234,152.3852385238524,152.44524452445245,152.5052505250525,152.56525652565256,152.6252625262526,152.6852685268527,152.74527452745275,152.8052805280528,152.86528652865286,152.9252925292529,152.985298529853,153.04530453045305,153.1053105310531,153.16531653165316,153.22532253225322,153.2853285328533,153.34533453345335,153.4053405340534,153.46534653465346,153.52535253525352,153.58535853585357,153.64536453645366,153.7053705370537,153.76537653765376,153.82538253825382,153.88538853885387,153.94539453945396,154.005400540054,154.06540654065407,154.12541254125412,154.18541854185418,154.24542454245426,154.3054305430543,154.36543654365437,154.42544254425442,154.48544854485448,154.54545454545453,154.60546054605462,154.66546654665467,154.72547254725472,154.78547854785478,154.84548454845483,154.90549054905492,154.96549654965497,155.02550255025503,155.08550855085508,155.14551455145514,155.20552055205522,155.26552655265527,155.32553255325533,155.38553855385538,155.44554455445544,155.5055505550555,155.56555655565558,155.62556255625563,155.68556855685569,155.74557455745574,155.8055805580558,155.86558655865588,155.92559255925593,155.985598559856,156.04560456045604,156.1056105610561,156.16561656165618,156.22562256225623,156.2856285628563,156.34563456345634,156.4056405640564,156.46564656465645,156.52565256525654,156.5856585658566,156.64566456645665,156.7056705670567,156.76567656765675,156.82568256825684,156.8856885688569,156.94569456945695,157.005700570057,157.06570657065706,157.12571257125714,157.1857185718572,157.24572457245725,157.3057305730573,157.36573657365736,157.4257425742574,157.4857485748575,157.54575457545755,157.6057605760576,157.66576657665766,157.72577257725771,157.7857785778578,157.84578457845785,157.9057905790579,157.96579657965796,158.02580258025802,158.0858085808581,158.14581458145815,158.2058205820582,158.26582658265826,158.32583258325832,158.38583858385837,158.44584458445846,158.5058505850585,158.56585658565857,158.62586258625862,158.68586858685867,158.74587458745876,158.8058805880588,158.86588658865887,158.92589258925892,158.98589858985898,159.04590459045906,159.10591059105911,159.16591659165917,159.22592259225922,159.28592859285928,159.34593459345933,159.40594059405942,159.46594659465947,159.52595259525953,159.58595859585958,159.64596459645963,159.70597059705972,159.76597659765977,159.82598259825983,159.88598859885988,159.94599459945994,160.00600060006002,160.06600660066007,160.12601260126013,160.18601860186018,160.24602460246024,160.3060306030603,160.36603660366038,160.42604260426043,160.48604860486049,160.54605460546054,160.6060606060606,160.66606660666068,160.72607260726073,160.7860786078608,160.84608460846084,160.9060906090609,160.96609660966098,161.02610261026103,161.0861086108611,161.14611461146114,161.2061206120612,161.26612661266125,161.32613261326134,161.3861386138614,161.44614461446145,161.5061506150615,161.56615661566155,161.62616261626164,161.6861686168617,161.74617461746175,161.8061806180618,161.86618661866186,161.92619261926194,161.986198619862,162.04620462046205,162.1062106210621,162.16621662166216,162.2262226222622,162.2862286228623,162.34623462346235,162.4062406240624,162.46624662466246,162.52625262526252,162.5862586258626,162.64626462646265,162.7062706270627,162.76627662766276,162.82628262826282,162.8862886288629,162.94629462946295,163.006300630063,163.06630663066306,163.12631263126312,163.18631863186317,163.24632463246326,163.3063306330633,163.36633663366337,163.42634263426342,163.48634863486348,163.54635463546356,163.6063606360636,163.66636663666367,163.72637263726372,163.78637863786378,163.84638463846386,163.90639063906391,163.96639663966397,164.02640264026402,164.08640864086408,164.14641464146413,164.20642064206422,164.26642664266427,164.32643264326433,164.38643864386438,164.44644464446444,164.50645064506452,164.56645664566457,164.62646264626463,164.68646864686468,164.74647464746474,164.80648064806482,164.86648664866487,164.92649264926493,164.98649864986498,165.04650465046504,165.1065106510651,165.16651665166518,165.22652265226523,165.2865286528653,165.34653465346534,165.4065406540654,165.46654665466548,165.52655265526553,165.5865586558656,165.64656465646564,165.7065706570657,165.76657665766578,165.82658265826583,165.8865886588659,165.94659465946594,166.006600660066,166.06660666066605,166.12661266126614,166.1866186618662,166.24662466246625,166.3066306630663,166.36663666366636,166.42664266426644,166.4866486648665,166.54665466546655,166.6066606660666,166.66666666666666,166.72667266726674,166.7866786678668,166.84668466846685,166.9066906690669,166.96669666966696,167.026702670267,167.0867086708671,167.14671467146715,167.2067206720672,167.26672667266726,167.32673267326732,167.3867386738674,167.44674467446745,167.5067506750675,167.56675667566756,167.62676267626762,167.6867686768677,167.74677467746776,167.8067806780678,167.86678667866786,167.92679267926792,167.98679867986797,168.04680468046806,168.1068106810681,168.16681668166817,168.22682268226822,168.28682868286828,168.34683468346836,168.4068406840684,168.46684668466847,168.52685268526852,168.58685868586858,168.64686468646866,168.70687068706872,168.76687668766877,168.82688268826882,168.88688868886888,168.94689468946893,169.00690069006902,169.06690669066907,169.12691269126913,169.18691869186918,169.24692469246924,169.30693069306932,169.36693669366937,169.42694269426943,169.48694869486948,169.54695469546954,169.60696069606962,169.66696669666968,169.72697269726973,169.78697869786978,169.84698469846984,169.9069906990699,169.96699669966998,170.02700270027003,170.0870087008701,170.14701470147014,170.2070207020702,170.26702670267028,170.32703270327033,170.3870387038704,170.44704470447044,170.5070507050705,170.56705670567058,170.62706270627064,170.6870687068707,170.74707470747074,170.8070807080708,170.86708670867085,170.92709270927094,170.987098709871,171.04710471047105,171.1071107110711,171.16711671167116,171.22712271227124,171.2871287128713,171.34713471347135,171.4071407140714,171.46714671467146,171.52715271527154,171.5871587158716,171.64716471647165,171.7071707170717,171.76717671767176,171.8271827182718,171.8871887188719,171.94719471947195,172.007200720072,172.06720672067206,172.12721272127212,172.1872187218722,172.24722472247225,172.3072307230723,172.36723672367236,172.42724272427242,172.4872487248725,172.54725472547256,172.6072607260726,172.66726672667266,172.72727272727272,172.78727872787277,172.84728472847286,172.9072907290729,172.96729672967297,173.02730273027302,173.08730873087308,173.14731473147316,173.2073207320732,173.26732673267327,173.32733273327332,173.38733873387338,173.44734473447346,173.50735073507352,173.56735673567357,173.62736273627362,173.68736873687368,173.74737473747373,173.80738073807382,173.86738673867387,173.92739273927393,173.98739873987398,174.04740474047404,174.10741074107412,174.16741674167417,174.22742274227423,174.28742874287428,174.34743474347434,174.40744074407442,174.46744674467448,174.52745274527453,174.58745874587459,174.64746474647464,174.7074707470747,174.76747674767478,174.82748274827483,174.8874887488749,174.94749474947494,175.007500750075,175.06750675067508,175.12751275127513,175.1875187518752,175.24752475247524,175.3075307530753,175.36753675367538,175.42754275427544,175.4875487548755,175.54755475547555,175.6075607560756,175.66756675667565,175.72757275727574,175.7875787578758,175.84758475847585,175.9075907590759,175.96759675967596,176.02760276027604,176.0876087608761,176.14761476147615,176.2076207620762,176.26762676267626,176.32763276327634,176.3876387638764,176.44764476447645,176.5076507650765,176.56765676567656,176.62766276627661,176.6876687668767,176.74767476747675,176.8076807680768,176.86768676867686,176.92769276927692,176.987698769877,177.04770477047705,177.1077107710771,177.16771677167716,177.22772277227722,177.2877287728773,177.34773477347736,177.4077407740774,177.46774677467747,177.52775277527752,177.58775877587757,177.64776477647766,177.7077707770777,177.76777677767777,177.82778277827782,177.88778877887788,177.94779477947796,178.00780078007801,178.06780678067807,178.12781278127812,178.18781878187818,178.24782478247826,178.30783078307832,178.36783678367837,178.42784278427843,178.48784878487848,178.54785478547853,178.60786078607862,178.66786678667867,178.72787278727873,178.78787878787878,178.84788478847884,178.90789078907892,178.96789678967897,179.02790279027903,179.08790879087908,179.14791479147914,179.20792079207922,179.26792679267928,179.32793279327933,179.38793879387939,179.44794479447944,179.5079507950795,179.56795679567958,179.62796279627963,179.6879687968797,179.74797479747974,179.8079807980798,179.86798679867988,179.92799279927993,179.98799879988,180.04800480048004,180.1080108010801,180.16801680168018,180.22802280228024,180.2880288028803,180.34803480348035,180.4080408040804,180.46804680468045,180.52805280528054,180.5880588058806,180.64806480648065,180.7080708070807,180.76807680768076,180.82808280828084,180.8880888088809,180.94809480948095,181.008100810081,181.06810681068106,181.12811281128114,181.1881188118812,181.24812481248125,181.3081308130813,181.36813681368136,181.42814281428141,181.4881488148815,181.54815481548155,181.6081608160816,181.66816681668166,181.72817281728172,181.7881788178818,181.84818481848185,181.9081908190819,181.96819681968196,182.02820282028202,182.0882088208821,182.14821482148216,182.2082208220822,182.26822682268227,182.32823282328232,182.38823882388238,182.44824482448246,182.5082508250825,182.56825682568257,182.62826282628262,182.68826882688268,182.74827482748276,182.80828082808281,182.86828682868287,182.92829282928292,182.98829882988298,183.04830483048306,183.10831083108312,183.16831683168317,183.22832283228323,183.28832883288328,183.34833483348334,183.40834083408342,183.46834683468347,183.52835283528353,183.58835883588358,183.64836483648364,183.70837083708372,183.76837683768377,183.82838283828383,183.88838883888388,183.94839483948394,184.00840084008402,184.06840684068408,184.12841284128413,184.1884188418842,184.24842484248424,184.3084308430843,184.36843684368438,184.42844284428443,184.4884488448845,184.54845484548454,184.6084608460846,184.66846684668468,184.72847284728473,184.7884788478848,184.84848484848484,184.9084908490849,184.96849684968498,185.02850285028504,185.0885088508851,185.14851485148515,185.2085208520852,185.26852685268526,185.32853285328534,185.3885388538854,185.44854485448545,185.5085508550855,185.56855685568556,185.62856285628564,185.6885688568857,185.74857485748575,185.8085808580858,185.86858685868586,185.92859285928594,185.988598859886,186.04860486048605,186.1086108610861,186.16861686168616,186.22862286228622,186.2886288628863,186.34863486348635,186.4086408640864,186.46864686468646,186.52865286528652,186.5886588658866,186.64866486648666,186.7086708670867,186.76867686768676,186.82868286828682,186.8886888688869,186.94869486948696,187.008700870087,187.06870687068707,187.12871287128712,187.18871887188718,187.24872487248726,187.3087308730873,187.36873687368737,187.42874287428742,187.48874887488748,187.54875487548756,187.60876087608762,187.66876687668767,187.72877287728772,187.78877887788778,187.84878487848786,187.90879087908792,187.96879687968797,188.02880288028803,188.08880888088808,188.14881488148814,188.20882088208822,188.26882688268827,188.32883288328833,188.38883888388838,188.44884488448844,188.50885088508852,188.56885688568858,188.62886288628863,188.68886888688868,188.74887488748874,188.80888088808882,188.86888688868888,188.92889288928893,188.988898889889,189.04890489048904,189.1089108910891,189.16891689168918,189.22892289228923,189.2889288928893,189.34893489348934,189.4089408940894,189.46894689468948,189.52895289528954,189.5889588958896,189.64896489648964,189.7089708970897,189.76897689768978,189.82898289828984,189.8889888988899,189.94899489948995,190.00900090009,190.06900690069006,190.12901290129014,190.1890189018902,190.24902490249025,190.3090309030903,190.36903690369036,190.42904290429044,190.4890489048905,190.54905490549055,190.6090609060906,190.66906690669066,190.72907290729074,190.7890789078908,190.84908490849085,190.9090909090909,190.96909690969096,191.02910291029102,191.0891089108911,191.14911491149115,191.2091209120912,191.26912691269126,191.32913291329132,191.3891389138914,191.44914491449146,191.5091509150915,191.56915691569156,191.62916291629162,191.6891689168917,191.74917491749176,191.8091809180918,191.86918691869187,191.92919291929192,191.98919891989198,192.04920492049206,192.1092109210921,192.16921692169217,192.22922292229222,192.28922892289228,192.34923492349236,192.40924092409242,192.46924692469247,192.52925292529252,192.58925892589258,192.64926492649266,192.70927092709272,192.76927692769277,192.82928292829283,192.88928892889288,192.94929492949294,193.00930093009302,193.06930693069307,193.12931293129313,193.18931893189318,193.24932493249324,193.30933093309332,193.36933693369338,193.42934293429343,193.48934893489348,193.54935493549354,193.60936093609362,193.66936693669368,193.72937293729373,193.7893789378938,193.84938493849384,193.9093909390939,193.96939693969398,194.02940294029403,194.0894089408941,194.14941494149414,194.2094209420942,194.26942694269428,194.32943294329434,194.3894389438944,194.44944494449445,194.5094509450945,194.56945694569458,194.62946294629464,194.6894689468947,194.74947494749475,194.8094809480948,194.86948694869486,194.92949294929494,194.989498949895,195.04950495049505,195.1095109510951,195.16951695169516,195.22952295229524,195.2895289528953,195.34953495349535,195.4095409540954,195.46954695469546,195.52955295529554,195.5895589558956,195.64956495649565,195.7095709570957,195.76957695769576,195.82958295829582,195.8895889588959,195.94959495949595,196.009600960096,196.06960696069606,196.12961296129612,196.1896189618962,196.24962496249626,196.3096309630963,196.36963696369637,196.42964296429642,196.4896489648965,196.54965496549656,196.6096609660966,196.66966696669667,196.72967296729672,196.78967896789678,196.84968496849686,196.9096909690969,196.96969696969697,197.02970297029702,197.08970897089708,197.14971497149716,197.20972097209722,197.26972697269727,197.32973297329733,197.38973897389738,197.44974497449746,197.50975097509752,197.56975697569757,197.62976297629763,197.68976897689768,197.74977497749774,197.80978097809782,197.86978697869787,197.92979297929793,197.98979897989798,198.04980498049804,198.10981098109812,198.16981698169818,198.22982298229823,198.28982898289829,198.34983498349834,198.40984098409842,198.46984698469848,198.52985298529853,198.5898589858986,198.64986498649864,198.7098709870987,198.76987698769878,198.82988298829883,198.8898889888989,198.94989498949894,199.009900990099,199.06990699069908,199.12991299129914,199.1899189918992,199.24992499249925,199.3099309930993,199.36993699369938,199.42994299429944,199.4899489948995,199.54995499549955,199.6099609960996,199.66996699669966,199.72997299729974,199.7899789978998,199.84998499849985,199.9099909990999,199.96999699969996,200.03000300030004,200.0900090009001,200.15001500150015,200.2100210021002,200.27002700270026,200.33003300330034,200.3900390039004,200.45004500450045,200.5100510051005,200.57005700570056,200.63006300630062,200.6900690069007,200.75007500750075,200.8100810081008,200.87008700870086,200.93009300930092,200.990099009901,201.05010501050106,201.1101110111011,201.17011701170117,201.23012301230122,201.2901290129013,201.35013501350136,201.4101410141014,201.47014701470147,201.53015301530152,201.59015901590158,201.65016501650166,201.71017101710171,201.77017701770177,201.83018301830182,201.89018901890188,201.95019501950196,202.01020102010202,202.07020702070207,202.13021302130213,202.19021902190218,202.25022502250226,202.31023102310232,202.37023702370237,202.43024302430243,202.49024902490248,202.55025502550254,202.61026102610262,202.67026702670267,202.73027302730273,202.79027902790278,202.85028502850284,202.91029102910292,202.97029702970298,203.03030303030303,203.0903090309031,203.15031503150314,203.21032103210322,203.27032703270328,203.33033303330333,203.3903390339034,203.45034503450344,203.5103510351035,203.57035703570358,203.63036303630363,203.6903690369037,203.75037503750374,203.8103810381038,203.87038703870388,203.93039303930394,203.990399039904,204.05040504050405,204.1104110411041,204.17041704170418,204.23042304230424,204.2904290429043,204.35043504350435,204.4104410441044,204.47044704470446,204.53045304530454,204.5904590459046,204.65046504650465,204.7104710471047,204.77047704770476,204.83048304830484,204.8904890489049,204.95049504950495,205.010501050105,205.07050705070506,205.13051305130514,205.1905190519052,205.25052505250525,205.3105310531053,205.37053705370536,205.43054305430542,205.4905490549055,205.55055505550555,205.6105610561056,205.67056705670566,205.73057305730572,205.7905790579058,205.85058505850586,205.9105910591059,205.97059705970597,206.03060306030602,206.0906090609061,206.15061506150616,206.2106210621062,206.27062706270627,206.33063306330632,206.39063906390638,206.45064506450646,206.51065106510652,206.57065706570657,206.63066306630662,206.69066906690668,206.75067506750676,206.81068106810682,206.87068706870687,206.93069306930693,206.99069906990698,207.05070507050706,207.11071107110712,207.17071707170717,207.23072307230723,207.29072907290728,207.35073507350734,207.41074107410742,207.47074707470748,207.53075307530753,207.59075907590758,207.65076507650764,207.71077107710772,207.77077707770778,207.83078307830783,207.8907890789079,207.95079507950794,208.01080108010802,208.07080708070808,208.13081308130813,208.1908190819082,208.25082508250824,208.3108310831083,208.37083708370838,208.43084308430844,208.4908490849085,208.55085508550854,208.6108610861086,208.67086708670868,208.73087308730874,208.7908790879088,208.85088508850885,208.9108910891089,208.97089708970898,209.03090309030904,209.0909090909091,209.15091509150915,209.2109210921092,209.27092709270926,209.33093309330934,209.3909390939094,209.45094509450945,209.5109510951095,209.57095709570956,209.63096309630964,209.6909690969097,209.75097509750975,209.8109810981098,209.87098709870986,209.93099309930994,209.99099909991,210.05100510051005,210.1110111011101,210.17101710171016,210.23102310231022,210.2910291029103,210.35103510351036,210.4110411041104,210.47104710471046,210.53105310531052,210.5910591059106,210.65106510651066,210.7110711071107,210.77107710771077,210.83108310831082,210.8910891089109,210.95109510951096,211.011101110111,211.07110711071107,211.13111311131112,211.19111911191118,211.25112511251126,211.31113111311132,211.37113711371137,211.43114311431142,211.49114911491148,211.55115511551156,211.61116111611162,211.67116711671167,211.73117311731173,211.79117911791178,211.85118511851186,211.91119111911192,211.97119711971197,212.03120312031203,212.09120912091208,212.15121512151214,212.21122112211222,212.27122712271228,212.33123312331233,212.39123912391238,212.45124512451244,212.51125112511252,212.57125712571258,212.63126312631263,212.6912691269127,212.75127512751274,212.81128112811282,212.87128712871288,212.93129312931293,212.991299129913,213.05130513051304,213.1113111311131,213.17131713171318,213.23132313231324,213.2913291329133,213.35133513351334,213.4113411341134,213.47134713471348,213.53135313531354,213.5913591359136,213.65136513651365,213.7113711371137,213.77137713771378,213.83138313831384,213.8913891389139,213.95139513951395,214.011401140114,214.07140714071406,214.13141314131414,214.1914191419142,214.25142514251425,214.3114311431143,214.37143714371436,214.43144314431444,214.4914491449145,214.55145514551455,214.6114611461146,214.67146714671466,214.73147314731474,214.7914791479148,214.85148514851485,214.9114911491149,214.97149714971496,215.03150315031502,215.0915091509151,215.15151515151516,215.2115211521152,215.27152715271527,215.33153315331532,215.3915391539154,215.45154515451546,215.5115511551155,215.57155715571557,215.63156315631562,215.6915691569157,215.75157515751576,215.8115811581158,215.87158715871587,215.93159315931592,215.99159915991598,216.05160516051606,216.11161116111612,216.17161716171617,216.23162316231623,216.29162916291628,216.35163516351636,216.41164116411642,216.47164716471647,216.53165316531653,216.59165916591658,216.65166516651666,216.71167116711672,216.77167716771677,216.83168316831683,216.89168916891688,216.95169516951694,217.01170117011702,217.07170717071708,217.13171317131713,217.19171917191719,217.25172517251724,217.31173117311732,217.37173717371738,217.43174317431743,217.4917491749175,217.55175517551754,217.61176117611762,217.67176717671768,217.73177317731773,217.7917791779178,217.85178517851784,217.9117911791179,217.97179717971798,218.03180318031804,218.0918091809181,218.15181518151815,218.2118211821182,218.27182718271828,218.33183318331834,218.3918391839184,218.45184518451845,218.5118511851185,218.57185718571859,218.63186318631864,218.6918691869187,218.75187518751875,218.8118811881188,218.87188718871886,218.93189318931894,218.991899189919,219.05190519051905,219.1119111911191,219.17191719171916,219.23192319231924,219.2919291929193,219.35193519351935,219.4119411941194,219.47194719471946,219.53195319531955,219.5919591959196,219.65196519651965,219.7119711971197,219.77197719771976,219.83198319831982,219.8919891989199,219.95199519951996,220.01200120012,220.07200720072007,220.13201320132012,220.1920192019202,220.25202520252026,220.3120312031203,220.37203720372037,220.43204320432042,220.4920492049205,220.55205520552056,220.61206120612061,220.67206720672067,220.73207320732072,220.79207920792078,220.85208520852086,220.91209120912092,220.97209720972097,221.03210321032103,221.09210921092108,221.15211521152116,221.21212121212122,221.27212721272127,221.33213321332133,221.39213921392138,221.45214521452147,221.51215121512152,221.57215721572157,221.63216321632163,221.69216921692168,221.75217521752174,221.81218121812182,221.87218721872188,221.93219321932193,221.99219921992199,222.05220522052204,222.11221122112212,222.17221722172218,222.23222322232223,222.2922292229223,222.35223522352234,222.41224122412243,222.47224722472248,222.53225322532253,222.5922592259226,222.65226522652264,222.7122712271227,222.77227722772278,222.83228322832284,222.8922892289229,222.95229522952295,223.012301230123,223.07230723072308,223.13231323132314,223.1923192319232,223.25232523252325,223.3123312331233,223.37233723372339,223.43234323432344,223.4923492349235,223.55235523552355,223.6123612361236,223.67236723672366,223.73237323732374,223.7923792379238,223.85238523852385,223.9123912391239,223.97239723972396,224.03240324032404,224.0924092409241,224.15241524152415,224.2124212421242,224.27242724272426,224.33243324332435,224.3924392439244,224.45244524452445,224.5124512451245,224.57245724572456,224.63246324632462,224.6924692469247,224.75247524752476,224.8124812481248,224.87248724872487,224.93249324932492,224.992499249925,225.05250525052506,225.1125112511251,225.17251725172517,225.23252325232522,225.2925292529253,225.35253525352536,225.41254125412541,225.47254725472547,225.53255325532552,225.59255925592558,225.65256525652566,225.71257125712572,225.77257725772577,225.83258325832583,225.89258925892588,225.95259525952596,226.01260126012602,226.07260726072607,226.13261326132613,226.19261926192618,226.25262526252627,226.31263126312632,226.37263726372638,226.43264326432643,226.49264926492648,226.55265526552654,226.61266126612662,226.67266726672668,226.73267326732673,226.7926792679268,226.85268526852684,226.91269126912692,226.97269726972698,227.03270327032703,227.0927092709271,227.15271527152714,227.21272127212723,227.27272727272728,227.33273327332734,227.3927392739274,227.45274527452744,227.5127512751275,227.57275727572758,227.63276327632764,227.6927692769277,227.75277527752775,227.8127812781278,227.87278727872788,227.93279327932794,227.992799279928,228.05280528052805,228.1128112811281,228.1728172817282,228.23282328232824,228.2928292829283,228.35283528352835,228.4128412841284,228.47284728472846,228.53285328532854,228.5928592859286,228.65286528652865,228.7128712871287,228.77287728772876,228.83288328832884,228.8928892889289,228.95289528952895,229.012901290129,229.07290729072906,229.13291329132915,229.1929192919292,229.25292529252926,229.3129312931293,229.37293729372936,229.43294329432942,229.4929492949295,229.55295529552956,229.6129612961296,229.67296729672967,229.73297329732972,229.7929792979298,229.85298529852986,229.9129912991299,229.97299729972997,230.03300330033002,230.0930093009301,230.15301530153016,230.21302130213022,230.27302730273027,230.33303330333032,230.39303930393038,230.45304530453046,230.51305130513052,230.57305730573057,230.63306330633063,230.69306930693068,230.75307530753076,230.81308130813082,230.87308730873087,230.93309330933093,230.99309930993098,231.05310531053107,231.11311131113112,231.17311731173118,231.23312331233123,231.29312931293128,231.35313531353134,231.41314131413142,231.47314731473148,231.53315331533153,231.5931593159316,231.65316531653164,231.71317131713172,231.77317731773178,231.83318331833183,231.8931893189319,231.95319531953194,232.01320132013203,232.07320732073208,232.13321332133214,232.1932193219322,232.25322532253224,232.3132313231323,232.37323732373238,232.43324332433244,232.4932493249325,232.55325532553255,232.6132613261326,232.67326732673268,232.73327332733274,232.7932793279328,232.85328532853285,232.9132913291329,232.973297329733,233.03330333033304,233.0933093309331,233.15331533153315,233.2133213321332,233.27332733273326,233.33333333333334,233.3933393339334,233.45334533453345,233.5133513351335,233.57335733573356,233.63336333633364,233.6933693369337,233.75337533753375,233.8133813381338,233.87338733873386,233.93339333933395,233.993399339934,234.05340534053406,234.1134113411341,234.17341734173417,234.23342334233422,234.2934293429343,234.35343534353436,234.4134413441344,234.47344734473447,234.53345334533452,234.5934593459346,234.65346534653466,234.7134713471347,234.77347734773477,234.83348334833482,234.8934893489349,234.95349534953496,235.01350135013502,235.07350735073507,235.13351335133513,235.19351935193518,235.25352535253526,235.31353135313532,235.37353735373537,235.43354335433543,235.49354935493548,235.55355535553556,235.61356135613562,235.67356735673567,235.73357335733573,235.79357935793578,235.85358535853587,235.91359135913592,235.97359735973598,236.03360336033603,236.09360936093609,236.15361536153614,236.21362136213622,236.27362736273628,236.33363336333633,236.3936393639364,236.45364536453644,236.51365136513652,236.57365736573658,236.63366336633663,236.6936693669367,236.75367536753674,236.81368136813683,236.87368736873688,236.93369336933694,236.993699369937,237.05370537053705,237.1137113711371,237.17371737173718,237.23372337233724,237.2937293729373,237.35373537353735,237.4137413741374,237.47374737473748,237.53375337533754,237.5937593759376,237.65376537653765,237.7137713771377,237.7737773777378,237.83378337833784,237.8937893789379,237.95379537953795,238.013801380138,238.07380738073806,238.13381338133814,238.1938193819382,238.25382538253825,238.3138313831383,238.37383738373836,238.43384338433845,238.4938493849385,238.55385538553855,238.6138613861386,238.67386738673866,238.73387338733875,238.7938793879388,238.85388538853886,238.9138913891389,238.97389738973897,239.03390339033902,239.0939093909391,239.15391539153916,239.2139213921392,239.27392739273927,239.33393339333932,239.3939393939394,239.45394539453946,239.51395139513951,239.57395739573957,239.63396339633962,239.6939693969397,239.75397539753976,239.81398139813982,239.87398739873987,239.93399339933993,239.99399939993998,240.05400540054006,240.11401140114012,240.17401740174017,240.23402340234023,240.29402940294028,240.35403540354037,240.41404140414042,240.47404740474047,240.53405340534053,240.59405940594058,240.65406540654067,240.71407140714072,240.77407740774078,240.83408340834083,240.89408940894089,240.95409540954094,241.01410141014102,241.07410741074108,241.13411341134113,241.1941194119412,241.25412541254124,241.31413141314133,241.37413741374138,241.43414341434143,241.4941494149415,241.55415541554154,241.61416141614163,241.67416741674168,241.73417341734174,241.7941794179418,241.85418541854185,241.9141914191419,241.97419741974198,242.03420342034204,242.0942094209421,242.15421542154215,242.2142214221422,242.27422742274229,242.33423342334234,242.3942394239424,242.45424542454245,242.5142514251425,242.5742574257426,242.63426342634264,242.6942694269427,242.75427542754275,242.8142814281428,242.87428742874286,242.93429342934294,242.994299429943,243.05430543054305,243.1143114311431,243.17431743174316,243.23432343234325,243.2943294329433,243.35433543354335,243.4143414341434,243.47434743474346,243.53435343534355,243.5943594359436,243.65436543654366,243.7143714371437,243.77437743774377,243.83438343834382,243.8943894389439,243.95439543954396,244.014401440144,244.07440744074407,244.13441344134412,244.1944194419442,244.25442544254426,244.31443144314431,244.37443744374437,244.43444344434442,244.4944494449445,244.55445544554456,244.61446144614462,244.67446744674467,244.73447344734473,244.79447944794478,244.85448544854486,244.91449144914492,244.97449744974497,245.03450345034503,245.09450945094508,245.15451545154517,245.21452145214522,245.27452745274528,245.33453345334533,245.39453945394538,245.45454545454547,245.51455145514552,245.57455745574558,245.63456345634563,245.6945694569457,245.75457545754574,245.81458145814582,245.87458745874588,245.93459345934593,245.994599459946,246.05460546054604,246.11461146114613,246.17461746174618,246.23462346234624,246.2946294629463,246.35463546354634,246.41464146414643,246.47464746474648,246.53465346534654,246.5946594659466,246.65466546654665,246.7146714671467,246.77467746774678,246.83468346834684,246.8946894689469,246.95469546954695,247.014701470147,247.0747074707471,247.13471347134714,247.1947194719472,247.25472547254725,247.3147314731473,247.3747374737474,247.43474347434744,247.4947494749475,247.55475547554755,247.6147614761476,247.67476747674766,247.73477347734774,247.7947794779478,247.85478547854785,247.9147914791479,247.97479747974796,248.03480348034805,248.0948094809481,248.15481548154816,248.2148214821482,248.27482748274826,248.33483348334835,248.3948394839484,248.45484548454846,248.5148514851485,248.57485748574857,248.63486348634862,248.6948694869487,248.75487548754876,248.8148814881488,248.87488748874887,248.93489348934892,248.994899489949,249.05490549054906,249.11491149114912,249.17491749174917,249.23492349234922,249.2949294929493,249.35493549354936,249.41494149414942,249.47494749474947,249.53495349534953,249.59495949594958,249.65496549654966,249.71497149714972,249.77497749774977,249.83498349834983,249.89498949894988,249.95499549954997,250.01500150015002,250.07500750075008,250.13501350135013,250.19501950195018,250.25502550255027,250.31503150315032,250.37503750375038,250.43504350435043,250.4950495049505,250.55505550555054,250.61506150615062,250.67506750675068,250.73507350735073,250.7950795079508,250.85508550855084,250.91509150915093,250.97509750975098,251.03510351035104,251.0951095109511,251.15511551155114,251.21512151215123,251.27512751275128,251.33513351335134,251.3951395139514,251.45514551455145,251.5151515151515,251.57515751575158,251.63516351635164,251.6951695169517,251.75517551755175,251.8151815181518,251.8751875187519,251.93519351935194,251.995199519952,252.05520552055205,252.1152115211521,252.1752175217522,252.23522352235224,252.2952295229523,252.35523552355235,252.4152415241524,252.47524752475246,252.53525352535254,252.5952595259526,252.65526552655265,252.7152715271527,252.77527752775276,252.83528352835285,252.8952895289529,252.95529552955296,253.015301530153,253.07530753075307,253.13531353135315,253.1953195319532,253.25532553255326,253.3153315331533,253.37533753375337,253.43534353435342,253.4953495349535,253.55535553555356,253.6153615361536,253.67536753675367,253.73537353735372,253.7953795379538,253.85538553855386,253.91539153915392,253.97539753975397,254.03540354035403,254.0954095409541,254.15541554155416,254.21542154215422,254.27542754275427,254.33543354335433,254.39543954395438,254.45544554455446,254.51545154515452,254.57545754575457,254.63546354635463,254.69546954695468,254.75547554755477,254.81548154815482,254.87548754875488,254.93549354935493,254.99549954995499,255.05550555055507,255.11551155115512,255.17551755175518,255.23552355235523,255.2955295529553,255.35553555355534,255.41554155415542,255.47554755475548,255.53555355535553,255.5955595559556,255.65556555655564,255.71557155715573,255.77557755775578,255.83558355835584,255.8955895589559,255.95559555955595,256.01560156015603,256.07560756075605,256.13561356135614,256.1956195619562,256.25562556255625,256.31563156315633,256.37563756375636,256.43564356435644,256.4956495649565,256.55565556555655,256.61566156615663,256.67566756675666,256.73567356735674,256.79567956795677,256.85568556855685,256.91569156915693,256.97569756975696,257.03570357035704,257.09570957095707,257.15571557155715,257.21572157215724,257.27572757275726,257.33573357335734,257.39573957395737,257.45574557455745,257.51575157515754,257.57575757575756,257.63576357635765,257.6957695769577,257.75577557755776,257.81578157815784,257.87578757875787,257.93579357935795,257.995799579958,258.05580558055806,258.11581158115814,258.17581758175817,258.23582358235825,258.2958295829583,258.35583558355836,258.41584158415844,258.47584758475847,258.53585358535855,258.5958595859586,258.65586558655866,258.7158715871587,258.77587758775877,258.83588358835885,258.8958895889589,258.95589558955896,259.015901590159,259.0759075907591,259.13591359135916,259.1959195919592,259.25592559255927,259.3159315931593,259.3759375937594,259.43594359435946,259.4959495949595,259.55595559555957,259.6159615961596,259.6759675967597,259.73597359735976,259.7959795979598,259.85598559855987,259.9159915991599,259.97599759976,260.03600360036006,260.0960096009601,260.15601560156017,260.2160216021602,260.2760276027603,260.33603360336036,260.3960396039604,260.4560456045605,260.5160516051605,260.5760576057606,260.6360636063606,260.6960696069607,260.7560756075608,260.8160816081608,260.8760876087609,260.9360936093609,260.996099609961,261.0561056105611,261.1161116111611,261.1761176117612,261.2361236123612,261.2961296129613,261.3561356135614,261.4161416141614,261.4761476147615,261.5361536153615,261.5961596159616,261.6561656165617,261.7161716171617,261.7761776177618,261.8361836183618,261.8961896189619,261.956195619562,262.016201620162,262.0762076207621,262.1362136213621,262.1962196219622,262.2562256225623,262.3162316231623,262.3762376237624,262.4362436243624,262.4962496249625,262.5562556255625,262.6162616261626,262.6762676267627,262.7362736273627,262.7962796279628,262.85628562856283,262.9162916291629,262.976297629763,263.036303630363,263.0963096309631,263.15631563156313,263.2163216321632,263.2763276327633,263.3363336333633,263.3963396339634,263.45634563456343,263.5163516351635,263.5763576357636,263.6363636363636,263.6963696369637,263.75637563756374,263.8163816381638,263.8763876387639,263.9363936393639,263.996399639964,264.05640564056404,264.1164116411641,264.1764176417642,264.23642364236423,264.2964296429643,264.35643564356434,264.4164416441644,264.47644764476445,264.53645364536453,264.5964596459646,264.65646564656464,264.7164716471647,264.77647764776475,264.83648364836483,264.8964896489649,264.95649564956494,265.016501650165,265.07650765076505,265.13651365136514,265.1965196519652,265.25652565256524,265.3165316531653,265.37653765376535,265.43654365436544,265.4965496549655,265.55655565556555,265.61656165616563,265.67656765676566,265.73657365736574,265.7965796579658,265.85658565856585,265.91659165916593,265.97659765976596,266.03660366036604,266.0966096609661,266.15661566156615,266.21662166216623,266.27662766276626,266.33663366336634,266.39663966396637,266.45664566456645,266.51665166516653,266.57665766576656,266.63666366636664,266.69666966696667,266.75667566756675,266.81668166816684,266.87668766876686,266.93669366936695,266.996699669967,267.05670567056706,267.11671167116714,267.17671767176716,267.23672367236725,267.2967296729673,267.35673567356736,267.41674167416744,267.47674767476747,267.53675367536755,267.5967596759676,267.65676567656766,267.71677167716774,267.77677767776777,267.83678367836785,267.8967896789679,267.95679567956796,268.01680168016804,268.07680768076807,268.13681368136815,268.1968196819682,268.25682568256826,268.3168316831683,268.3768376837684,268.43684368436845,268.4968496849685,268.55685568556856,268.6168616861686,268.6768676867687,268.73687368736876,268.7968796879688,268.85688568856887,268.9168916891689,268.976897689769,269.03690369036906,269.0969096909691,269.15691569156917,269.2169216921692,269.2769276927693,269.33693369336936,269.3969396939694,269.45694569456947,269.5169516951695,269.5769576957696,269.63696369636966,269.6969696969697,269.75697569756977,269.8169816981698,269.8769876987699,269.93699369936996,269.99699969997,270.0570057005701,270.1170117011701,270.1770177017702,270.2370237023702,270.2970297029703,270.3570357035704,270.4170417041704,270.4770477047705,270.5370537053705,270.5970597059706,270.6570657065707,270.7170717071707,270.7770777077708,270.8370837083708,270.8970897089709,270.957095709571,271.017101710171,271.0771077107711,271.1371137113711,271.1971197119712,271.2571257125713,271.3171317131713,271.3771377137714,271.4371437143714,271.4971497149715,271.5571557155716,271.6171617161716,271.6771677167717,271.7371737173717,271.7971797179718,271.8571857185719,271.9171917191719,271.977197719772,272.037203720372,272.0972097209721,272.15721572157213,272.2172217221722,272.2772277227723,272.3372337233723,272.3972397239724,272.45724572457243,272.5172517251725,272.5772577257726,272.6372637263726,272.6972697269727,272.75727572757273,272.8172817281728,272.8772877287729,272.9372937293729,272.997299729973,273.05730573057303,273.1173117311731,273.1773177317732,273.2373237323732,273.2973297329733,273.35733573357334,273.4173417341734,273.4773477347735,273.53735373537353,273.5973597359736,273.65736573657364,273.7173717371737,273.7773777377738,273.83738373837383,273.8973897389739,273.95739573957394,274.017401740174,274.07740774077405,274.13741374137413,274.1974197419742,274.25742574257424,274.3174317431743,274.37743774377435,274.43744374437443,274.4974497449745,274.55745574557454,274.6174617461746,274.67746774677465,274.73747374737474,274.7974797479748,274.85748574857485,274.9174917491749,274.97749774977495,275.03750375037504,275.0975097509751,275.15751575157515,275.21752175217523,275.27752775277526,275.33753375337534,275.3975397539754,275.45754575457545,275.51755175517553,275.57755775577556,275.63756375637564,275.6975697569757,275.75757575757575,275.81758175817583,275.87758775877586,275.93759375937594,275.99759975997597,276.05760576057605,276.11761176117614,276.17761776177616,276.23762376237624,276.29762976297627,276.35763576357635,276.41764176417644,276.47764776477646,276.53765376537655,276.5976597659766,276.65766576657666,276.71767176717674,276.77767776777677,276.83768376837685,276.8976897689769,276.95769576957696,277.01770177017704,277.07770777077707,277.13771377137715,277.1977197719772,277.25772577257726,277.31773177317734,277.37773777377737,277.43774377437745,277.4977497749775,277.55775577557756,277.61776177617764,277.67776777677767,277.73777377737775,277.7977797779778,277.85778577857786,277.9177917791779,277.977797779778,278.03780378037806,278.0978097809781,278.15781578157817,278.2178217821782,278.2778277827783,278.33783378337836,278.3978397839784,278.45784578457847,278.5178517851785,278.5778577857786,278.63786378637866,278.6978697869787,278.75787578757877,278.8178817881788,278.8778877887789,278.93789378937896,278.997899789979,279.05790579057907,279.1179117911791,279.1779177917792,279.23792379237926,279.2979297929793,279.3579357935794,279.4179417941794,279.4779477947795,279.53795379537956,279.5979597959796,279.6579657965797,279.7179717971797,279.7779777977798,279.8379837983798,279.8979897989799,279.95799579958,280.01800180018,280.0780078007801,280.1380138013801,280.1980198019802,280.2580258025803,280.3180318031803,280.3780378037804,280.4380438043804,280.4980498049805,280.5580558055806,280.6180618061806,280.6780678067807,280.7380738073807,280.7980798079808,280.8580858085809,280.9180918091809,280.978097809781,281.038103810381,281.0981098109811,281.1581158115812,281.2181218121812,281.2781278127813,281.3381338133813,281.3981398139814,281.4581458145815,281.5181518151815,281.5781578157816,281.6381638163816,281.6981698169817,281.75817581758173,281.8181818181818,281.8781878187819,281.9381938193819,281.998199819982,282.05820582058203,282.1182118211821,282.1782178217822,282.2382238223822,282.2982298229823,282.35823582358233,282.4182418241824,282.4782478247825,282.5382538253825,282.5982598259826,282.65826582658264,282.7182718271827,282.7782778277828,282.8382838283828,282.8982898289829,282.95829582958294,283.018301830183,283.0783078307831,283.13831383138313,283.1983198319832,283.25832583258324,283.3183318331833,283.3783378337834,283.43834383438343,283.4983498349835,283.55835583558354,283.6183618361836,283.67836783678365,283.73837383738373,283.7983798379838,283.85838583858384,283.9183918391839,283.97839783978395,284.03840384038403,284.0984098409841,284.15841584158414,284.2184218421842,284.27842784278425,284.33843384338434,284.3984398439844,284.45844584458445,284.51845184518453,284.57845784578456,284.63846384638464,284.6984698469847,284.75847584758475,284.81848184818483,284.87848784878486,284.93849384938494,284.998499849985,285.05850585058505,285.11851185118513,285.17851785178516,285.23852385238524,285.2985298529853,285.35853585358535,285.41854185418543,285.47854785478546,285.53855385538554,285.59855985598557,285.65856585658565,285.71857185718574,285.77857785778576,285.83858385838585,285.8985898589859,285.95859585958596,286.01860186018604,286.07860786078606,286.13861386138615,286.1986198619862,286.25862586258626,286.31863186318634,286.37863786378637,286.43864386438645,286.4986498649865,286.55865586558656,286.61866186618664,286.67866786678667,286.73867386738675,286.7986798679868,286.85868586858686,286.91869186918694,286.97869786978697,287.03870387038705,287.0987098709871,287.15871587158716,287.21872187218725,287.2787278727873,287.33873387338735,287.3987398739874,287.45874587458746,287.5187518751875,287.5787578757876,287.63876387638766,287.6987698769877,287.75877587758777,287.8187818781878,287.8787878787879,287.93879387938796,287.998799879988,288.05880588058807,288.1188118811881,288.1788178817882,288.23882388238826,288.2988298829883,288.35883588358837,288.4188418841884,288.4788478847885,288.53885388538856,288.5988598859886,288.65886588658867,288.7188718871887,288.7788778877888,288.83888388838886,288.8988898889889,288.958895889589,289.018901890189,289.0789078907891,289.13891389138917,289.1989198919892,289.2589258925893,289.3189318931893,289.3789378937894,289.4389438943894,289.4989498949895,289.5589558955896,289.6189618961896,289.6789678967897,289.7389738973897,289.7989798979898,289.8589858985899,289.9189918991899,289.97899789979,290.03900390039,290.0990099009901,290.1590159015902,290.2190219021902,290.2790279027903,290.3390339033903,290.3990399039904,290.4590459045905,290.5190519051905,290.5790579057906,290.6390639063906,290.6990699069907,290.7590759075908,290.8190819081908,290.8790879087909,290.9390939093909,290.999099909991,291.0591059105911,291.1191119111911,291.1791179117912,291.2391239123912,291.2991299129913,291.35913591359133,291.4191419141914,291.4791479147915,291.5391539153915,291.5991599159916,291.65916591659163,291.7191719171917,291.7791779177918,291.8391839183918,291.8991899189919,291.95919591959193,292.019201920192,292.0792079207921,292.1392139213921,292.1992199219922,292.25922592259224,292.3192319231923,292.3792379237924,292.43924392439243,292.4992499249925,292.55925592559254,292.6192619261926,292.6792679267927,292.73927392739273,292.7992799279928,292.85928592859284,292.9192919291929,292.979297929793,293.03930393039303,293.0993099309931,293.15931593159314,293.2193219321932,293.27932793279325,293.33933393339333,293.3993399339934,293.45934593459344,293.5193519351935,293.57935793579355,293.63936393639364,293.6993699369937,293.75937593759375,293.8193819381938,293.87938793879385,293.93939393939394,293.999399939994,294.05940594059405,294.11941194119413,294.17941794179416,294.23942394239424,294.2994299429943,294.35943594359435,294.41944194419443,294.47944794479446,294.53945394539454,294.5994599459946,294.65946594659465,294.71947194719473,294.77947794779476,294.83948394839484,294.8994899489949,294.95949594959495,295.01950195019504,295.07950795079506,295.13951395139514,295.19951995199517,295.25952595259525,295.31953195319534,295.37953795379536,295.43954395439545,295.4995499549955,295.55955595559556,295.61956195619564,295.67956795679567,295.73957395739575,295.7995799579958,295.85958595859586,295.91959195919594,295.97959795979597,296.03960396039605,296.0996099609961,296.15961596159616,296.21962196219624,296.27962796279627,296.33963396339635,296.3996399639964,296.45964596459646,296.51965196519654,296.57965796579657,296.63966396639665,296.6996699669967,296.75967596759676,296.81968196819685,296.8796879687969,296.93969396939696,296.999699969997,297.05970597059707,297.1197119711971,297.1797179717972,297.23972397239726,297.2997299729973,297.35973597359737,297.4197419741974,297.4797479747975,297.53975397539756,297.5997599759976,297.65976597659767,297.7197719771977,297.7797779777978,297.83978397839786,297.8997899789979,297.95979597959797,298.019801980198,298.0798079807981,298.13981398139816,298.1998199819982,298.2598259825983,298.3198319831983,298.3798379837984,298.43984398439846,298.4998499849985,298.5598559855986,298.6198619861986,298.6798679867987,298.73987398739877,298.7998799879988,298.8598859885989,298.9198919891989,298.979897989799,299.039903990399,299.0999099909991,299.1599159915992,299.2199219921992,299.2799279927993,299.3399339933993,299.3999399939994,299.4599459945995,299.5199519951995,299.5799579957996,299.6399639963996,299.6999699969997,299.7599759975998,299.8199819981998,299.8799879987999,299.9399939993999,300.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl new file mode 100644 index 000000000000..1fad51e6b9fb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl @@ -0,0 +1,63 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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, filepath ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: domain +* `filepath::AbstractString`: filepath of the output file + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"./data.json\" ); +``` +""" +function gen( x, filepath ) + y = Array{Float64}( undef, length(x) ); + for i in eachindex(x) + y[i] = exp( x[i] ); + end + + data = Dict([ + ("x", x), + ("expected", y) + ]); + + 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 ); + +x = range( -300, stop = 300, length = 10000 ); +out = joinpath( dir, "data.json" ); +gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js b/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js new file mode 100644 index 000000000000..b7326f339a00 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js @@ -0,0 +1,60 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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'; + +// TODO: clean-up + +// MODULES // + +var divide = require( 'compute-divide' ); +var mean = require( 'compute-mean' ); +var subtract = require( 'compute-subtract' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var expf = require( './../lib' ); + + +// FIXTURES // + +var data = require( './fixtures/julia/data.json' ); + + +// MAIN // + +var customErrs; +var nativeErrs; +var yexpected; +var ycustom; +var ynative; +var x; +var i; + +x = data.x; +yexpected = data.expected; +ycustom = new Array( x.length ); +ynative = new Array( x.length ); +for ( i = 0; i < x.length; i++ ) { + ycustom[ i ] = expf( x[ i ] ); + ynative[ i ] = Math.expf( x[ i ] ); +} + +customErrs = absf( divide( subtract( ycustom, yexpected ), yexpected ) ); +nativeErrs = absf( divide( subtract( ynative, yexpected ), yexpected ) ); + +console.log( 'The mean relative error of Math.expf compared to Julia is %d', mean( nativeErrs ) ); +console.log( 'The mean relative error of this module compared to Julia is %d', mean( customErrs ) ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/src/Makefile new file mode 100644 index 000000000000..f79b87238713 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/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/expf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c new file mode 100644 index 000000000000..cd42d5ed66b9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c @@ -0,0 +1,24 @@ + +/** +* @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/expf.h" +#include "stdlib/math/base/napi/unary.h" + +// cppcheck-suppress shadowFunction +STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_expf ) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c new file mode 100644 index 000000000000..8248bd8c27b2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c @@ -0,0 +1,253 @@ +/** +* @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. +* +* +* ## Notice +* +* * The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified according to project conventions. +* +* ```text +* Copyright (c) 2009 The Go Authors. All rights reserved. +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions are +* met: +* +* * Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* * Redistributions in binary form must reproduce the above +* copyright notice, this list of conditions and the following disclaimer +* in the documentation and/or other materials provided with the +* distribution. +* * Neither the name of Google Inc. nor the names of its +* contributors may be used to endorse or promote products derived from +* this software without specific prior written permission. +* +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* ``` +* +* ```text +* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. +* +* Developed at SunPro, a Sun Microsystems, Inc. business. +* Permission to use, copy, modify, and distribute this +* software is freely granted, provided that this notice +* is preserved. +* ``` +*/ + +#include "stdlib/math/base/special/expf.h" +#include "stdlib/math/base/assert/is_nan.h" +#include "stdlib/math/base/special/truncf.h" +#include "stdlib/constants/float32/ninf.h" +#include "stdlib/constants/float32/pinf.h" +#include "stdlib/math/base/special/ldexpf.h" +#include + +static const float LN2_HI = 0.69314718f; +static const float LN2_LO = 1.90821484e-10f; +static const float LOG2_E = 1.44269504f; +static const float EXP_OVERFLOW = 88.722839f; +static const float EXP_UNDERFLOW = -103.97208f; +static const float NEARZERO = 1.0f / (1 << 14); +static const float NEG_NEARZERO = -NEARZERO; + +/* Begin auto-generated functions. The following functions are auto-generated. Do not edit directly. */ + +// BEGIN: polyval_p + +/** +* Evaluates a polynomial for single-precision. +* +* ## Notes +* +* - The implementation uses [Horner's rule][horners-method] for efficient computation. +* +* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method +* +* @param x value at which to evaluate the polynomial +* @return evaluated polynomial +*/ +static float polyval_p( const float x ) { + return 0.16666667f + (x * (-0.0027777778f + (x * (0.000066137566f + (x * (-0.000001653439f + (x * 4.1381369e-8f))))))); +} + +// END: polyval_p + +/* End auto-generated functions. */ + +/** +* Computes \\(e^{r} 2^k\\) where \\(r = \mathrm{hi} - \mathrm{lo}\\) and \\(|r| \leq \ln(2)/2\\). +* +* @param hi upper bound +* @param lo lower bound +* @param k power of 2 +* @return function value +*/ +static float expmulti( const float hi, const float lo, const int32_t k ) { + float r; + float t; + float c; + float y; + + r = hi - lo; + t = r * r; + c = r - (t * polyval_p( t )); + y = 1.0f - (lo - ((r * c) / (2.0f - c)) - hi); + + return stdlib_base_ldexpf( y, k ); +} + +/** +* Evaluates the natural exponential function. +* +* ## Method +* +* 1. We reduce \\( x \\) to an \\( r \\) so that \\( |r| \leq 0.5 \cdot \ln(2) \approx 0.34658 \\). Given \\( x \\), we find an \\( r \\) and integer \\( k \\) such that +* +* ```tex +* \begin{align*} +* x &= k \cdot \ln(2) + r \\ +* |r| &\leq 0.5 \cdot \ln(2) +* \end{align*} +* ``` +* +* +* +* \\( r \\) can be represented as \\( r = \mathrm{hi} - \mathrm{lo} \\) for better accuracy. +* +* +* +* 2. We approximate of \\( e^{r} \\) by a special rational function on the interval \\(\[0,0.34658]\\): +* +* ```tex +* \begin{align*} +* R\left(r^2\right) &= r \cdot \frac{ e^{r}+1 }{ e^{r}-1 } \\ +* &= 2 + \frac{r^2}{6} - \frac{r^4}{360} + \ldots +* \end{align*} +* ``` +* +* We use a special Remes algorithm on \\(\[0,0.34658]\\) to generate a polynomial of degree \\(5\\) to approximate \\(R\\). The maximum error of this polynomial approximation is bounded by \\(2^{-59}\\). In other words, +* +* ```tex +* R(z) \sim 2 + P_1 z + P_2 z^2 + P_3 z^3 + P_4 z^4 + P_5 z^5 +* ``` +* +* where \\( z = r^2 \\) and +* +* ```tex +* \left| 2 + P_1 z + \ldots + P_5 z^5 - R(z) \right| \leq 2^{-59} +* ``` +* +* +* +* The values of \\( P_1 \\) to \\( P_5 \\) are listed in the source code. +* +* +* +* The computation of \\( e^{r} \\) thus becomes +* +* ```tex +* \begin{align*} +* e^{r} &= 1 + \frac{2r}{R-r} \\ +* &= 1 + r + \frac{r \cdot R_1(r)}{2 - R_1(r)}\ \text{for better accuracy} +* \end{align*} +* ``` +* +* where +* +* ```tex +* R_1(r) = r - P_1\ r^2 + P_2\ r^4 + \ldots + P_5\ r^{10} +* ``` +* +* 3. We scale back to obtain \\( e^{x} \\). From step 1, we have +* +* ```tex +* e^{x} = 2^k e^{r} +* ``` +* +* +* ## Special Cases +* +* ```tex +* \begin{align*} +* e^\infty &= \infty \\ +* e^{-\infty} &= 0 \\ +* e^{\mathrm{NaN}} &= \mathrm{NaN} \\ +* e^0 &= 1\ \mathrm{is\ exact\ for\ finite\ argument\ only} +* \end{align*} +* ``` +* +* ## Notes +* +* - According to an error analysis, the error is always less than \\(1\\) ulp (unit in the last place). +* +* - For an IEEE double, +* +* - if \\(x > 7.09782712893383973096\mbox{e+}02\\), then \\(e^{x}\\) overflows +* - if \\(x < -7.45133219101941108420\mbox{e+}02\\), then \\(e^{x}\\) underflows +* +* - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values. +* +* @param x input value +* @return output value +* +* @example +* double out = stdlib_base_expf( 0.0f ); +* // returns 1.0f +*/ +float stdlib_base_expf( const float x ) { + float hi; + float lo; + int32_t k; + + if ( stdlib_base_is_nan( x ) || x == STDLIB_CONSTANT_FLOAT32_PINF ) { + return x; + } + if ( x == STDLIB_CONSTANT_FLOAT32_NINF ) { + return 0.0f; + } + if ( x > EXP_OVERFLOW ) { + return STDLIB_CONSTANT_FLOAT32_PINF; + } + if ( x < EXP_UNDERFLOW ) { + return 0.0f; + } + if ( x > NEG_NEARZERO && x < NEARZERO ) { + return 1.0f + x; + } + // Reduce and compute `r = hi - lo` for extra precision... + if ( x < 0.0f ) { + k = stdlib_base_truncf( (LOG2_E * x) - 0.5f ); + } else { + k = stdlib_base_truncf( (LOG2_E * x) + 0.5f ); + } + hi = x - (k * LN2_HI); + lo = k * LN2_LO; + + return expmulti( hi, lo, k ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..43be229407e2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[5.577796105262746e-309,1.1339398160779814e-308,2.305246520707203e-308,4.686458175189963e-308,9.527349908359073e-308,1.936865600483901e-307,3.937557023119308e-307,8.004868952416926e-307,1.6273523550040948e-306,3.308331095836083e-306,6.725682121650714e-306,1.3672996653333795e-305,2.7796561612729665e-305,5.650910748243318e-305,1.148803680452031e-304,2.3354640606034155e-304,4.7478890180992455e-304,9.652235933943541e-304,1.9622543443906778e-303,3.989171150012887e-303,8.109798054255199e-303,1.6486839498122047e-302,3.3516972286905064e-302,6.813843438028223e-302,1.3852224479149914e-301,2.816092338573974e-301,5.724983789652396e-301,1.1638623827362127e-300,2.3660776968429808e-300,4.810125106317893e-300,9.778758985513798e-300,1.9879758880113021e-299,4.041461843132057e-299,8.216102583533701e-299,1.6702951625751893e-298,3.3956318117462523e-298,6.903160387034531e-298,1.4033801651955533e-297,2.853006127111835e-297,5.800027792328483e-297,1.1791184768971283e-296,2.3970926215203577e-296,4.8731769951290485e-296,9.906940521470375e-296,2.01403459373717e-295,4.094437971015507e-295,8.323800569576132e-295,1.692189658569519e-294,3.440142296340201e-294,6.993648116885296e-294,1.4217758967368118e-293,2.890403787490341e-293,5.876055483787729e-293,1.194574550379188e-292,2.428514094787992e-292,4.937055378178396e-292,1.003680228148947e-291,2.0404348811432797e-291,4.1481085184521685e-291,8.432910278034609e-291,1.714371151117459e-290,3.4852362314809936e-290,7.085321974363766e-290,1.4404127624679073e-289,2.9282916623792526e-289,5.953079758380626e-289,1.2102332245430295e-288,2.4603474457503446e-288,5.001771089283406e-288,1.0168366290217815e-287,2.0671812277371344e-287,4.202482588003608e-287,8.54345021399415e-287,1.7368434022153222e-286,3.530921265132056e-286,7.17819750742131e-286,1.459293923214019e-285,2.9666761775890716e-285,6.031113679476846e-285,1.226097155111051e-284,2.4925980733655195e-284,5.0673351042746426e-284,1.0301654861004768e-283,2.0942781697174158e-283,4.257569401551122e-283,8.655439125103524e-283,1.7596102231728544e-282,3.577205145507556e-282,7.272290467811877e-282,1.4784225812335872e-281,3.005563843159841e-281,6.110170481684826e-281,1.2421690326167307e-280,2.5252714473628646e-280,5.133758542855636e-280,1.043669059968313e-279,2.121730302744969e-279,4.313378301855978e-279,8.76889600476159e-279,1.782675475259067e-278,3.624095722385273e-278,7.367616813769214e-278,1.4978019807600995e-277,3.044961254467259e-277,6.190263573094396e-277,1.2584515828619083e-276,2.558373109169826e-276,5.201052670487014e-276,1.0573496408411288e-275,2.149542282720339e-275,4.3699187541473034e-275,8.883840095335756e-275,1.806043070356495e-274,3.6716009484407647e-274,7.464192712706816e-274,1.5174354085534791e-273,3.0848750933402777e-273,6.271406537548655e-273,1.2749475673786746e-272,2.5919086728508935e-272,5.269228900301216e-272,1.0712095489548002e-271,2.1777188265750804e-271,4.427200347725982e-271,9.000290891422426e-271,1.8297169716260705e-270,3.7197288805928735e-270,7.562034543965731e-270,1.53732619445703e-269,3.125312129193278e-269,6.353613136952727e-269,1.2916597838972903e-268,2.625883826061485e-268,5.338298795033464e-268,1.085251134959587e-267,2.2062647130710533e-267,4.485232797589477e-267,9.118268143160358e-267,1.8537011941776465e-266,3.768487681373072e-266,7.661158901590064e-266,1.557477711961651e-265,3.16627922017662e-265,6.436897313602117e-265,1.308591066821546e-264,2.6603043310117267e-264,5.408274068986959e-264,1.0994767803184525e-263,2.235184783610137e-263,4.544025946083015e-263,9.237791859572165e-263,1.8779998057524016e-262,3.8178856203086194e-262,7.761582597138686e-262,1.5778933787792019e-261,3.207783314336963e-261,6.521273192552332e-261,1.325744287709056e-260,2.6951760254428076e-260,5.479166590017883e-260,1.1138888977105826e-259,2.2644839430570926e-259,4.6035897645648077e-259,9.358882311965036e-259,1.9026169274121239e-258,3.867931075323755e-258,7.863322662542579e-258,1.598576657420743e-257,3.2498314507981538e-257,6.6067550840123956e-257,1.343122355757819e-256,2.73050482361918e-256,5.550988381546308e-256,1.128489931441323e-255,2.294167160569408e-255,4.663934355100772e-255,9.48156003736574e-255,1.92755673423749e-254,3.9186325341636394e-254,7.966396352986444e-254,1.619531055785021e-253,3.292430760954013e-253,6.693357485769586e-253,1.360728218300673e-252,2.7662967173291856e-252,5.623751624599085e-252,1.1432823578563689e-251,2.324239470441855e-251,4.7250699521763406e-251,9.605845842000438e-251,1.952823456037672e-250,3.9699985958303804e-250,8.070821149841385e-250,1.6407601277528884e-249,3.3355884696766896e-249,6.781095085653516e-249,1.3785648613039508e-248,2.8025577769034184e-248,5.697468659873938e-248,1.1582686857613612e-247,2.354705972959555e-247,4.787006924430606e-247,9.731760804830971e-247,1.978421378065974e-246,4.022037972044517e-246,8.176614763627148e-246,1.6622674737894752e-245,3.379311896544618e-245,6.869982764021157e-245,1.3966353098749735e-244,2.8392941522433465e-244,5.7721519898304863e-244,1.1734514568482892e-243,2.38557183526218e-243,4.84975577641805e-243,9.859326281121186e-243,2.004354841748152e-242,4.074759488721232e-242,8.283795137013012e-242,1.6840567415561355e-241,3.42360845708091e-241,6.960035596285888e-241,1.414942628774659e-240,2.8765120738633627e-240,5.847814280815196e-240,1.1888332461255176e-239,2.4168422922218988e-239,4.913327150388557e-239,9.98856390606646e-239,2.0306282454180745e-238,4.128172087465825e-238,8.39238044786738e-238,1.7061316265275902e-237,3.4684856640136915e-237,7.051268855472049e-237,1.4334899229368177e-236,2.9142178539497378e-236,5.924468365204385e-236,1.2044166623554316e-235,2.44852264733043e-235,4.9777318280906455e-235,1.0119495598459814e-234,2.0572460450629784e-234,4.182284827093454e-234,8.502389112333263e-234,1.7284958726200088e-233,3.513951128549147e-233,7.143698014802818e-233,1.452280337995878e-232,2.952417887428572e-232,6.002127243585206e-232,1.2202043484964968e-231,2.480618273597676e-231,5.04298073260397e-231,1.0252143564405858e-230,2.0842127550805887e-230,4.237106885161781e-230,8.613839787958288e-230,1.751153272825419e-229,3.5600125616611685e-229,7.237338750330084e-229,1.4713170608190894e-228,2.991118653052673e-228,6.080804086958614e-228,1.2361989821510846e-227,2.513134614464931e-227,5.109084930187377e-227,1.0386530301093825e-226,2.111532949044085e-226,4.292647559530792e-226,8.726751376856227e-226,1.7741076698543978e-225,3.6066777754019344e-225,7.332206943586662e-225,1.4906033200481627e-224,3.03032671449939e-224,6.160512238971073e-224,1.2524032760205647e-223,2.546077184725855e-223,5.17605563216002e-223,1.0522678600609746e-222,2.1392112604771773e-222,4.3489162699380746e-222,8.841143028909814e-222,1.797362956789086e-221,3.653954684223624e-221,7.428318684285925e-221,1.5101423866463676e-220,3.0700487214827697e-220,6.241265218182131e-220,1.2688199783642639e-219,2.5794515714639056e-219,5.243904196799655e-219,1.0660611553798977e-218,2.167252383640901e-218,4.405922559596156e-218,8.957034145024987e-218,1.820923077742365e-217,3.701851306323759e-217,7.525690273045694e-217,1.529937574452767e-216,3.1102914108835845e-216,6.323076720353374e-216,1.2854518734666324e-215,2.6132634349983484e-215,5.312642131270151e-215,1.0800352554187135e-214,2.1956610743296642e-214,4.46367609681176e-214,9.074444380415858e-214,1.8447920285272794e-213,3.7503757650026376e-213,7.624338224156593e-213,1.54999224074536e-212,3.151061607890021e-212,6.405960620772977e-212,1.302301782108678e-211,2.647518509844812e-211,5.3822810935740225e-211,1.0941925301947153e-210,2.2244421506772187e-210,4.52218667662532e-210,9.19339364794073e-210,1.8689738573345238e-209,3.799536290042921e-209,7.724279268379926e-209,1.5703097868095354e-208,3.1923662271560974e-208,6.489930976608603e-208,1.319372562046654e-207,2.6822226056883252e-207,5.452832894527841e-207,1.1085353807915785e-206,2.253600493974308e-206,4.581464222472228e-206,9.313902121478307e-206,1.8934726654194425e-205,3.84934121910394e-205,7.8255303557869144e-205,1.5908936585153611e-204,3.234212273974039e-204,6.575002029291149e-204,1.3366671084969645e-203,2.7173816083677446e-203,5.524309499766552e-203,1.1230662397668273e-202,2.2831410494962835e-202,4.641518787865587e-202,9.435990239351307e-202,1.918292607796971e-201,3.899798999136609e-201,7.928108658633028e-201,1.61174734690183e-200,3.2766068454631125e-200,6.661188206931579e-200,1.3541883546267487e-199,2.753001480874593e-199,5.596723031772553e-199,1.1377875715642754e-198,2.3130688273423476e-198,4.70236055810235e-198,9.559678707789663e-198,1.9434378939467516e-197,3.950918187815825e-197,8.032031574269945e-197,1.632874388769306e-196,3.319557131772208e-196,6.748504126765727e-196,1.3719392720516437e-195,2.789088264364241e-195,5.6700857719313604e-195,1.1527018729322531e-194,2.3433889032844935e-194,4.763999851989178e-194,9.684988504444407e-194,1.9689127885269588e-193,4.002707454991628e-193,8.137316728097983e-193,1.6542783672788234e-192,3.363070417300018e-192,6.8369645976348616e-192,1.3899228713396205e-191,2.8256480791803284e-191,5.744410162615821e-191,1.1678116733466732e-190,2.374106419628875e-190,4.826447123593562e-190,9.811940881944418e-190,1.994721612097474e-189,4.055175584160521e-189,8.243981976552652e-189,1.6759629125601556e-188,3.4071540819303e-188,6.926584622496517e-188,1.408142202521894e-187,2.8626871258934185e-187,5.819708809294425e-187,1.1831195354402878e-186,2.405226586087817e-186,4.889712964016306e-186,9.940557371503104e-186,2.020868741853109e-185,4.1083314739538025e-185,8.352045410134935e-185,1.697931702327397e-184,3.4518156022833113e-184,7.017379400970573e-184,1.4266003556097374e-183,2.9002116863516642e-183,5.8959944826704844e-183,1.1986280554372486e-182,2.4367546806632477e-182,4.953808103188889e-182,1.0070859786566787e-181,2.0473586123653049e-181,4.1621841396476754e-181,8.461525356478988e-181,1.720188462502609e-180,3.497062552984629e-180,7.109364331914777e-180,1.4453004611188666e-179,2.9382281247468484e-179,5.973280120847388e-179,1.21433986359336e-178,2.468696050542404e-178,5.018743411691611e-178,1.0202870226516492e-177,2.0741957163346863e-177,4.2167427146917895e-177,8.57244038346004e-177,1.742736967848128e-176,3.542902607948646e-176,7.202555016037959e-176,1.4642456906002963e-175,2.9767428886934275e-175,6.051578831524274e-175,1.2302576246424464e-174,2.5010561130038933e-174,5.084529902598356e-174,1.0336611080415455e-173,2.101384605352798e-173,4.2720164522592285e-173,8.68480930234546e-173,1.765581042606185e-172,3.5893435416808484e-172,7.296967258545532e-172,1.4834392571781554e-171,3.0157625103227276e-171,6.130903894217076e-171,1.246384038247882e-170,2.5338403563370128e-170,5.151178733344142e-170,1.0472105030805743e-169,2.128929890674532e-169,4.3280147268144307e-169,8.798651170982253e-169,1.7887245611478879e-168,3.636393230596182e-168,7.392617071819651e-168,1.50288441609497e-167,3.055293607389788e-167,6.2112687625120856e-167,1.2627218394607297e-166,2.5670543407722906e-166,5.21870120761713e-166,1.0609375057557593e-165,2.1568362439994871e-165,4.384747035704051e-165,8.913985297031219e-165,1.8121714486301166e-164,3.684059654354691e-164,7.489520678136594e-164,1.5225844652632532e-163,3.095342884396408e-163,6.292687066347353e-163,1.2792737991834658e-162,2.6007036994250804e-162,5.287108777276924e-162,1.0748444441763274e-161,2.185108398264769e-161,4.442223000767485e-161,9.030831241240542e-161,1.835925681661645e-160,3.732350897215705e-160,7.58769451241557e-160,1.5425427458251658e-159,3.135917133728068e-159,6.375172614323973e-159,1.2960427246402176e-158,2.6347941392500764e-158,5.356413044295044e-158,1.0889336769687921e-157,2.2137511484475773e-157,4.5004523699684775e-157,9.149208820765369e-157,1.8599912889769599e-156,3.78127514940769e-156,7.687155225007756e-156,1.5627626427190956e-155,3.177023236805744e-155,6.45873939604948e-155,1.3130314598524366e-154,2.669331442009792e-154,5.426625762723801e-154,1.1032075936768581e-153,2.242769352378313e-153,4.5594450190494115e-153,9.269138112525738e-153,1.8843723521199478e-152,3.830840708518145e-152,7.787919684519353e-152,1.5832475852536525e-151,3.2186681652537186e-151,6.54340158450833e-151,1.330242886121535e-150,2.7043214652550084e-150,5.497758840689197e-150,1.1176686151669393e-149,2.272167931564977e-149,4.61921095320471e-149,9.39063945661368e-149,1.909073006136025e-148,3.8810559809004546e-148,7.890004980674273e-148,1.6040010476896432e-147,3.260858982080898e-147,6.629173538467089e-147,1.3476799225174843e-146,2.739770143318063e-146,5.5698243424117825e-146,1.1323191940383646e-145,2.3019518720271006e-145,4.679760308778741e-145,9.513733459742407e-145,1.9340974402733336e-144,3.931929483100484e-144,7.993428427209938e-144,1.6250265498287688e-143,3.3036028428794194e-143,6.716069804909331e-143,1.3653455263738141e-142,2.775683488319938e-142,5.642834490250907e-142,1.1471618150395905e-141,2.332126225141884e-141,4.7411033549844244e-141,9.638440998740668e-141,1.9594498986936807e-140,3.9834698432996856e-140,8.098207564815445e-140,1.646327657610945e-139,3.3469069970378758e-139,6.804105121502429e-139,1.3832426937894885e-138,2.8120675911889896e-138,5.716801666778874e-138,1.162198995489553e-137,2.3626961085006536e-137,4.803250495645974e-137,9.764783224095667e-137,1.9851346811916935e-136,4.0356858027793116e-136,8.20436016410605e-136,1.667907983718903e-135,3.3907787889715745e-135,6.893294419098615e-135,1.4013744601365812e-134,2.8489286226945937e-134,5.791738416880719e-134,1.1774332857045404e-133,2.3936667067773423e-133,4.866212270961785e-133,9.89278156353693e-133,2.011156143924506e-132,4.088586217402727e-132,8.311904228636605e-132,1.6897711881912803e-131,3.435225659367022e-131,6.983652824264958e-131,1.4197439005753877e-130,2.8862728344935574e-130,5.867657449881506e-130,1.1928672694309954e-129,2.425043272607017e-129,4.9299993592931284e-129,1.0022457725672639e-128,2.03751870015034e-128,4.1421800591171353e-128,8.420857997956848e-128,1.711920979042803e-127,3.4802551464446238e-127,7.075195661850377e-127,1.4383541305758128e-126,2.9241065601902377e-126,5.944571641703163e-126,1.208503564283321e-125,2.456831127477257e-125,4.994622578974941e-125,1.01538337036703e-124,2.0642268209774586e-124,4.1964764174761616e-124,8.531239950702038e-124,1.7343611128935404e-123,3.525874887236983e-123,7.167938457583947e-123,1.4572083064460852e-122,2.9624362164113893e-122,6.022494037046261e-122,1.2243448221880953e-121,2.4890356626305524e-121,5.060092890150337e-121,1.028693177898911e-120,2.0912850361217793e-120,4.25148450118005e-120,8.643068807728812e-120,1.7570953956059387e-119,3.572092618883945e-119,7.26189694070971e-119,1.4763096258675812e-118,3.001268303893438e-118,6.101437851603724e-118,1.2403937298337742e-117,2.5216623399785177e-117,5.126421396630599e-117,1.042177452515546e-116,2.118697934675576e-116,4.3072136396383906e-116,8.756363535289288e-116,1.7801276829301964e-115,3.6189161799456277e-115,7.357087046651926e-115,1.4956613284374767e-114,3.0406094085856655e-114,6.1814164743015405e-114,1.2566530091262836e-113,2.5547166930288092e-113,5.1936193477766836e-113,1.0558384811593716e-112,2.146470165885678e-112,4.363673284551923e-112,8.871143348249992e-112,1.8034618811586052e-111,3.666353511730642e-111,7.453524919719353e-111,1.5152666962180626e-110,3.0804662027669454e-110,6.262443469571114e-110,1.2731254176509417e-109,2.588204327822755e-109,5.261698140408103e-109,1.0696785807504e-108,2.1746064399419227e-108,4.42087301151653e-108,8.987427713346492e-108,1.8271019477874576e-107,3.714412659643636e-107,7.551226915842714e-107,1.5351290542935562e-106,3.1208454461776207e-106,6.344532579646813e-106,1.2898137491397218e-105,2.6221309238866384e-105,5.3306693207361534e-105,1.0837000985792937e-104,2.2031115287761924e-104,4.478822521645796e-104,9.105236352489455e-104,1.8510518921885878e-103,3.7631017745500265e-103,7.650209605349532e-103,1.555251771333737e-102,3.1617539871657963e-102,6.427697726899839e-102,1.3067208339453163e-101,2.6565022351951044e-101,5.400544586321264e-101,1.0979054127052532e-100,2.2319902668716172e-100,4.537531643217298e-100,9.224589246106225e-100,1.875315776289475e-99,3.812429114157761e-99,7.750489775772965e-99,1.5756382601656218e-98,3.203198763848639e-98,6.511953016197154e-98,1.3238495395212452e-97,2.6913240911465935e-97,5.471335788057351e-97,1.1122969323595835e-96,2.261247552082315e-96,4.597010333339117e-96,9.345506636531827e-96,1.8998977152617826e-95,3.8624030444181375e-95,7.852084434700718e-95,1.5962919783519317e-94,3.245186805289263e-94,6.597312737295311e-94,1.3412027709079174e-93,2.726602397552231e-93,5.543054932182207e-93,1.126877098354053e-92,2.2908883464645132e-92,4.6572686796390915e-92,9.468009031439989e-92,1.9248018782197146e-91,3.9130320409450104e-91,7.955010812657782e-91,1.617216428777853e-90,3.287725232689139e-90,6.683791367262526e-90,1.3587834712256281e-89,2.7623431376376903e-89,5.615714182312686e-89,1.1416483834951081e-88,2.3209176771176732e-88,4.7183169019747707e-88,9.592117207323375e-88,1.9500324889267297e-87,3.964324690451493e-87,8.059286366030529e-87,1.6384151602448146e-86,3.3308212605952174e-86,6.771403572935499e-86,1.3765946221734492e-85,2.798552373057411e-85,5.689325861508908e-85,1.1566132930030414e-84,2.3513406370372774e-84,4.780165354167764e-84,9.717852213015156e-84,1.9755938265120505e-83,4.016289692207155e-83,8.16492878002552e-83,1.6598917680725003e-82,3.374482198124256e-82,6.8601642134054e-82,1.3946392445350384e-81,2.8352362449232845e-81,5.763902454362993e-81,1.1717743649369724e-80,2.382162385978807e-80,4.842824525758688e-80,9.845235373261065e-80,2.0014902261965784e-79,4.0689358595125295e-79,8.271955971670754e-79,1.6816498947087608e-78,3.418715450201704e-78,6.950088342539521e-78,1.4129203986910884e-77,2.8724009748455583e-77,5.839456609117741e-77,1.1871341706254048e-76,2.4133881513323738e-76,4.906305043787284e-76,9.974288292334188e-76,2.0277260800277571e-75,4.1222721211947596e-75,8.380386092852801e-75,1.7036932303470447e-74,3.4635285188183435e-74,7.041191211533065e-74,1.4314411851380912e-73,2.9100528659886665e-73,5.916001139810648e-73,1.2026953151020937e-72,2.445023229009828e-72,4.970617674593815e-72,1.0105032857699861e-71,2.054305837624919e-71,4.176307523121017e-71,8.490237533396051e-71,1.7260255135526395e-70,3.5089290043018594e-70,7.133488271496333e-70,1.4502047450145038e-69,2.948198304139601e-69,5.99354902844766e-69,1.2184604375481285e-68,2.4770729843424014e-68,5.035773325645447e-68,1.0237491243728681e-67,2.0812340069334866e-67,4.231051229733619e-67,8.601528924182376e-67,1.7486505318963485e-66,3.554924606606643e-66,7.226995176075859e-66,1.4692142606331654e-65,2.986843758791603e-65,6.072113427205436e-65,1.2344322117392692e-64,2.5095428529912272e-64,5.1017830473865995e-64,1.0371685915455274e-63,2.1085151549899856e-63,4.2865125256034997e-63,8.714279140309257e-63,1.7715721225972566e-62,3.601523126619019e-62,7.321727784107859e-62,1.4884729560213455e-61,3.0259957842408145e-61,6.15170766066079e-61,1.2506133464996945e-60,2.5424383418687405e-60,5.168658035112107e-60,1.0507639632390712e-59,2.1361539086962107e-59,4.34270081700523e-59,8.828507304292952e-59,1.7947941731731296e-58,3.648732467480575e-58,7.417702162309538e-58,1.5079840974672106e-57,3.065661020698136e-57,6.232345228051909e-57,1.2670065861611429e-56,2.5757650300728634e-56,5.236409630867103e-56,1.0645375452380337e-55,2.164154955604121e-55,4.39962563351264e-55,8.944232789309848e-55,1.8183206221001402e-54,3.6965606359287973e-54,7.514934588002467e-54,1.5277509940741256e-53,3.1058461954156297e-53,6.3140398055665395e-53,1.2836147110286346e-52,2.6095285698334068e-52,5.3050493253695445e-52,1.0784916735516008e-51,2.1925230447110106e-51,4.457296629614552e-51,9.061475222483528e-51,1.8421554594804573e-50,3.745015743654617e-50,7.613441551874373e-50,1.5477769983215597e-49,3.1465581238271266e-49,6.396805248662438e-49,1.3004405378517467e-48,2.6437346874703684e-48,5.3745887599598544e-48,1.0926287148097254e-47,2.2212629872646655e-47,4.515723586352244e-47,9.18025448821292e-47,1.8663027277192497e-46,3.794106008678196e-46,7.713239760775443e-46,1.5680655066339062e-45,3.187803710704161e-45,6.480655594416824e-45,1.3174869203025317e-44,2.6783891843653383e-44,5.445039728574931e-44,1.106951066664524e-43,2.250379657579541e-43,4.574916412978637e-43,9.300590731544835e-43,1.8907665222101536e-42,3.843839756742979e-42,7.814346140551932e-42,1.58861995995641e-41,3.229589951327252e-41,6.565605063907172e-41,1.3347567494594142e-40,2.7134979379452288e-40,5.516414179748483e-40,1.1214611581969206e-39,2.279877993863288e-39,4.634885148638658e-39,9.422504361590574e-39,1.915550992029907e-38,3.894225422727534e-38,7.916777838916791e-38,1.6094438443388e-37,3.2719239326721286e-37,6.651668064623113e-37,1.3522529542975555e-36,2.74906690267932e-36,5.588724218637509e-36,1.1361614503286201e-35,2.3097629990544694e-35,4.695639964071954e-35,9.546016054987335e-35,1.940660340641927e-34,3.945271552076166e-34,8.020552228357932e-34,1.6305406915264323e-33,3.31481283461173e-33,6.738859192909953e-33,1.3699785021855343e-32,2.7851021110889865e-32,5.661982109075342e-32,1.1510544362394988e-31,2.3400397416709346e-31,4.757191163337849e-31,9.671146759405116e-31,1.9660988266093837e-30,3.9969868022482265e-30,8.125686909084621e-30,1.6519140795594158e-29,3.358263931133918e-29,6.827193236444227e-29,1.3879363993887286e-28,2.8216096747708596e-28,5.736200275651642e-28,1.166142641790376e-27,2.3707133566694745e-27,4.819549185562962e-27,9.797917697098842e-27,1.9918707643173452e-26,4.049379944186461e-26,8.232199712012533e-26,1.6735676333793573e-25,3.402284591575175e-25,6.91668517674175e-25,1.4061296915791041e-24,2.858595785433355e-24,5.811391305819454e-24,1.1814286259515409e-23,2.401789046316716e-23,4.8827246067115464e-23,9.926350368508839e-23,2.0179805247045302e-22,4.1024598638044473e-22,8.340108701787662e-22,1.6955050254441776e-21,3.44688228187035e-21,7.007350191698287e-21,1.4245614643517816e-20,2.8960667159468125e-20,5.887567952030293e-20,1.1969149812366076e-19,2.433272081071444e-19,4.946728141379391e-19,1.0056466555906084e-18,2.04443253600462e-18,4.156235563493823e-18,8.449432179850508e-18,1.7177299763509637e-17,3.492064565819034e-17,7.09920365816409e-17,1.4432348437483558e-16,2.934028821407298e-16,5.964743133896848e-16,1.212604334142307e-15,2.4651678004784084e-15,5.011570644610882e-15,1.0188288327087328e-14,2.0712312844972986e-14,4.210716163651004e-14,8.560188687539537e-14,1.7402462554669895e-13,3.5378391063682986e-13,7.192261154551421e-13,1.4621529967870802e-12,2.9724885402145535e-12,6.042929940384029e-12,1.2284993455939044e-11,2.497481614074018e-11,5.0772631137400835e-11,1.0321838039117488e-10,2.0983813152691067e-10,4.265910904223971e-10,8.672397009236225e-10,1.7630576815689856e-9,3.584213666912314e-9,7.28653846347701e-9,1.4813191319999786e-8,3.011452395163886e-8,6.122141632029118e-8,1.2446027113964883e-7,2.5302190023037357e-7,5.143816690255835e-7,1.0457138342121358e-6,2.125887232984309e-6,4.321829146279477e-6,8.786076175550694e-6,1.786168123490818e-5,3.631196112609106e-5,7.382051574438627e-5,0.00015007364999770258,0.0003050926994552417,0.0006202391643190607,0.001260917162692199,0.0025633855174515712,0.005211242661691401,0.010594212183125328,0.02153753702665852,0.04378480373590605,0.08901245466549268,0.18095815007796634,0.36787944117144233],"x":[-709.78,-709.0705105105105,-708.361021021021,-707.6515315315315,-706.9420420420421,-706.2325525525525,-705.5230630630631,-704.8135735735735,-704.1040840840841,-703.3945945945947,-702.6851051051051,-701.9756156156157,-701.2661261261261,-700.5566366366367,-699.8471471471471,-699.1376576576577,-698.4281681681682,-697.7186786786787,-697.0091891891892,-696.2996996996997,-695.5902102102102,-694.8807207207208,-694.1712312312312,-693.4617417417418,-692.7522522522522,-692.0427627627628,-691.3332732732732,-690.6237837837838,-689.9142942942943,-689.2048048048048,-688.4953153153153,-687.7858258258258,-687.0763363363363,-686.3668468468469,-685.6573573573573,-684.9478678678679,-684.2383783783783,-683.5288888888889,-682.8193993993993,-682.1099099099099,-681.4004204204205,-680.6909309309309,-679.9814414414415,-679.2719519519519,-678.5624624624625,-677.852972972973,-677.1434834834835,-676.433993993994,-675.7245045045045,-675.015015015015,-674.3055255255256,-673.596036036036,-672.8865465465466,-672.177057057057,-671.4675675675676,-670.758078078078,-670.0485885885886,-669.3390990990991,-668.6296096096096,-667.9201201201201,-667.2106306306306,-666.5011411411411,-665.7916516516517,-665.0821621621621,-664.3726726726727,-663.6631831831832,-662.9536936936937,-662.2442042042042,-661.5347147147147,-660.8252252252253,-660.1157357357357,-659.4062462462463,-658.6967567567567,-657.9872672672673,-657.2777777777778,-656.5682882882883,-655.8587987987988,-655.1493093093093,-654.4398198198198,-653.7303303303303,-653.0208408408408,-652.3113513513514,-651.6018618618618,-650.8923723723724,-650.1828828828828,-649.4733933933934,-648.763903903904,-648.0544144144144,-647.344924924925,-646.6354354354354,-645.925945945946,-645.2164564564565,-644.506966966967,-643.7974774774775,-643.087987987988,-642.3784984984985,-641.669009009009,-640.9595195195195,-640.2500300300301,-639.5405405405405,-638.8310510510511,-638.1215615615615,-637.4120720720721,-636.7025825825826,-635.9930930930931,-635.2836036036036,-634.5741141141141,-633.8646246246246,-633.1551351351351,-632.4456456456456,-631.7361561561562,-631.0266666666666,-630.3171771771772,-629.6076876876876,-628.8981981981982,-628.1887087087088,-627.4792192192192,-626.7697297297298,-626.0602402402402,-625.3507507507508,-624.6412612612612,-623.9317717717718,-623.2222822822823,-622.5127927927928,-621.8033033033033,-621.0938138138138,-620.3843243243243,-619.6748348348349,-618.9653453453453,-618.2558558558559,-617.5463663663663,-616.8368768768769,-616.1273873873874,-615.4178978978979,-614.7084084084084,-613.9989189189189,-613.2894294294294,-612.5799399399399,-611.8704504504504,-611.160960960961,-610.4514714714715,-609.741981981982,-609.0324924924925,-608.323003003003,-607.6135135135136,-606.904024024024,-606.1945345345346,-605.485045045045,-604.7755555555556,-604.066066066066,-603.3565765765766,-602.6470870870871,-601.9375975975976,-601.2281081081081,-600.5186186186186,-599.8091291291291,-599.0996396396397,-598.3901501501501,-597.6806606606607,-596.9711711711711,-596.2616816816817,-595.5521921921921,-594.8427027027027,-594.1332132132133,-593.4237237237237,-592.7142342342343,-592.0047447447447,-591.2952552552553,-590.5857657657658,-589.8762762762763,-589.1667867867868,-588.4572972972973,-587.7478078078078,-587.0383183183184,-586.3288288288288,-585.6193393393394,-584.9098498498498,-584.2003603603604,-583.4908708708708,-582.7813813813814,-582.0718918918919,-581.3624024024024,-580.6529129129129,-579.9434234234234,-579.2339339339339,-578.5244444444445,-577.8149549549549,-577.1054654654655,-576.395975975976,-575.6864864864865,-574.976996996997,-574.2675075075075,-573.5580180180181,-572.8485285285285,-572.1390390390391,-571.4295495495495,-570.7200600600601,-570.0105705705706,-569.3010810810811,-568.5915915915916,-567.8821021021021,-567.1726126126126,-566.4631231231231,-565.7536336336336,-565.0441441441442,-564.3346546546546,-563.6251651651652,-562.9156756756756,-562.2061861861862,-561.4966966966967,-560.7872072072072,-560.0777177177177,-559.3682282282282,-558.6587387387387,-557.9492492492493,-557.2397597597597,-556.5302702702703,-555.8207807807808,-555.1112912912913,-554.4018018018018,-553.6923123123123,-552.9828228228229,-552.2733333333333,-551.5638438438439,-550.8543543543543,-550.1448648648649,-549.4353753753754,-548.7258858858859,-548.0163963963964,-547.3069069069069,-546.5974174174174,-545.8879279279279,-545.1784384384384,-544.468948948949,-543.7594594594594,-543.04996996997,-542.3404804804804,-541.630990990991,-540.9215015015016,-540.212012012012,-539.5025225225226,-538.793033033033,-538.0835435435436,-537.374054054054,-536.6645645645646,-535.9550750750751,-535.2455855855856,-534.5360960960961,-533.8266066066066,-533.1171171171171,-532.4076276276277,-531.6981381381381,-530.9886486486487,-530.2791591591591,-529.5696696696697,-528.8601801801802,-528.1506906906907,-527.4412012012012,-526.7317117117117,-526.0222222222222,-525.3127327327327,-524.6032432432432,-523.8937537537538,-523.1842642642642,-522.4747747747748,-521.7652852852852,-521.0557957957958,-520.3463063063064,-519.6368168168168,-518.9273273273274,-518.2178378378378,-517.5083483483484,-516.7988588588588,-516.0893693693694,-515.3798798798799,-514.6703903903904,-513.9609009009009,-513.2514114114114,-512.5419219219219,-511.8324324324324,-511.1229429429429,-510.4134534534534,-509.703963963964,-508.9944744744745,-508.284984984985,-507.5754954954955,-506.866006006006,-506.1565165165165,-505.44702702702705,-504.73753753753755,-504.02804804804805,-503.31855855855855,-502.60906906906905,-501.89957957957955,-501.1900900900901,-500.4806006006006,-499.7711111111111,-499.0616216216216,-498.3521321321321,-497.64264264264267,-496.93315315315317,-496.2236636636637,-495.5141741741742,-494.8046846846847,-494.0951951951952,-493.38570570570573,-492.67621621621623,-491.96672672672673,-491.25723723723723,-490.54774774774774,-489.83825825825824,-489.1287687687688,-488.4192792792793,-487.7097897897898,-487.0003003003003,-486.2908108108108,-485.5813213213213,-484.87183183183186,-484.16234234234236,-483.45285285285286,-482.74336336336336,-482.03387387387386,-481.32438438438436,-480.6148948948949,-479.9054054054054,-479.1959159159159,-478.4864264264264,-477.7769369369369,-477.0674474474474,-476.357957957958,-475.6484684684685,-474.938978978979,-474.2294894894895,-473.52,-472.8105105105105,-472.10102102102104,-471.39153153153154,-470.68204204204204,-469.97255255255254,-469.26306306306304,-468.5535735735736,-467.8440840840841,-467.1345945945946,-466.4251051051051,-465.7156156156156,-465.0061261261261,-464.29663663663666,-463.58714714714716,-462.87765765765766,-462.16816816816817,-461.45867867867867,-460.74918918918917,-460.0396996996997,-459.3302102102102,-458.6207207207207,-457.9112312312312,-457.2017417417417,-456.49225225225223,-455.7827627627628,-455.0732732732733,-454.3637837837838,-453.6542942942943,-452.9448048048048,-452.2353153153153,-451.52582582582585,-450.81633633633635,-450.10684684684685,-449.39735735735735,-448.68786786786785,-447.97837837837835,-447.2688888888889,-446.5593993993994,-445.8499099099099,-445.1404204204204,-444.4309309309309,-443.7214414414414,-443.01195195195197,-442.3024624624625,-441.592972972973,-440.8834834834835,-440.173993993994,-439.46450450450453,-438.75501501501503,-438.04552552552553,-437.33603603603603,-436.62654654654654,-435.91705705705704,-435.2075675675676,-434.4980780780781,-433.7885885885886,-433.0790990990991,-432.3696096096096,-431.6601201201201,-430.95063063063066,-430.24114114114116,-429.53165165165166,-428.82216216216216,-428.11267267267266,-427.40318318318316,-426.6936936936937,-425.9842042042042,-425.2747147147147,-424.5652252252252,-423.8557357357357,-423.1462462462462,-422.4367567567568,-421.7272672672673,-421.0177777777778,-420.3082882882883,-419.5987987987988,-418.8893093093093,-418.17981981981984,-417.47033033033034,-416.76084084084084,-416.05135135135134,-415.34186186186184,-414.63237237237234,-413.9228828828829,-413.2133933933934,-412.5039039039039,-411.7944144144144,-411.0849249249249,-410.37543543543546,-409.66594594594596,-408.95645645645646,-408.24696696696697,-407.53747747747747,-406.82798798798797,-406.1184984984985,-405.409009009009,-404.6995195195195,-403.99003003003,-403.2805405405405,-402.57105105105103,-401.8615615615616,-401.1520720720721,-400.4425825825826,-399.7330930930931,-399.0236036036036,-398.3141141141141,-397.60462462462465,-396.89513513513515,-396.18564564564565,-395.47615615615615,-394.76666666666665,-394.05717717717715,-393.3476876876877,-392.6381981981982,-391.9287087087087,-391.2192192192192,-390.5097297297297,-389.8002402402402,-389.0907507507508,-388.3812612612613,-387.6717717717718,-386.9622822822823,-386.2527927927928,-385.5433033033033,-384.83381381381383,-384.12432432432433,-383.41483483483483,-382.70534534534534,-381.99585585585584,-381.2863663663664,-380.5768768768769,-379.8673873873874,-379.1578978978979,-378.4484084084084,-377.7389189189189,-377.02942942942946,-376.31993993993996,-375.61045045045046,-374.90096096096096,-374.19147147147146,-373.48198198198196,-372.7724924924925,-372.063003003003,-371.3535135135135,-370.644024024024,-369.9345345345345,-369.225045045045,-368.5155555555556,-367.8060660660661,-367.0965765765766,-366.3870870870871,-365.6775975975976,-364.9681081081081,-364.25861861861864,-363.54912912912914,-362.83963963963964,-362.13015015015014,-361.42066066066064,-360.71117117117115,-360.0016816816817,-359.2921921921922,-358.5827027027027,-357.8732132132132,-357.1637237237237,-356.4542342342342,-355.74474474474476,-355.03525525525527,-354.32576576576577,-353.61627627627627,-352.90678678678677,-352.1972972972973,-351.4878078078078,-350.7783183183183,-350.0688288288288,-349.35933933933933,-348.64984984984983,-347.9403603603604,-347.2308708708709,-346.5213813813814,-345.8118918918919,-345.1024024024024,-344.3929129129129,-343.68342342342345,-342.97393393393395,-342.26444444444445,-341.55495495495495,-340.84546546546545,-340.13597597597595,-339.4264864864865,-338.716996996997,-338.0075075075075,-337.298018018018,-336.5885285285285,-335.879039039039,-335.1695495495496,-334.4600600600601,-333.7505705705706,-333.0410810810811,-332.3315915915916,-331.6221021021021,-330.91261261261263,-330.20312312312313,-329.49363363363364,-328.78414414414414,-328.07465465465464,-327.36516516516514,-326.6556756756757,-325.9461861861862,-325.2366966966967,-324.5272072072072,-323.8177177177177,-323.10822822822826,-322.39873873873876,-321.68924924924926,-320.97975975975976,-320.27027027027026,-319.56078078078076,-318.8512912912913,-318.1418018018018,-317.4323123123123,-316.7228228228228,-316.0133333333333,-315.3038438438438,-314.5943543543544,-313.8848648648649,-313.1753753753754,-312.4658858858859,-311.7563963963964,-311.0469069069069,-310.33741741741744,-309.62792792792794,-308.91843843843844,-308.20894894894894,-307.49945945945944,-306.78996996996995,-306.0804804804805,-305.370990990991,-304.6615015015015,-303.952012012012,-303.2425225225225,-302.533033033033,-301.82354354354356,-301.11405405405407,-300.40456456456457,-299.69507507507507,-298.98558558558557,-298.27609609609607,-297.5666066066066,-296.8571171171171,-296.1476276276276,-295.43813813813813,-294.72864864864863,-294.0191591591592,-293.3096696696697,-292.6001801801802,-291.8906906906907,-291.1812012012012,-290.4717117117117,-289.76222222222225,-289.05273273273275,-288.34324324324325,-287.63375375375375,-286.92426426426425,-286.21477477477475,-285.5052852852853,-284.7957957957958,-284.0863063063063,-283.3768168168168,-282.6673273273273,-281.9578378378378,-281.2483483483484,-280.5388588588589,-279.8293693693694,-279.1198798798799,-278.4103903903904,-277.7009009009009,-276.99141141141143,-276.28192192192193,-275.57243243243244,-274.86294294294294,-274.15345345345344,-273.44396396396394,-272.7344744744745,-272.024984984985,-271.3154954954955,-270.606006006006,-269.8965165165165,-269.187027027027,-268.47753753753756,-267.76804804804806,-267.05855855855856,-266.34906906906906,-265.63957957957956,-264.9300900900901,-264.2206006006006,-263.5111111111111,-262.8016216216216,-262.0921321321321,-261.3826426426426,-260.6731531531532,-259.9636636636637,-259.2541741741742,-258.5446846846847,-257.8351951951952,-257.1257057057057,-256.41621621621624,-255.7067267267267,-254.99723723723724,-254.28774774774774,-253.57825825825824,-252.86876876876877,-252.15927927927927,-251.44978978978978,-250.7403003003003,-250.0308108108108,-249.32132132132134,-248.61183183183184,-247.90234234234234,-247.19285285285287,-246.48336336336337,-245.77387387387387,-245.0643843843844,-244.3548948948949,-243.6454054054054,-242.93591591591593,-242.22642642642643,-241.51693693693693,-240.80744744744746,-240.09795795795796,-239.38846846846846,-238.678978978979,-237.9694894894895,-237.26,-236.55051051051052,-235.84102102102102,-235.13153153153152,-234.42204204204205,-233.71255255255255,-233.00306306306305,-232.29357357357358,-231.58408408408408,-230.87459459459458,-230.1651051051051,-229.4556156156156,-228.74612612612611,-228.03663663663664,-227.32714714714714,-226.61765765765765,-225.90816816816817,-225.19867867867868,-224.48918918918918,-223.7796996996997,-223.0702102102102,-222.3607207207207,-221.65123123123124,-220.94174174174174,-220.23225225225227,-219.52276276276277,-218.81327327327327,-218.1037837837838,-217.3942942942943,-216.6848048048048,-215.97531531531533,-215.26582582582583,-214.55633633633633,-213.84684684684686,-213.13735735735736,-212.42786786786786,-211.7183783783784,-211.0088888888889,-210.2993993993994,-209.58990990990992,-208.88042042042042,-208.17093093093092,-207.46144144144145,-206.75195195195195,-206.04246246246245,-205.33297297297298,-204.62348348348348,-203.91399399399398,-203.2045045045045,-202.495015015015,-201.78552552552551,-201.07603603603604,-200.36654654654654,-199.65705705705705,-198.94756756756757,-198.23807807807808,-197.52858858858858,-196.8190990990991,-196.1096096096096,-195.4001201201201,-194.69063063063064,-193.98114114114114,-193.27165165165164,-192.56216216216217,-191.85267267267267,-191.1431831831832,-190.4336936936937,-189.7242042042042,-189.01471471471473,-188.30522522522523,-187.59573573573573,-186.88624624624626,-186.17675675675676,-185.46726726726726,-184.7577777777778,-184.0482882882883,-183.3387987987988,-182.62930930930932,-181.91981981981982,-181.21033033033032,-180.50084084084085,-179.79135135135135,-179.08186186186185,-178.37237237237238,-177.66288288288288,-176.95339339339338,-176.2439039039039,-175.5344144144144,-174.82492492492491,-174.11543543543544,-173.40594594594594,-172.69645645645645,-171.98696696696697,-171.27747747747748,-170.56798798798798,-169.8584984984985,-169.149009009009,-168.4395195195195,-167.73003003003004,-167.02054054054054,-166.31105105105104,-165.60156156156157,-164.89207207207207,-164.18258258258257,-163.4730930930931,-162.7636036036036,-162.05411411411413,-161.34462462462463,-160.63513513513513,-159.92564564564566,-159.21615615615616,-158.50666666666666,-157.7971771771772,-157.0876876876877,-156.3781981981982,-155.66870870870872,-154.95921921921922,-154.24972972972972,-153.54024024024025,-152.83075075075075,-152.12126126126125,-151.41177177177178,-150.70228228228228,-149.99279279279278,-149.2833033033033,-148.5738138138138,-147.86432432432431,-147.15483483483484,-146.44534534534534,-145.73585585585585,-145.02636636636637,-144.31687687687688,-143.60738738738738,-142.8978978978979,-142.1884084084084,-141.4789189189189,-140.76942942942944,-140.05993993993994,-139.35045045045044,-138.64096096096097,-137.93147147147147,-137.22198198198197,-136.5124924924925,-135.803003003003,-135.0935135135135,-134.38402402402403,-133.67453453453453,-132.96504504504506,-132.25555555555556,-131.54606606606606,-130.8365765765766,-130.1270870870871,-129.4175975975976,-128.70810810810812,-127.99861861861862,-127.28912912912912,-126.57963963963964,-125.87015015015015,-125.16066066066067,-124.45117117117117,-123.74168168168168,-123.0321921921922,-122.3227027027027,-121.61321321321321,-120.90372372372373,-120.19423423423423,-119.48474474474475,-118.77525525525526,-118.06576576576576,-117.35627627627628,-116.64678678678679,-115.93729729729729,-115.2278078078078,-114.51831831831832,-113.80882882882882,-113.09933933933934,-112.38984984984985,-111.68036036036035,-110.97087087087087,-110.26138138138138,-109.5518918918919,-108.8424024024024,-108.13291291291291,-107.42342342342343,-106.71393393393393,-106.00444444444445,-105.29495495495496,-104.58546546546546,-103.87597597597598,-103.16648648648649,-102.45699699699699,-101.7475075075075,-101.03801801801802,-100.32852852852852,-99.61903903903904,-98.90954954954955,-98.20006006006005,-97.49057057057057,-96.78108108108108,-96.0715915915916,-95.3621021021021,-94.65261261261261,-93.94312312312313,-93.23363363363363,-92.52414414414415,-91.81465465465466,-91.10516516516516,-90.39567567567568,-89.68618618618619,-88.97669669669669,-88.2672072072072,-87.55771771771772,-86.84822822822822,-86.13873873873874,-85.42924924924925,-84.71975975975975,-84.01027027027027,-83.30078078078078,-82.59129129129128,-81.8818018018018,-81.17231231231231,-80.46282282282283,-79.75333333333333,-79.04384384384385,-78.33435435435436,-77.62486486486486,-76.91537537537538,-76.20588588588589,-75.49639639639639,-74.7869069069069,-74.07741741741742,-73.36792792792792,-72.65843843843844,-71.94894894894895,-71.23945945945945,-70.52996996996997,-69.82048048048048,-69.11099099099098,-68.4015015015015,-67.69201201201201,-66.98252252252253,-66.27303303303303,-65.56354354354355,-64.85405405405406,-64.14456456456456,-63.435075075075076,-62.725585585585584,-62.0160960960961,-61.30660660660661,-60.597117117117115,-59.88762762762763,-59.17813813813814,-58.468648648648646,-57.75915915915916,-57.04966966966967,-56.34018018018018,-55.63069069069069,-54.9212012012012,-54.211711711711715,-53.50222222222222,-52.79273273273273,-52.083243243243246,-51.37375375375375,-50.66426426426426,-49.954774774774776,-49.245285285285284,-48.5357957957958,-47.82630630630631,-47.116816816816815,-46.40732732732733,-45.69783783783784,-44.988348348348346,-44.27885885885886,-43.56936936936937,-42.85987987987988,-42.15039039039039,-41.4409009009009,-40.731411411411415,-40.02192192192192,-39.31243243243243,-38.602942942942946,-37.89345345345345,-37.18396396396396,-36.474474474474476,-35.764984984984984,-35.05549549549549,-34.34600600600601,-33.636516516516515,-32.92702702702703,-32.21753753753754,-31.50804804804805,-30.798558558558558,-30.08906906906907,-29.37957957957958,-28.67009009009009,-27.9606006006006,-27.25111111111111,-26.541621621621623,-25.83213213213213,-25.122642642642642,-24.413153153153154,-23.703663663663665,-22.994174174174173,-22.284684684684684,-21.575195195195196,-20.865705705705707,-20.156216216216215,-19.446726726726727,-18.737237237237238,-18.027747747747746,-17.318258258258258,-16.60876876876877,-15.899279279279279,-15.18978978978979,-14.4803003003003,-13.770810810810811,-13.061321321321321,-12.351831831831833,-11.642342342342342,-10.932852852852854,-10.223363363363363,-9.513873873873873,-8.804384384384385,-8.094894894894894,-7.385405405405406,-6.675915915915916,-5.966426426426427,-5.2569369369369365,-4.547447447447447,-3.837957957957958,-3.1284684684684683,-2.418978978978979,-1.7094894894894894,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..8fb047a6ccfe --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[2.718281828459045,5.526139605036564,11.234382915941184,22.838974134305474,46.430564403080524,94.3911621472732,191.89281039456188,390.1090933033613,793.0735099718115,1612.2812900695583,3277.692326907691,6663.394939853256,13546.369730911094,27539.1350119472,55985.77126354929,113816.45003064431,231383.5105815943,470391.8366338771,956284.5658950494,1.9440817202804782e6,3.952227056588822e6,8.034692443164972e6,1.6334153309494097e7,3.320656841881039e7,6.7507397858952e7,1.3723937710785338e8,2.79001223959248e8,5.671964170282148e8,1.1530837425166144e9,2.3441652262587843e9,4.765578080224924e9,9.688196968507166e9,1.969565054239165e10,4.004033480625908e10,8.140012476087735e10,1.654826400215472e11,3.364184542584713e11,6.839229562141511e11,1.390383328012468e12,2.8265841660236807e12,5.746313183312399e12,1.168198548538573e13,2.3748929187687773e13,4.828046039497257e13,9.815191403067452e13,1.9953824278129953e14,4.056518991550728e14,8.246713060837892e14,1.6765181292001192e15,3.408282811347276e15,6.928879276520302e15,1.4086086949343948e16,2.86363548311272e16,5.821636775090438e16,1.1835114818540298e17,2.4060233947841443e17,4.891332838765486e17,9.943850500976485e17,2.0215382196466348e18,4.10969249094277e18,8.354812293909443e18,1.698494196835819e19,3.4529591272660636e19,7.019704133686012e19,1.4270729628793422e20,2.9011724747889538e20,5.8979477205502604e20,1.1990251395472278e21,2.437561934055444e21,4.955449211515154e21,1.0074196082907584e22,2.0480368657807375e22,4.163562997064869e22,8.46432850900819e22,1.7207583302790377e23,3.498221067475627e23,7.111719537598168e23,1.4457792634000888e24,2.939201507352518e24,5.975258962081781e24,1.2147421527453798e25,2.4695138855410728e25,5.0204060319280825e25,1.020625025556297e26,2.0748828604042807e26,4.218139646392603e26,8.575280280161115e26,1.743314305542441e27,3.544076308432735e27,7.204941094133833e27,1.464730769098349e28,2.97772903055404e28,6.053583611725806e28,1.2306651870649697e29,2.5018846683144406e29,5.0862143167265915e29,1.0340035415422764e30,2.102080756616804e30,4.273431695164021e30,8.687686424866277e30,1.7661659481352722e31,3.5905326272184534e31,7.2993846137344085e31,1.4839306941627655e32,3.0167615786884446e32,6.1329349533978755e32,1.2467969430637725e33,2.534679772482983e33,5.152885227041958e33,1.0475574252544317e34,2.1296351672005585e34,4.32944852094939e34,8.801566007284992e34,1.7893171337121245e35,3.637597902857043e35,7.395066114087081e35,1.503382294914111e36,3.056305771703304e36,6.213326445141211e36,1.2631401566989335e37,2.567904760119395e37,5.220430070307349e37,1.0612889754409135e38,2.1575507654029278e38,4.386199624241668e38,8.916938341474034e38,1.8127717887303275e39,3.6852801176522753e39,7.492001822841556e39,1.5230888703575218e40,3.0963683163215003e40,6.294771721409309e40,1.2796975997909523e41,2.6015652662048933e41,5.288860302175652e41,1.0752005209822831e42,2.1858322857289538e42,4.4436946300677905e42,9.033822994662357e42,1.83653389111583e43,3.733587358541237e43,7.590208180361837e43,1.5430537627420194e44,3.1369560071787094e44,6.3772845953779945e44,1.2964720804937949e45,2.6356669995849262e45,5.358187528462056e45,1.0892944212864251e46,2.2144845247443276e46,4.501943289621154e46,9.15223979056915e46,1.8606074709378684e47,3.78252781846593e47,7.689701842515174e47,1.5632803581273612e48,3.17807572797578e48,6.460879061288674e48,1.313466443771158e49,2.6702157439374034e49,5.428423507112857e49,1.1035730666887203e50,2.24351234188889e50,4.5609554819151595e50,9.272208812766088e50,1.8849966110924724e51,3.832109797762591e51,7.790499683496476e51,1.5837720869583161e52,3.219734452646256e52,6.54556929682142e52,1.330683571878978e53,2.705217358753646e53,5.499580150199315e53,1.1180388788574473e54,2.2729206603008283e54,4.6207412154590904e54,9.393750408083512e54,1.9097054479949248e55,3.882341705569751e55,7.892618798690413e55,1.6045324246464722e56,3.261939246538981e56,6.631369665499698e56,1.348126384854262e57,2.74067778033201e57,5.571669525938102e57,1.1326943112044998e58,2.3027144676515153e58,4.681310629955237e58,9.516885190061268e58,1.9347381722813283e59,3.933232061254162e59,7.996076507570235e59,1.6255648921596907e60,3.3046972676166096e60,6.718294719125951e60,1.365797841010349e61,2.7766030227848744e61,5.644703860737691e61,1.1475418493015033e62,2.3328988169915814e62,4.742673998018997e62,9.641634042444913e62,1.9600990295192038e63,3.984789495856024e63,8.10089035663641e63,1.6468730566191503e64,3.3480157676696593e64,6.806359200250649e64,1.3837009374385438e65,2.8129991790586834e65,5.7186955412728235e65,1.1625840113012882e66,2.3634788276079526e66,4.804841726920517e66,9.768018122726928e66,1.985792320927844e67,4.03702275355231e67,8.207078122390827e67,1.6684605319045866e68,3.391902093546041e68,6.895578044671195e68,1.4018387105166406e69,2.8498724219670017e69,5.793657116584114e69,1.1778233483651491e70,2.394459685891821e70,4.867824360350101e70,9.896058865736563e70,2.0118224041073873e71,4.0899406931400593e71,8.314657814353527e71,1.6903309792668612e72,3.4363636883973177e72,6.9859663839665905e72,1.4202142364236007e73,2.887229005237616e73,5.869601300207659e73,1.1932624450952784e74,2.42584664621842e74,4.931632580206846e74,1.002577798727311e75,2.0381936937783186e75,4.143552289539186e75,8.42364767811528e75,1.712488107949287e76,3.4814080929413676e76,7.077539548062208e76,1.438830631661591e77,2.925075264573424e77,5.946540972329955e77,1.2089039199733817e78,2.457645031838381e78,4.99627720840933e78,1.0157197487791164e79,2.064910662529813e79,4.197866635313822e79,8.534066198433931e79,1.7349356758163888e80,3.5270429467406087e80,7.170313067831331e80,1.4576910535842666e81,2.963417618726397e81,6.024489181973714e81,1.22475042580454e82,2.489860235780077e82,5.0617692087321384e82,1.0290339656129946e83,2.0919778415784573e83,4.2528929422153574e83,8.645932102367514e83,1.7576774899913759e84,3.573275989498466e84,7.2643026777276e84,1.4767987009323769e85,3.0022625705868714e85,6.1034591492096444e85,1.2408046501672253e86,2.522497721764841e86,5.128119688664192e86,1.0425227073294325e87,2.1193998215369277e87,4.308640542743812e87,8.75926436245232e87,1.780717407501989e88,3.620115062371228e88,7.359524318455214e88,1.4961568143764023e89,3.041616708285768e89,6.183464267399944e89,1.257069315869224e90,2.5555630251330543e90,5.195339901293731e90,1.0561882616285486e91,2.1471812531921466e91,4.365118891731594e91,8.874082199918935e91,1.8040593359343038e92,3.667568109298722e92,7.455994139671046e92,1.515768677065881e93,3.081486706312625e93,6.26451810546862e93,1.2735471814091809e94,2.589061753783512e94,5.263441247215839e94,1.0700329461978809e95,2.175326848294537e95,4.422337567946199e95,8.990405087952898e95,1.8277072340958613e96,3.7156431783507973e96,7.553728502724248e96,1.5356376151865715e97,3.1218793266469087e97,6.346634410203303e97,1.2902410414447245e98,2.622999589123952e98,5.3324352764664166e98,1.084059109105707e99,2.203841380356653e99,4.480306275715133e99,9.108252754998148e99,1.8516651126866795e100,3.764348423093105e100,7.652743983431797e100,1.5557669985242334e101,3.1628014199055456e101,6.429827108587249e101,1.3071537272661575e102,2.657382287035208e102,5.402333690481535e102,1.098269129199036e103,2.232729685463264e103,4.539034846572159e103,9.227645188101187e103,1.8759370349798817e104,3.813692103969224e104,7.753057374888264e104,1.5761602410364925e105,3.2042599265041777e105,6.514110310160114e105,1.3242881072769356e106,2.6922156788468976e106,5.47314834408095e106,1.1126654165073082e107,2.2619966630911242e107,4.5985332409238474e107,9.348602636302962e107,1.9005271175104678e108,3.863682589701943e108,7.854685690315661e108,1.5968208014314984e109,3.246261877834521e109,6.599498309412389e109,1.3416470874798563e110,2.7275056723266345e110,5.5448912474799075e110,1.1272504126508899e111,2.2916472769401742e111,4.658811549739753e111,9.471145614071031e111,1.9254395307736332e112,3.9143283587129365e112,7.957646165947374e112,1.617752183754927e113,3.288814397457082e113,6.686005588208288e113,1.359233611970218e114,2.763258252682228e114,5.617574568325011e114,1.1420265912554561e115,2.3216865557751957e115,4.719879996263479e115,9.59529490478094e115,1.9506784999322564e116,3.965638000560055e116,8.061956263951853e116,1.6389579379836778e117,3.33192470230914e117,6.77364681824337e117,1.3770506634348756e118,2.7994794835763174e118,5.691210633758149e118,1.1569964583711044e119,2.3521195942792175e119,4.781748937746276e119,9.721071564239238e119,1.9762483055331612e120,4.01762021739433e120,8.167633675395823e120,1.660441660628777e121,3.3756001039285545e121,6.862436863531553e121,1.3951012636582593e122,2.8361755081549135e122,5.765811932508329e122,1.1721625528979636e123,2.382951553916794e123,4.8444288672040274e123,9.84849692425562e123,2.0021532842332052e124,4.0702838254366636e124,8.27469632324196e124,1.6822069953445675e125,3.419848009694084e125,6.95239078292682e125,1.4133884740347517e126,2.873352550089855e126,5.841391117007843e126,1.1875274470162422e127,2.414187663809912e127,4.907930415196749e127,9.977592596259984e127,2.028397829535178e128,4.123637756471705e128,8.383162365390457e128,1.7042576335470887e129,3.464675924081397e129,7.043523832676614e129,1.4319153960882236e130,2.911016914633378e130,5.917961005539414e130,1.203093746622763e131,2.445833221624588e131,4.972264351631255e131,1.010838047497001e132,2.0549863925322652e132,4.177691059363594e132,8.493050197758171e132,1.7265973150399536e133,3.5100914499366185e133,7.135851469010914e133,1.4506851719975754e134,2.949174989688138e134,5.99553458440986e134,1.2188640917727925e135,2.477893594469907e135,5.037441587588865e135,1.0240882742101137e136,2.0819234826634065e136,4.232452901590427e136,8.604378457398081e136,1.7492298286490129e137,3.5561022897646037e137,7.229389350761227e137,1.4697009851299708e138,2.987833246890437e138,6.074125010152243e138,1.2348411571280708e139,2.5103742198074616e139,5.10347317717425e139,1.0375121870130836e140,2.1092136684779894e140,4.287932570798826e140,8.71716602566211e140,1.7721590128643576e141,3.602716247036072e141,7.324153342017929e141,1.4889660605805753e142,3.02699824270765e142,6.153745611758598e142,1.2510276524100243e143,2.5432806063741e143,5.170370319391335e143,1.0511120626108816e144,2.1368615784105536e144,4.3441394763801005e144,8.83143203140049e144,1.7953887564917197e145,3.649941227510883e145,7.420159514820007e145,1.5084836657198705e146,3.0666766195508886e146,6.234409892938482e146,1.2674263228596097e147,2.576618335116071e147,5.238144360042081e147,1.0648902075520698e148,2.164871901566265e148,4.401083151064634e148,8.947195854207969e148,1.818922999311917e149,3.6977852405786503e149,7.517424151882569e149,1.5282571107472992e150,3.1068751069005364e150,6.316131534410581e150,1.2840399497028416e151,2.610393060135414e151,5.306806793651927e151,1.0788489586196393e152,2.193249388515464e152,4.458773252539607e152,9.06447712771012e152,1.84276573274894e153,3.746256400617978e153,7.615963749355889e153,1.5482897492530123e154,3.147600522448253e154,6.398924396222265e154,1.3008713506224158e155,2.644610509649484e155,5.376369265417497e155,1.0929906832275646e156,2.2219988520998485e156,4.5172195650864526e156,9.183295742892697e156,1.8669210005473165e157,3.7953629283714105e157,7.71579501962484e157,1.5685849787865557e158,3.1888597732529095e158,6.482802520101712e158,1.3179233802358847e159,2.6792764869615816e159,5.44684357318281e159,1.1073177798222621e160,2.2511251682484865e160,4.5764320012412964e160,9.303671851477243e160,1.891392899457311e161,3.8451131523405107e161,7.816934894142907e161,1.5891462414330084e162,3.230659856912751e162,6.5677801318372256e162,1.3351989305793623e163,2.7143968714457814e163,5.5182416694399125e163,1.1218326782893032e164,2.2806332768052872e164,4.636420603474603e164,9.425625869335721e164,1.9161855799301493e165,3.895515510198172e165,7.91940052630332e165,1.6099770243971216e166,3.273007862751117e166,6.653871643691381e166,1.3527009315983085e167,2.7499776195437783e167,5.590575663355707e167,1.1365378403657788e168,2.31052818236604e168,4.697195545895404e168,9.549178479955125e168,1.9413032468217243e169,3.946578550219425e169,8.023209294350087e169,1.6310808605942129e170,3.3159109730195114e170,6.741091656844995e170,1.370432351644298e171,2.786024765775726e171,5.663857822826948e171,1.151435760057432e172,2.340814955127704e172,4.758767135976575e172,9.67435063794436e172,1.9667501601061845e173,3.9983109327321337e173,8.128378804322657e173,1.6524613292497084e174,3.359376464115538e174,6.829454963873107e174,1.388396197978767e175,2.8225444237627626e175,5.738100576558985e175,1.1665289640618956e176,2.3714987317481904e176,4.821145816302722e176,9.801163572590342e176,1.992530635597769e177,4.050721431584448e177,8.234926893043718e177,1.674122056506094e178,3.4034117078167914e178,6.918976551255361e178,1.4065955172825814e179,2.8595427872645075e179,5.813316516174944e179,1.1818200121970919e180,2.402584716217406e180,4.88434216634234e180,9.929638791455218e180,2.0186490456832094e181,4.103818935633747e181,8.342871631143399e181,1.6960667160378143e182,3.4480241725318854e182,7.009671601915408e182,1.4250333961730644e183,2.8970261312293706e183,5.889518398350624e183,1.197311497835647e184,2.434078180740401e184,4.948366904240469e184,1.0059798084026256e185,2.0451098200631826e185,4.157612450253738e185,8.452231326125965e185,1.7182990296747147e186,3.493221424565946e186,7.101555497797475e186,1.443712961727413e187,2.935000812858621e187,5.966719146979375e187,1.2130060483443286e188,2.4659844666307196e188,5.013230888637577e188,1.01916635254108e189,2.0719174465034718e189,4.2121110988627123e189,8.56302452547195e189,1.740822768032692e190,3.5390111294046312e190,7.194643822474773e190,1.462637382012968e191,2.97347327268524e191,6.044931855362001e191,1.2289063255299147e192,2.4983089852168365e192,5.078945120510643e192,1.0325257480079645e193,2.099076471596565e193,4.267324124469481e193,8.675270019785699e193,1.7636417511535762e194,3.585401053013807e194,7.28895236379207e194,1.4818098666248542e195,3.0124500356652437e195,6.124169788428722e195,1.2450150260905728e196,2.5310572187596405e196,5.145520745040073e196,1.046060260566241e197,2.1265915015320573e197,4.323260891241928e197,8.788986845981806e197,1.7867598491528128e198,3.63239906315747e198,7.384497116544967e198,1.5012336672298316e199,3.051937712284981e199,6.2044463849885845e199,1.2613348820731488e200,2.5642347213828038e200,5.2129690534982155e200,1.0597721856786773e201,2.1544672028783325e201,4.379930886094945e201,8.904194290513277e201,1.8101809828762463e202,3.6800131307309177e202,7.481294285190162e202,1.5209120781181115e203,3.0919429996821137e203,6.285775260008332e203,1.2778686613368105e204,2.597847120013909e204,5.28130148516551e204,1.0736638488973937e205,2.182708303373773e205,4.437343720299169e205,9.020911892644546e205,1.8339091245644888e206,3.728251331113418e206,7.579360286595374e206,1.5408484367619003e207,3.132472682781276e207,6.368170206922942e207,1.2946191680220515e208,2.6319001153393474e208,5.3505296292703145e208,1.0877376062581575e209,2.2113195927290856e209,4.495509131112067e209,9.139159447762329e209,1.8579482985270195e210,3.7771218455376025e210,7.678711752822814e210,1.5610461243817867e211,3.1735336354455126e211,6.451645199972873e211,1.3115892430265582e212,2.66639948277102e212,5.420665226954133e212,1.1019958446802146e213,2.2403059234388968e213,4.5544369834278736e213,9.258957010734941e213,1.8823025818246093e214,3.8266329624767894e214,7.77936553395173e214,1.581508566519676e215,3.21513282164103e215,6.536214396575515e215,1.3287817644869588e216,2.7013510734256957e216,5.4917201732641563e216,1.1164409823707446e217,2.2696722116052337e217,4.61413727145169e217,9.380324899312588e217,1.9069761049606857e218,3.876793079051584e218,7.881338700933595e218,1.6022392336201122e219,3.2572772966189957e219,6.621892139725574e219,1.3461996482668792e220,2.7367608151179786e220,5.56370651916883e220,1.1310754692352356e221,2.2994234377711743e221,4.674620120393989e221,9.503283697575388e221,1.9319730525823e222,3.9276107024527366e222,7.984648548488625e222,1.6232416416187814e223,3.299974208111748e223,6.708692960429533e223,1.3638458484517823e224,2.7726347133645956e224,5.6366364736029274e224,1.1459017872928624e225,2.3295646477655507e225,4.735895788188915e225,9.627854259421822e225,1.9572976641892008e226,3.9790944513846064e226,8.089312598040814e226,1.644519352538723e227,3.3432307975459984e227,6.796631580165971e227,1.3817233578494463e228,2.8089788524043332e228,5.7105224055375696e228,1.1609224510977665e229,2.360100953558593e229,4.797974667232731e229,9.754057712104942e229,1.982954234853173e230,4.031253057527815e230,8.195348600684575e230,1.666075975094919e231,3.387054401268909e231,6.885722913387253e231,1.3998352084982448e232,2.8457993962280395e232,5.785376846079627e232,1.1761400081648057e233,2.3910375341293196e233,4.860867286146062e233,9.881915459819952e233,2.0089471159469417e234,4.084095367017649e234,8.30277454020221e234,1.6879151653053035e235,3.431452451794797e235,6.975982070046793e235,1.4181844721804396e236,2.883102589626424e236,5.861212490593431e236,1.1915570394024665e237,2.4223796363437775e237,4.9245843115617444e237,1.0011449187331718e238,2.0352807158809237e238,4.1376303419477996e238,8.411608636106561e238,1.7100406271120468e239,3.476432479064578e239,7.0674243581593165e239,1.4367742609443464e240,2.9208947592466093e240,5.93804220085815e240,1.207176159550201e241,2.4541325758439465e241,4.9891365499325606e241,1.0142680863649048e242,2.061959500852605e242,4.191867061886642e242,8.521869346737586e242,1.7324561130091922e243,3.5220021117216505e243,7.160065286402646e243,1.4556077276308583e244,2.959182314667405e244,6.015879007247236e244,1.2230000176214733e245,2.4863017379511993e245,5.054534949362305e245,1.027563274575745e246,2.08898799560217e246,4.2468147254203966e246,8.633575372390155e246,1.755165424678485e247,3.568169078408484e247,7.253920566741593e247,1.4746880664093015e248,2.9979717494854137e248,6.094736110936308e248,1.239031297353991e249,2.5188925785774396e249,5.1207906014659684e249,1.0410327382390596e250,2.1163707841815245e250,4.3024826517118425e250,8.746745658482649e250,1.7781724136355142e251,3.6149412090742156e251,7.349006117098361e251,1.49401851331869e252,3.0372696424153212e252,6.174626886146859e252,1.255272717663765e253,2.551910625152383e253,5.187914743249224e253,1.0546787617851016e254,2.1441125107310678e254,4.3588802820793664e254,8.861399398776967e254,1.8014809818813485e255,3.6623264363054237e255,7.445338064049854e255,1.5136023468160453e256,3.0770826584080275e256,6.255564882409024e256,1.271727033107215e257,2.5853614775601904e257,5.255918759012445e257,1.0685036595892776e258,2.1722178802666036e258,4.416017181601132e258,8.977556038625909e258,1.8250950825657157e259,3.7103327966703164e259,7.542932745560185e259,1.5334428883336117e260,3.1174175497782846e260,6.337563826864452e260,1.2883970343479316e261,2.6192508090883164e261,5.324814182285606e261,1.0825097763637138e262,2.200691659478766e262,4.473903040735897e262,9.095235278278092e262,1.8490187206568717e263,3.758968432080457e263,7.641806713757516e263,1.5535435028408049e264,3.158281157352315e264,6.420637626592389e264,1.3052855486295308e265,2.6535843673917588e265,5.3946126977796324e265,1.0966994875557626e266,2.229538677540741e266,4.5325476769649754e266,9.214457076216174e266,1.8732559536202045e267,3.8082415911745856e267,7.741976737734506e267,1.5739075994161213e268,3.1996804116269987e268,6.504800370966105e268,1.3223954402561795e269,2.688367975465496e269,5.465326143372324e269,1.1110751997505245e270,2.258763826926529e270,4.591961036460845e270,9.335241652538658e270,1.897810892107638e271,3.8581606307141965e271,7.84345980639836e271,1.5945386318248098e272,3.2416223339441866e272,6.590066334047568e272,1.3397296110772037e273,2.723607532634162e273,5.536966512114298e273,1.1256393510786237e274,2.288372064242482e274,4.652153195769923e274,9.457609492395469e274,1.9226877006541878e275,3.908734017003849e275,7.946273131349635e275,1.6154400991040821e276,3.2841140376840634e276,6.676449977002456e276,1.3572910009802857e277,2.7593090155516903e277,5.60954595426111e277,1.1403944116305984e278,2.318368411065906e278,4.7131343635251814e278,9.581581349459197e278,1.9478905983836035e279,3.959970327325792e279,8.050434149798584e279,1.6366155461578195e280,3.327162729468656e280,6.7639659505579644e280,1.3750825883896315e281,2.795478479214012e281,5.6830767793383383e281,1.1553428838748138e282,2.348757954798527e282,4.774914882175999e282,9.70717824944162e282,1.9734238597254636e283,4.011878251393313e283,8.155960527527913e283,1.6580685643563303e284,3.3707757103866656e284,6.852629097485392e284,1.3931073907706383e285,2.832122057988173e285,5.757571458224227e285,1.1704873030827786e286,2.3795458495285536e286,4.837505229740609e286,9.83442149366729e286,1.9992918151383613e287,4.0644665928271963e287,8.262870161886266e287,1.679802792146737e288,3.4149603772306433e288,6.94245445511512e288,1.4113684651427516e289,2.8692459666502044e289,5.833042625269221e289,1.1858302377587515e290,2.4107373169039982e290,4.900916021586968e290,9.963332662677489e290,2.0254988518459067e291,4.117744270647519e291,8.371181184820777e291,1.7018219156695166e292,3.4597242237503184e292,7.033457257892398e292,1.4298689085966795e293,2.906856501441382e293,5.909503080436877e293,1.2013742900749513e294,2.442337647020157e294,4.9651580122287575e294,1.0093933619898035e295,2.052049414580146e295,4.17172032078489e295,8.480911965958825e295,1.724129669383083e296,3.5050748419258515e296,7.125652939954838e296,1.4486118588207703e297,2.94496004113513e297,5.986965791472706e297,1.2171220963138285e298,2.474352199314639e298,5.030242097153217e298,1.0226246515344071e299,2.0789480063346853e299,4.226403897616227e299,8.592081115715967e299,1.7467298366983097e300,3.5510199232543085e300,7.219057137755598e300,1.4676004946327002e301,2.9835630481178506e301,6.065443896108204e301,1.2330763273140956e302,2.5067864034782503e302,5.096179314667393e302,1.036029378937319e303,2.106199189130029e303,4.2818042755135755e303,8.704707488458952e303,1.7696262506196317e304,3.5975672600529185e304,7.313685692712992e304,1.4868380365180948e305,3.0226720694872875e305,6.144950704283608e305,1.2492396889246612e306,2.539645760375062e306,5.162980847768492e306,1.0496098176499464e307,2.1338075847854238e307,4.3379308504203717e307,8.818810185700627e307,1.7928227943945155e308],"x":[1.0,1.7094894894894894,2.418978978978979,3.1284684684684683,3.837957957957958,4.547447447447447,5.2569369369369365,5.966426426426427,6.675915915915916,7.385405405405406,8.094894894894894,8.804384384384385,9.513873873873873,10.223363363363363,10.932852852852854,11.642342342342342,12.351831831831833,13.061321321321321,13.770810810810811,14.4803003003003,15.18978978978979,15.899279279279279,16.60876876876877,17.318258258258258,18.027747747747746,18.737237237237238,19.446726726726727,20.156216216216215,20.865705705705707,21.575195195195196,22.284684684684684,22.994174174174173,23.703663663663665,24.413153153153154,25.122642642642642,25.83213213213213,26.541621621621623,27.25111111111111,27.9606006006006,28.67009009009009,29.37957957957958,30.08906906906907,30.798558558558558,31.50804804804805,32.21753753753754,32.92702702702703,33.636516516516515,34.34600600600601,35.05549549549549,35.764984984984984,36.474474474474476,37.18396396396396,37.89345345345345,38.602942942942946,39.31243243243243,40.02192192192192,40.731411411411415,41.4409009009009,42.15039039039039,42.85987987987988,43.56936936936937,44.27885885885886,44.988348348348346,45.69783783783784,46.40732732732733,47.116816816816815,47.82630630630631,48.5357957957958,49.245285285285284,49.954774774774776,50.66426426426426,51.37375375375375,52.083243243243246,52.79273273273273,53.50222222222222,54.211711711711715,54.9212012012012,55.63069069069069,56.34018018018018,57.04966966966967,57.75915915915916,58.468648648648646,59.17813813813814,59.88762762762763,60.597117117117115,61.30660660660661,62.0160960960961,62.725585585585584,63.435075075075076,64.14456456456456,64.85405405405406,65.56354354354355,66.27303303303303,66.98252252252253,67.69201201201201,68.4015015015015,69.11099099099098,69.82048048048048,70.52996996996997,71.23945945945945,71.94894894894895,72.65843843843844,73.36792792792792,74.07741741741742,74.7869069069069,75.49639639639639,76.20588588588589,76.91537537537538,77.62486486486486,78.33435435435436,79.04384384384385,79.75333333333333,80.46282282282283,81.17231231231231,81.8818018018018,82.59129129129128,83.30078078078078,84.01027027027027,84.71975975975975,85.42924924924925,86.13873873873874,86.84822822822822,87.55771771771772,88.2672072072072,88.97669669669669,89.68618618618619,90.39567567567568,91.10516516516516,91.81465465465466,92.52414414414415,93.23363363363363,93.94312312312313,94.65261261261261,95.3621021021021,96.0715915915916,96.78108108108108,97.49057057057057,98.20006006006005,98.90954954954955,99.61903903903904,100.32852852852852,101.03801801801802,101.7475075075075,102.45699699699699,103.16648648648649,103.87597597597598,104.58546546546546,105.29495495495496,106.00444444444445,106.71393393393393,107.42342342342343,108.13291291291291,108.8424024024024,109.5518918918919,110.26138138138138,110.97087087087087,111.68036036036035,112.38984984984985,113.09933933933934,113.80882882882882,114.51831831831832,115.2278078078078,115.93729729729729,116.64678678678679,117.35627627627628,118.06576576576576,118.77525525525526,119.48474474474475,120.19423423423423,120.90372372372373,121.61321321321321,122.3227027027027,123.0321921921922,123.74168168168168,124.45117117117117,125.16066066066067,125.87015015015015,126.57963963963964,127.28912912912912,127.99861861861862,128.70810810810812,129.4175975975976,130.1270870870871,130.8365765765766,131.54606606606606,132.25555555555556,132.96504504504506,133.67453453453453,134.38402402402403,135.0935135135135,135.803003003003,136.5124924924925,137.22198198198197,137.93147147147147,138.64096096096097,139.35045045045044,140.05993993993994,140.76942942942944,141.4789189189189,142.1884084084084,142.8978978978979,143.60738738738738,144.31687687687688,145.02636636636637,145.73585585585585,146.44534534534534,147.15483483483484,147.86432432432431,148.5738138138138,149.2833033033033,149.99279279279278,150.70228228228228,151.41177177177178,152.12126126126125,152.83075075075075,153.54024024024025,154.24972972972972,154.95921921921922,155.66870870870872,156.3781981981982,157.0876876876877,157.7971771771772,158.50666666666666,159.21615615615616,159.92564564564566,160.63513513513513,161.34462462462463,162.05411411411413,162.7636036036036,163.4730930930931,164.18258258258257,164.89207207207207,165.60156156156157,166.31105105105104,167.02054054054054,167.73003003003004,168.4395195195195,169.149009009009,169.8584984984985,170.56798798798798,171.27747747747748,171.98696696696697,172.69645645645645,173.40594594594594,174.11543543543544,174.82492492492491,175.5344144144144,176.2439039039039,176.95339339339338,177.66288288288288,178.37237237237238,179.08186186186185,179.79135135135135,180.50084084084085,181.21033033033032,181.91981981981982,182.62930930930932,183.3387987987988,184.0482882882883,184.7577777777778,185.46726726726726,186.17675675675676,186.88624624624626,187.59573573573573,188.30522522522523,189.01471471471473,189.7242042042042,190.4336936936937,191.1431831831832,191.85267267267267,192.56216216216217,193.27165165165164,193.98114114114114,194.69063063063064,195.4001201201201,196.1096096096096,196.8190990990991,197.52858858858858,198.23807807807808,198.94756756756757,199.65705705705705,200.36654654654654,201.07603603603604,201.78552552552551,202.495015015015,203.2045045045045,203.91399399399398,204.62348348348348,205.33297297297298,206.04246246246245,206.75195195195195,207.46144144144145,208.17093093093092,208.88042042042042,209.58990990990992,210.2993993993994,211.0088888888889,211.7183783783784,212.42786786786786,213.13735735735736,213.84684684684686,214.55633633633633,215.26582582582583,215.97531531531533,216.6848048048048,217.3942942942943,218.1037837837838,218.81327327327327,219.52276276276277,220.23225225225227,220.94174174174174,221.65123123123124,222.3607207207207,223.0702102102102,223.7796996996997,224.48918918918918,225.19867867867868,225.90816816816817,226.61765765765765,227.32714714714714,228.03663663663664,228.74612612612611,229.4556156156156,230.1651051051051,230.87459459459458,231.58408408408408,232.29357357357358,233.00306306306305,233.71255255255255,234.42204204204205,235.13153153153152,235.84102102102102,236.55051051051052,237.26,237.9694894894895,238.678978978979,239.38846846846846,240.09795795795796,240.80744744744746,241.51693693693693,242.22642642642643,242.93591591591593,243.6454054054054,244.3548948948949,245.0643843843844,245.77387387387387,246.48336336336337,247.19285285285287,247.90234234234234,248.61183183183184,249.32132132132134,250.0308108108108,250.7403003003003,251.44978978978978,252.15927927927927,252.86876876876877,253.57825825825824,254.28774774774774,254.99723723723724,255.7067267267267,256.41621621621624,257.1257057057057,257.8351951951952,258.5446846846847,259.2541741741742,259.9636636636637,260.6731531531532,261.3826426426426,262.0921321321321,262.8016216216216,263.5111111111111,264.2206006006006,264.9300900900901,265.63957957957956,266.34906906906906,267.05855855855856,267.76804804804806,268.47753753753756,269.187027027027,269.8965165165165,270.606006006006,271.3154954954955,272.024984984985,272.7344744744745,273.44396396396394,274.15345345345344,274.86294294294294,275.57243243243244,276.28192192192193,276.99141141141143,277.7009009009009,278.4103903903904,279.1198798798799,279.8293693693694,280.5388588588589,281.2483483483484,281.9578378378378,282.6673273273273,283.3768168168168,284.0863063063063,284.7957957957958,285.5052852852853,286.21477477477475,286.92426426426425,287.63375375375375,288.34324324324325,289.05273273273275,289.76222222222225,290.4717117117117,291.1812012012012,291.8906906906907,292.6001801801802,293.3096696696697,294.0191591591592,294.72864864864863,295.43813813813813,296.1476276276276,296.8571171171171,297.5666066066066,298.27609609609607,298.98558558558557,299.69507507507507,300.40456456456457,301.11405405405407,301.82354354354356,302.533033033033,303.2425225225225,303.952012012012,304.6615015015015,305.370990990991,306.0804804804805,306.78996996996995,307.49945945945944,308.20894894894894,308.91843843843844,309.62792792792794,310.33741741741744,311.0469069069069,311.7563963963964,312.4658858858859,313.1753753753754,313.8848648648649,314.5943543543544,315.3038438438438,316.0133333333333,316.7228228228228,317.4323123123123,318.1418018018018,318.8512912912913,319.56078078078076,320.27027027027026,320.97975975975976,321.68924924924926,322.39873873873876,323.10822822822826,323.8177177177177,324.5272072072072,325.2366966966967,325.9461861861862,326.6556756756757,327.36516516516514,328.07465465465464,328.78414414414414,329.49363363363364,330.20312312312313,330.91261261261263,331.6221021021021,332.3315915915916,333.0410810810811,333.7505705705706,334.4600600600601,335.1695495495496,335.879039039039,336.5885285285285,337.298018018018,338.0075075075075,338.716996996997,339.4264864864865,340.13597597597595,340.84546546546545,341.55495495495495,342.26444444444445,342.97393393393395,343.68342342342345,344.3929129129129,345.1024024024024,345.8118918918919,346.5213813813814,347.2308708708709,347.9403603603604,348.64984984984983,349.35933933933933,350.0688288288288,350.7783183183183,351.4878078078078,352.1972972972973,352.90678678678677,353.61627627627627,354.32576576576577,355.03525525525527,355.74474474474476,356.4542342342342,357.1637237237237,357.8732132132132,358.5827027027027,359.2921921921922,360.0016816816817,360.71117117117115,361.42066066066064,362.13015015015014,362.83963963963964,363.54912912912914,364.25861861861864,364.9681081081081,365.6775975975976,366.3870870870871,367.0965765765766,367.8060660660661,368.5155555555556,369.225045045045,369.9345345345345,370.644024024024,371.3535135135135,372.063003003003,372.7724924924925,373.48198198198196,374.19147147147146,374.90096096096096,375.61045045045046,376.31993993993996,377.02942942942946,377.7389189189189,378.4484084084084,379.1578978978979,379.8673873873874,380.5768768768769,381.2863663663664,381.99585585585584,382.70534534534534,383.41483483483483,384.12432432432433,384.83381381381383,385.5433033033033,386.2527927927928,386.9622822822823,387.6717717717718,388.3812612612613,389.0907507507508,389.8002402402402,390.5097297297297,391.2192192192192,391.9287087087087,392.6381981981982,393.3476876876877,394.05717717717715,394.76666666666665,395.47615615615615,396.18564564564565,396.89513513513515,397.60462462462465,398.3141141141141,399.0236036036036,399.7330930930931,400.4425825825826,401.1520720720721,401.8615615615616,402.57105105105103,403.2805405405405,403.99003003003,404.6995195195195,405.409009009009,406.1184984984985,406.82798798798797,407.53747747747747,408.24696696696697,408.95645645645646,409.66594594594596,410.37543543543546,411.0849249249249,411.7944144144144,412.5039039039039,413.2133933933934,413.9228828828829,414.63237237237234,415.34186186186184,416.05135135135134,416.76084084084084,417.47033033033034,418.17981981981984,418.8893093093093,419.5987987987988,420.3082882882883,421.0177777777778,421.7272672672673,422.4367567567568,423.1462462462462,423.8557357357357,424.5652252252252,425.2747147147147,425.9842042042042,426.6936936936937,427.40318318318316,428.11267267267266,428.82216216216216,429.53165165165166,430.24114114114116,430.95063063063066,431.6601201201201,432.3696096096096,433.0790990990991,433.7885885885886,434.4980780780781,435.2075675675676,435.91705705705704,436.62654654654654,437.33603603603603,438.04552552552553,438.75501501501503,439.46450450450453,440.173993993994,440.8834834834835,441.592972972973,442.3024624624625,443.01195195195197,443.7214414414414,444.4309309309309,445.1404204204204,445.8499099099099,446.5593993993994,447.2688888888889,447.97837837837835,448.68786786786785,449.39735735735735,450.10684684684685,450.81633633633635,451.52582582582585,452.2353153153153,452.9448048048048,453.6542942942943,454.3637837837838,455.0732732732733,455.7827627627628,456.49225225225223,457.2017417417417,457.9112312312312,458.6207207207207,459.3302102102102,460.0396996996997,460.74918918918917,461.45867867867867,462.16816816816817,462.87765765765766,463.58714714714716,464.29663663663666,465.0061261261261,465.7156156156156,466.4251051051051,467.1345945945946,467.8440840840841,468.5535735735736,469.26306306306304,469.97255255255254,470.68204204204204,471.39153153153154,472.10102102102104,472.8105105105105,473.52,474.2294894894895,474.938978978979,475.6484684684685,476.357957957958,477.0674474474474,477.7769369369369,478.4864264264264,479.1959159159159,479.9054054054054,480.6148948948949,481.32438438438436,482.03387387387386,482.74336336336336,483.45285285285286,484.16234234234236,484.87183183183186,485.5813213213213,486.2908108108108,487.0003003003003,487.7097897897898,488.4192792792793,489.1287687687688,489.83825825825824,490.54774774774774,491.25723723723723,491.96672672672673,492.67621621621623,493.38570570570573,494.0951951951952,494.8046846846847,495.5141741741742,496.2236636636637,496.93315315315317,497.64264264264267,498.3521321321321,499.0616216216216,499.7711111111111,500.4806006006006,501.1900900900901,501.89957957957955,502.60906906906905,503.31855855855855,504.02804804804805,504.73753753753755,505.44702702702705,506.1565165165165,506.866006006006,507.5754954954955,508.284984984985,508.9944744744745,509.703963963964,510.4134534534534,511.1229429429429,511.8324324324324,512.5419219219219,513.2514114114114,513.9609009009009,514.6703903903904,515.3798798798799,516.0893693693694,516.7988588588588,517.5083483483484,518.2178378378378,518.9273273273274,519.6368168168168,520.3463063063064,521.0557957957958,521.7652852852852,522.4747747747748,523.1842642642642,523.8937537537538,524.6032432432432,525.3127327327327,526.0222222222222,526.7317117117117,527.4412012012012,528.1506906906907,528.8601801801802,529.5696696696697,530.2791591591591,530.9886486486487,531.6981381381381,532.4076276276277,533.1171171171171,533.8266066066066,534.5360960960961,535.2455855855856,535.9550750750751,536.6645645645646,537.374054054054,538.0835435435436,538.793033033033,539.5025225225226,540.212012012012,540.9215015015016,541.630990990991,542.3404804804804,543.04996996997,543.7594594594594,544.468948948949,545.1784384384384,545.8879279279279,546.5974174174174,547.3069069069069,548.0163963963964,548.7258858858859,549.4353753753754,550.1448648648649,550.8543543543543,551.5638438438439,552.2733333333333,552.9828228228229,553.6923123123123,554.4018018018018,555.1112912912913,555.8207807807808,556.5302702702703,557.2397597597597,557.9492492492493,558.6587387387387,559.3682282282282,560.0777177177177,560.7872072072072,561.4966966966967,562.2061861861862,562.9156756756756,563.6251651651652,564.3346546546546,565.0441441441442,565.7536336336336,566.4631231231231,567.1726126126126,567.8821021021021,568.5915915915916,569.3010810810811,570.0105705705706,570.7200600600601,571.4295495495495,572.1390390390391,572.8485285285285,573.5580180180181,574.2675075075075,574.976996996997,575.6864864864865,576.395975975976,577.1054654654655,577.8149549549549,578.5244444444445,579.2339339339339,579.9434234234234,580.6529129129129,581.3624024024024,582.0718918918919,582.7813813813814,583.4908708708708,584.2003603603604,584.9098498498498,585.6193393393394,586.3288288288288,587.0383183183184,587.7478078078078,588.4572972972973,589.1667867867868,589.8762762762763,590.5857657657658,591.2952552552553,592.0047447447447,592.7142342342343,593.4237237237237,594.1332132132133,594.8427027027027,595.5521921921921,596.2616816816817,596.9711711711711,597.6806606606607,598.3901501501501,599.0996396396397,599.8091291291291,600.5186186186186,601.2281081081081,601.9375975975976,602.6470870870871,603.3565765765766,604.066066066066,604.7755555555556,605.485045045045,606.1945345345346,606.904024024024,607.6135135135136,608.323003003003,609.0324924924925,609.741981981982,610.4514714714715,611.160960960961,611.8704504504504,612.5799399399399,613.2894294294294,613.9989189189189,614.7084084084084,615.4178978978979,616.1273873873874,616.8368768768769,617.5463663663663,618.2558558558559,618.9653453453453,619.6748348348349,620.3843243243243,621.0938138138138,621.8033033033033,622.5127927927928,623.2222822822823,623.9317717717718,624.6412612612612,625.3507507507508,626.0602402402402,626.7697297297298,627.4792192192192,628.1887087087088,628.8981981981982,629.6076876876876,630.3171771771772,631.0266666666666,631.7361561561562,632.4456456456456,633.1551351351351,633.8646246246246,634.5741141141141,635.2836036036036,635.9930930930931,636.7025825825826,637.4120720720721,638.1215615615615,638.8310510510511,639.5405405405405,640.2500300300301,640.9595195195195,641.669009009009,642.3784984984985,643.087987987988,643.7974774774775,644.506966966967,645.2164564564565,645.925945945946,646.6354354354354,647.344924924925,648.0544144144144,648.763903903904,649.4733933933934,650.1828828828828,650.8923723723724,651.6018618618618,652.3113513513514,653.0208408408408,653.7303303303303,654.4398198198198,655.1493093093093,655.8587987987988,656.5682882882883,657.2777777777778,657.9872672672673,658.6967567567567,659.4062462462463,660.1157357357357,660.8252252252253,661.5347147147147,662.2442042042042,662.9536936936937,663.6631831831832,664.3726726726727,665.0821621621621,665.7916516516517,666.5011411411411,667.2106306306306,667.9201201201201,668.6296096096096,669.3390990990991,670.0485885885886,670.758078078078,671.4675675675676,672.177057057057,672.8865465465466,673.596036036036,674.3055255255256,675.015015015015,675.7245045045045,676.433993993994,677.1434834834835,677.852972972973,678.5624624624625,679.2719519519519,679.9814414414415,680.6909309309309,681.4004204204205,682.1099099099099,682.8193993993993,683.5288888888889,684.2383783783783,684.9478678678679,685.6573573573573,686.3668468468469,687.0763363363363,687.7858258258258,688.4953153153153,689.2048048048048,689.9142942942943,690.6237837837838,691.3332732732732,692.0427627627628,692.7522522522522,693.4617417417418,694.1712312312312,694.8807207207208,695.5902102102102,696.2996996996997,697.0091891891892,697.7186786786787,698.4281681681682,699.1376576576577,699.8471471471471,700.5566366366367,701.2661261261261,701.9756156156157,702.6851051051051,703.3945945945947,704.1040840840841,704.8135735735735,705.5230630630631,706.2325525525525,706.9420420420421,707.6515315315315,708.361021021021,709.0705105105105,709.78]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..a257fd020a7f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl @@ -0,0 +1,80 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, filepath ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `filepath::AbstractString`: filepath of the output file + +# Examples + +``` julia +julia> x = range( -100, stop = 100, length = 2001 ); +julia> gen( x, \"./data.json\" ); +``` +""" +function gen( domain, filepath ) + x = collect( domain ); + y = exp.( x ); + data = Dict([ + ("x", x), + ("expected", y) + ]); + 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 ); + +# Medium negative values: +x = range( -709.78, stop = -1.0, length = 1000 ); +out = joinpath( dir, "./medium_negative.json" ); +gen( x, out ); + +# Medium positive values: +x = range( 1.0, stop = 709.78, length = 1000 ); +out = joinpath( dir, "./medium_positive.json" ); +gen( x, out ); + +# Small negative values: +x = range( -1.0, stop = -2.0^-54, length = 1000 ); +out = joinpath( dir, "./small_negative.json" ); +gen( x, out ); + +# Small positive values: +x = range( 2.0^-54, stop = 1.0, length = 1000 ); +out = joinpath( dir, "./small_positive.json" ); +gen( x, out ); + +# Tiny values: +x = range( -2.0^-54, stop = 2.0^-54, length = 1000 ); +out = joinpath( dir, "./tiny.json" ); +gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json new file mode 100644 index 000000000000..0007e456f3ce --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json @@ -0,0 +1 @@ +{"expected":[0.36787944117144233,0.3682478732299681,0.36861667427399997,0.3689858446730776,0.36935538479711094,0.3697252950163802,0.3700955757015367,0.3704662272236028,0.3708372499539725,0.3712086442644116,0.3715804105270584,0.37195254911442394,0.3723250603993921,0.37269794475522044,0.3730712025555402,0.3734448341743568,0.37381883998605037,0.37419322036537583,0.3745679756874635,0.3749431063278193,0.37531861266232536,0.3756944950672402,0.37607075391919903,0.37644738959521457,0.3768244024726768,0.37720179292935374,0.377579561343392,0.37795770809331647,0.37833623355803153,0.3787151381168207,0.3790944221493477,0.3794740860356562,0.3798541301561706,0.3802345548916962,0.38061536062341994,0.3809965477329102,0.3813781166021177,0.3817600676133756,0.3821424011494,0.3825251175932903,0.3829082173285295,0.3832917007389847,0.38367556820890764,0.38405982012293455,0.3844444568660871,0.3848294788237724,0.3852148863817837,0.38560067992630065,0.3859868598438895,0.38637342652150364,0.3867603803464842,0.38714772170656,0.38753545098984843,0.38792356858485527,0.3883120748804756,0.38870097026599393,0.3890902551310847,0.3894799298658125,0.38986999486063256,0.3902604505063913,0.39065129719432645,0.3910425353160676,0.3914341652636365,0.39182618742944764,0.39221860220630844,0.3926114099874196,0.3930046111663759,0.3933982061371661,0.3937921952941735,0.3941865790321764,0.3945813577463487,0.3949765318322598,0.39537210168587533,0.39576806770355755,0.39616443028206555,0.3965611898185559,0.396958346710583,0.3973559013560992,0.3977538541534554,0.39815220550140157,0.39855095579908706,0.3989501054460608,0.39934965484227214,0.3997496043880706,0.4001499544842069,0.40055070553183325,0.4009518579325032,0.40135341208817293,0.40175536840120074,0.4021577272743482,0.40256048911078013,0.40296365431406506,0.4033672232881759,0.40377119643748993,0.4041755741667895,0.4045803568812623,0.404985544986502,0.4053911388885082,0.40579713899368725,0.40620354570885253,0.40661035944122487,0.40701758059843285,0.40742520958851336,0.4078332468199118,0.4082416927014828,0.4086505476424905,0.40905981205260866,0.40946948634192154,0.40987957092092403,0.41029006620052216,0.4107009725920335,0.41111229050718745,0.41152402035812585,0.41193616255740334,0.41234871751798763,0.41276168565326005,0.41317506737701604,0.4135888631034652,0.41400307324723223,0.414417698223357,0.41483273844729496,0.4152481943349177,0.41566406630251335,0.41608035476678684,0.41649706014486054,0.41691418285427445,0.41733172331298696,0.4177496819393748,0.41816805915223376,0.4185868553707792,0.41900607101464615,0.4194257065038901,0.4198457622589869,0.4202662387008339,0.4206871362507497,0.4211084553304749,0.4215301963621727,0.42195235976842876,0.42237494597225217,0.4227979553970756,0.4232213884667557,0.423645245605574,0.4240695272382363,0.4244942337898744,0.4249193656860454,0.42534492335273283,0.4257709072163468,0.4261973177037245,0.4266241552421304,0.42705142025925713,0.42747911318322557,0.4279072344425854,0.4283357844663153,0.4287647636838238,0.42919417252494946,0.42962401141996115,0.4300542807995589,0.43048498109487376,0.43091611273746894,0.43134767615933955,0.43177967179291366,0.432212100071052,0.4326449614270491,0.4330782562946335,0.4335119851079679,0.4339461483016499,0.43438074631071244,0.4348157795706239,0.43525124851728914,0.4356871535870493,0.4361234952166826,0.43656027384340473,0.4369974899048692,0.4374351438391678,0.4378732360848312,0.43831176708082925,0.4387507372665712,0.4391901470819066,0.4396299969671255,0.44007028736295883,0.44051101871057885,0.44095219145159975,0.44139380602807804,0.4418358628825128,0.4422783624578464,0.4427213051974649,0.4431646915451981,0.4436085219453206,0.4440527968425518,0.4444975166820565,0.4449426819094454,0.4453882929707754,0.4458343503125502,0.4462808543817206,0.44672780562568504,0.4471752044922901,0.4476230514298307,0.4480713468870511,0.4485200913131444,0.4489692851577542,0.449418928870974,0.4498690229033481,0.4503195677058723,0.4507705637299937,0.4512220114276118,0.45167391125107864,0.45212626365319913,0.45257906908723183,0.45303232800688914,0.4534860408663379,0.4539402081202,0.4543948302235521,0.4548499076319271,0.455305440801314,0.4557614301881584,0.45621787624936316,0.45667477944228857,0.45713214022475296,0.45758995905503336,0.4580482363918657,0.4585069726944451,0.45896616842242693,0.4594258240359266,0.4598859399955205,0.46034651676224636,0.4608075547976034,0.46126905456355305,0.4617310165225197,0.4621934411373905,0.4626563288715166,0.46311968018871263,0.4635834955532582,0.46404777542989767,0.46451252028384094,0.46497773058076386,0.4654434067868085,0.46590954936858386,0.4663761587931663,0.4668432355280998,0.46731078004139687,0.46777879280153833,0.4682472742774746,0.4687162249386254,0.46918564525488093,0.4696555356966017,0.4701258967346193,0.47059672884023707,0.47106803248523016,0.4715398081418463,0.47201205628280624,0.4724847773813039,0.4729579719110074,0.4734316403460591,0.47390578316107623,0.4743804008311514,0.4748554938318529,0.47533106263922537,0.4758071077297903,0.4762836295805463,0.47676062866896984,0.4772381054730153,0.47771606047111603,0.47819449414218435,0.4786734069656123,0.4791527994212721,0.4796326719895163,0.4801130251511788,0.48059385938757493,0.4810751751805021,0.4815569730122402,0.48203925336555214,0.48252201672368433,0.48300526357036716,0.48348899438981546,0.483973209666729,0.48445790988629295,0.48494309553417847,0.48542876709654303,0.4859149250600311,0.48640156991177447,0.48688870213939267,0.48737632223099375,0.4878644306751746,0.48835302796102137,0.48884211457811,0.4893316910165068,0.48982175776676895,0.49031231531994474,0.4908033641675745,0.49129490480169047,0.4917869377148181,0.49227946339997575,0.4927724823506757,0.49326599506092456,0.49376000202522347,0.494254503738569,0.49474950069645335,0.495244993394865,0.49574098233028924,0.49623746799970847,0.4967344509006028,0.4972319315309507,0.49772991038922926,0.49822838797441493,0.4987273647859837,0.4992268413239118,0.4997268180886764,0.5002272955812558,0.5007282743031298,0.5012297547562808,0.5017317374431937,0.5022342228668567,0.5027372115307617,0.5032407039389051,0.5037447005957875,0.5042492020064153,0.5047542086763006,0.5052597211114613,0.5057657398184229,0.5062722653042173,0.5067792980763848,0.5072868386429736,0.5077948875125411,0.5083034451941539,0.5088125121973882,0.5093220890323308,0.5098321762095791,0.5103427742402422,0.510853883635941,0.5113655049088084,0.5118776385714907,0.5123902851371473,0.5129034451194519,0.513417119032592,0.5139313073912707,0.5144460107107063,0.5149612295066329,0.5154769642953017,0.5159932155934803,0.516509983918454,0.5170272697880266,0.5175450737205198,0.5180633962347749,0.5185822378501528,0.519101599086534,0.5196214804643204,0.5201418825044346,0.5206628057283212,0.5211842506579467,0.5217062178158006,0.5222287077248957,0.5227517209087683,0.5232752578914794,0.5237993191976146,0.5243239053522849,0.5248490168811274,0.5253746543103053,0.5259008181665091,0.5264275089769564,0.5269547272693932,0.5274824735720938,0.5280107484138615,0.5285395523240295,0.5290688858324609,0.5295987494695495,0.5301291437662203,0.53066006925393,0.5311915264646676,0.5317235159309549,0.5322560381858469,0.5327890937629326,0.5333226831963354,0.5338568070207134,0.5343914657712604,0.5349266599837061,0.535462390194317,0.535998656939896,0.5365354607577844,0.537072802185861,0.5376106817625437,0.5381491000267894,0.5386880575180951,0.5392275547764978,0.5397675923425751,0.5403081707574467,0.5408492905627738,0.5413909523007597,0.5419331565141517,0.5424759037462398,0.5430191945408585,0.5435630294423867,0.5441074089957487,0.5446523337464146,0.5451978042404007,0.5457438210242699,0.5462903846451329,0.546837495650648,0.5473851545890224,0.5479333620090117,0.5484821184599216,0.5490314244916077,0.5495812806544764,0.5501316874994853,0.5506826455781436,0.5512341554425131,0.5517862176452084,0.5523388327393977,0.5528920012788026,0.5534457238177,0.5540000009109215,0.5545548331138546,0.5551102209824427,0.5556661650731861,0.5562226659431427,0.556779724149928,0.5573373402517161,0.5578955148072401,0.5584542483757924,0.5590135415172259,0.5595733947919541,0.5601338087609516,0.5606947839857551,0.5612563210284633,0.5618184204517381,0.5623810828188051,0.5629443086934534,0.5635080986400371,0.5640724532234758,0.5646373730092541,0.5652028585634237,0.5657689104526026,0.5663355292439768,0.5669027155052999,0.5674704698048944,0.5680387927116518,0.5686076847950333,0.5691771466250708,0.5697471787723666,0.5703177818080947,0.5708889563040012,0.5714607028324045,0.5720330219661967,0.572605914278843,0.5731793803443834,0.5737534207374327,0.5743280360331813,0.5749032268073953,0.5754789936364176,0.5760553370971685,0.5766322577671457,0.5772097562244257,0.5777878330476638,0.5783664888160945,0.5789457241095328,0.5795255395083743,0.5801059355935957,0.5806869129467559,0.5812684721499957,0.5818506137860393,0.5824333384381947,0.5830166466903534,0.5836005391269923,0.5841850163331734,0.5847700788945446,0.5853557273973404,0.5859419624283825,0.5865287845750802,0.587116194425431,0.5877041925680213,0.5882927795920274,0.588881956087215,0.5894717226439409,0.590062079853153,0.590653028306391,0.5912445685957871,0.5918367013140665,0.592429427054548,0.5930227464111447,0.5936166599783643,0.5942111683513102,0.5948062721256815,0.5954019718977739,0.5959982682644807,0.5965951618232924,0.5971926531722984,0.597790742910187,0.5983894316362455,0.5989887199503622,0.5995886084530259,0.6001890977453264,0.6007901884289562,0.6013918811062098,0.6019941763799851,0.602597074853784,0.6032005771317124,0.6038046838184817,0.6044093955194085,0.6050147128404159,0.6056206363880334,0.6062271667693988,0.606834304592257,0.6074420504649621,0.6080504049964774,0.6086593687963759,0.6092689424748414,0.6098791266426684,0.6104899219112634,0.6111013288926451,0.6117133481994453,0.6123259804449092,0.6129392262428961,0.6135530862078803,0.6141675609549513,0.6147826510998147,0.6153983572587928,0.6160146800488249,0.6166316200874686,0.6172491779928995,0.6178673543839127,0.6184861498799227,0.6191055651009646,0.6197256006676943,0.6203462572013894,0.6209675353239497,0.6215894356578976,0.6222119588263794,0.622835105453165,0.6234588761626495,0.624083271579853,0.6247082923304215,0.6253339390406277,0.6259602123373718,0.6265871128481814,0.6272146412012127,0.6278427980252512,0.6284715839497119,0.6291009996046402,0.6297310456207126,0.6303617226292371,0.6309930312621539,0.6316249721520364,0.6322575459320913,0.6328907532361594,0.6335245946987165,0.6341590709548734,0.6347941826403776,0.6354299303916128,0.6360663148456003,0.6367033366399992,0.6373409964131074,0.6379792948038618,0.6386182324518395,0.639257809997258,0.639898028080976,0.6405388873444938,0.6411803884299545,0.6418225319801443,0.6424653186384928,0.6431087490490742,0.6437528238566079,0.644397543706459,0.6450429092446384,0.6456889211178045,0.6463355799732634,0.646982886458969,0.6476308412235245,0.6482794449161826,0.6489286981868462,0.6495786016860691,0.6502291560650564,0.650880361975666,0.6515322200704079,0.652184731002446,0.6528378954255982,0.6534917139943376,0.654146187363792,0.654801316189746,0.6554571011286406,0.6561135428375745,0.6567706419743041,0.6574283991972448,0.6580868151654715,0.6587458905387189,0.6594056259773826,0.6600660221425196,0.6607270796958489,0.661388799299752,0.6620511816172744,0.6627142273121248,0.6633779370486772,0.6640423114919709,0.664707351307711,0.6653730571622696,0.6660394297226858,0.6667064696566671,0.6673741776325897,0.6680425543194988,0.6687116003871101,0.6693813165058097,0.6700517033466553,0.6707227615813766,0.6713944918823759,0.6720668949227291,0.6727399713761861,0.6734137219171717,0.674088147220786,0.6747632479628051,0.6754390248196821,0.6761154784685475,0.6767926095872099,0.6774704188541569,0.6781489069485555,0.6788280745502526,0.6795079223397764,0.6801884509983366,0.6808696612078248,0.6815515536508159,0.682234129010568,0.6829173879710241,0.6836013312168114,0.6842859594332434,0.6849712733063197,0.6856572735227267,0.6863439607698388,0.687031335735719,0.6877193991091187,0.6884081515794799,0.6890975938369346,0.6897877265723059,0.6904785504771092,0.6911700662435519,0.6918622745645352,0.6925551761336538,0.6932487716451973,0.6939430617941504,0.6946380472761943,0.6953337287877062,0.6960301070257614,0.6967271826881329,0.6974249564732928,0.6981234290804125,0.6988226012093637,0.699522473560719,0.7002230468357526,0.7009243217364414,0.7016262989654647,0.702328979226206,0.703032363222753,0.7037364516598987,0.7044412452431419,0.7051467446786879,0.7058529506734493,0.7065598639350468,0.7072674851718095,0.7079758150927762,0.7086848544076956,0.7093946038270273,0.7101050640619424,0.7108162358243242,0.7115281198267692,0.7122407167825872,0.7129540274058026,0.7136680524111547,0.714382792514099,0.7150982484308072,0.7158144208781683,0.7165313105737892,0.7172489182359958,0.7179672445838331,0.7186862903370663,0.7194060562161815,0.7201265429423864,0.7208477512376108,0.7215696818245076,0.7222923354264537,0.7230157127675498,0.7237398145726228,0.7244646415672247,0.7251901944776342,0.7259164740308579,0.7266434809546298,0.7273712159774133,0.7280996798284012,0.7288288732375163,0.7295587969354127,0.7302894516534764,0.7310208381238256,0.7317529570793115,0.7324858092535201,0.7332193953807711,0.7339537161961203,0.7346887724353592,0.7354245648350166,0.7361610941323589,0.7368983610653903,0.7376363663728549,0.7383751107942362,0.7391145950697583,0.7398548199403869,0.7405957861478294,0.7413374944345363,0.7420799455437019,0.742823140219264,0.7435670792059063,0.7443117632490578,0.7450571930948943,0.7458033694903388,0.7465502931830622,0.7472979649214846,0.7480463854547752,0.7487955555328538,0.749545475906391,0.7502961473268094,0.7510475705462841,0.7517997463177435,0.7525526753948701,0.753306358532101,0.7540607964846291,0.7548159900084037,0.7555719398601308,0.7563286467972746,0.7570861115780578,0.7578443349614624,0.7586033177072307,0.7593630605758656,0.7601235643286318,0.7608848297275566,0.76164685753543,0.7624096485158065,0.7631732034330048,0.7639375230521095,0.764702608138971,0.7654684594602069,0.7662350777832028,0.7670024638761126,0.7677706185078593,0.7685395424481365,0.7693092364674081,0.7700797013369101,0.7708509378286506,0.771622946715411,0.7723957287707464,0.7731692847689869,0.7739436154852382,0.7747187216953818,0.7754946041760766,0.7762712637047593,0.7770487010596451,0.7778269170197286,0.7786059123647847,0.779385687875369,0.780166244332819,0.7809475825192549,0.7817297032175796,0.7825126072114807,0.7832962952854304,0.7840807682246865,0.7848660268152934,0.7856520718440826,0.7864389040986736,0.7872265243674748,0.788014933439684,0.7888041321052897,0.7895941211550713,0.7903849013806004,0.791176473574241,0.7919688385291512,0.7927619970392829,0.7935559498993833,0.7943506979049958,0.7951462418524603,0.7959425825389143,0.7967397207622936,0.7975376573213331,0.7983363930155679,0.7991359286453334,0.799936265011767,0.800737402916808,0.8015393431631992,0.802342086554487,0.803145633895023,0.803949985989964,0.8047551436452733,0.8055611076677214,0.8063678788648866,0.8071754580451562,0.8079838460177271,0.8087930435926066,0.809603051580613,0.8104138707933768,0.8112255020433415,0.812037946143764,0.8128512039087159,0.8136652761530839,0.8144801636925709,0.8152958673436969,0.8161123879237993,0.8169297262510342,0.8177478831443772,0.8185668594236242,0.8193866559093916,0.8202072734231184,0.8210287127870657,0.8218509748243181,0.822674060358785,0.8234979702152005,0.824322705219125,0.8251482661969451,0.825974653975876,0.8268018693839604,0.8276299132500707,0.8284587864039097,0.8292884896760107,0.8301190238977387,0.830950389901292,0.8317825885197015,0.8326156205868331,0.8334494869373874,0.834284188406901,0.8351197258317473,0.8359561000491376,0.8367933118971211,0.837631362214587,0.8384702518412641,0.8393099816177226,0.8401505523853742,0.8409919649864732,0.841834220264118,0.8426773190622507,0.8435212622256592,0.8443660505999768,0.8452116850316842,0.8460581663681098,0.8469054954574304,0.8477536731486726,0.8486027002917127,0.8494525777372788,0.8503033063369505,0.8511548869431607,0.8520073204091957,0.8528606075891965,0.8537147493381594,0.8545697465119371,0.8554255999672394,0.8562823105616343,0.8571398791535482,0.8579983066022676,0.8588575937679395,0.8597177415115721,0.8605787506950363,0.8614406221810659,0.8623033568332586,0.8631669555160776,0.864031419094851,0.8648967484357744,0.8657629444059101,0.8666300078731892,0.8674979397064122,0.8683667407752493,0.8692364119502419,0.8701069541028033,0.8709783681052191,0.8718506548306492,0.8727238151531274,0.873597849947563,0.8744727600897417,0.875348546456326,0.8762252099248568,0.8771027513737533,0.8779811716823149,0.8788604717307215,0.8797406524000344,0.8806217145721973,0.8815036591300374,0.8823864869572656,0.8832701989384782,0.8841547959591576,0.8850402789056724,0.8859266486652794,0.8868139061261238,0.8877020521772403,0.8885910877085541,0.8894810136108814,0.8903718307759309,0.8912635400963038,0.8921561424654959,0.8930496387778974,0.8939440299287945,0.8948393168143698,0.8957355003317033,0.8966325813787741,0.8975305608544599,0.8984294396585389,0.8993292186916906,0.9002298988554961,0.90113148105244,0.9020339661859103,0.9029373551601998,0.9038416488805072,0.9047468482529376,0.9056529541845035,0.9065599675831258,0.9074678893576348,0.908376720417771,0.9092864616741857,0.9101971140384426,0.9111086784230181,0.9120211557413027,0.9129345469076013,0.9138488528371348,0.9147640744460405,0.9156802126513732,0.9165972683711064,0.9175152425241326,0.9184341360302648,0.9193539498102372,0.920274684785706,0.9211963418792504,0.9221189220143736,0.923042426115504,0.9239668551079954,0.9248922099181285,0.9258184914731117,0.926745700701082,0.9276738385311059,0.9286029058931803,0.9295329037182336,0.9304638329381266,0.9313956944856532,0.9323284892945415,0.9332622182994548,0.9341968824359923,0.9351324826406906,0.936069019851024,0.9370064950054054,0.9379449090431881,0.9388842629046656,0.9398245575310735,0.94076579386459,0.9417079728483367,0.9426510954263799,0.9435951625437313,0.9445401751463491,0.9454861341811388,0.9464330405959543,0.9473808953395988,0.9483296993618255,0.9492794536133393,0.9502301590457966,0.9511818166118071,0.952134427264935,0.9530879919596988,0.9540425116515734,0.9549979872969904,0.9559544198533394,0.9569118102789688,0.9578701595331868,0.9588294685762621,0.9597897383694255,0.9607509698748703,0.9617131640557534,0.9626763218761963,0.9636404443012861,0.9646055322970767,0.9655715868305889,0.9665386088698125,0.9675065993837065,0.9684755593422004,0.9694454897161952,0.970416391477564,0.9713882655991534,0.9723611130547842,0.9733349348192526,0.9743097318683311,0.9752855051787692,0.976262255728295,0.9772399844956152,0.9782186924604175,0.9791983806033699,0.9801790499061231,0.9811607013513108,0.9821433359225509,0.983126954604446,0.9841115583825852,0.9850971482435446,0.9860837251748881,0.9870712901651689,0.9880598442039302,0.9890493882817063,0.9900399233900232,0.9910314505214004,0.9920239706693509,0.993017484828383,0.9940119939940012,0.9950074991627064,0.9960040013319981,0.9970015015003744,0.9980000006673336,0.9989994998333751,1.0],"x":[-1.0,-0.998998998998999,-0.997997997997998,-0.996996996996997,-0.995995995995996,-0.994994994994995,-0.993993993993994,-0.992992992992993,-0.991991991991992,-0.990990990990991,-0.98998998998999,-0.988988988988989,-0.987987987987988,-0.986986986986987,-0.985985985985986,-0.984984984984985,-0.983983983983984,-0.982982982982983,-0.9819819819819819,-0.980980980980981,-0.97997997997998,-0.978978978978979,-0.977977977977978,-0.9769769769769769,-0.975975975975976,-0.974974974974975,-0.973973973973974,-0.972972972972973,-0.9719719719719719,-0.970970970970971,-0.96996996996997,-0.968968968968969,-0.9679679679679679,-0.9669669669669669,-0.965965965965966,-0.964964964964965,-0.963963963963964,-0.9629629629629629,-0.9619619619619619,-0.960960960960961,-0.95995995995996,-0.958958958958959,-0.9579579579579579,-0.9569569569569569,-0.955955955955956,-0.954954954954955,-0.953953953953954,-0.9529529529529529,-0.9519519519519519,-0.950950950950951,-0.94994994994995,-0.948948948948949,-0.9479479479479479,-0.9469469469469469,-0.9459459459459459,-0.944944944944945,-0.943943943943944,-0.9429429429429429,-0.9419419419419419,-0.9409409409409409,-0.93993993993994,-0.938938938938939,-0.9379379379379379,-0.9369369369369369,-0.9359359359359359,-0.934934934934935,-0.933933933933934,-0.9329329329329329,-0.9319319319319319,-0.9309309309309309,-0.92992992992993,-0.928928928928929,-0.9279279279279279,-0.9269269269269269,-0.9259259259259259,-0.924924924924925,-0.923923923923924,-0.9229229229229229,-0.9219219219219219,-0.9209209209209209,-0.91991991991992,-0.918918918918919,-0.9179179179179179,-0.9169169169169169,-0.9159159159159159,-0.914914914914915,-0.913913913913914,-0.9129129129129129,-0.9119119119119119,-0.9109109109109109,-0.9099099099099099,-0.908908908908909,-0.9079079079079079,-0.9069069069069069,-0.9059059059059059,-0.9049049049049049,-0.9039039039039038,-0.9029029029029029,-0.9019019019019019,-0.9009009009009009,-0.8998998998998999,-0.8988988988988988,-0.8978978978978979,-0.8968968968968969,-0.8958958958958959,-0.8948948948948949,-0.8938938938938938,-0.8928928928928929,-0.8918918918918919,-0.8908908908908909,-0.8898898898898899,-0.8888888888888888,-0.8878878878878879,-0.8868868868868869,-0.8858858858858859,-0.8848848848848849,-0.8838838838838838,-0.8828828828828829,-0.8818818818818819,-0.8808808808808809,-0.8798798798798799,-0.8788788788788788,-0.8778778778778779,-0.8768768768768769,-0.8758758758758759,-0.8748748748748749,-0.8738738738738738,-0.8728728728728729,-0.8718718718718719,-0.8708708708708709,-0.8698698698698699,-0.8688688688688688,-0.8678678678678678,-0.8668668668668669,-0.8658658658658659,-0.8648648648648649,-0.8638638638638638,-0.8628628628628628,-0.8618618618618619,-0.8608608608608609,-0.8598598598598599,-0.8588588588588588,-0.8578578578578578,-0.8568568568568569,-0.8558558558558559,-0.8548548548548549,-0.8538538538538538,-0.8528528528528528,-0.8518518518518519,-0.8508508508508509,-0.8498498498498499,-0.8488488488488488,-0.8478478478478478,-0.8468468468468469,-0.8458458458458459,-0.8448448448448449,-0.8438438438438438,-0.8428428428428428,-0.8418418418418419,-0.8408408408408409,-0.8398398398398398,-0.8388388388388388,-0.8378378378378378,-0.8368368368368369,-0.8358358358358359,-0.8348348348348348,-0.8338338338338338,-0.8328328328328328,-0.8318318318318318,-0.8308308308308309,-0.8298298298298298,-0.8288288288288288,-0.8278278278278278,-0.8268268268268268,-0.8258258258258259,-0.8248248248248248,-0.8238238238238238,-0.8228228228228228,-0.8218218218218218,-0.8208208208208209,-0.8198198198198198,-0.8188188188188188,-0.8178178178178178,-0.8168168168168168,-0.8158158158158159,-0.8148148148148148,-0.8138138138138138,-0.8128128128128128,-0.8118118118118118,-0.8108108108108109,-0.8098098098098098,-0.8088088088088088,-0.8078078078078078,-0.8068068068068068,-0.8058058058058059,-0.8048048048048048,-0.8038038038038038,-0.8028028028028028,-0.8018018018018018,-0.8008008008008008,-0.7997997997997998,-0.7987987987987988,-0.7977977977977978,-0.7967967967967968,-0.7957957957957958,-0.7947947947947948,-0.7937937937937938,-0.7927927927927928,-0.7917917917917918,-0.7907907907907908,-0.7897897897897898,-0.7887887887887888,-0.7877877877877878,-0.7867867867867868,-0.7857857857857858,-0.7847847847847848,-0.7837837837837838,-0.7827827827827828,-0.7817817817817818,-0.7807807807807807,-0.7797797797797797,-0.7787787787787788,-0.7777777777777778,-0.7767767767767768,-0.7757757757757757,-0.7747747747747747,-0.7737737737737738,-0.7727727727727728,-0.7717717717717718,-0.7707707707707707,-0.7697697697697697,-0.7687687687687688,-0.7677677677677678,-0.7667667667667668,-0.7657657657657657,-0.7647647647647647,-0.7637637637637638,-0.7627627627627628,-0.7617617617617618,-0.7607607607607607,-0.7597597597597597,-0.7587587587587588,-0.7577577577577578,-0.7567567567567568,-0.7557557557557557,-0.7547547547547547,-0.7537537537537538,-0.7527527527527528,-0.7517517517517518,-0.7507507507507507,-0.7497497497497497,-0.7487487487487487,-0.7477477477477478,-0.7467467467467468,-0.7457457457457457,-0.7447447447447447,-0.7437437437437437,-0.7427427427427428,-0.7417417417417418,-0.7407407407407407,-0.7397397397397397,-0.7387387387387387,-0.7377377377377378,-0.7367367367367368,-0.7357357357357357,-0.7347347347347347,-0.7337337337337337,-0.7327327327327328,-0.7317317317317318,-0.7307307307307307,-0.7297297297297297,-0.7287287287287287,-0.7277277277277278,-0.7267267267267268,-0.7257257257257257,-0.7247247247247247,-0.7237237237237237,-0.7227227227227228,-0.7217217217217218,-0.7207207207207207,-0.7197197197197197,-0.7187187187187187,-0.7177177177177178,-0.7167167167167167,-0.7157157157157157,-0.7147147147147147,-0.7137137137137137,-0.7127127127127127,-0.7117117117117117,-0.7107107107107107,-0.7097097097097097,-0.7087087087087087,-0.7077077077077077,-0.7067067067067067,-0.7057057057057057,-0.7047047047047047,-0.7037037037037037,-0.7027027027027027,-0.7017017017017017,-0.7007007007007007,-0.6996996996996997,-0.6986986986986987,-0.6976976976976977,-0.6966966966966966,-0.6956956956956957,-0.6946946946946947,-0.6936936936936937,-0.6926926926926927,-0.6916916916916916,-0.6906906906906907,-0.6896896896896897,-0.6886886886886887,-0.6876876876876877,-0.6866866866866866,-0.6856856856856857,-0.6846846846846847,-0.6836836836836837,-0.6826826826826827,-0.6816816816816816,-0.6806806806806807,-0.6796796796796797,-0.6786786786786787,-0.6776776776776777,-0.6766766766766766,-0.6756756756756757,-0.6746746746746747,-0.6736736736736737,-0.6726726726726727,-0.6716716716716716,-0.6706706706706707,-0.6696696696696697,-0.6686686686686687,-0.6676676676676677,-0.6666666666666666,-0.6656656656656657,-0.6646646646646647,-0.6636636636636637,-0.6626626626626627,-0.6616616616616616,-0.6606606606606606,-0.6596596596596597,-0.6586586586586587,-0.6576576576576577,-0.6566566566566566,-0.6556556556556556,-0.6546546546546547,-0.6536536536536537,-0.6526526526526526,-0.6516516516516516,-0.6506506506506506,-0.6496496496496497,-0.6486486486486487,-0.6476476476476476,-0.6466466466466466,-0.6456456456456456,-0.6446446446446447,-0.6436436436436437,-0.6426426426426426,-0.6416416416416416,-0.6406406406406406,-0.6396396396396397,-0.6386386386386387,-0.6376376376376376,-0.6366366366366366,-0.6356356356356356,-0.6346346346346347,-0.6336336336336337,-0.6326326326326326,-0.6316316316316316,-0.6306306306306306,-0.6296296296296297,-0.6286286286286287,-0.6276276276276276,-0.6266266266266266,-0.6256256256256256,-0.6246246246246246,-0.6236236236236237,-0.6226226226226226,-0.6216216216216216,-0.6206206206206206,-0.6196196196196196,-0.6186186186186187,-0.6176176176176176,-0.6166166166166166,-0.6156156156156156,-0.6146146146146146,-0.6136136136136137,-0.6126126126126126,-0.6116116116116116,-0.6106106106106106,-0.6096096096096096,-0.6086086086086087,-0.6076076076076076,-0.6066066066066066,-0.6056056056056056,-0.6046046046046046,-0.6036036036036037,-0.6026026026026026,-0.6016016016016016,-0.6006006006006006,-0.5995995995995996,-0.5985985985985987,-0.5975975975975976,-0.5965965965965966,-0.5955955955955956,-0.5945945945945946,-0.5935935935935935,-0.5925925925925926,-0.5915915915915916,-0.5905905905905906,-0.5895895895895896,-0.5885885885885885,-0.5875875875875876,-0.5865865865865866,-0.5855855855855856,-0.5845845845845846,-0.5835835835835835,-0.5825825825825826,-0.5815815815815816,-0.5805805805805806,-0.5795795795795796,-0.5785785785785785,-0.5775775775775776,-0.5765765765765766,-0.5755755755755756,-0.5745745745745746,-0.5735735735735735,-0.5725725725725725,-0.5715715715715716,-0.5705705705705706,-0.5695695695695696,-0.5685685685685685,-0.5675675675675675,-0.5665665665665666,-0.5655655655655656,-0.5645645645645646,-0.5635635635635635,-0.5625625625625625,-0.5615615615615616,-0.5605605605605606,-0.5595595595595596,-0.5585585585585585,-0.5575575575575575,-0.5565565565565566,-0.5555555555555556,-0.5545545545545546,-0.5535535535535535,-0.5525525525525525,-0.5515515515515516,-0.5505505505505506,-0.5495495495495496,-0.5485485485485485,-0.5475475475475475,-0.5465465465465466,-0.5455455455455456,-0.5445445445445446,-0.5435435435435435,-0.5425425425425425,-0.5415415415415415,-0.5405405405405406,-0.5395395395395396,-0.5385385385385385,-0.5375375375375375,-0.5365365365365365,-0.5355355355355356,-0.5345345345345346,-0.5335335335335335,-0.5325325325325325,-0.5315315315315315,-0.5305305305305306,-0.5295295295295295,-0.5285285285285285,-0.5275275275275275,-0.5265265265265265,-0.5255255255255256,-0.5245245245245245,-0.5235235235235235,-0.5225225225225225,-0.5215215215215215,-0.5205205205205206,-0.5195195195195195,-0.5185185185185185,-0.5175175175175175,-0.5165165165165165,-0.5155155155155156,-0.5145145145145145,-0.5135135135135135,-0.5125125125125125,-0.5115115115115115,-0.5105105105105106,-0.5095095095095095,-0.5085085085085085,-0.5075075075075075,-0.5065065065065065,-0.5055055055055055,-0.5045045045045045,-0.5035035035035035,-0.5025025025025025,-0.5015015015015015,-0.5005005005005005,-0.4994994994994995,-0.4984984984984985,-0.4974974974974975,-0.4964964964964965,-0.4954954954954955,-0.4944944944944945,-0.4934934934934935,-0.4924924924924925,-0.4914914914914915,-0.4904904904904905,-0.4894894894894895,-0.48848848848848847,-0.4874874874874875,-0.48648648648648657,-0.48548548548548554,-0.48448448448448456,-0.4834834834834835,-0.48248248248248254,-0.48148148148148157,-0.48048048048048053,-0.47947947947947955,-0.4784784784784785,-0.47747747747747754,-0.4764764764764765,-0.47547547547547553,-0.47447447447447455,-0.4734734734734735,-0.47247247247247254,-0.4714714714714715,-0.4704704704704705,-0.46946946946946955,-0.4684684684684685,-0.46746746746746753,-0.4664664664664665,-0.4654654654654655,-0.46446446446446454,-0.4634634634634635,-0.46246246246246253,-0.4614614614614615,-0.4604604604604605,-0.45945945945945954,-0.4584584584584585,-0.45745745745745753,-0.4564564564564565,-0.4554554554554555,-0.45445445445445454,-0.4534534534534535,-0.4524524524524525,-0.4514514514514515,-0.4504504504504505,-0.44944944944944953,-0.4484484484484485,-0.4474474474474475,-0.4464464464464465,-0.4454454454454455,-0.4444444444444445,-0.4434434434434435,-0.4424424424424425,-0.4414414414414415,-0.4404404404404405,-0.43943943943943947,-0.4384384384384385,-0.4374374374374375,-0.4364364364364365,-0.4354354354354355,-0.43443443443443447,-0.4334334334334335,-0.4324324324324325,-0.4314314314314315,-0.4304304304304305,-0.42942942942942947,-0.4284284284284285,-0.4274274274274275,-0.4264264264264265,-0.4254254254254255,-0.42442442442442446,-0.4234234234234235,-0.4224224224224225,-0.42142142142142147,-0.4204204204204205,-0.41941941941941946,-0.4184184184184185,-0.41741741741741745,-0.41641641641641647,-0.4154154154154155,-0.41441441441441446,-0.4134134134134135,-0.41241241241241244,-0.41141141141141147,-0.4104104104104105,-0.40940940940940945,-0.4084084084084085,-0.40740740740740744,-0.40640640640640646,-0.4054054054054055,-0.40440440440440445,-0.40340340340340347,-0.40240240240240244,-0.40140140140140146,-0.4004004004004005,-0.39939939939939945,-0.39839839839839847,-0.39739739739739743,-0.39639639639639646,-0.3953953953953955,-0.39439439439439444,-0.39339339339339346,-0.39239239239239243,-0.39139139139139145,-0.3903903903903905,-0.38938938938938944,-0.38838838838838846,-0.3873873873873874,-0.38638638638638645,-0.3853853853853854,-0.38438438438438444,-0.38338338338338346,-0.3823823823823824,-0.38138138138138145,-0.3803803803803804,-0.37937937937937943,-0.37837837837837845,-0.3773773773773774,-0.37637637637637644,-0.3753753753753754,-0.37437437437437443,-0.37337337337337345,-0.3723723723723724,-0.37137137137137144,-0.3703703703703704,-0.3693693693693694,-0.36836836836836845,-0.3673673673673674,-0.36636636636636644,-0.3653653653653654,-0.3643643643643644,-0.36336336336336345,-0.3623623623623624,-0.36136136136136143,-0.3603603603603604,-0.3593593593593594,-0.35835835835835844,-0.3573573573573574,-0.35635635635635643,-0.3553553553553554,-0.3543543543543544,-0.3533533533533534,-0.3523523523523524,-0.3513513513513514,-0.3503503503503504,-0.3493493493493494,-0.3483483483483484,-0.3473473473473474,-0.3463463463463464,-0.3453453453453454,-0.3443443443443444,-0.3433433433433434,-0.3423423423423424,-0.3413413413413414,-0.3403403403403404,-0.3393393393393394,-0.3383383383383384,-0.3373373373373374,-0.3363363363363364,-0.3353353353353354,-0.3343343343343344,-0.33333333333333337,-0.3323323323323324,-0.3313313313313314,-0.3303303303303304,-0.3293293293293294,-0.32832832832832837,-0.3273273273273274,-0.3263263263263264,-0.3253253253253254,-0.3243243243243244,-0.32332332332332336,-0.3223223223223224,-0.32132132132132135,-0.3203203203203204,-0.3193193193193194,-0.31831831831831836,-0.3173173173173174,-0.31631631631631635,-0.31531531531531537,-0.3143143143143144,-0.31331331331331336,-0.3123123123123124,-0.31131131131131135,-0.31031031031031037,-0.3093093093093094,-0.30830830830830835,-0.3073073073073074,-0.30630630630630634,-0.30530530530530536,-0.3043043043043044,-0.30330330330330335,-0.3023023023023024,-0.30130130130130134,-0.30030030030030036,-0.2992992992992994,-0.29829829829829835,-0.29729729729729737,-0.29629629629629634,-0.29529529529529536,-0.2942942942942944,-0.29329329329329334,-0.29229229229229237,-0.29129129129129133,-0.29029029029029035,-0.2892892892892893,-0.28828828828828834,-0.28728728728728736,-0.28628628628628633,-0.28528528528528535,-0.2842842842842843,-0.28328328328328334,-0.28228228228228236,-0.2812812812812813,-0.28028028028028035,-0.2792792792792793,-0.27827827827827833,-0.27727727727727736,-0.2762762762762763,-0.27527527527527534,-0.2742742742742743,-0.27327327327327333,-0.27227227227227235,-0.2712712712712713,-0.27027027027027034,-0.2692692692692693,-0.26826826826826833,-0.26726726726726735,-0.2662662662662663,-0.26526526526526534,-0.2642642642642643,-0.2632632632632633,-0.26226226226226235,-0.2612612612612613,-0.26026026026026033,-0.2592592592592593,-0.2582582582582583,-0.2572572572572573,-0.2562562562562563,-0.2552552552552553,-0.2542542542542543,-0.25325325325325326,-0.2522522522522523,-0.2512512512512513,-0.2502502502502503,-0.24924924924924927,-0.2482482482482483,-0.24724724724724728,-0.24624624624624628,-0.24524524524524527,-0.24424424424424426,-0.24324324324324328,-0.24224224224224228,-0.24124124124124127,-0.24024024024024027,-0.23923923923923926,-0.23823823823823825,-0.23723723723723728,-0.23623623623623627,-0.23523523523523526,-0.23423423423423426,-0.23323323323323325,-0.23223223223223227,-0.2312312312312313,-0.2302302302302303,-0.22922922922922928,-0.22822822822822827,-0.2272272272272273,-0.2262262262262263,-0.22522522522522528,-0.22422422422422428,-0.22322322322322327,-0.22222222222222227,-0.2212212212212213,-0.22022022022022028,-0.21921921921921927,-0.21821821821821827,-0.21721721721721726,-0.21621621621621628,-0.21521521521521528,-0.21421421421421427,-0.21321321321321327,-0.21221221221221226,-0.21121121121121128,-0.21021021021021027,-0.20920920920920927,-0.20820820820820826,-0.20720720720720726,-0.20620620620620625,-0.20520520520520527,-0.20420420420420426,-0.20320320320320326,-0.20220220220220225,-0.20120120120120125,-0.20020020020020027,-0.19919919919919926,-0.19819819819819826,-0.19719719719719725,-0.19619619619619624,-0.19519519519519526,-0.19419419419419426,-0.19319319319319325,-0.19219219219219225,-0.19119119119119124,-0.19019019019019023,-0.18918918918918926,-0.18818818818818825,-0.18718718718718724,-0.18618618618618624,-0.18518518518518523,-0.18418418418418425,-0.18318318318318325,-0.18218218218218224,-0.18118118118118123,-0.18018018018018023,-0.17917917917917925,-0.17817817817817824,-0.17717717717717724,-0.17617617617617623,-0.17517517517517522,-0.17417417417417422,-0.17317317317317324,-0.17217217217217223,-0.17117117117117123,-0.17017017017017022,-0.16916916916916921,-0.16816816816816824,-0.16716716716716723,-0.16616616616616622,-0.16516516516516522,-0.1641641641641642,-0.16316316316316323,-0.16216216216216223,-0.16116116116116122,-0.16016016016016021,-0.1591591591591592,-0.1581581581581582,-0.15715715715715722,-0.15615615615615622,-0.1551551551551552,-0.1541541541541542,-0.1531531531531532,-0.15215215215215222,-0.15115115115115121,-0.1501501501501502,-0.1491491491491492,-0.1481481481481482,-0.14714714714714722,-0.1461461461461462,-0.1451451451451452,-0.1441441441441442,-0.1431431431431432,-0.14214214214214219,-0.1411411411411412,-0.1401401401401402,-0.1391391391391392,-0.1381381381381382,-0.13713713713713718,-0.1361361361361362,-0.1351351351351352,-0.1341341341341342,-0.13313313313313319,-0.13213213213213218,-0.1311311311311312,-0.1301301301301302,-0.1291291291291292,-0.12812812812812818,-0.12712712712712718,-0.12612612612612617,-0.12512512512512516,-0.12412412412412417,-0.12312312312312317,-0.12212212212212216,-0.12112112112112117,-0.12012012012012016,-0.11911911911911917,-0.11811811811811816,-0.11711711711711716,-0.11611611611611616,-0.11511511511511516,-0.11411411411411415,-0.11311311311311316,-0.11211211211211215,-0.11111111111111116,-0.11011011011011015,-0.10910910910910915,-0.10810810810810816,-0.10710710710710715,-0.10610610610610614,-0.10510510510510515,-0.10410410410410414,-0.10310310310310317,-0.10210210210210216,-0.10110110110110115,-0.10010010010010016,-0.09909909909909916,-0.09809809809809815,-0.09709709709709716,-0.09609609609609615,-0.09509509509509516,-0.09409409409409415,-0.09309309309309315,-0.09209209209209215,-0.09109109109109115,-0.09009009009009014,-0.08908908908908915,-0.08808808808808814,-0.08708708708708715,-0.08608608608608614,-0.08508508508508514,-0.08408408408408415,-0.08308308308308314,-0.08208208208208213,-0.08108108108108114,-0.08008008008008013,-0.07907907907907914,-0.07807807807807814,-0.07707707707707713,-0.07607607607607614,-0.07507507507507513,-0.07407407407407413,-0.07307307307307313,-0.07207207207207213,-0.07107107107107113,-0.07007007007007013,-0.06906906906906912,-0.06806806806806813,-0.06706706706706712,-0.06606606606606612,-0.06506506506506513,-0.06406406406406412,-0.06306306306306311,-0.062062062062062114,-0.061061061061061114,-0.06006006006006011,-0.05905905905905911,-0.05805805805805811,-0.0570570570570571,-0.056056056056056104,-0.055055055055055105,-0.054054054054054106,-0.0530530530530531,-0.0520520520520521,-0.0510510510510511,-0.0500500500500501,-0.049049049049049095,-0.048048048048048096,-0.0470470470470471,-0.0460460460460461,-0.04504504504504509,-0.04404404404404409,-0.04304304304304309,-0.042042042042042094,-0.04104104104104109,-0.04004004004004009,-0.039039039039039096,-0.0380380380380381,-0.03703703703703709,-0.03603603603603609,-0.03503503503503509,-0.03403403403403409,-0.033033033033033087,-0.03203203203203209,-0.031031031031031085,-0.030030030030030082,-0.029029029029029083,-0.02802802802802808,-0.02702702702702708,-0.026026026026026078,-0.02502502502502508,-0.024024024024024076,-0.023023023023023077,-0.022022022022022074,-0.021021021021021075,-0.020020020020020072,-0.019019019019019073,-0.01801801801801807,-0.01701701701701707,-0.016016016016016068,-0.01501501501501507,-0.01401401401401407,-0.013013013013013068,-0.012012012012012067,-0.011011011011011066,-0.010010010010010065,-0.009009009009009064,-0.008008008008008063,-0.0070070070070070625,-0.0060060060060060615,-0.0050050050050050605,-0.0040040040040040595,-0.003003003003003058,-0.0020020020020020575,-0.0010010010010010565,-5.551115123125783e-17]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json new file mode 100644 index 000000000000..4db80502a8de --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0010015021697125,1.002004007346021,1.0030075165334387,1.004012030737485,1.005017550964686,1.0060240782225762,1.0070316135196993,1.0080401578656082,1.009049712270868,1.010060277747055,1.0110718553067592,1.012084445963584,1.013098050732149,1.0141126706280887,1.0151283066680556,1.0161449598697203,1.0171626312517723,1.0181813218339215,1.019201032636899,1.020221764682458,1.0212435189933753,1.0222662965934521,1.0232900985075144,1.024314925761415,1.025340779382034,1.0263676603972798,1.0273955698360904,1.0284245087284343,1.0294544781053114,1.030485478998754,1.0315175124418285,1.0325505794686356,1.0335846811143112,1.0346198184150288,1.035655992407999,1.0366932041314716,1.0377314546247354,1.038770744928121,1.0398110760830004,1.0408524491317885,1.0418948651179447,1.0429383250859727,1.0439828300814225,1.0450283811508918,1.0460749793420254,1.0471226257035184,1.0481713212851156,1.0492210671376132,1.0502718643128595,1.0513237138637568,1.0523766168442616,1.053430574309386,1.0544855873151981,1.055541656918825,1.0565987841784512,1.0576569701533214,1.0587162159037415,1.059776522491079,1.0608378909777643,1.0619003224272916,1.062963817904221,1.064028378474178,1.0650940052038556,1.066160699161015,1.067228461414487,1.0682972930341725,1.0693671950910442,1.0704381686571474,1.0715102148056006,1.0725833346105975,1.0736575291474075,1.0747327994923768,1.0758091467229296,1.076886571917569,1.0779650761558788,1.0790446605185233,1.0801253260872494,1.0812070739448871,1.0822899051753514,1.0833738208636425,1.084458822095847,1.08554490995914,1.0866320855417846,1.0877203499331338,1.0888097042236324,1.0899001495048164,1.0909916868693155,1.0920843174108534,1.0931780422242494,1.094272862405419,1.0953687790513755,1.0964657932602309,1.0975639061311966,1.098663118764585,1.0997634322618108,1.1008648477253915,1.1019673662589489,1.1030709889672095,1.1041757169560071,1.1052815513322825,1.1063884932040848,1.1074965436805737,1.108605703872019,1.1097159748898024,1.1108273578464192,1.1119398538554783,1.1130534640317045,1.1141681894909383,1.1152840313501382,1.116400990727381,1.1175190687418637,1.1186382665139039,1.119758585164941,1.1208800258175378,1.1220025895953816,1.1231262776232844,1.1242510910271852,1.1253770309341506,1.1265040984723758,1.1276322947711859,1.1287616209610372,1.1298920781735178,1.1310236675413496,1.1321563901983884,1.133290247279626,1.1344252399211907,1.1355613692603483,1.1366986364355043,1.1378370425862037,1.1389765888531331,1.1401172763781213,1.1412591063041406,1.1424020797753083,1.1435461979368875,1.1446914619352877,1.1458378729180674,1.1469854320339334,1.148134140432744,1.1492839992655086,1.1504350096843887,1.151587172842701,1.152740489894916,1.1538949619966612,1.1550505903047212,1.1562073759770393,1.1573653201727179,1.1585244240520207,1.1596846887763739,1.1608461155083658,1.1620087054117496,1.1631724596514443,1.1643373793935352,1.1655034658052752,1.1666707200550865,1.167839143312562,1.1690087367484645,1.1701795015347312,1.1713514388444712,1.1725245498519699,1.1736988357326879,1.1748742976632631,1.1760509368215124,1.1772287543864315,1.1784077515381974,1.179587929458169,1.1807692893288881,1.181951832334081,1.183135559658659,1.1843204724887213,1.1855065720115536,1.1866938594156318,1.187882335890621,1.1890720026273787,1.1902628608179544,1.1914549116555917,1.1926481563347293,1.1938425960510024,1.1950382320012425,1.1962350653834812,1.197433097396949,1.1986323292420775,1.1998327621205012,1.201034397235057,1.2022372357897873,1.2034412789899398,1.2046465280419698,1.2058529841535406,1.2070606485335247,1.2082695223920057,1.2094796069402787,1.2106909033908524,1.2119034129574495,1.2131171368550084,1.214332076299684,1.2155482325088498,1.2167656067010977,1.2179842000962404,1.2192040139153122,1.2204250493805706,1.2216473077154968,1.2228707901447973,1.2240954978944054,1.225321432191482,1.226548594264417,1.2277769853428306,1.2290066066575744,1.230237459440733,1.2314695449256248,1.2327028643468025,1.2339374189400567,1.2351732099424146,1.2364102385921427,1.2376485061287474,1.238888013792977,1.2401287628268214,1.2413707544735153,1.2426139899775381,1.2438584705846158,1.2451041975417216,1.246351172097078,1.2475993955001567,1.2488488690016823,1.2500995938536303,1.2513515713092316,1.252604802622971,1.2538592890505902,1.2551150318490887,1.2563720322767242,1.2576302915930153,1.258889811058742,1.2601505919359464,1.2614126354879347,1.2626759429792787,1.2639405156758161,1.265206354844653,1.266473461754164,1.2677418376739942,1.26901148387506,1.2702824016295509,1.2715545922109306,1.2728280568939376,1.274102796954588,1.2753788136701747,1.276656108319271,1.2779346821817292,1.279214536538685,1.2804956726725565,1.2817780918670456,1.2830617954071402,1.2843467845791157,1.285633060670535,1.2869206249702507,1.2882094787684062,1.289499623356437,1.290791060027072,1.2920837900743347,1.2933778147935444,1.2946731354813181,1.2959697534355712,1.2972676699555188,1.298566886341677,1.299867403895865,1.3011692239212054,1.3024723477221256,1.30377677660436,1.30508251187495,1.3063895548422466,1.307697906815911,1.3090075691069154,1.3103185430275461,1.3116308298914028,1.3129444310134009,1.3142593477097728,1.315575581298069,1.3168931330971598,1.3182120044272363,1.3195321966098112,1.3208537109677214,1.3221765488251283,1.3235007115075197,1.3248262003417106,1.3261530166558448,1.3274811617793965,1.328810637043171,1.3301414437793069,1.3314735833212763,1.3328070570038875,1.334141866163285,1.3354780121369518,1.3368154962637102,1.3381543198837238,1.3394944843384975,1.3408359909708805,1.3421788411250664,1.3435230361465953,1.3448685773823548,1.3462154661805816,1.3475637038908619,1.3489132918641344,1.3502642314526905,1.3516165240101756,1.352970170891591,1.3543251734532953,1.355681533053005,1.3570392510497968,1.3583983288041082,1.3597587676777394,1.3611205690338541,1.362483734236982,1.3638482646530183,1.3652141616492268,1.3665814265942409,1.367950060858064,1.3693200658120717,1.3706914428290133,1.3720641932830129,1.3734383185495707,1.3748138200055644,1.3761906990292507,1.3775689570002667,1.378948595299631,1.3803296153097455,1.3817120184143967,1.3830958059987566,1.3844809794493846,1.385867540154229,1.3872554895026274,1.38864482888531,1.3900355596943987,1.3914276833234103,1.3928212011672567,1.3942161146222474,1.3956124250860895,1.397010133957891,1.3984092426381602,1.3998097525288085,1.4012116650331508,1.402614981555908,1.4040197035032076,1.405425832282585,1.4068333693029862,1.408242315974767,1.4096526737096966,1.4110644439209579,1.412477628023149,1.4138922274322847,1.4153082435657978,1.4167256778425408,1.4181445316827874,1.4195648065082338,1.4209865037419993,1.422409624808629,1.423834171134095,1.4252601441457966,1.4266875452725634,1.4281163759446556,1.4295466375937662,1.4309783316530216,1.4324114595569837,1.4338460227416512,1.4352820226444605,1.4367194607042881,1.4381583383614518,1.439598657057711,1.4410404182362693,1.4424836233417766,1.443928273820328,1.4453743711194684,1.4468219166881915,1.4482709119769421,1.4497213584376185,1.4511732575235725,1.4526266106896113,1.4540814193919989,1.4555376850884585,1.4569954092381732,1.4584545933017863,1.4599152387414052,1.461377347020601,1.4628409196044108,1.464305957959339,1.4657724635533582,1.4672404378559118,1.4687098823379143,1.470180798471754,1.471653187731293,1.4731270515918704,1.474602391530302,1.4760792090248827,1.4775575055553887,1.4790372826030773,1.48051854165069,1.482001284182453,1.4834855116840782,1.484971225642767,1.486458427547209,1.4879471188875848,1.4894373011555682,1.4909289758443263,1.4924221444485217,1.4939168084643137,1.4954129693893607,1.4969106287228207,1.4984097879653522,1.499910448619118,1.5014126121877844,1.5029162801765241,1.5044214540920173,1.5059281354424525,1.5074363257375292,1.5089460264884589,1.510457239207966,1.511969965410291,1.5134842066111895,1.5149999643279362,1.516517240079325,1.5180360353856708,1.5195563517688115,1.5210781907521083,1.522601553860449,1.5241264426202479,1.5256528585594482,1.5271808032075236,1.528710278095479,1.5302412847558537,1.5317738247227202,1.533307899531689,1.5348435107199072,1.5363806598260625,1.5379193483903826,1.5394595779546383,1.5410013500621447,1.5425446662577618,1.5440895280878975,1.5456359371005077,1.5471838948450995,1.5487334028727313,1.5502844627360146,1.5518370759891162,1.5533912441877598,1.5549469688892261,1.5565042516523566,1.558063094037553,1.5596234976067809,1.5611854639235685,1.5627489945530117,1.5643140910617725,1.5658807550180829,1.5674489879917446,1.5690187915541318,1.570590167278193,1.5721631167384513,1.573737641511007,1.5753137431735384,1.5768914233053046,1.5784706834871458,1.580051525301486,1.581633950332333,1.5832179601652818,1.5848035563875151,1.5863907405878053,1.5879795143565159,1.589569879285603,1.5911618369686171,1.592755389000705,1.5943505369786104,1.5959472825006769,1.597545627166848,1.5991455725786703,1.600747120339294,1.6023502720534748,1.603955029327576,1.6055613937695687,1.6071693669890357,1.6087789505971708,1.6103901462067816,1.6120029554322914,1.6136173798897397,1.6152334211967851,1.616851080972706,1.6184703608384021,1.620091262416397,1.6217137873308394,1.6233379372075039,1.624963713673794,1.6265911183587423,1.6282201528930136,1.6298508189089056,1.6314831180403506,1.6331170519229175,1.6347526221938127,1.636389830491883,1.6380286784576161,1.6396691677331428,1.6413112999622381,1.642955076790324,1.6446004998644697,1.6462475708333941,1.647896291347468,1.6495466630587137,1.651198687620809,1.6528523666890875,1.6545077019205412,1.6561646949738207,1.6578233475092383,1.6594836611887689,1.6611456376760518,1.6628092786363928,1.664474585736765,1.666141560645812,1.667810205033847,1.669480520572857,1.6711525089365034,1.6728261718001238,1.6745015108407337,1.6761785277370276,1.6778572241693817,1.6795376018198551,1.6812196623721913,1.6829034075118208,1.6845888389258603,1.686275958303118,1.6879647673340925,1.689655267710976,1.6913474611276547,1.6930413492797118,1.6947369338644285,1.6964342165807855,1.6981331991294657,1.6998338832128548,1.7015362705350434,1.7032403628018287,1.7049461617207167,1.706653669000923,1.7083628863533753,1.7100738154907145,1.711786458127297,1.713500815979196,1.7152168907642034,1.7169346842018314,1.718654198013314,1.72037543392161,1.7220983936514025,1.723823078929103,1.7255494914828509,1.7272776330425172,1.7290075053397052,1.730739110107752,1.7324724490817314,1.7342075239984538,1.73594433659647,1.7376828886160716,1.739423181799293,1.7411652178899133,1.7429089986334578,1.7446545257772006,1.7464018010701652,1.748150826263127,1.749901603108614,1.7516541333609108,1.7534084187760577,1.755164461111854,1.7569222621278597,1.7586818235853974,1.760443147247552,1.7622062348791758,1.7639710882468882,1.7657377091190776,1.7675060992659037,1.7692762604592986,1.7710481944729695,1.7728219030823995,1.7745973880648502,1.7763746511993634,1.778153694266762,1.7799345190496525,1.7817171273324268,1.7835015209012641,1.7852877015441324,1.78707567105079,1.7888654312127876,1.790656983823471,1.792450330677981,1.7942454735732571,1.7960424143080376,1.7978411546828628,1.799641696500076,1.801444041563826,1.803248191680068,1.8050541486565657,1.8068619143028937,1.8086714904304388,1.8104828788524021,1.8122960813838003,1.8141110998414676,1.8159279360440583,1.8177465918120481,1.8195670689677355,1.821389369335244,1.8232134947405245,1.8250394470113562,1.826867227977349,1.8286968394699452,1.8305282833224208,1.8323615613698883,1.834196675449298,1.83603362739944,1.8378724190609457,1.8397130522762901,1.8415555288897931,1.8433998507476224,1.8452460196977938,1.8470940375901745,1.848943906276484,1.8507956276102968,1.8526492034470428,1.8545046356440111,1.8563619260603508,1.858221076557072,1.8600820889970493,1.861944965245023,1.8638097071676012,1.865676316633261,1.8675447955123505,1.8694151456770913,1.8712873690015803,1.873161467361791,1.8750374426355758,1.8769152967026677,1.8787950314446817,1.8806766487451188,1.8825601504893645,1.884445538564694,1.8863328148602718,1.8882219812671541,1.8901130396782921,1.8920059919885317,1.8939008400946176,1.8957975858951925,1.8976962312908023,1.8995967781838952,1.9014992284788252,1.9034035840818537,1.9053098469011502,1.9072180188467962,1.909128101830786,1.9110400977670288,1.9129540085713501,1.9148698361614946,1.9167875824571272,1.918707249379836,1.9206288388531332,1.922552352802457,1.9244777931551746,1.926405161840583,1.9283344607899118,1.9302656919363244,1.9321988572149202,1.9341339585627368,1.936070997918752,1.9380099772238852,1.9399508984209997,1.9418937634549038,1.9438385742723552,1.9457853328220598,1.9477340410546757,1.949684700922815,1.9516373143810446,1.953591883385889,1.9555484098958327,1.9575068958713213,1.9594673432747638,1.961429754070534,1.9633941302249744,1.9653604737063954,1.9673287864850797,1.9692990705332825,1.9712713278252345,1.9732455603371435,1.9752217700471966,1.9771999589355622,1.9791801289843918,1.9811622821778216,1.9831464205019753,1.9851325459449656,1.9871206604968963,1.9891107661498646,1.9911028648979623,1.9930969587372782,1.995093049665901,1.9970911396839197,1.999091230793427,2.0010933249985197,2.0030974243053032,2.0051035307218905,2.0071116462584064,2.0091217729269895,2.011133912741793,2.013148067718986,2.015164239876759,2.0171824312353226,2.019202643816911,2.0212248796457826,2.023249140748225,2.025275429152553,2.027303746889115,2.029334095990291,2.031366478490497,2.033400896426186,2.0354373518358524,2.03747584676003,2.039516383241297,2.041558963324277,2.0436035890556425,2.0456502624841137,2.047698985660465,2.049749760637522,2.051802589470168,2.053857474215344,2.055914416932051,2.057973419681352,2.0600344845263736,2.062097613532309,2.0641628087664206,2.06623007229804,2.0682994061985718,2.070370812541495,2.0724442934023646,2.0745198508588154,2.076597486990562,2.078677203879403,2.08075900360922,2.0828428882659833,2.0849288599377522,2.087016920714676,2.0891070726889986,2.0911993179550583,2.0932936586092916,2.095390096750234,2.0974886344785237,2.0995892738969015,2.101692017110214,2.1037968662254176,2.1059038233515768,2.108012890599869,2.110124070083587,2.112237363918138,2.11435277422105,2.11647030311197,2.118589952712669,2.120711725147042,2.1228356225411114,2.1249616470230293,2.1270898007230787,2.129220085773676,2.131352504309374,2.133487058466862,2.13562375038497,2.13776258220467,2.1399035560690782,2.142046674123457,2.1441919385152173,2.1463393513939204,2.1484889149112805,2.1506406312211674,2.1527945024796074,2.154950530844786,2.1571087184770503,2.1592690675389106,2.161431580195044,2.1635962586122948,2.1657631049596766,2.167932121408377,2.170103310131757,2.1722766733053542,2.1744522131068855,2.1766299317162483,2.1788098313155233,2.1809919140889766,2.183176182223062,2.1853626379064233,2.187551283329895,2.1897421206865073,2.191935152171486,2.194130379982255,2.1963278063184393,2.198527433381867,2.2007292633765716,2.2029332985087926,2.2051395409869814,2.207347993021799,2.2095586568261205,2.211771534615039,2.2139866286058645,2.2162039410181276,2.2184234740735826,2.2206452299962085,2.2228692110122115,2.225095419350027,2.227323857240324,2.2295545269160026,2.231787430612201,2.2340225705662964,2.236259949017905,2.238499568208888,2.2407414303833497,2.2429855377876433,2.2452318926703714,2.2474804972823885,2.2497313538768036,2.2519844647089813,2.2542398320365464,2.2564974581193833,2.2587573452196406,2.261019495601732,2.2632839115323398,2.2655505952804145,2.2678195491171813,2.2700907753161386,2.2723642761530622,2.2746400539060065,2.2769181108553087,2.2791984492835877,2.2814810714757505,2.283765979718992,2.286053176302796,2.2883426635189412,2.290634443661501,2.2929285190268462,2.2952248919136475,2.2975235646228773,2.2998245394578127,2.302127818724038,2.3044334047294455,2.3067412997842403,2.3090515062009396,2.3113640262943775,2.313678862381707,2.3159960167824,2.3183154918182534,2.3206372898133876,2.322961413094251,2.3252878639896233,2.3276166448306155,2.329947757950672,2.3322812056855766,2.3346169903734504,2.336955114354757,2.3392955799723043,2.3416383895712456,2.343983545499083,2.346331050105671,2.3486809057432154,2.3510331147662797,2.3533876795317843,2.35574460239901,2.358103885729601,2.3604655318875665,2.362829543239284,2.365195922153499,2.3675646710013307,2.369935792156273,2.372309287994197,2.3746851608933524,2.3770634132343713,2.3794440474002694,2.3818270657764504,2.3842124707507053,2.386600264713218,2.388990450056565,2.391383029175719,2.393778004468052,2.3961753783333366,2.3985751531737494,2.4009773313938716,2.403381915400693,2.4057889076036147,2.4081983104144498,2.410610126247428,2.4130243575191956,2.4154410066488206,2.4178600760577917,2.420281568170025,2.4227054854118624,2.425131830212077,2.427560605001873,2.429991812214891,2.4324254542872077,2.4348615336573407,2.437300052766248,2.4397410140573337,2.4421844199764484,2.444630272971893,2.4470785754944195,2.449529329997234,2.451982538936001,2.4544382047688424,2.4568963299563435,2.459356916961554,2.4618199682499884,2.464285486289632,2.466753473550942,2.4692239325068495,2.471696865632761,2.474172275406564,2.476650164308626,2.4791305348218,2.4816133894314247,2.4840987306253277,2.486586560893829,2.4890768827297425,2.4915696986283775,2.4940650110875437,2.4965628226075522,2.499063135691217,2.50156595284386,2.5040712765733124,2.5065791093899157,2.5090894538065256,2.5116023123385154,2.514117687503777,2.516635581822725,2.5191559978182965,2.5216789380159557,2.524204404943697,2.526732401132046,2.5292629291140623,2.531795991425344,2.534331590604026,2.5368697291907867,2.5394104097288492,2.541953634763983,2.544499406844508,2.547047728521295,2.5495986023477704,2.5521520308799177,2.5547080166762797,2.557266562297963,2.5598276703086382,2.562391343274542,2.564957583764484,2.5675263943498448,2.5700977776045804,2.5726717361052245,2.5752482724308923,2.57782738916328,2.5804090888866713,2.5829933741879376,2.5855802476565395,2.5881697118845333,2.59076176946657,2.593356422999899,2.5959536750843712,2.5985535283224417,2.6011559853191706,2.6037610486822285,2.606368721021896,2.608979004951071,2.6115919030852637,2.614207418042607,2.6168255524438555,2.619446308912387,2.622069690074208,2.624695698557955,2.6273243369948958,2.6299556080189346,2.632589514266613,2.635226058377114,2.6378652429922615,2.6405070707565272,2.643151544317031,2.645798666323544,2.6484484394284893,2.6511008662869484,2.6537559495566616,2.65641369189803,2.65907409597412,2.6617371644506647,2.6644028999960665,2.6670713052814006,2.669742382980418,2.6724161357695464,2.675092566327894,2.6777716773372537,2.6804534714821013,2.683137951449604,2.685825119929619,2.688514979614697,2.6912075332000858,2.693902783383732,2.6966007328662855,2.6993013843510996,2.7020047405442353,2.7047108041544634,2.707419577893269,2.7101310644748513,2.7128452666161285,2.715562187036739,2.718281828459045],"x":[5.551115123125783e-17,0.0010010010010010565,0.0020020020020020575,0.003003003003003058,0.0040040040040040595,0.0050050050050050605,0.0060060060060060615,0.0070070070070070625,0.008008008008008063,0.009009009009009064,0.010010010010010065,0.011011011011011066,0.012012012012012067,0.013013013013013068,0.01401401401401407,0.01501501501501507,0.016016016016016068,0.01701701701701707,0.01801801801801807,0.019019019019019073,0.020020020020020072,0.021021021021021075,0.022022022022022074,0.023023023023023077,0.024024024024024076,0.02502502502502508,0.026026026026026078,0.02702702702702708,0.02802802802802808,0.029029029029029083,0.030030030030030082,0.031031031031031085,0.03203203203203209,0.033033033033033087,0.03403403403403409,0.03503503503503509,0.03603603603603609,0.03703703703703709,0.0380380380380381,0.039039039039039096,0.04004004004004009,0.04104104104104109,0.042042042042042094,0.04304304304304309,0.04404404404404409,0.04504504504504509,0.0460460460460461,0.0470470470470471,0.048048048048048096,0.049049049049049095,0.0500500500500501,0.0510510510510511,0.0520520520520521,0.0530530530530531,0.054054054054054106,0.055055055055055105,0.056056056056056104,0.0570570570570571,0.05805805805805811,0.05905905905905911,0.06006006006006011,0.061061061061061114,0.062062062062062114,0.06306306306306311,0.06406406406406412,0.06506506506506513,0.06606606606606612,0.06706706706706712,0.06806806806806813,0.06906906906906912,0.07007007007007013,0.07107107107107113,0.07207207207207213,0.07307307307307313,0.07407407407407413,0.07507507507507513,0.07607607607607614,0.07707707707707713,0.07807807807807814,0.07907907907907914,0.08008008008008013,0.08108108108108114,0.08208208208208213,0.08308308308308314,0.08408408408408415,0.08508508508508514,0.08608608608608614,0.08708708708708715,0.08808808808808814,0.08908908908908915,0.09009009009009014,0.09109109109109115,0.09209209209209215,0.09309309309309315,0.09409409409409415,0.09509509509509516,0.09609609609609615,0.09709709709709716,0.09809809809809815,0.09909909909909916,0.10010010010010016,0.10110110110110115,0.10210210210210216,0.10310310310310317,0.10410410410410414,0.10510510510510515,0.10610610610610614,0.10710710710710715,0.10810810810810816,0.10910910910910915,0.11011011011011015,0.11111111111111116,0.11211211211211215,0.11311311311311316,0.11411411411411415,0.11511511511511516,0.11611611611611616,0.11711711711711716,0.11811811811811816,0.11911911911911917,0.12012012012012016,0.12112112112112117,0.12212212212212216,0.12312312312312317,0.12412412412412417,0.12512512512512516,0.12612612612612617,0.12712712712712718,0.12812812812812818,0.1291291291291292,0.1301301301301302,0.1311311311311312,0.13213213213213218,0.13313313313313319,0.1341341341341342,0.1351351351351352,0.1361361361361362,0.13713713713713718,0.1381381381381382,0.1391391391391392,0.1401401401401402,0.1411411411411412,0.14214214214214219,0.1431431431431432,0.1441441441441442,0.1451451451451452,0.1461461461461462,0.14714714714714722,0.1481481481481482,0.1491491491491492,0.1501501501501502,0.15115115115115121,0.15215215215215222,0.1531531531531532,0.1541541541541542,0.1551551551551552,0.15615615615615622,0.15715715715715722,0.1581581581581582,0.1591591591591592,0.16016016016016021,0.16116116116116122,0.16216216216216223,0.16316316316316323,0.1641641641641642,0.16516516516516522,0.16616616616616622,0.16716716716716723,0.16816816816816824,0.16916916916916921,0.17017017017017022,0.17117117117117123,0.17217217217217223,0.17317317317317324,0.17417417417417422,0.17517517517517522,0.17617617617617623,0.17717717717717724,0.17817817817817824,0.17917917917917925,0.18018018018018023,0.18118118118118123,0.18218218218218224,0.18318318318318325,0.18418418418418425,0.18518518518518523,0.18618618618618624,0.18718718718718724,0.18818818818818825,0.18918918918918926,0.19019019019019023,0.19119119119119124,0.19219219219219225,0.19319319319319325,0.19419419419419426,0.19519519519519526,0.19619619619619624,0.19719719719719725,0.19819819819819826,0.19919919919919926,0.20020020020020027,0.20120120120120125,0.20220220220220225,0.20320320320320326,0.20420420420420426,0.20520520520520527,0.20620620620620625,0.20720720720720726,0.20820820820820826,0.20920920920920927,0.21021021021021027,0.21121121121121128,0.21221221221221226,0.21321321321321327,0.21421421421421427,0.21521521521521528,0.21621621621621628,0.21721721721721726,0.21821821821821827,0.21921921921921927,0.22022022022022028,0.2212212212212213,0.22222222222222227,0.22322322322322327,0.22422422422422428,0.22522522522522528,0.2262262262262263,0.2272272272272273,0.22822822822822827,0.22922922922922928,0.2302302302302303,0.2312312312312313,0.23223223223223227,0.23323323323323325,0.23423423423423426,0.23523523523523526,0.23623623623623627,0.23723723723723728,0.23823823823823825,0.23923923923923926,0.24024024024024027,0.24124124124124127,0.24224224224224228,0.24324324324324328,0.24424424424424426,0.24524524524524527,0.24624624624624628,0.24724724724724728,0.2482482482482483,0.24924924924924927,0.2502502502502503,0.2512512512512513,0.2522522522522523,0.25325325325325326,0.2542542542542543,0.2552552552552553,0.2562562562562563,0.2572572572572573,0.2582582582582583,0.2592592592592593,0.26026026026026033,0.2612612612612613,0.26226226226226235,0.2632632632632633,0.2642642642642643,0.26526526526526534,0.2662662662662663,0.26726726726726735,0.26826826826826833,0.2692692692692693,0.27027027027027034,0.2712712712712713,0.27227227227227235,0.27327327327327333,0.2742742742742743,0.27527527527527534,0.2762762762762763,0.27727727727727736,0.27827827827827833,0.2792792792792793,0.28028028028028035,0.2812812812812813,0.28228228228228236,0.28328328328328334,0.2842842842842843,0.28528528528528535,0.28628628628628633,0.28728728728728736,0.28828828828828834,0.2892892892892893,0.29029029029029035,0.29129129129129133,0.29229229229229237,0.29329329329329334,0.2942942942942944,0.29529529529529536,0.29629629629629634,0.29729729729729737,0.29829829829829835,0.2992992992992994,0.30030030030030036,0.30130130130130134,0.3023023023023024,0.30330330330330335,0.3043043043043044,0.30530530530530536,0.30630630630630634,0.3073073073073074,0.30830830830830835,0.3093093093093094,0.31031031031031037,0.31131131131131135,0.3123123123123124,0.31331331331331336,0.3143143143143144,0.31531531531531537,0.31631631631631635,0.3173173173173174,0.31831831831831836,0.3193193193193194,0.3203203203203204,0.32132132132132135,0.3223223223223224,0.32332332332332336,0.3243243243243244,0.3253253253253254,0.3263263263263264,0.3273273273273274,0.32832832832832837,0.3293293293293294,0.3303303303303304,0.3313313313313314,0.3323323323323324,0.33333333333333337,0.3343343343343344,0.3353353353353354,0.3363363363363364,0.3373373373373374,0.3383383383383384,0.3393393393393394,0.3403403403403404,0.3413413413413414,0.3423423423423424,0.3433433433433434,0.3443443443443444,0.3453453453453454,0.3463463463463464,0.3473473473473474,0.3483483483483484,0.3493493493493494,0.3503503503503504,0.3513513513513514,0.3523523523523524,0.3533533533533534,0.3543543543543544,0.3553553553553554,0.35635635635635643,0.3573573573573574,0.35835835835835844,0.3593593593593594,0.3603603603603604,0.36136136136136143,0.3623623623623624,0.36336336336336345,0.3643643643643644,0.3653653653653654,0.36636636636636644,0.3673673673673674,0.36836836836836845,0.3693693693693694,0.3703703703703704,0.37137137137137144,0.3723723723723724,0.37337337337337345,0.37437437437437443,0.3753753753753754,0.37637637637637644,0.3773773773773774,0.37837837837837845,0.37937937937937943,0.3803803803803804,0.38138138138138145,0.3823823823823824,0.38338338338338346,0.38438438438438444,0.3853853853853854,0.38638638638638645,0.3873873873873874,0.38838838838838846,0.38938938938938944,0.3903903903903905,0.39139139139139145,0.39239239239239243,0.39339339339339346,0.39439439439439444,0.3953953953953955,0.39639639639639646,0.39739739739739743,0.39839839839839847,0.39939939939939945,0.4004004004004005,0.40140140140140146,0.40240240240240244,0.40340340340340347,0.40440440440440445,0.4054054054054055,0.40640640640640646,0.40740740740740744,0.4084084084084085,0.40940940940940945,0.4104104104104105,0.41141141141141147,0.41241241241241244,0.4134134134134135,0.41441441441441446,0.4154154154154155,0.41641641641641647,0.41741741741741745,0.4184184184184185,0.41941941941941946,0.4204204204204205,0.42142142142142147,0.4224224224224225,0.4234234234234235,0.42442442442442446,0.4254254254254255,0.4264264264264265,0.4274274274274275,0.4284284284284285,0.42942942942942947,0.4304304304304305,0.4314314314314315,0.4324324324324325,0.4334334334334335,0.43443443443443447,0.4354354354354355,0.4364364364364365,0.4374374374374375,0.4384384384384385,0.43943943943943947,0.4404404404404405,0.4414414414414415,0.4424424424424425,0.4434434434434435,0.4444444444444445,0.4454454454454455,0.4464464464464465,0.4474474474474475,0.4484484484484485,0.44944944944944953,0.4504504504504505,0.4514514514514515,0.4524524524524525,0.4534534534534535,0.45445445445445454,0.4554554554554555,0.4564564564564565,0.45745745745745753,0.4584584584584585,0.45945945945945954,0.4604604604604605,0.4614614614614615,0.46246246246246253,0.4634634634634635,0.46446446446446454,0.4654654654654655,0.4664664664664665,0.46746746746746753,0.4684684684684685,0.46946946946946955,0.4704704704704705,0.4714714714714715,0.47247247247247254,0.4734734734734735,0.47447447447447455,0.47547547547547553,0.4764764764764765,0.47747747747747754,0.4784784784784785,0.47947947947947955,0.48048048048048053,0.48148148148148157,0.48248248248248254,0.4834834834834835,0.48448448448448456,0.48548548548548554,0.48648648648648657,0.4874874874874875,0.48848848848848847,0.4894894894894895,0.4904904904904905,0.4914914914914915,0.4924924924924925,0.4934934934934935,0.4944944944944945,0.4954954954954955,0.4964964964964965,0.4974974974974975,0.4984984984984985,0.4994994994994995,0.5005005005005005,0.5015015015015015,0.5025025025025025,0.5035035035035035,0.5045045045045045,0.5055055055055055,0.5065065065065065,0.5075075075075075,0.5085085085085085,0.5095095095095095,0.5105105105105106,0.5115115115115115,0.5125125125125125,0.5135135135135135,0.5145145145145145,0.5155155155155156,0.5165165165165165,0.5175175175175175,0.5185185185185185,0.5195195195195195,0.5205205205205206,0.5215215215215215,0.5225225225225225,0.5235235235235235,0.5245245245245245,0.5255255255255256,0.5265265265265265,0.5275275275275275,0.5285285285285285,0.5295295295295295,0.5305305305305306,0.5315315315315315,0.5325325325325325,0.5335335335335335,0.5345345345345346,0.5355355355355356,0.5365365365365365,0.5375375375375375,0.5385385385385385,0.5395395395395396,0.5405405405405406,0.5415415415415415,0.5425425425425425,0.5435435435435435,0.5445445445445446,0.5455455455455456,0.5465465465465466,0.5475475475475475,0.5485485485485485,0.5495495495495496,0.5505505505505506,0.5515515515515516,0.5525525525525525,0.5535535535535535,0.5545545545545546,0.5555555555555556,0.5565565565565566,0.5575575575575575,0.5585585585585585,0.5595595595595596,0.5605605605605606,0.5615615615615616,0.5625625625625625,0.5635635635635635,0.5645645645645646,0.5655655655655656,0.5665665665665666,0.5675675675675675,0.5685685685685685,0.5695695695695696,0.5705705705705706,0.5715715715715716,0.5725725725725725,0.5735735735735735,0.5745745745745746,0.5755755755755756,0.5765765765765766,0.5775775775775776,0.5785785785785785,0.5795795795795796,0.5805805805805806,0.5815815815815816,0.5825825825825826,0.5835835835835835,0.5845845845845846,0.5855855855855856,0.5865865865865866,0.5875875875875876,0.5885885885885885,0.5895895895895896,0.5905905905905906,0.5915915915915916,0.5925925925925926,0.5935935935935935,0.5945945945945946,0.5955955955955956,0.5965965965965966,0.5975975975975976,0.5985985985985987,0.5995995995995996,0.6006006006006006,0.6016016016016016,0.6026026026026026,0.6036036036036037,0.6046046046046046,0.6056056056056056,0.6066066066066066,0.6076076076076076,0.6086086086086087,0.6096096096096096,0.6106106106106106,0.6116116116116116,0.6126126126126126,0.6136136136136137,0.6146146146146146,0.6156156156156156,0.6166166166166166,0.6176176176176176,0.6186186186186187,0.6196196196196196,0.6206206206206206,0.6216216216216216,0.6226226226226226,0.6236236236236237,0.6246246246246246,0.6256256256256256,0.6266266266266266,0.6276276276276276,0.6286286286286287,0.6296296296296297,0.6306306306306306,0.6316316316316316,0.6326326326326326,0.6336336336336337,0.6346346346346347,0.6356356356356356,0.6366366366366366,0.6376376376376376,0.6386386386386387,0.6396396396396397,0.6406406406406406,0.6416416416416416,0.6426426426426426,0.6436436436436437,0.6446446446446447,0.6456456456456456,0.6466466466466466,0.6476476476476476,0.6486486486486487,0.6496496496496497,0.6506506506506506,0.6516516516516516,0.6526526526526526,0.6536536536536537,0.6546546546546547,0.6556556556556556,0.6566566566566566,0.6576576576576577,0.6586586586586587,0.6596596596596597,0.6606606606606606,0.6616616616616616,0.6626626626626627,0.6636636636636637,0.6646646646646647,0.6656656656656657,0.6666666666666666,0.6676676676676677,0.6686686686686687,0.6696696696696697,0.6706706706706707,0.6716716716716716,0.6726726726726727,0.6736736736736737,0.6746746746746747,0.6756756756756757,0.6766766766766766,0.6776776776776777,0.6786786786786787,0.6796796796796797,0.6806806806806807,0.6816816816816816,0.6826826826826827,0.6836836836836837,0.6846846846846847,0.6856856856856857,0.6866866866866866,0.6876876876876877,0.6886886886886887,0.6896896896896897,0.6906906906906907,0.6916916916916916,0.6926926926926927,0.6936936936936937,0.6946946946946947,0.6956956956956957,0.6966966966966966,0.6976976976976977,0.6986986986986987,0.6996996996996997,0.7007007007007007,0.7017017017017017,0.7027027027027027,0.7037037037037037,0.7047047047047047,0.7057057057057057,0.7067067067067067,0.7077077077077077,0.7087087087087087,0.7097097097097097,0.7107107107107107,0.7117117117117117,0.7127127127127127,0.7137137137137137,0.7147147147147147,0.7157157157157157,0.7167167167167167,0.7177177177177178,0.7187187187187187,0.7197197197197197,0.7207207207207207,0.7217217217217218,0.7227227227227228,0.7237237237237237,0.7247247247247247,0.7257257257257257,0.7267267267267268,0.7277277277277278,0.7287287287287287,0.7297297297297297,0.7307307307307307,0.7317317317317318,0.7327327327327328,0.7337337337337337,0.7347347347347347,0.7357357357357357,0.7367367367367368,0.7377377377377378,0.7387387387387387,0.7397397397397397,0.7407407407407407,0.7417417417417418,0.7427427427427428,0.7437437437437437,0.7447447447447447,0.7457457457457457,0.7467467467467468,0.7477477477477478,0.7487487487487487,0.7497497497497497,0.7507507507507507,0.7517517517517518,0.7527527527527528,0.7537537537537538,0.7547547547547547,0.7557557557557557,0.7567567567567568,0.7577577577577578,0.7587587587587588,0.7597597597597597,0.7607607607607607,0.7617617617617618,0.7627627627627628,0.7637637637637638,0.7647647647647647,0.7657657657657657,0.7667667667667668,0.7677677677677678,0.7687687687687688,0.7697697697697697,0.7707707707707707,0.7717717717717718,0.7727727727727728,0.7737737737737738,0.7747747747747747,0.7757757757757757,0.7767767767767768,0.7777777777777778,0.7787787787787788,0.7797797797797797,0.7807807807807807,0.7817817817817818,0.7827827827827828,0.7837837837837838,0.7847847847847848,0.7857857857857858,0.7867867867867868,0.7877877877877878,0.7887887887887888,0.7897897897897898,0.7907907907907908,0.7917917917917918,0.7927927927927928,0.7937937937937938,0.7947947947947948,0.7957957957957958,0.7967967967967968,0.7977977977977978,0.7987987987987988,0.7997997997997998,0.8008008008008008,0.8018018018018018,0.8028028028028028,0.8038038038038038,0.8048048048048048,0.8058058058058059,0.8068068068068068,0.8078078078078078,0.8088088088088088,0.8098098098098098,0.8108108108108109,0.8118118118118118,0.8128128128128128,0.8138138138138138,0.8148148148148148,0.8158158158158159,0.8168168168168168,0.8178178178178178,0.8188188188188188,0.8198198198198198,0.8208208208208209,0.8218218218218218,0.8228228228228228,0.8238238238238238,0.8248248248248248,0.8258258258258259,0.8268268268268268,0.8278278278278278,0.8288288288288288,0.8298298298298298,0.8308308308308309,0.8318318318318318,0.8328328328328328,0.8338338338338338,0.8348348348348348,0.8358358358358359,0.8368368368368369,0.8378378378378378,0.8388388388388388,0.8398398398398398,0.8408408408408409,0.8418418418418419,0.8428428428428428,0.8438438438438438,0.8448448448448449,0.8458458458458459,0.8468468468468469,0.8478478478478478,0.8488488488488488,0.8498498498498499,0.8508508508508509,0.8518518518518519,0.8528528528528528,0.8538538538538538,0.8548548548548549,0.8558558558558559,0.8568568568568569,0.8578578578578578,0.8588588588588588,0.8598598598598599,0.8608608608608609,0.8618618618618619,0.8628628628628628,0.8638638638638638,0.8648648648648649,0.8658658658658659,0.8668668668668669,0.8678678678678678,0.8688688688688688,0.8698698698698699,0.8708708708708709,0.8718718718718719,0.8728728728728729,0.8738738738738738,0.8748748748748749,0.8758758758758759,0.8768768768768769,0.8778778778778779,0.8788788788788788,0.8798798798798799,0.8808808808808809,0.8818818818818819,0.8828828828828829,0.8838838838838838,0.8848848848848849,0.8858858858858859,0.8868868868868869,0.8878878878878879,0.8888888888888888,0.8898898898898899,0.8908908908908909,0.8918918918918919,0.8928928928928929,0.8938938938938938,0.8948948948948949,0.8958958958958959,0.8968968968968969,0.8978978978978979,0.8988988988988988,0.8998998998998999,0.9009009009009009,0.9019019019019019,0.9029029029029029,0.9039039039039038,0.9049049049049049,0.9059059059059059,0.9069069069069069,0.9079079079079079,0.908908908908909,0.9099099099099099,0.9109109109109109,0.9119119119119119,0.9129129129129129,0.913913913913914,0.914914914914915,0.9159159159159159,0.9169169169169169,0.9179179179179179,0.918918918918919,0.91991991991992,0.9209209209209209,0.9219219219219219,0.9229229229229229,0.923923923923924,0.924924924924925,0.9259259259259259,0.9269269269269269,0.9279279279279279,0.928928928928929,0.92992992992993,0.9309309309309309,0.9319319319319319,0.9329329329329329,0.933933933933934,0.934934934934935,0.9359359359359359,0.9369369369369369,0.9379379379379379,0.938938938938939,0.93993993993994,0.9409409409409409,0.9419419419419419,0.9429429429429429,0.943943943943944,0.944944944944945,0.9459459459459459,0.9469469469469469,0.9479479479479479,0.948948948948949,0.94994994994995,0.950950950950951,0.9519519519519519,0.9529529529529529,0.953953953953954,0.954954954954955,0.955955955955956,0.9569569569569569,0.9579579579579579,0.958958958958959,0.95995995995996,0.960960960960961,0.9619619619619619,0.9629629629629629,0.963963963963964,0.964964964964965,0.965965965965966,0.9669669669669669,0.9679679679679679,0.968968968968969,0.96996996996997,0.970970970970971,0.9719719719719719,0.972972972972973,0.973973973973974,0.974974974974975,0.975975975975976,0.9769769769769769,0.977977977977978,0.978978978978979,0.97997997997998,0.980980980980981,0.9819819819819819,0.982982982982983,0.983983983983984,0.984984984984985,0.985985985985986,0.986986986986987,0.987987987987988,0.988988988988989,0.98998998998999,0.990990990990991,0.991991991991992,0.992992992992993,0.993993993993994,0.994994994994995,0.995995995995996,0.996996996996997,0.997997997997998,0.998998998998999,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json new file mode 100644 index 000000000000..ce831c3528ab --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"x":[-5.551115123125783e-17,-5.5400017795359415e-17,-5.5288884359461e-17,-5.5177750923562586e-17,-5.506661748766417e-17,-5.4955484051765757e-17,-5.4844350615867345e-17,-5.473321717996893e-17,-5.4622083744070516e-17,-5.45109503081721e-17,-5.4399816872273687e-17,-5.4288683436375275e-17,-5.417755000047686e-17,-5.4066416564578446e-17,-5.395528312868003e-17,-5.3844149692781617e-17,-5.37330162568832e-17,-5.362188282098479e-17,-5.3510749385086376e-17,-5.339961594918796e-17,-5.3288482513289546e-17,-5.317734907739113e-17,-5.306621564149272e-17,-5.2955082205594306e-17,-5.284394876969589e-17,-5.2732815333797476e-17,-5.262168189789906e-17,-5.251054846200065e-17,-5.2399415026102235e-17,-5.228828159020382e-17,-5.2177148154305406e-17,-5.206601471840699e-17,-5.1954881282508577e-17,-5.1843747846610165e-17,-5.173261441071175e-17,-5.1621480974813336e-17,-5.151034753891492e-17,-5.1399214103016507e-17,-5.1288080667118095e-17,-5.117694723121968e-17,-5.1065813795321266e-17,-5.095468035942285e-17,-5.0843546923524437e-17,-5.0732413487626025e-17,-5.062128005172761e-17,-5.0510146615829196e-17,-5.039901317993078e-17,-5.0287879744032366e-17,-5.017674630813395e-17,-5.006561287223554e-17,-4.9954479436337126e-17,-4.984334600043871e-17,-4.9732212564540296e-17,-4.962107912864188e-17,-4.950994569274347e-17,-4.9398812256845055e-17,-4.928767882094664e-17,-4.9176545385048226e-17,-4.906541194914981e-17,-4.8954278513251397e-17,-4.8843145077352985e-17,-4.873201164145457e-17,-4.8620878205556156e-17,-4.850974476965774e-17,-4.8398611333759327e-17,-4.8287477897860915e-17,-4.81763444619625e-17,-4.8065211026064086e-17,-4.795407759016567e-17,-4.7842944154267257e-17,-4.7731810718368845e-17,-4.762067728247043e-17,-4.7509543846572016e-17,-4.73984104106736e-17,-4.7287276974775186e-17,-4.7176143538876775e-17,-4.706501010297836e-17,-4.6953876667079946e-17,-4.684274323118153e-17,-4.6731609795283116e-17,-4.66204763593847e-17,-4.650934292348629e-17,-4.6398209487587875e-17,-4.628707605168946e-17,-4.6175942615791046e-17,-4.606480917989263e-17,-4.5953675743994217e-17,-4.5842542308095805e-17,-4.573140887219739e-17,-4.5620275436298976e-17,-4.550914200040056e-17,-4.5398008564502147e-17,-4.5286875128603735e-17,-4.517574169270532e-17,-4.5064608256806906e-17,-4.495347482090849e-17,-4.4842341385010077e-17,-4.4731207949111665e-17,-4.462007451321325e-17,-4.4508941077314836e-17,-4.439780764141642e-17,-4.4286674205518006e-17,-4.4175540769619595e-17,-4.406440733372118e-17,-4.3953273897822766e-17,-4.384214046192435e-17,-4.3731007026025936e-17,-4.3619873590127525e-17,-4.350874015422911e-17,-4.3397606718330695e-17,-4.328647328243228e-17,-4.3175339846533866e-17,-4.306420641063545e-17,-4.2953072974737037e-17,-4.2841939538838625e-17,-4.273080610294021e-17,-4.2619672667041796e-17,-4.250853923114338e-17,-4.2397405795244967e-17,-4.2286272359346555e-17,-4.217513892344814e-17,-4.2064005487549726e-17,-4.195287205165131e-17,-4.1841738615752897e-17,-4.1730605179854485e-17,-4.161947174395607e-17,-4.1508338308057656e-17,-4.139720487215924e-17,-4.1286071436260826e-17,-4.1174938000362415e-17,-4.1063804564464e-17,-4.0952671128565586e-17,-4.084153769266717e-17,-4.0730404256768756e-17,-4.0619270820870345e-17,-4.050813738497193e-17,-4.0397003949073515e-17,-4.02858705131751e-17,-4.0174737077276686e-17,-4.0063603641378275e-17,-3.9952470205479857e-17,-3.9841336769581445e-17,-3.973020333368303e-17,-3.9619069897784616e-17,-3.95079364618862e-17,-3.9396803025987787e-17,-3.9285669590089375e-17,-3.917453615419096e-17,-3.9063402718292546e-17,-3.895226928239413e-17,-3.8841135846495717e-17,-3.8730002410597305e-17,-3.861886897469889e-17,-3.8507735538800476e-17,-3.839660210290206e-17,-3.8285468667003646e-17,-3.8174335231105235e-17,-3.806320179520682e-17,-3.7952068359308406e-17,-3.784093492340999e-17,-3.7729801487511576e-17,-3.7618668051613165e-17,-3.750753461571475e-17,-3.7396401179816335e-17,-3.728526774391792e-17,-3.7174134308019506e-17,-3.7063000872121095e-17,-3.6951867436222677e-17,-3.6840734000324265e-17,-3.672960056442585e-17,-3.6618467128527436e-17,-3.6507333692629024e-17,-3.6396200256730607e-17,-3.6285066820832195e-17,-3.617393338493378e-17,-3.6062799949035366e-17,-3.595166651313695e-17,-3.5840533077238537e-17,-3.5729399641340125e-17,-3.561826620544171e-17,-3.5507132769543296e-17,-3.539599933364488e-17,-3.5284865897746466e-17,-3.5173732461848055e-17,-3.506259902594964e-17,-3.4951465590051226e-17,-3.484033215415281e-17,-3.4729198718254396e-17,-3.4618065282355985e-17,-3.450693184645757e-17,-3.4395798410559155e-17,-3.428466497466074e-17,-3.4173531538762326e-17,-3.4062398102863915e-17,-3.3951264666965497e-17,-3.3840131231067085e-17,-3.372899779516867e-17,-3.3617864359270256e-17,-3.3506730923371844e-17,-3.3395597487473427e-17,-3.3284464051575015e-17,-3.31733306156766e-17,-3.3062197179778186e-17,-3.295106374387977e-17,-3.2839930307981357e-17,-3.2728796872082945e-17,-3.261766343618453e-17,-3.2506530000286116e-17,-3.23953965643877e-17,-3.2284263128489286e-17,-3.2173129692590875e-17,-3.206199625669246e-17,-3.1950862820794046e-17,-3.183972938489563e-17,-3.1728595948997216e-17,-3.1617462513098805e-17,-3.150632907720039e-17,-3.1395195641301975e-17,-3.128406220540356e-17,-3.1172928769505146e-17,-3.1061795333606735e-17,-3.0950661897708317e-17,-3.0839528461809905e-17,-3.072839502591149e-17,-3.0617261590013076e-17,-3.0506128154114664e-17,-3.0394994718216247e-17,-3.0283861282317835e-17,-3.017272784641942e-17,-3.0061594410521006e-17,-2.9950460974622594e-17,-2.9839327538724177e-17,-2.9728194102825765e-17,-2.961706066692735e-17,-2.9505927231028936e-17,-2.939479379513052e-17,-2.9283660359232106e-17,-2.9172526923333695e-17,-2.906139348743528e-17,-2.8950260051536866e-17,-2.883912661563845e-17,-2.8727993179740036e-17,-2.8616859743841625e-17,-2.850572630794321e-17,-2.8394592872044795e-17,-2.828345943614638e-17,-2.8172326000247966e-17,-2.8061192564349555e-17,-2.7950059128451137e-17,-2.7838925692552725e-17,-2.772779225665431e-17,-2.7616658820755896e-17,-2.750552538485748e-17,-2.7394391948959067e-17,-2.7283258513060655e-17,-2.717212507716224e-17,-2.7060991641263826e-17,-2.694985820536541e-17,-2.6838724769466997e-17,-2.6727591333568582e-17,-2.661645789767017e-17,-2.6505324461771756e-17,-2.639419102587334e-17,-2.6283057589974926e-17,-2.6171924154076512e-17,-2.60607907181781e-17,-2.5949657282279686e-17,-2.583852384638127e-17,-2.5727390410482856e-17,-2.5616256974584442e-17,-2.550512353868603e-17,-2.5393990102787615e-17,-2.52828566668892e-17,-2.5171723230990786e-17,-2.506058979509237e-17,-2.4949456359193957e-17,-2.4838322923295545e-17,-2.472718948739713e-17,-2.4616056051498716e-17,-2.45049226156003e-17,-2.4393789179701887e-17,-2.4282655743803475e-17,-2.417152230790506e-17,-2.4060388872006646e-17,-2.394925543610823e-17,-2.3838122000209817e-17,-2.3726988564311405e-17,-2.361585512841299e-17,-2.3504721692514576e-17,-2.339358825661616e-17,-2.3282454820717746e-17,-2.3171321384819332e-17,-2.306018794892092e-17,-2.2949054513022506e-17,-2.283792107712409e-17,-2.2726787641225676e-17,-2.2615654205327262e-17,-2.250452076942885e-17,-2.2393387333530435e-17,-2.228225389763202e-17,-2.2171120461733606e-17,-2.205998702583519e-17,-2.194885358993678e-17,-2.1837720154038365e-17,-2.172658671813995e-17,-2.1615453282241536e-17,-2.150431984634312e-17,-2.1393186410444707e-17,-2.1282052974546295e-17,-2.117091953864788e-17,-2.1059786102749466e-17,-2.094865266685105e-17,-2.0837519230952637e-17,-2.0726385795054225e-17,-2.061525235915581e-17,-2.0504118923257396e-17,-2.039298548735898e-17,-2.0281852051460566e-17,-2.0170718615562155e-17,-2.005958517966374e-17,-1.9948451743765326e-17,-1.983731830786691e-17,-1.9726184871968496e-17,-1.9615051436070082e-17,-1.950391800017167e-17,-1.9392784564273255e-17,-1.928165112837484e-17,-1.9170517692476426e-17,-1.905938425657801e-17,-1.89482508206796e-17,-1.8837117384781185e-17,-1.872598394888277e-17,-1.8614850512984356e-17,-1.850371707708594e-17,-1.839258364118753e-17,-1.8281450205289115e-17,-1.81703167693907e-17,-1.8059183333492286e-17,-1.794804989759387e-17,-1.7836916461695457e-17,-1.7725783025797045e-17,-1.761464958989863e-17,-1.7503516154000216e-17,-1.73923827181018e-17,-1.7281249282203386e-17,-1.7170115846304975e-17,-1.705898241040656e-17,-1.6947848974508146e-17,-1.683671553860973e-17,-1.6725582102711316e-17,-1.6614448666812905e-17,-1.650331523091449e-17,-1.6392181795016075e-17,-1.628104835911766e-17,-1.6169914923219246e-17,-1.605878148732083e-17,-1.594764805142242e-17,-1.5836514615524005e-17,-1.572538117962559e-17,-1.5614247743727176e-17,-1.550311430782876e-17,-1.539198087193035e-17,-1.5280847436031935e-17,-1.516971400013352e-17,-1.5058580564235106e-17,-1.494744712833669e-17,-1.483631369243828e-17,-1.4725180256539865e-17,-1.461404682064145e-17,-1.4502913384743036e-17,-1.439177994884462e-17,-1.4280646512946206e-17,-1.4169513077047795e-17,-1.405837964114938e-17,-1.3947246205250966e-17,-1.3836112769352551e-17,-1.3724979333454138e-17,-1.3613845897555723e-17,-1.350271246165731e-17,-1.3391579025758895e-17,-1.328044558986048e-17,-1.3169312153962068e-17,-1.3058178718063653e-17,-1.2947045282165238e-17,-1.2835911846266825e-17,-1.272477841036841e-17,-1.2613644974469997e-17,-1.2502511538571583e-17,-1.2391378102673168e-17,-1.2280244666774755e-17,-1.216911123087634e-17,-1.2057977794977926e-17,-1.1946844359079513e-17,-1.1835710923181098e-17,-1.1724577487282685e-17,-1.161344405138427e-17,-1.1502310615485856e-17,-1.1391177179587443e-17,-1.1280043743689028e-17,-1.1168910307790613e-17,-1.10577768718922e-17,-1.0946643435993786e-17,-1.0835510000095371e-17,-1.0724376564196958e-17,-1.0613243128298543e-17,-1.050210969240013e-17,-1.0390976256501715e-17,-1.02798428206033e-17,-1.0168709384704888e-17,-1.0057575948806473e-17,-9.946442512908058e-18,-9.835309077009645e-18,-9.72417564111123e-18,-9.613042205212817e-18,-9.501908769314403e-18,-9.390775333415988e-18,-9.279641897517575e-18,-9.16850846161916e-18,-9.057375025720746e-18,-8.946241589822333e-18,-8.835108153923918e-18,-8.723974718025505e-18,-8.61284128212709e-18,-8.501707846228676e-18,-8.390574410330263e-18,-8.279440974431848e-18,-8.168307538533433e-18,-8.05717410263502e-18,-7.946040666736606e-18,-7.834907230838192e-18,-7.723773794939778e-18,-7.612640359041363e-18,-7.50150692314295e-18,-7.390373487244535e-18,-7.27924005134612e-18,-7.168106615447708e-18,-7.056973179549293e-18,-6.94583974365088e-18,-6.834706307752465e-18,-6.723572871854051e-18,-6.612439435955637e-18,-6.501306000057223e-18,-6.390172564158809e-18,-6.279039128260395e-18,-6.1679056923619804e-18,-6.0567722564635666e-18,-5.945638820565153e-18,-5.834505384666739e-18,-5.723371948768324e-18,-5.61223851286991e-18,-5.5011050769714964e-18,-5.3899716410730825e-18,-5.278838205174668e-18,-5.167704769276254e-18,-5.05657133337784e-18,-4.945437897479426e-18,-4.834304461581012e-18,-4.723171025682598e-18,-4.612037589784184e-18,-4.50090415388577e-18,-4.389770717987355e-18,-4.2786372820889415e-18,-4.1675038461905276e-18,-4.056370410292114e-18,-3.945236974393699e-18,-3.834103538495285e-18,-3.722970102596871e-18,-3.6118366666984575e-18,-3.500703230800043e-18,-3.389569794901629e-18,-3.278436359003215e-18,-3.167302923104801e-18,-3.056169487206387e-18,-2.9450360513079727e-18,-2.833902615409559e-18,-2.7227691795111445e-18,-2.6116357436127307e-18,-2.5005023077143164e-18,-2.3893688718159025e-18,-2.2782354359174883e-18,-2.1671020000190744e-18,-2.05596856412066e-18,-1.9448351282222463e-18,-1.833701692323832e-18,-1.7225682564254181e-18,-1.611434820527004e-18,-1.50030138462859e-18,-1.389167948730176e-18,-1.2780345128317619e-18,-1.1669010769333478e-18,-1.0557676410349337e-18,-9.446342051365197e-19,-8.335007692381055e-19,-7.223673333396914e-19,-6.112338974412774e-19,-5.001004615428633e-19,-3.8896702564444924e-19,-2.7783358974603517e-19,-1.667001538476211e-19,-5.556671794920703e-20,5.556671794920703e-20,1.667001538476211e-19,2.7783358974603517e-19,3.8896702564444924e-19,5.001004615428633e-19,6.112338974412774e-19,7.223673333396914e-19,8.335007692381055e-19,9.446342051365197e-19,1.0557676410349337e-18,1.1669010769333478e-18,1.2780345128317619e-18,1.389167948730176e-18,1.50030138462859e-18,1.611434820527004e-18,1.7225682564254181e-18,1.833701692323832e-18,1.9448351282222463e-18,2.05596856412066e-18,2.1671020000190744e-18,2.2782354359174883e-18,2.3893688718159025e-18,2.5005023077143164e-18,2.6116357436127307e-18,2.7227691795111445e-18,2.833902615409559e-18,2.9450360513079727e-18,3.056169487206387e-18,3.167302923104801e-18,3.278436359003215e-18,3.389569794901629e-18,3.500703230800043e-18,3.6118366666984575e-18,3.722970102596871e-18,3.834103538495285e-18,3.945236974393699e-18,4.056370410292114e-18,4.1675038461905276e-18,4.2786372820889415e-18,4.389770717987355e-18,4.50090415388577e-18,4.612037589784184e-18,4.723171025682598e-18,4.834304461581012e-18,4.945437897479426e-18,5.05657133337784e-18,5.167704769276254e-18,5.278838205174668e-18,5.3899716410730825e-18,5.5011050769714964e-18,5.61223851286991e-18,5.723371948768324e-18,5.834505384666739e-18,5.945638820565153e-18,6.0567722564635666e-18,6.1679056923619804e-18,6.279039128260395e-18,6.390172564158809e-18,6.501306000057223e-18,6.612439435955637e-18,6.723572871854051e-18,6.834706307752465e-18,6.94583974365088e-18,7.056973179549293e-18,7.168106615447708e-18,7.27924005134612e-18,7.390373487244535e-18,7.50150692314295e-18,7.612640359041363e-18,7.723773794939778e-18,7.834907230838192e-18,7.946040666736606e-18,8.05717410263502e-18,8.168307538533433e-18,8.279440974431848e-18,8.390574410330263e-18,8.501707846228676e-18,8.61284128212709e-18,8.723974718025505e-18,8.835108153923918e-18,8.946241589822333e-18,9.057375025720746e-18,9.16850846161916e-18,9.279641897517575e-18,9.390775333415988e-18,9.501908769314403e-18,9.613042205212817e-18,9.72417564111123e-18,9.835309077009645e-18,9.946442512908058e-18,1.0057575948806473e-17,1.0168709384704888e-17,1.02798428206033e-17,1.0390976256501715e-17,1.050210969240013e-17,1.0613243128298543e-17,1.0724376564196958e-17,1.0835510000095371e-17,1.0946643435993786e-17,1.10577768718922e-17,1.1168910307790613e-17,1.1280043743689028e-17,1.1391177179587443e-17,1.1502310615485856e-17,1.161344405138427e-17,1.1724577487282685e-17,1.1835710923181098e-17,1.1946844359079513e-17,1.2057977794977926e-17,1.216911123087634e-17,1.2280244666774755e-17,1.2391378102673168e-17,1.2502511538571583e-17,1.2613644974469997e-17,1.272477841036841e-17,1.2835911846266825e-17,1.2947045282165238e-17,1.3058178718063653e-17,1.3169312153962068e-17,1.328044558986048e-17,1.3391579025758895e-17,1.350271246165731e-17,1.3613845897555723e-17,1.3724979333454138e-17,1.3836112769352551e-17,1.3947246205250966e-17,1.405837964114938e-17,1.4169513077047795e-17,1.4280646512946206e-17,1.439177994884462e-17,1.4502913384743036e-17,1.461404682064145e-17,1.4725180256539865e-17,1.483631369243828e-17,1.494744712833669e-17,1.5058580564235106e-17,1.516971400013352e-17,1.5280847436031935e-17,1.539198087193035e-17,1.550311430782876e-17,1.5614247743727176e-17,1.572538117962559e-17,1.5836514615524005e-17,1.594764805142242e-17,1.605878148732083e-17,1.6169914923219246e-17,1.628104835911766e-17,1.6392181795016075e-17,1.650331523091449e-17,1.6614448666812905e-17,1.6725582102711316e-17,1.683671553860973e-17,1.6947848974508146e-17,1.705898241040656e-17,1.7170115846304975e-17,1.7281249282203386e-17,1.73923827181018e-17,1.7503516154000216e-17,1.761464958989863e-17,1.7725783025797045e-17,1.7836916461695457e-17,1.794804989759387e-17,1.8059183333492286e-17,1.81703167693907e-17,1.8281450205289115e-17,1.839258364118753e-17,1.850371707708594e-17,1.8614850512984356e-17,1.872598394888277e-17,1.8837117384781185e-17,1.89482508206796e-17,1.905938425657801e-17,1.9170517692476426e-17,1.928165112837484e-17,1.9392784564273255e-17,1.950391800017167e-17,1.9615051436070082e-17,1.9726184871968496e-17,1.983731830786691e-17,1.9948451743765326e-17,2.005958517966374e-17,2.0170718615562155e-17,2.0281852051460566e-17,2.039298548735898e-17,2.0504118923257396e-17,2.061525235915581e-17,2.0726385795054225e-17,2.0837519230952637e-17,2.094865266685105e-17,2.1059786102749466e-17,2.117091953864788e-17,2.1282052974546295e-17,2.1393186410444707e-17,2.150431984634312e-17,2.1615453282241536e-17,2.172658671813995e-17,2.1837720154038365e-17,2.194885358993678e-17,2.205998702583519e-17,2.2171120461733606e-17,2.228225389763202e-17,2.2393387333530435e-17,2.250452076942885e-17,2.2615654205327262e-17,2.2726787641225676e-17,2.283792107712409e-17,2.2949054513022506e-17,2.306018794892092e-17,2.3171321384819332e-17,2.3282454820717746e-17,2.339358825661616e-17,2.3504721692514576e-17,2.361585512841299e-17,2.3726988564311405e-17,2.3838122000209817e-17,2.394925543610823e-17,2.4060388872006646e-17,2.417152230790506e-17,2.4282655743803475e-17,2.4393789179701887e-17,2.45049226156003e-17,2.4616056051498716e-17,2.472718948739713e-17,2.4838322923295545e-17,2.4949456359193957e-17,2.506058979509237e-17,2.5171723230990786e-17,2.52828566668892e-17,2.5393990102787615e-17,2.550512353868603e-17,2.5616256974584442e-17,2.5727390410482856e-17,2.583852384638127e-17,2.5949657282279686e-17,2.60607907181781e-17,2.6171924154076512e-17,2.6283057589974926e-17,2.639419102587334e-17,2.6505324461771756e-17,2.661645789767017e-17,2.6727591333568582e-17,2.6838724769466997e-17,2.694985820536541e-17,2.7060991641263826e-17,2.717212507716224e-17,2.7283258513060655e-17,2.7394391948959067e-17,2.750552538485748e-17,2.7616658820755896e-17,2.772779225665431e-17,2.7838925692552725e-17,2.7950059128451137e-17,2.8061192564349555e-17,2.8172326000247966e-17,2.828345943614638e-17,2.8394592872044795e-17,2.850572630794321e-17,2.8616859743841625e-17,2.8727993179740036e-17,2.883912661563845e-17,2.8950260051536866e-17,2.906139348743528e-17,2.9172526923333695e-17,2.9283660359232106e-17,2.939479379513052e-17,2.9505927231028936e-17,2.961706066692735e-17,2.9728194102825765e-17,2.9839327538724177e-17,2.9950460974622594e-17,3.0061594410521006e-17,3.017272784641942e-17,3.0283861282317835e-17,3.0394994718216247e-17,3.0506128154114664e-17,3.0617261590013076e-17,3.072839502591149e-17,3.0839528461809905e-17,3.0950661897708317e-17,3.1061795333606735e-17,3.1172928769505146e-17,3.128406220540356e-17,3.1395195641301975e-17,3.150632907720039e-17,3.1617462513098805e-17,3.1728595948997216e-17,3.183972938489563e-17,3.1950862820794046e-17,3.206199625669246e-17,3.2173129692590875e-17,3.2284263128489286e-17,3.23953965643877e-17,3.2506530000286116e-17,3.261766343618453e-17,3.2728796872082945e-17,3.2839930307981357e-17,3.295106374387977e-17,3.3062197179778186e-17,3.31733306156766e-17,3.3284464051575015e-17,3.3395597487473427e-17,3.3506730923371844e-17,3.3617864359270256e-17,3.372899779516867e-17,3.3840131231067085e-17,3.3951264666965497e-17,3.4062398102863915e-17,3.4173531538762326e-17,3.428466497466074e-17,3.4395798410559155e-17,3.450693184645757e-17,3.4618065282355985e-17,3.4729198718254396e-17,3.484033215415281e-17,3.4951465590051226e-17,3.506259902594964e-17,3.5173732461848055e-17,3.5284865897746466e-17,3.539599933364488e-17,3.5507132769543296e-17,3.561826620544171e-17,3.5729399641340125e-17,3.5840533077238537e-17,3.595166651313695e-17,3.6062799949035366e-17,3.617393338493378e-17,3.6285066820832195e-17,3.6396200256730607e-17,3.6507333692629024e-17,3.6618467128527436e-17,3.672960056442585e-17,3.6840734000324265e-17,3.6951867436222677e-17,3.7063000872121095e-17,3.7174134308019506e-17,3.728526774391792e-17,3.7396401179816335e-17,3.750753461571475e-17,3.7618668051613165e-17,3.7729801487511576e-17,3.784093492340999e-17,3.7952068359308406e-17,3.806320179520682e-17,3.8174335231105235e-17,3.8285468667003646e-17,3.839660210290206e-17,3.8507735538800476e-17,3.861886897469889e-17,3.8730002410597305e-17,3.8841135846495717e-17,3.895226928239413e-17,3.9063402718292546e-17,3.917453615419096e-17,3.9285669590089375e-17,3.9396803025987787e-17,3.95079364618862e-17,3.9619069897784616e-17,3.973020333368303e-17,3.9841336769581445e-17,3.9952470205479857e-17,4.0063603641378275e-17,4.0174737077276686e-17,4.02858705131751e-17,4.0397003949073515e-17,4.050813738497193e-17,4.0619270820870345e-17,4.0730404256768756e-17,4.084153769266717e-17,4.0952671128565586e-17,4.1063804564464e-17,4.1174938000362415e-17,4.1286071436260826e-17,4.139720487215924e-17,4.1508338308057656e-17,4.161947174395607e-17,4.1730605179854485e-17,4.1841738615752897e-17,4.195287205165131e-17,4.2064005487549726e-17,4.217513892344814e-17,4.2286272359346555e-17,4.2397405795244967e-17,4.250853923114338e-17,4.2619672667041796e-17,4.273080610294021e-17,4.2841939538838625e-17,4.2953072974737037e-17,4.306420641063545e-17,4.3175339846533866e-17,4.328647328243228e-17,4.3397606718330695e-17,4.350874015422911e-17,4.3619873590127525e-17,4.3731007026025936e-17,4.384214046192435e-17,4.3953273897822766e-17,4.406440733372118e-17,4.4175540769619595e-17,4.4286674205518006e-17,4.439780764141642e-17,4.4508941077314836e-17,4.462007451321325e-17,4.4731207949111665e-17,4.4842341385010077e-17,4.495347482090849e-17,4.5064608256806906e-17,4.517574169270532e-17,4.5286875128603735e-17,4.5398008564502147e-17,4.550914200040056e-17,4.5620275436298976e-17,4.573140887219739e-17,4.5842542308095805e-17,4.5953675743994217e-17,4.606480917989263e-17,4.6175942615791046e-17,4.628707605168946e-17,4.6398209487587875e-17,4.650934292348629e-17,4.66204763593847e-17,4.6731609795283116e-17,4.684274323118153e-17,4.6953876667079946e-17,4.706501010297836e-17,4.7176143538876775e-17,4.7287276974775186e-17,4.73984104106736e-17,4.7509543846572016e-17,4.762067728247043e-17,4.7731810718368845e-17,4.7842944154267257e-17,4.795407759016567e-17,4.8065211026064086e-17,4.81763444619625e-17,4.8287477897860915e-17,4.8398611333759327e-17,4.850974476965774e-17,4.8620878205556156e-17,4.873201164145457e-17,4.8843145077352985e-17,4.8954278513251397e-17,4.906541194914981e-17,4.9176545385048226e-17,4.928767882094664e-17,4.9398812256845055e-17,4.950994569274347e-17,4.962107912864188e-17,4.9732212564540296e-17,4.984334600043871e-17,4.9954479436337126e-17,5.006561287223554e-17,5.017674630813395e-17,5.0287879744032366e-17,5.039901317993078e-17,5.0510146615829196e-17,5.062128005172761e-17,5.0732413487626025e-17,5.0843546923524437e-17,5.095468035942285e-17,5.1065813795321266e-17,5.117694723121968e-17,5.1288080667118095e-17,5.1399214103016507e-17,5.151034753891492e-17,5.1621480974813336e-17,5.173261441071175e-17,5.1843747846610165e-17,5.1954881282508577e-17,5.206601471840699e-17,5.2177148154305406e-17,5.228828159020382e-17,5.2399415026102235e-17,5.251054846200065e-17,5.262168189789906e-17,5.2732815333797476e-17,5.284394876969589e-17,5.2955082205594306e-17,5.306621564149272e-17,5.317734907739113e-17,5.3288482513289546e-17,5.339961594918796e-17,5.3510749385086376e-17,5.362188282098479e-17,5.37330162568832e-17,5.3844149692781617e-17,5.395528312868003e-17,5.4066416564578446e-17,5.417755000047686e-17,5.4288683436375275e-17,5.4399816872273687e-17,5.45109503081721e-17,5.4622083744070516e-17,5.473321717996893e-17,5.4844350615867345e-17,5.4955484051765757e-17,5.506661748766417e-17,5.5177750923562586e-17,5.5288884359461e-17,5.5400017795359415e-17,5.551115123125783e-17]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js new file mode 100644 index 000000000000..e5f090558a3d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js @@ -0,0 +1,165 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 absf = require( '@stdlib/math/base/special/absf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var expf = require( './../lib' ); + + +// FIXTURES // + +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var tiny = require( './fixtures/julia/tiny.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof expf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for negative medium numbers', function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for positive medium numbers', function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for negative small numbers', function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for positive small numbers', function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for very small `x`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = tiny.x; + expected = tiny.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function returns `0` if provided a `-infinity`', function test( t ) { + var val = expf( NINF ); + t.equal( val, 0.0, 'returns 0' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided a `+infinity`', function test( t ) { + var val = expf( PINF ); + t.equal( val, PINF, 'returns +infinity' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { + var val = expf( NaN ); + t.equal( isnan( val ), true, 'returns NaN' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js new file mode 100644 index 000000000000..347a53cfad88 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js @@ -0,0 +1,174 @@ +/** +* @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 absf = require( '@stdlib/math/base/special/absf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var EPS = require( '@stdlib/constants/float32/eps' ); + + +// FIXTURES // + +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var tiny = require( './fixtures/julia/tiny.json' ); + + +// VARIABLES // + +var expf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( expf instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof expf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for negative medium numbers', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for positive medium numbers', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for negative small numbers', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for positive small numbers', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function accurately computes the natural exponential function for very small `x`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var v; + var i; + + x = tiny.x; + expected = tiny.expected; + + for ( i = 0; i < x.length; i++ ) { + v = expf( x[ i ] ); + delta = absf( v - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); + } + t.end(); +}); + +tape( 'the function returns `0` if provided a `-infinity`', opts, function test( t ) { + var val = expf( NINF ); + t.equal( val, 0.0, 'returns 0' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided a `+infinity`', opts, function test( t ) { + var val = expf( PINF ); + t.equal( val, PINF, 'returns +infinity' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) { + var val = expf( NaN ); + t.equal( isnan( val ), true, 'returns NaN' ); + t.end(); +}); From b9099eb06295f03ed4115b85834b65fb54a9dea9 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Tue, 3 Dec 2024 18:56:09 +0530 Subject: [PATCH 02/18] test file updated --- .../special/expf/test/fixtures/julia/REQUIRE | 2 - .../test/fixtures/julia/medium_negative.json | 1 - .../test/fixtures/julia/medium_positive.json | 1 - .../expf/test/fixtures/julia/runner.jl | 80 ------------------- .../test/fixtures/julia/small_negative.json | 1 - .../test/fixtures/julia/small_positive.json | 1 - .../expf/test/fixtures/julia/tiny.json | 1 - 7 files changed, 87 deletions(-) delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE deleted file mode 100644 index 308c3be89c85..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 1.5 -JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json deleted file mode 100644 index 43be229407e2..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[5.577796105262746e-309,1.1339398160779814e-308,2.305246520707203e-308,4.686458175189963e-308,9.527349908359073e-308,1.936865600483901e-307,3.937557023119308e-307,8.004868952416926e-307,1.6273523550040948e-306,3.308331095836083e-306,6.725682121650714e-306,1.3672996653333795e-305,2.7796561612729665e-305,5.650910748243318e-305,1.148803680452031e-304,2.3354640606034155e-304,4.7478890180992455e-304,9.652235933943541e-304,1.9622543443906778e-303,3.989171150012887e-303,8.109798054255199e-303,1.6486839498122047e-302,3.3516972286905064e-302,6.813843438028223e-302,1.3852224479149914e-301,2.816092338573974e-301,5.724983789652396e-301,1.1638623827362127e-300,2.3660776968429808e-300,4.810125106317893e-300,9.778758985513798e-300,1.9879758880113021e-299,4.041461843132057e-299,8.216102583533701e-299,1.6702951625751893e-298,3.3956318117462523e-298,6.903160387034531e-298,1.4033801651955533e-297,2.853006127111835e-297,5.800027792328483e-297,1.1791184768971283e-296,2.3970926215203577e-296,4.8731769951290485e-296,9.906940521470375e-296,2.01403459373717e-295,4.094437971015507e-295,8.323800569576132e-295,1.692189658569519e-294,3.440142296340201e-294,6.993648116885296e-294,1.4217758967368118e-293,2.890403787490341e-293,5.876055483787729e-293,1.194574550379188e-292,2.428514094787992e-292,4.937055378178396e-292,1.003680228148947e-291,2.0404348811432797e-291,4.1481085184521685e-291,8.432910278034609e-291,1.714371151117459e-290,3.4852362314809936e-290,7.085321974363766e-290,1.4404127624679073e-289,2.9282916623792526e-289,5.953079758380626e-289,1.2102332245430295e-288,2.4603474457503446e-288,5.001771089283406e-288,1.0168366290217815e-287,2.0671812277371344e-287,4.202482588003608e-287,8.54345021399415e-287,1.7368434022153222e-286,3.530921265132056e-286,7.17819750742131e-286,1.459293923214019e-285,2.9666761775890716e-285,6.031113679476846e-285,1.226097155111051e-284,2.4925980733655195e-284,5.0673351042746426e-284,1.0301654861004768e-283,2.0942781697174158e-283,4.257569401551122e-283,8.655439125103524e-283,1.7596102231728544e-282,3.577205145507556e-282,7.272290467811877e-282,1.4784225812335872e-281,3.005563843159841e-281,6.110170481684826e-281,1.2421690326167307e-280,2.5252714473628646e-280,5.133758542855636e-280,1.043669059968313e-279,2.121730302744969e-279,4.313378301855978e-279,8.76889600476159e-279,1.782675475259067e-278,3.624095722385273e-278,7.367616813769214e-278,1.4978019807600995e-277,3.044961254467259e-277,6.190263573094396e-277,1.2584515828619083e-276,2.558373109169826e-276,5.201052670487014e-276,1.0573496408411288e-275,2.149542282720339e-275,4.3699187541473034e-275,8.883840095335756e-275,1.806043070356495e-274,3.6716009484407647e-274,7.464192712706816e-274,1.5174354085534791e-273,3.0848750933402777e-273,6.271406537548655e-273,1.2749475673786746e-272,2.5919086728508935e-272,5.269228900301216e-272,1.0712095489548002e-271,2.1777188265750804e-271,4.427200347725982e-271,9.000290891422426e-271,1.8297169716260705e-270,3.7197288805928735e-270,7.562034543965731e-270,1.53732619445703e-269,3.125312129193278e-269,6.353613136952727e-269,1.2916597838972903e-268,2.625883826061485e-268,5.338298795033464e-268,1.085251134959587e-267,2.2062647130710533e-267,4.485232797589477e-267,9.118268143160358e-267,1.8537011941776465e-266,3.768487681373072e-266,7.661158901590064e-266,1.557477711961651e-265,3.16627922017662e-265,6.436897313602117e-265,1.308591066821546e-264,2.6603043310117267e-264,5.408274068986959e-264,1.0994767803184525e-263,2.235184783610137e-263,4.544025946083015e-263,9.237791859572165e-263,1.8779998057524016e-262,3.8178856203086194e-262,7.761582597138686e-262,1.5778933787792019e-261,3.207783314336963e-261,6.521273192552332e-261,1.325744287709056e-260,2.6951760254428076e-260,5.479166590017883e-260,1.1138888977105826e-259,2.2644839430570926e-259,4.6035897645648077e-259,9.358882311965036e-259,1.9026169274121239e-258,3.867931075323755e-258,7.863322662542579e-258,1.598576657420743e-257,3.2498314507981538e-257,6.6067550840123956e-257,1.343122355757819e-256,2.73050482361918e-256,5.550988381546308e-256,1.128489931441323e-255,2.294167160569408e-255,4.663934355100772e-255,9.48156003736574e-255,1.92755673423749e-254,3.9186325341636394e-254,7.966396352986444e-254,1.619531055785021e-253,3.292430760954013e-253,6.693357485769586e-253,1.360728218300673e-252,2.7662967173291856e-252,5.623751624599085e-252,1.1432823578563689e-251,2.324239470441855e-251,4.7250699521763406e-251,9.605845842000438e-251,1.952823456037672e-250,3.9699985958303804e-250,8.070821149841385e-250,1.6407601277528884e-249,3.3355884696766896e-249,6.781095085653516e-249,1.3785648613039508e-248,2.8025577769034184e-248,5.697468659873938e-248,1.1582686857613612e-247,2.354705972959555e-247,4.787006924430606e-247,9.731760804830971e-247,1.978421378065974e-246,4.022037972044517e-246,8.176614763627148e-246,1.6622674737894752e-245,3.379311896544618e-245,6.869982764021157e-245,1.3966353098749735e-244,2.8392941522433465e-244,5.7721519898304863e-244,1.1734514568482892e-243,2.38557183526218e-243,4.84975577641805e-243,9.859326281121186e-243,2.004354841748152e-242,4.074759488721232e-242,8.283795137013012e-242,1.6840567415561355e-241,3.42360845708091e-241,6.960035596285888e-241,1.414942628774659e-240,2.8765120738633627e-240,5.847814280815196e-240,1.1888332461255176e-239,2.4168422922218988e-239,4.913327150388557e-239,9.98856390606646e-239,2.0306282454180745e-238,4.128172087465825e-238,8.39238044786738e-238,1.7061316265275902e-237,3.4684856640136915e-237,7.051268855472049e-237,1.4334899229368177e-236,2.9142178539497378e-236,5.924468365204385e-236,1.2044166623554316e-235,2.44852264733043e-235,4.9777318280906455e-235,1.0119495598459814e-234,2.0572460450629784e-234,4.182284827093454e-234,8.502389112333263e-234,1.7284958726200088e-233,3.513951128549147e-233,7.143698014802818e-233,1.452280337995878e-232,2.952417887428572e-232,6.002127243585206e-232,1.2202043484964968e-231,2.480618273597676e-231,5.04298073260397e-231,1.0252143564405858e-230,2.0842127550805887e-230,4.237106885161781e-230,8.613839787958288e-230,1.751153272825419e-229,3.5600125616611685e-229,7.237338750330084e-229,1.4713170608190894e-228,2.991118653052673e-228,6.080804086958614e-228,1.2361989821510846e-227,2.513134614464931e-227,5.109084930187377e-227,1.0386530301093825e-226,2.111532949044085e-226,4.292647559530792e-226,8.726751376856227e-226,1.7741076698543978e-225,3.6066777754019344e-225,7.332206943586662e-225,1.4906033200481627e-224,3.03032671449939e-224,6.160512238971073e-224,1.2524032760205647e-223,2.546077184725855e-223,5.17605563216002e-223,1.0522678600609746e-222,2.1392112604771773e-222,4.3489162699380746e-222,8.841143028909814e-222,1.797362956789086e-221,3.653954684223624e-221,7.428318684285925e-221,1.5101423866463676e-220,3.0700487214827697e-220,6.241265218182131e-220,1.2688199783642639e-219,2.5794515714639056e-219,5.243904196799655e-219,1.0660611553798977e-218,2.167252383640901e-218,4.405922559596156e-218,8.957034145024987e-218,1.820923077742365e-217,3.701851306323759e-217,7.525690273045694e-217,1.529937574452767e-216,3.1102914108835845e-216,6.323076720353374e-216,1.2854518734666324e-215,2.6132634349983484e-215,5.312642131270151e-215,1.0800352554187135e-214,2.1956610743296642e-214,4.46367609681176e-214,9.074444380415858e-214,1.8447920285272794e-213,3.7503757650026376e-213,7.624338224156593e-213,1.54999224074536e-212,3.151061607890021e-212,6.405960620772977e-212,1.302301782108678e-211,2.647518509844812e-211,5.3822810935740225e-211,1.0941925301947153e-210,2.2244421506772187e-210,4.52218667662532e-210,9.19339364794073e-210,1.8689738573345238e-209,3.799536290042921e-209,7.724279268379926e-209,1.5703097868095354e-208,3.1923662271560974e-208,6.489930976608603e-208,1.319372562046654e-207,2.6822226056883252e-207,5.452832894527841e-207,1.1085353807915785e-206,2.253600493974308e-206,4.581464222472228e-206,9.313902121478307e-206,1.8934726654194425e-205,3.84934121910394e-205,7.8255303557869144e-205,1.5908936585153611e-204,3.234212273974039e-204,6.575002029291149e-204,1.3366671084969645e-203,2.7173816083677446e-203,5.524309499766552e-203,1.1230662397668273e-202,2.2831410494962835e-202,4.641518787865587e-202,9.435990239351307e-202,1.918292607796971e-201,3.899798999136609e-201,7.928108658633028e-201,1.61174734690183e-200,3.2766068454631125e-200,6.661188206931579e-200,1.3541883546267487e-199,2.753001480874593e-199,5.596723031772553e-199,1.1377875715642754e-198,2.3130688273423476e-198,4.70236055810235e-198,9.559678707789663e-198,1.9434378939467516e-197,3.950918187815825e-197,8.032031574269945e-197,1.632874388769306e-196,3.319557131772208e-196,6.748504126765727e-196,1.3719392720516437e-195,2.789088264364241e-195,5.6700857719313604e-195,1.1527018729322531e-194,2.3433889032844935e-194,4.763999851989178e-194,9.684988504444407e-194,1.9689127885269588e-193,4.002707454991628e-193,8.137316728097983e-193,1.6542783672788234e-192,3.363070417300018e-192,6.8369645976348616e-192,1.3899228713396205e-191,2.8256480791803284e-191,5.744410162615821e-191,1.1678116733466732e-190,2.374106419628875e-190,4.826447123593562e-190,9.811940881944418e-190,1.994721612097474e-189,4.055175584160521e-189,8.243981976552652e-189,1.6759629125601556e-188,3.4071540819303e-188,6.926584622496517e-188,1.408142202521894e-187,2.8626871258934185e-187,5.819708809294425e-187,1.1831195354402878e-186,2.405226586087817e-186,4.889712964016306e-186,9.940557371503104e-186,2.020868741853109e-185,4.1083314739538025e-185,8.352045410134935e-185,1.697931702327397e-184,3.4518156022833113e-184,7.017379400970573e-184,1.4266003556097374e-183,2.9002116863516642e-183,5.8959944826704844e-183,1.1986280554372486e-182,2.4367546806632477e-182,4.953808103188889e-182,1.0070859786566787e-181,2.0473586123653049e-181,4.1621841396476754e-181,8.461525356478988e-181,1.720188462502609e-180,3.497062552984629e-180,7.109364331914777e-180,1.4453004611188666e-179,2.9382281247468484e-179,5.973280120847388e-179,1.21433986359336e-178,2.468696050542404e-178,5.018743411691611e-178,1.0202870226516492e-177,2.0741957163346863e-177,4.2167427146917895e-177,8.57244038346004e-177,1.742736967848128e-176,3.542902607948646e-176,7.202555016037959e-176,1.4642456906002963e-175,2.9767428886934275e-175,6.051578831524274e-175,1.2302576246424464e-174,2.5010561130038933e-174,5.084529902598356e-174,1.0336611080415455e-173,2.101384605352798e-173,4.2720164522592285e-173,8.68480930234546e-173,1.765581042606185e-172,3.5893435416808484e-172,7.296967258545532e-172,1.4834392571781554e-171,3.0157625103227276e-171,6.130903894217076e-171,1.246384038247882e-170,2.5338403563370128e-170,5.151178733344142e-170,1.0472105030805743e-169,2.128929890674532e-169,4.3280147268144307e-169,8.798651170982253e-169,1.7887245611478879e-168,3.636393230596182e-168,7.392617071819651e-168,1.50288441609497e-167,3.055293607389788e-167,6.2112687625120856e-167,1.2627218394607297e-166,2.5670543407722906e-166,5.21870120761713e-166,1.0609375057557593e-165,2.1568362439994871e-165,4.384747035704051e-165,8.913985297031219e-165,1.8121714486301166e-164,3.684059654354691e-164,7.489520678136594e-164,1.5225844652632532e-163,3.095342884396408e-163,6.292687066347353e-163,1.2792737991834658e-162,2.6007036994250804e-162,5.287108777276924e-162,1.0748444441763274e-161,2.185108398264769e-161,4.442223000767485e-161,9.030831241240542e-161,1.835925681661645e-160,3.732350897215705e-160,7.58769451241557e-160,1.5425427458251658e-159,3.135917133728068e-159,6.375172614323973e-159,1.2960427246402176e-158,2.6347941392500764e-158,5.356413044295044e-158,1.0889336769687921e-157,2.2137511484475773e-157,4.5004523699684775e-157,9.149208820765369e-157,1.8599912889769599e-156,3.78127514940769e-156,7.687155225007756e-156,1.5627626427190956e-155,3.177023236805744e-155,6.45873939604948e-155,1.3130314598524366e-154,2.669331442009792e-154,5.426625762723801e-154,1.1032075936768581e-153,2.242769352378313e-153,4.5594450190494115e-153,9.269138112525738e-153,1.8843723521199478e-152,3.830840708518145e-152,7.787919684519353e-152,1.5832475852536525e-151,3.2186681652537186e-151,6.54340158450833e-151,1.330242886121535e-150,2.7043214652550084e-150,5.497758840689197e-150,1.1176686151669393e-149,2.272167931564977e-149,4.61921095320471e-149,9.39063945661368e-149,1.909073006136025e-148,3.8810559809004546e-148,7.890004980674273e-148,1.6040010476896432e-147,3.260858982080898e-147,6.629173538467089e-147,1.3476799225174843e-146,2.739770143318063e-146,5.5698243424117825e-146,1.1323191940383646e-145,2.3019518720271006e-145,4.679760308778741e-145,9.513733459742407e-145,1.9340974402733336e-144,3.931929483100484e-144,7.993428427209938e-144,1.6250265498287688e-143,3.3036028428794194e-143,6.716069804909331e-143,1.3653455263738141e-142,2.775683488319938e-142,5.642834490250907e-142,1.1471618150395905e-141,2.332126225141884e-141,4.7411033549844244e-141,9.638440998740668e-141,1.9594498986936807e-140,3.9834698432996856e-140,8.098207564815445e-140,1.646327657610945e-139,3.3469069970378758e-139,6.804105121502429e-139,1.3832426937894885e-138,2.8120675911889896e-138,5.716801666778874e-138,1.162198995489553e-137,2.3626961085006536e-137,4.803250495645974e-137,9.764783224095667e-137,1.9851346811916935e-136,4.0356858027793116e-136,8.20436016410605e-136,1.667907983718903e-135,3.3907787889715745e-135,6.893294419098615e-135,1.4013744601365812e-134,2.8489286226945937e-134,5.791738416880719e-134,1.1774332857045404e-133,2.3936667067773423e-133,4.866212270961785e-133,9.89278156353693e-133,2.011156143924506e-132,4.088586217402727e-132,8.311904228636605e-132,1.6897711881912803e-131,3.435225659367022e-131,6.983652824264958e-131,1.4197439005753877e-130,2.8862728344935574e-130,5.867657449881506e-130,1.1928672694309954e-129,2.425043272607017e-129,4.9299993592931284e-129,1.0022457725672639e-128,2.03751870015034e-128,4.1421800591171353e-128,8.420857997956848e-128,1.711920979042803e-127,3.4802551464446238e-127,7.075195661850377e-127,1.4383541305758128e-126,2.9241065601902377e-126,5.944571641703163e-126,1.208503564283321e-125,2.456831127477257e-125,4.994622578974941e-125,1.01538337036703e-124,2.0642268209774586e-124,4.1964764174761616e-124,8.531239950702038e-124,1.7343611128935404e-123,3.525874887236983e-123,7.167938457583947e-123,1.4572083064460852e-122,2.9624362164113893e-122,6.022494037046261e-122,1.2243448221880953e-121,2.4890356626305524e-121,5.060092890150337e-121,1.028693177898911e-120,2.0912850361217793e-120,4.25148450118005e-120,8.643068807728812e-120,1.7570953956059387e-119,3.572092618883945e-119,7.26189694070971e-119,1.4763096258675812e-118,3.001268303893438e-118,6.101437851603724e-118,1.2403937298337742e-117,2.5216623399785177e-117,5.126421396630599e-117,1.042177452515546e-116,2.118697934675576e-116,4.3072136396383906e-116,8.756363535289288e-116,1.7801276829301964e-115,3.6189161799456277e-115,7.357087046651926e-115,1.4956613284374767e-114,3.0406094085856655e-114,6.1814164743015405e-114,1.2566530091262836e-113,2.5547166930288092e-113,5.1936193477766836e-113,1.0558384811593716e-112,2.146470165885678e-112,4.363673284551923e-112,8.871143348249992e-112,1.8034618811586052e-111,3.666353511730642e-111,7.453524919719353e-111,1.5152666962180626e-110,3.0804662027669454e-110,6.262443469571114e-110,1.2731254176509417e-109,2.588204327822755e-109,5.261698140408103e-109,1.0696785807504e-108,2.1746064399419227e-108,4.42087301151653e-108,8.987427713346492e-108,1.8271019477874576e-107,3.714412659643636e-107,7.551226915842714e-107,1.5351290542935562e-106,3.1208454461776207e-106,6.344532579646813e-106,1.2898137491397218e-105,2.6221309238866384e-105,5.3306693207361534e-105,1.0837000985792937e-104,2.2031115287761924e-104,4.478822521645796e-104,9.105236352489455e-104,1.8510518921885878e-103,3.7631017745500265e-103,7.650209605349532e-103,1.555251771333737e-102,3.1617539871657963e-102,6.427697726899839e-102,1.3067208339453163e-101,2.6565022351951044e-101,5.400544586321264e-101,1.0979054127052532e-100,2.2319902668716172e-100,4.537531643217298e-100,9.224589246106225e-100,1.875315776289475e-99,3.812429114157761e-99,7.750489775772965e-99,1.5756382601656218e-98,3.203198763848639e-98,6.511953016197154e-98,1.3238495395212452e-97,2.6913240911465935e-97,5.471335788057351e-97,1.1122969323595835e-96,2.261247552082315e-96,4.597010333339117e-96,9.345506636531827e-96,1.8998977152617826e-95,3.8624030444181375e-95,7.852084434700718e-95,1.5962919783519317e-94,3.245186805289263e-94,6.597312737295311e-94,1.3412027709079174e-93,2.726602397552231e-93,5.543054932182207e-93,1.126877098354053e-92,2.2908883464645132e-92,4.6572686796390915e-92,9.468009031439989e-92,1.9248018782197146e-91,3.9130320409450104e-91,7.955010812657782e-91,1.617216428777853e-90,3.287725232689139e-90,6.683791367262526e-90,1.3587834712256281e-89,2.7623431376376903e-89,5.615714182312686e-89,1.1416483834951081e-88,2.3209176771176732e-88,4.7183169019747707e-88,9.592117207323375e-88,1.9500324889267297e-87,3.964324690451493e-87,8.059286366030529e-87,1.6384151602448146e-86,3.3308212605952174e-86,6.771403572935499e-86,1.3765946221734492e-85,2.798552373057411e-85,5.689325861508908e-85,1.1566132930030414e-84,2.3513406370372774e-84,4.780165354167764e-84,9.717852213015156e-84,1.9755938265120505e-83,4.016289692207155e-83,8.16492878002552e-83,1.6598917680725003e-82,3.374482198124256e-82,6.8601642134054e-82,1.3946392445350384e-81,2.8352362449232845e-81,5.763902454362993e-81,1.1717743649369724e-80,2.382162385978807e-80,4.842824525758688e-80,9.845235373261065e-80,2.0014902261965784e-79,4.0689358595125295e-79,8.271955971670754e-79,1.6816498947087608e-78,3.418715450201704e-78,6.950088342539521e-78,1.4129203986910884e-77,2.8724009748455583e-77,5.839456609117741e-77,1.1871341706254048e-76,2.4133881513323738e-76,4.906305043787284e-76,9.974288292334188e-76,2.0277260800277571e-75,4.1222721211947596e-75,8.380386092852801e-75,1.7036932303470447e-74,3.4635285188183435e-74,7.041191211533065e-74,1.4314411851380912e-73,2.9100528659886665e-73,5.916001139810648e-73,1.2026953151020937e-72,2.445023229009828e-72,4.970617674593815e-72,1.0105032857699861e-71,2.054305837624919e-71,4.176307523121017e-71,8.490237533396051e-71,1.7260255135526395e-70,3.5089290043018594e-70,7.133488271496333e-70,1.4502047450145038e-69,2.948198304139601e-69,5.99354902844766e-69,1.2184604375481285e-68,2.4770729843424014e-68,5.035773325645447e-68,1.0237491243728681e-67,2.0812340069334866e-67,4.231051229733619e-67,8.601528924182376e-67,1.7486505318963485e-66,3.554924606606643e-66,7.226995176075859e-66,1.4692142606331654e-65,2.986843758791603e-65,6.072113427205436e-65,1.2344322117392692e-64,2.5095428529912272e-64,5.1017830473865995e-64,1.0371685915455274e-63,2.1085151549899856e-63,4.2865125256034997e-63,8.714279140309257e-63,1.7715721225972566e-62,3.601523126619019e-62,7.321727784107859e-62,1.4884729560213455e-61,3.0259957842408145e-61,6.15170766066079e-61,1.2506133464996945e-60,2.5424383418687405e-60,5.168658035112107e-60,1.0507639632390712e-59,2.1361539086962107e-59,4.34270081700523e-59,8.828507304292952e-59,1.7947941731731296e-58,3.648732467480575e-58,7.417702162309538e-58,1.5079840974672106e-57,3.065661020698136e-57,6.232345228051909e-57,1.2670065861611429e-56,2.5757650300728634e-56,5.236409630867103e-56,1.0645375452380337e-55,2.164154955604121e-55,4.39962563351264e-55,8.944232789309848e-55,1.8183206221001402e-54,3.6965606359287973e-54,7.514934588002467e-54,1.5277509940741256e-53,3.1058461954156297e-53,6.3140398055665395e-53,1.2836147110286346e-52,2.6095285698334068e-52,5.3050493253695445e-52,1.0784916735516008e-51,2.1925230447110106e-51,4.457296629614552e-51,9.061475222483528e-51,1.8421554594804573e-50,3.745015743654617e-50,7.613441551874373e-50,1.5477769983215597e-49,3.1465581238271266e-49,6.396805248662438e-49,1.3004405378517467e-48,2.6437346874703684e-48,5.3745887599598544e-48,1.0926287148097254e-47,2.2212629872646655e-47,4.515723586352244e-47,9.18025448821292e-47,1.8663027277192497e-46,3.794106008678196e-46,7.713239760775443e-46,1.5680655066339062e-45,3.187803710704161e-45,6.480655594416824e-45,1.3174869203025317e-44,2.6783891843653383e-44,5.445039728574931e-44,1.106951066664524e-43,2.250379657579541e-43,4.574916412978637e-43,9.300590731544835e-43,1.8907665222101536e-42,3.843839756742979e-42,7.814346140551932e-42,1.58861995995641e-41,3.229589951327252e-41,6.565605063907172e-41,1.3347567494594142e-40,2.7134979379452288e-40,5.516414179748483e-40,1.1214611581969206e-39,2.279877993863288e-39,4.634885148638658e-39,9.422504361590574e-39,1.915550992029907e-38,3.894225422727534e-38,7.916777838916791e-38,1.6094438443388e-37,3.2719239326721286e-37,6.651668064623113e-37,1.3522529542975555e-36,2.74906690267932e-36,5.588724218637509e-36,1.1361614503286201e-35,2.3097629990544694e-35,4.695639964071954e-35,9.546016054987335e-35,1.940660340641927e-34,3.945271552076166e-34,8.020552228357932e-34,1.6305406915264323e-33,3.31481283461173e-33,6.738859192909953e-33,1.3699785021855343e-32,2.7851021110889865e-32,5.661982109075342e-32,1.1510544362394988e-31,2.3400397416709346e-31,4.757191163337849e-31,9.671146759405116e-31,1.9660988266093837e-30,3.9969868022482265e-30,8.125686909084621e-30,1.6519140795594158e-29,3.358263931133918e-29,6.827193236444227e-29,1.3879363993887286e-28,2.8216096747708596e-28,5.736200275651642e-28,1.166142641790376e-27,2.3707133566694745e-27,4.819549185562962e-27,9.797917697098842e-27,1.9918707643173452e-26,4.049379944186461e-26,8.232199712012533e-26,1.6735676333793573e-25,3.402284591575175e-25,6.91668517674175e-25,1.4061296915791041e-24,2.858595785433355e-24,5.811391305819454e-24,1.1814286259515409e-23,2.401789046316716e-23,4.8827246067115464e-23,9.926350368508839e-23,2.0179805247045302e-22,4.1024598638044473e-22,8.340108701787662e-22,1.6955050254441776e-21,3.44688228187035e-21,7.007350191698287e-21,1.4245614643517816e-20,2.8960667159468125e-20,5.887567952030293e-20,1.1969149812366076e-19,2.433272081071444e-19,4.946728141379391e-19,1.0056466555906084e-18,2.04443253600462e-18,4.156235563493823e-18,8.449432179850508e-18,1.7177299763509637e-17,3.492064565819034e-17,7.09920365816409e-17,1.4432348437483558e-16,2.934028821407298e-16,5.964743133896848e-16,1.212604334142307e-15,2.4651678004784084e-15,5.011570644610882e-15,1.0188288327087328e-14,2.0712312844972986e-14,4.210716163651004e-14,8.560188687539537e-14,1.7402462554669895e-13,3.5378391063682986e-13,7.192261154551421e-13,1.4621529967870802e-12,2.9724885402145535e-12,6.042929940384029e-12,1.2284993455939044e-11,2.497481614074018e-11,5.0772631137400835e-11,1.0321838039117488e-10,2.0983813152691067e-10,4.265910904223971e-10,8.672397009236225e-10,1.7630576815689856e-9,3.584213666912314e-9,7.28653846347701e-9,1.4813191319999786e-8,3.011452395163886e-8,6.122141632029118e-8,1.2446027113964883e-7,2.5302190023037357e-7,5.143816690255835e-7,1.0457138342121358e-6,2.125887232984309e-6,4.321829146279477e-6,8.786076175550694e-6,1.786168123490818e-5,3.631196112609106e-5,7.382051574438627e-5,0.00015007364999770258,0.0003050926994552417,0.0006202391643190607,0.001260917162692199,0.0025633855174515712,0.005211242661691401,0.010594212183125328,0.02153753702665852,0.04378480373590605,0.08901245466549268,0.18095815007796634,0.36787944117144233],"x":[-709.78,-709.0705105105105,-708.361021021021,-707.6515315315315,-706.9420420420421,-706.2325525525525,-705.5230630630631,-704.8135735735735,-704.1040840840841,-703.3945945945947,-702.6851051051051,-701.9756156156157,-701.2661261261261,-700.5566366366367,-699.8471471471471,-699.1376576576577,-698.4281681681682,-697.7186786786787,-697.0091891891892,-696.2996996996997,-695.5902102102102,-694.8807207207208,-694.1712312312312,-693.4617417417418,-692.7522522522522,-692.0427627627628,-691.3332732732732,-690.6237837837838,-689.9142942942943,-689.2048048048048,-688.4953153153153,-687.7858258258258,-687.0763363363363,-686.3668468468469,-685.6573573573573,-684.9478678678679,-684.2383783783783,-683.5288888888889,-682.8193993993993,-682.1099099099099,-681.4004204204205,-680.6909309309309,-679.9814414414415,-679.2719519519519,-678.5624624624625,-677.852972972973,-677.1434834834835,-676.433993993994,-675.7245045045045,-675.015015015015,-674.3055255255256,-673.596036036036,-672.8865465465466,-672.177057057057,-671.4675675675676,-670.758078078078,-670.0485885885886,-669.3390990990991,-668.6296096096096,-667.9201201201201,-667.2106306306306,-666.5011411411411,-665.7916516516517,-665.0821621621621,-664.3726726726727,-663.6631831831832,-662.9536936936937,-662.2442042042042,-661.5347147147147,-660.8252252252253,-660.1157357357357,-659.4062462462463,-658.6967567567567,-657.9872672672673,-657.2777777777778,-656.5682882882883,-655.8587987987988,-655.1493093093093,-654.4398198198198,-653.7303303303303,-653.0208408408408,-652.3113513513514,-651.6018618618618,-650.8923723723724,-650.1828828828828,-649.4733933933934,-648.763903903904,-648.0544144144144,-647.344924924925,-646.6354354354354,-645.925945945946,-645.2164564564565,-644.506966966967,-643.7974774774775,-643.087987987988,-642.3784984984985,-641.669009009009,-640.9595195195195,-640.2500300300301,-639.5405405405405,-638.8310510510511,-638.1215615615615,-637.4120720720721,-636.7025825825826,-635.9930930930931,-635.2836036036036,-634.5741141141141,-633.8646246246246,-633.1551351351351,-632.4456456456456,-631.7361561561562,-631.0266666666666,-630.3171771771772,-629.6076876876876,-628.8981981981982,-628.1887087087088,-627.4792192192192,-626.7697297297298,-626.0602402402402,-625.3507507507508,-624.6412612612612,-623.9317717717718,-623.2222822822823,-622.5127927927928,-621.8033033033033,-621.0938138138138,-620.3843243243243,-619.6748348348349,-618.9653453453453,-618.2558558558559,-617.5463663663663,-616.8368768768769,-616.1273873873874,-615.4178978978979,-614.7084084084084,-613.9989189189189,-613.2894294294294,-612.5799399399399,-611.8704504504504,-611.160960960961,-610.4514714714715,-609.741981981982,-609.0324924924925,-608.323003003003,-607.6135135135136,-606.904024024024,-606.1945345345346,-605.485045045045,-604.7755555555556,-604.066066066066,-603.3565765765766,-602.6470870870871,-601.9375975975976,-601.2281081081081,-600.5186186186186,-599.8091291291291,-599.0996396396397,-598.3901501501501,-597.6806606606607,-596.9711711711711,-596.2616816816817,-595.5521921921921,-594.8427027027027,-594.1332132132133,-593.4237237237237,-592.7142342342343,-592.0047447447447,-591.2952552552553,-590.5857657657658,-589.8762762762763,-589.1667867867868,-588.4572972972973,-587.7478078078078,-587.0383183183184,-586.3288288288288,-585.6193393393394,-584.9098498498498,-584.2003603603604,-583.4908708708708,-582.7813813813814,-582.0718918918919,-581.3624024024024,-580.6529129129129,-579.9434234234234,-579.2339339339339,-578.5244444444445,-577.8149549549549,-577.1054654654655,-576.395975975976,-575.6864864864865,-574.976996996997,-574.2675075075075,-573.5580180180181,-572.8485285285285,-572.1390390390391,-571.4295495495495,-570.7200600600601,-570.0105705705706,-569.3010810810811,-568.5915915915916,-567.8821021021021,-567.1726126126126,-566.4631231231231,-565.7536336336336,-565.0441441441442,-564.3346546546546,-563.6251651651652,-562.9156756756756,-562.2061861861862,-561.4966966966967,-560.7872072072072,-560.0777177177177,-559.3682282282282,-558.6587387387387,-557.9492492492493,-557.2397597597597,-556.5302702702703,-555.8207807807808,-555.1112912912913,-554.4018018018018,-553.6923123123123,-552.9828228228229,-552.2733333333333,-551.5638438438439,-550.8543543543543,-550.1448648648649,-549.4353753753754,-548.7258858858859,-548.0163963963964,-547.3069069069069,-546.5974174174174,-545.8879279279279,-545.1784384384384,-544.468948948949,-543.7594594594594,-543.04996996997,-542.3404804804804,-541.630990990991,-540.9215015015016,-540.212012012012,-539.5025225225226,-538.793033033033,-538.0835435435436,-537.374054054054,-536.6645645645646,-535.9550750750751,-535.2455855855856,-534.5360960960961,-533.8266066066066,-533.1171171171171,-532.4076276276277,-531.6981381381381,-530.9886486486487,-530.2791591591591,-529.5696696696697,-528.8601801801802,-528.1506906906907,-527.4412012012012,-526.7317117117117,-526.0222222222222,-525.3127327327327,-524.6032432432432,-523.8937537537538,-523.1842642642642,-522.4747747747748,-521.7652852852852,-521.0557957957958,-520.3463063063064,-519.6368168168168,-518.9273273273274,-518.2178378378378,-517.5083483483484,-516.7988588588588,-516.0893693693694,-515.3798798798799,-514.6703903903904,-513.9609009009009,-513.2514114114114,-512.5419219219219,-511.8324324324324,-511.1229429429429,-510.4134534534534,-509.703963963964,-508.9944744744745,-508.284984984985,-507.5754954954955,-506.866006006006,-506.1565165165165,-505.44702702702705,-504.73753753753755,-504.02804804804805,-503.31855855855855,-502.60906906906905,-501.89957957957955,-501.1900900900901,-500.4806006006006,-499.7711111111111,-499.0616216216216,-498.3521321321321,-497.64264264264267,-496.93315315315317,-496.2236636636637,-495.5141741741742,-494.8046846846847,-494.0951951951952,-493.38570570570573,-492.67621621621623,-491.96672672672673,-491.25723723723723,-490.54774774774774,-489.83825825825824,-489.1287687687688,-488.4192792792793,-487.7097897897898,-487.0003003003003,-486.2908108108108,-485.5813213213213,-484.87183183183186,-484.16234234234236,-483.45285285285286,-482.74336336336336,-482.03387387387386,-481.32438438438436,-480.6148948948949,-479.9054054054054,-479.1959159159159,-478.4864264264264,-477.7769369369369,-477.0674474474474,-476.357957957958,-475.6484684684685,-474.938978978979,-474.2294894894895,-473.52,-472.8105105105105,-472.10102102102104,-471.39153153153154,-470.68204204204204,-469.97255255255254,-469.26306306306304,-468.5535735735736,-467.8440840840841,-467.1345945945946,-466.4251051051051,-465.7156156156156,-465.0061261261261,-464.29663663663666,-463.58714714714716,-462.87765765765766,-462.16816816816817,-461.45867867867867,-460.74918918918917,-460.0396996996997,-459.3302102102102,-458.6207207207207,-457.9112312312312,-457.2017417417417,-456.49225225225223,-455.7827627627628,-455.0732732732733,-454.3637837837838,-453.6542942942943,-452.9448048048048,-452.2353153153153,-451.52582582582585,-450.81633633633635,-450.10684684684685,-449.39735735735735,-448.68786786786785,-447.97837837837835,-447.2688888888889,-446.5593993993994,-445.8499099099099,-445.1404204204204,-444.4309309309309,-443.7214414414414,-443.01195195195197,-442.3024624624625,-441.592972972973,-440.8834834834835,-440.173993993994,-439.46450450450453,-438.75501501501503,-438.04552552552553,-437.33603603603603,-436.62654654654654,-435.91705705705704,-435.2075675675676,-434.4980780780781,-433.7885885885886,-433.0790990990991,-432.3696096096096,-431.6601201201201,-430.95063063063066,-430.24114114114116,-429.53165165165166,-428.82216216216216,-428.11267267267266,-427.40318318318316,-426.6936936936937,-425.9842042042042,-425.2747147147147,-424.5652252252252,-423.8557357357357,-423.1462462462462,-422.4367567567568,-421.7272672672673,-421.0177777777778,-420.3082882882883,-419.5987987987988,-418.8893093093093,-418.17981981981984,-417.47033033033034,-416.76084084084084,-416.05135135135134,-415.34186186186184,-414.63237237237234,-413.9228828828829,-413.2133933933934,-412.5039039039039,-411.7944144144144,-411.0849249249249,-410.37543543543546,-409.66594594594596,-408.95645645645646,-408.24696696696697,-407.53747747747747,-406.82798798798797,-406.1184984984985,-405.409009009009,-404.6995195195195,-403.99003003003,-403.2805405405405,-402.57105105105103,-401.8615615615616,-401.1520720720721,-400.4425825825826,-399.7330930930931,-399.0236036036036,-398.3141141141141,-397.60462462462465,-396.89513513513515,-396.18564564564565,-395.47615615615615,-394.76666666666665,-394.05717717717715,-393.3476876876877,-392.6381981981982,-391.9287087087087,-391.2192192192192,-390.5097297297297,-389.8002402402402,-389.0907507507508,-388.3812612612613,-387.6717717717718,-386.9622822822823,-386.2527927927928,-385.5433033033033,-384.83381381381383,-384.12432432432433,-383.41483483483483,-382.70534534534534,-381.99585585585584,-381.2863663663664,-380.5768768768769,-379.8673873873874,-379.1578978978979,-378.4484084084084,-377.7389189189189,-377.02942942942946,-376.31993993993996,-375.61045045045046,-374.90096096096096,-374.19147147147146,-373.48198198198196,-372.7724924924925,-372.063003003003,-371.3535135135135,-370.644024024024,-369.9345345345345,-369.225045045045,-368.5155555555556,-367.8060660660661,-367.0965765765766,-366.3870870870871,-365.6775975975976,-364.9681081081081,-364.25861861861864,-363.54912912912914,-362.83963963963964,-362.13015015015014,-361.42066066066064,-360.71117117117115,-360.0016816816817,-359.2921921921922,-358.5827027027027,-357.8732132132132,-357.1637237237237,-356.4542342342342,-355.74474474474476,-355.03525525525527,-354.32576576576577,-353.61627627627627,-352.90678678678677,-352.1972972972973,-351.4878078078078,-350.7783183183183,-350.0688288288288,-349.35933933933933,-348.64984984984983,-347.9403603603604,-347.2308708708709,-346.5213813813814,-345.8118918918919,-345.1024024024024,-344.3929129129129,-343.68342342342345,-342.97393393393395,-342.26444444444445,-341.55495495495495,-340.84546546546545,-340.13597597597595,-339.4264864864865,-338.716996996997,-338.0075075075075,-337.298018018018,-336.5885285285285,-335.879039039039,-335.1695495495496,-334.4600600600601,-333.7505705705706,-333.0410810810811,-332.3315915915916,-331.6221021021021,-330.91261261261263,-330.20312312312313,-329.49363363363364,-328.78414414414414,-328.07465465465464,-327.36516516516514,-326.6556756756757,-325.9461861861862,-325.2366966966967,-324.5272072072072,-323.8177177177177,-323.10822822822826,-322.39873873873876,-321.68924924924926,-320.97975975975976,-320.27027027027026,-319.56078078078076,-318.8512912912913,-318.1418018018018,-317.4323123123123,-316.7228228228228,-316.0133333333333,-315.3038438438438,-314.5943543543544,-313.8848648648649,-313.1753753753754,-312.4658858858859,-311.7563963963964,-311.0469069069069,-310.33741741741744,-309.62792792792794,-308.91843843843844,-308.20894894894894,-307.49945945945944,-306.78996996996995,-306.0804804804805,-305.370990990991,-304.6615015015015,-303.952012012012,-303.2425225225225,-302.533033033033,-301.82354354354356,-301.11405405405407,-300.40456456456457,-299.69507507507507,-298.98558558558557,-298.27609609609607,-297.5666066066066,-296.8571171171171,-296.1476276276276,-295.43813813813813,-294.72864864864863,-294.0191591591592,-293.3096696696697,-292.6001801801802,-291.8906906906907,-291.1812012012012,-290.4717117117117,-289.76222222222225,-289.05273273273275,-288.34324324324325,-287.63375375375375,-286.92426426426425,-286.21477477477475,-285.5052852852853,-284.7957957957958,-284.0863063063063,-283.3768168168168,-282.6673273273273,-281.9578378378378,-281.2483483483484,-280.5388588588589,-279.8293693693694,-279.1198798798799,-278.4103903903904,-277.7009009009009,-276.99141141141143,-276.28192192192193,-275.57243243243244,-274.86294294294294,-274.15345345345344,-273.44396396396394,-272.7344744744745,-272.024984984985,-271.3154954954955,-270.606006006006,-269.8965165165165,-269.187027027027,-268.47753753753756,-267.76804804804806,-267.05855855855856,-266.34906906906906,-265.63957957957956,-264.9300900900901,-264.2206006006006,-263.5111111111111,-262.8016216216216,-262.0921321321321,-261.3826426426426,-260.6731531531532,-259.9636636636637,-259.2541741741742,-258.5446846846847,-257.8351951951952,-257.1257057057057,-256.41621621621624,-255.7067267267267,-254.99723723723724,-254.28774774774774,-253.57825825825824,-252.86876876876877,-252.15927927927927,-251.44978978978978,-250.7403003003003,-250.0308108108108,-249.32132132132134,-248.61183183183184,-247.90234234234234,-247.19285285285287,-246.48336336336337,-245.77387387387387,-245.0643843843844,-244.3548948948949,-243.6454054054054,-242.93591591591593,-242.22642642642643,-241.51693693693693,-240.80744744744746,-240.09795795795796,-239.38846846846846,-238.678978978979,-237.9694894894895,-237.26,-236.55051051051052,-235.84102102102102,-235.13153153153152,-234.42204204204205,-233.71255255255255,-233.00306306306305,-232.29357357357358,-231.58408408408408,-230.87459459459458,-230.1651051051051,-229.4556156156156,-228.74612612612611,-228.03663663663664,-227.32714714714714,-226.61765765765765,-225.90816816816817,-225.19867867867868,-224.48918918918918,-223.7796996996997,-223.0702102102102,-222.3607207207207,-221.65123123123124,-220.94174174174174,-220.23225225225227,-219.52276276276277,-218.81327327327327,-218.1037837837838,-217.3942942942943,-216.6848048048048,-215.97531531531533,-215.26582582582583,-214.55633633633633,-213.84684684684686,-213.13735735735736,-212.42786786786786,-211.7183783783784,-211.0088888888889,-210.2993993993994,-209.58990990990992,-208.88042042042042,-208.17093093093092,-207.46144144144145,-206.75195195195195,-206.04246246246245,-205.33297297297298,-204.62348348348348,-203.91399399399398,-203.2045045045045,-202.495015015015,-201.78552552552551,-201.07603603603604,-200.36654654654654,-199.65705705705705,-198.94756756756757,-198.23807807807808,-197.52858858858858,-196.8190990990991,-196.1096096096096,-195.4001201201201,-194.69063063063064,-193.98114114114114,-193.27165165165164,-192.56216216216217,-191.85267267267267,-191.1431831831832,-190.4336936936937,-189.7242042042042,-189.01471471471473,-188.30522522522523,-187.59573573573573,-186.88624624624626,-186.17675675675676,-185.46726726726726,-184.7577777777778,-184.0482882882883,-183.3387987987988,-182.62930930930932,-181.91981981981982,-181.21033033033032,-180.50084084084085,-179.79135135135135,-179.08186186186185,-178.37237237237238,-177.66288288288288,-176.95339339339338,-176.2439039039039,-175.5344144144144,-174.82492492492491,-174.11543543543544,-173.40594594594594,-172.69645645645645,-171.98696696696697,-171.27747747747748,-170.56798798798798,-169.8584984984985,-169.149009009009,-168.4395195195195,-167.73003003003004,-167.02054054054054,-166.31105105105104,-165.60156156156157,-164.89207207207207,-164.18258258258257,-163.4730930930931,-162.7636036036036,-162.05411411411413,-161.34462462462463,-160.63513513513513,-159.92564564564566,-159.21615615615616,-158.50666666666666,-157.7971771771772,-157.0876876876877,-156.3781981981982,-155.66870870870872,-154.95921921921922,-154.24972972972972,-153.54024024024025,-152.83075075075075,-152.12126126126125,-151.41177177177178,-150.70228228228228,-149.99279279279278,-149.2833033033033,-148.5738138138138,-147.86432432432431,-147.15483483483484,-146.44534534534534,-145.73585585585585,-145.02636636636637,-144.31687687687688,-143.60738738738738,-142.8978978978979,-142.1884084084084,-141.4789189189189,-140.76942942942944,-140.05993993993994,-139.35045045045044,-138.64096096096097,-137.93147147147147,-137.22198198198197,-136.5124924924925,-135.803003003003,-135.0935135135135,-134.38402402402403,-133.67453453453453,-132.96504504504506,-132.25555555555556,-131.54606606606606,-130.8365765765766,-130.1270870870871,-129.4175975975976,-128.70810810810812,-127.99861861861862,-127.28912912912912,-126.57963963963964,-125.87015015015015,-125.16066066066067,-124.45117117117117,-123.74168168168168,-123.0321921921922,-122.3227027027027,-121.61321321321321,-120.90372372372373,-120.19423423423423,-119.48474474474475,-118.77525525525526,-118.06576576576576,-117.35627627627628,-116.64678678678679,-115.93729729729729,-115.2278078078078,-114.51831831831832,-113.80882882882882,-113.09933933933934,-112.38984984984985,-111.68036036036035,-110.97087087087087,-110.26138138138138,-109.5518918918919,-108.8424024024024,-108.13291291291291,-107.42342342342343,-106.71393393393393,-106.00444444444445,-105.29495495495496,-104.58546546546546,-103.87597597597598,-103.16648648648649,-102.45699699699699,-101.7475075075075,-101.03801801801802,-100.32852852852852,-99.61903903903904,-98.90954954954955,-98.20006006006005,-97.49057057057057,-96.78108108108108,-96.0715915915916,-95.3621021021021,-94.65261261261261,-93.94312312312313,-93.23363363363363,-92.52414414414415,-91.81465465465466,-91.10516516516516,-90.39567567567568,-89.68618618618619,-88.97669669669669,-88.2672072072072,-87.55771771771772,-86.84822822822822,-86.13873873873874,-85.42924924924925,-84.71975975975975,-84.01027027027027,-83.30078078078078,-82.59129129129128,-81.8818018018018,-81.17231231231231,-80.46282282282283,-79.75333333333333,-79.04384384384385,-78.33435435435436,-77.62486486486486,-76.91537537537538,-76.20588588588589,-75.49639639639639,-74.7869069069069,-74.07741741741742,-73.36792792792792,-72.65843843843844,-71.94894894894895,-71.23945945945945,-70.52996996996997,-69.82048048048048,-69.11099099099098,-68.4015015015015,-67.69201201201201,-66.98252252252253,-66.27303303303303,-65.56354354354355,-64.85405405405406,-64.14456456456456,-63.435075075075076,-62.725585585585584,-62.0160960960961,-61.30660660660661,-60.597117117117115,-59.88762762762763,-59.17813813813814,-58.468648648648646,-57.75915915915916,-57.04966966966967,-56.34018018018018,-55.63069069069069,-54.9212012012012,-54.211711711711715,-53.50222222222222,-52.79273273273273,-52.083243243243246,-51.37375375375375,-50.66426426426426,-49.954774774774776,-49.245285285285284,-48.5357957957958,-47.82630630630631,-47.116816816816815,-46.40732732732733,-45.69783783783784,-44.988348348348346,-44.27885885885886,-43.56936936936937,-42.85987987987988,-42.15039039039039,-41.4409009009009,-40.731411411411415,-40.02192192192192,-39.31243243243243,-38.602942942942946,-37.89345345345345,-37.18396396396396,-36.474474474474476,-35.764984984984984,-35.05549549549549,-34.34600600600601,-33.636516516516515,-32.92702702702703,-32.21753753753754,-31.50804804804805,-30.798558558558558,-30.08906906906907,-29.37957957957958,-28.67009009009009,-27.9606006006006,-27.25111111111111,-26.541621621621623,-25.83213213213213,-25.122642642642642,-24.413153153153154,-23.703663663663665,-22.994174174174173,-22.284684684684684,-21.575195195195196,-20.865705705705707,-20.156216216216215,-19.446726726726727,-18.737237237237238,-18.027747747747746,-17.318258258258258,-16.60876876876877,-15.899279279279279,-15.18978978978979,-14.4803003003003,-13.770810810810811,-13.061321321321321,-12.351831831831833,-11.642342342342342,-10.932852852852854,-10.223363363363363,-9.513873873873873,-8.804384384384385,-8.094894894894894,-7.385405405405406,-6.675915915915916,-5.966426426426427,-5.2569369369369365,-4.547447447447447,-3.837957957957958,-3.1284684684684683,-2.418978978978979,-1.7094894894894894,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json deleted file mode 100644 index 8fb047a6ccfe..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[2.718281828459045,5.526139605036564,11.234382915941184,22.838974134305474,46.430564403080524,94.3911621472732,191.89281039456188,390.1090933033613,793.0735099718115,1612.2812900695583,3277.692326907691,6663.394939853256,13546.369730911094,27539.1350119472,55985.77126354929,113816.45003064431,231383.5105815943,470391.8366338771,956284.5658950494,1.9440817202804782e6,3.952227056588822e6,8.034692443164972e6,1.6334153309494097e7,3.320656841881039e7,6.7507397858952e7,1.3723937710785338e8,2.79001223959248e8,5.671964170282148e8,1.1530837425166144e9,2.3441652262587843e9,4.765578080224924e9,9.688196968507166e9,1.969565054239165e10,4.004033480625908e10,8.140012476087735e10,1.654826400215472e11,3.364184542584713e11,6.839229562141511e11,1.390383328012468e12,2.8265841660236807e12,5.746313183312399e12,1.168198548538573e13,2.3748929187687773e13,4.828046039497257e13,9.815191403067452e13,1.9953824278129953e14,4.056518991550728e14,8.246713060837892e14,1.6765181292001192e15,3.408282811347276e15,6.928879276520302e15,1.4086086949343948e16,2.86363548311272e16,5.821636775090438e16,1.1835114818540298e17,2.4060233947841443e17,4.891332838765486e17,9.943850500976485e17,2.0215382196466348e18,4.10969249094277e18,8.354812293909443e18,1.698494196835819e19,3.4529591272660636e19,7.019704133686012e19,1.4270729628793422e20,2.9011724747889538e20,5.8979477205502604e20,1.1990251395472278e21,2.437561934055444e21,4.955449211515154e21,1.0074196082907584e22,2.0480368657807375e22,4.163562997064869e22,8.46432850900819e22,1.7207583302790377e23,3.498221067475627e23,7.111719537598168e23,1.4457792634000888e24,2.939201507352518e24,5.975258962081781e24,1.2147421527453798e25,2.4695138855410728e25,5.0204060319280825e25,1.020625025556297e26,2.0748828604042807e26,4.218139646392603e26,8.575280280161115e26,1.743314305542441e27,3.544076308432735e27,7.204941094133833e27,1.464730769098349e28,2.97772903055404e28,6.053583611725806e28,1.2306651870649697e29,2.5018846683144406e29,5.0862143167265915e29,1.0340035415422764e30,2.102080756616804e30,4.273431695164021e30,8.687686424866277e30,1.7661659481352722e31,3.5905326272184534e31,7.2993846137344085e31,1.4839306941627655e32,3.0167615786884446e32,6.1329349533978755e32,1.2467969430637725e33,2.534679772482983e33,5.152885227041958e33,1.0475574252544317e34,2.1296351672005585e34,4.32944852094939e34,8.801566007284992e34,1.7893171337121245e35,3.637597902857043e35,7.395066114087081e35,1.503382294914111e36,3.056305771703304e36,6.213326445141211e36,1.2631401566989335e37,2.567904760119395e37,5.220430070307349e37,1.0612889754409135e38,2.1575507654029278e38,4.386199624241668e38,8.916938341474034e38,1.8127717887303275e39,3.6852801176522753e39,7.492001822841556e39,1.5230888703575218e40,3.0963683163215003e40,6.294771721409309e40,1.2796975997909523e41,2.6015652662048933e41,5.288860302175652e41,1.0752005209822831e42,2.1858322857289538e42,4.4436946300677905e42,9.033822994662357e42,1.83653389111583e43,3.733587358541237e43,7.590208180361837e43,1.5430537627420194e44,3.1369560071787094e44,6.3772845953779945e44,1.2964720804937949e45,2.6356669995849262e45,5.358187528462056e45,1.0892944212864251e46,2.2144845247443276e46,4.501943289621154e46,9.15223979056915e46,1.8606074709378684e47,3.78252781846593e47,7.689701842515174e47,1.5632803581273612e48,3.17807572797578e48,6.460879061288674e48,1.313466443771158e49,2.6702157439374034e49,5.428423507112857e49,1.1035730666887203e50,2.24351234188889e50,4.5609554819151595e50,9.272208812766088e50,1.8849966110924724e51,3.832109797762591e51,7.790499683496476e51,1.5837720869583161e52,3.219734452646256e52,6.54556929682142e52,1.330683571878978e53,2.705217358753646e53,5.499580150199315e53,1.1180388788574473e54,2.2729206603008283e54,4.6207412154590904e54,9.393750408083512e54,1.9097054479949248e55,3.882341705569751e55,7.892618798690413e55,1.6045324246464722e56,3.261939246538981e56,6.631369665499698e56,1.348126384854262e57,2.74067778033201e57,5.571669525938102e57,1.1326943112044998e58,2.3027144676515153e58,4.681310629955237e58,9.516885190061268e58,1.9347381722813283e59,3.933232061254162e59,7.996076507570235e59,1.6255648921596907e60,3.3046972676166096e60,6.718294719125951e60,1.365797841010349e61,2.7766030227848744e61,5.644703860737691e61,1.1475418493015033e62,2.3328988169915814e62,4.742673998018997e62,9.641634042444913e62,1.9600990295192038e63,3.984789495856024e63,8.10089035663641e63,1.6468730566191503e64,3.3480157676696593e64,6.806359200250649e64,1.3837009374385438e65,2.8129991790586834e65,5.7186955412728235e65,1.1625840113012882e66,2.3634788276079526e66,4.804841726920517e66,9.768018122726928e66,1.985792320927844e67,4.03702275355231e67,8.207078122390827e67,1.6684605319045866e68,3.391902093546041e68,6.895578044671195e68,1.4018387105166406e69,2.8498724219670017e69,5.793657116584114e69,1.1778233483651491e70,2.394459685891821e70,4.867824360350101e70,9.896058865736563e70,2.0118224041073873e71,4.0899406931400593e71,8.314657814353527e71,1.6903309792668612e72,3.4363636883973177e72,6.9859663839665905e72,1.4202142364236007e73,2.887229005237616e73,5.869601300207659e73,1.1932624450952784e74,2.42584664621842e74,4.931632580206846e74,1.002577798727311e75,2.0381936937783186e75,4.143552289539186e75,8.42364767811528e75,1.712488107949287e76,3.4814080929413676e76,7.077539548062208e76,1.438830631661591e77,2.925075264573424e77,5.946540972329955e77,1.2089039199733817e78,2.457645031838381e78,4.99627720840933e78,1.0157197487791164e79,2.064910662529813e79,4.197866635313822e79,8.534066198433931e79,1.7349356758163888e80,3.5270429467406087e80,7.170313067831331e80,1.4576910535842666e81,2.963417618726397e81,6.024489181973714e81,1.22475042580454e82,2.489860235780077e82,5.0617692087321384e82,1.0290339656129946e83,2.0919778415784573e83,4.2528929422153574e83,8.645932102367514e83,1.7576774899913759e84,3.573275989498466e84,7.2643026777276e84,1.4767987009323769e85,3.0022625705868714e85,6.1034591492096444e85,1.2408046501672253e86,2.522497721764841e86,5.128119688664192e86,1.0425227073294325e87,2.1193998215369277e87,4.308640542743812e87,8.75926436245232e87,1.780717407501989e88,3.620115062371228e88,7.359524318455214e88,1.4961568143764023e89,3.041616708285768e89,6.183464267399944e89,1.257069315869224e90,2.5555630251330543e90,5.195339901293731e90,1.0561882616285486e91,2.1471812531921466e91,4.365118891731594e91,8.874082199918935e91,1.8040593359343038e92,3.667568109298722e92,7.455994139671046e92,1.515768677065881e93,3.081486706312625e93,6.26451810546862e93,1.2735471814091809e94,2.589061753783512e94,5.263441247215839e94,1.0700329461978809e95,2.175326848294537e95,4.422337567946199e95,8.990405087952898e95,1.8277072340958613e96,3.7156431783507973e96,7.553728502724248e96,1.5356376151865715e97,3.1218793266469087e97,6.346634410203303e97,1.2902410414447245e98,2.622999589123952e98,5.3324352764664166e98,1.084059109105707e99,2.203841380356653e99,4.480306275715133e99,9.108252754998148e99,1.8516651126866795e100,3.764348423093105e100,7.652743983431797e100,1.5557669985242334e101,3.1628014199055456e101,6.429827108587249e101,1.3071537272661575e102,2.657382287035208e102,5.402333690481535e102,1.098269129199036e103,2.232729685463264e103,4.539034846572159e103,9.227645188101187e103,1.8759370349798817e104,3.813692103969224e104,7.753057374888264e104,1.5761602410364925e105,3.2042599265041777e105,6.514110310160114e105,1.3242881072769356e106,2.6922156788468976e106,5.47314834408095e106,1.1126654165073082e107,2.2619966630911242e107,4.5985332409238474e107,9.348602636302962e107,1.9005271175104678e108,3.863682589701943e108,7.854685690315661e108,1.5968208014314984e109,3.246261877834521e109,6.599498309412389e109,1.3416470874798563e110,2.7275056723266345e110,5.5448912474799075e110,1.1272504126508899e111,2.2916472769401742e111,4.658811549739753e111,9.471145614071031e111,1.9254395307736332e112,3.9143283587129365e112,7.957646165947374e112,1.617752183754927e113,3.288814397457082e113,6.686005588208288e113,1.359233611970218e114,2.763258252682228e114,5.617574568325011e114,1.1420265912554561e115,2.3216865557751957e115,4.719879996263479e115,9.59529490478094e115,1.9506784999322564e116,3.965638000560055e116,8.061956263951853e116,1.6389579379836778e117,3.33192470230914e117,6.77364681824337e117,1.3770506634348756e118,2.7994794835763174e118,5.691210633758149e118,1.1569964583711044e119,2.3521195942792175e119,4.781748937746276e119,9.721071564239238e119,1.9762483055331612e120,4.01762021739433e120,8.167633675395823e120,1.660441660628777e121,3.3756001039285545e121,6.862436863531553e121,1.3951012636582593e122,2.8361755081549135e122,5.765811932508329e122,1.1721625528979636e123,2.382951553916794e123,4.8444288672040274e123,9.84849692425562e123,2.0021532842332052e124,4.0702838254366636e124,8.27469632324196e124,1.6822069953445675e125,3.419848009694084e125,6.95239078292682e125,1.4133884740347517e126,2.873352550089855e126,5.841391117007843e126,1.1875274470162422e127,2.414187663809912e127,4.907930415196749e127,9.977592596259984e127,2.028397829535178e128,4.123637756471705e128,8.383162365390457e128,1.7042576335470887e129,3.464675924081397e129,7.043523832676614e129,1.4319153960882236e130,2.911016914633378e130,5.917961005539414e130,1.203093746622763e131,2.445833221624588e131,4.972264351631255e131,1.010838047497001e132,2.0549863925322652e132,4.177691059363594e132,8.493050197758171e132,1.7265973150399536e133,3.5100914499366185e133,7.135851469010914e133,1.4506851719975754e134,2.949174989688138e134,5.99553458440986e134,1.2188640917727925e135,2.477893594469907e135,5.037441587588865e135,1.0240882742101137e136,2.0819234826634065e136,4.232452901590427e136,8.604378457398081e136,1.7492298286490129e137,3.5561022897646037e137,7.229389350761227e137,1.4697009851299708e138,2.987833246890437e138,6.074125010152243e138,1.2348411571280708e139,2.5103742198074616e139,5.10347317717425e139,1.0375121870130836e140,2.1092136684779894e140,4.287932570798826e140,8.71716602566211e140,1.7721590128643576e141,3.602716247036072e141,7.324153342017929e141,1.4889660605805753e142,3.02699824270765e142,6.153745611758598e142,1.2510276524100243e143,2.5432806063741e143,5.170370319391335e143,1.0511120626108816e144,2.1368615784105536e144,4.3441394763801005e144,8.83143203140049e144,1.7953887564917197e145,3.649941227510883e145,7.420159514820007e145,1.5084836657198705e146,3.0666766195508886e146,6.234409892938482e146,1.2674263228596097e147,2.576618335116071e147,5.238144360042081e147,1.0648902075520698e148,2.164871901566265e148,4.401083151064634e148,8.947195854207969e148,1.818922999311917e149,3.6977852405786503e149,7.517424151882569e149,1.5282571107472992e150,3.1068751069005364e150,6.316131534410581e150,1.2840399497028416e151,2.610393060135414e151,5.306806793651927e151,1.0788489586196393e152,2.193249388515464e152,4.458773252539607e152,9.06447712771012e152,1.84276573274894e153,3.746256400617978e153,7.615963749355889e153,1.5482897492530123e154,3.147600522448253e154,6.398924396222265e154,1.3008713506224158e155,2.644610509649484e155,5.376369265417497e155,1.0929906832275646e156,2.2219988520998485e156,4.5172195650864526e156,9.183295742892697e156,1.8669210005473165e157,3.7953629283714105e157,7.71579501962484e157,1.5685849787865557e158,3.1888597732529095e158,6.482802520101712e158,1.3179233802358847e159,2.6792764869615816e159,5.44684357318281e159,1.1073177798222621e160,2.2511251682484865e160,4.5764320012412964e160,9.303671851477243e160,1.891392899457311e161,3.8451131523405107e161,7.816934894142907e161,1.5891462414330084e162,3.230659856912751e162,6.5677801318372256e162,1.3351989305793623e163,2.7143968714457814e163,5.5182416694399125e163,1.1218326782893032e164,2.2806332768052872e164,4.636420603474603e164,9.425625869335721e164,1.9161855799301493e165,3.895515510198172e165,7.91940052630332e165,1.6099770243971216e166,3.273007862751117e166,6.653871643691381e166,1.3527009315983085e167,2.7499776195437783e167,5.590575663355707e167,1.1365378403657788e168,2.31052818236604e168,4.697195545895404e168,9.549178479955125e168,1.9413032468217243e169,3.946578550219425e169,8.023209294350087e169,1.6310808605942129e170,3.3159109730195114e170,6.741091656844995e170,1.370432351644298e171,2.786024765775726e171,5.663857822826948e171,1.151435760057432e172,2.340814955127704e172,4.758767135976575e172,9.67435063794436e172,1.9667501601061845e173,3.9983109327321337e173,8.128378804322657e173,1.6524613292497084e174,3.359376464115538e174,6.829454963873107e174,1.388396197978767e175,2.8225444237627626e175,5.738100576558985e175,1.1665289640618956e176,2.3714987317481904e176,4.821145816302722e176,9.801163572590342e176,1.992530635597769e177,4.050721431584448e177,8.234926893043718e177,1.674122056506094e178,3.4034117078167914e178,6.918976551255361e178,1.4065955172825814e179,2.8595427872645075e179,5.813316516174944e179,1.1818200121970919e180,2.402584716217406e180,4.88434216634234e180,9.929638791455218e180,2.0186490456832094e181,4.103818935633747e181,8.342871631143399e181,1.6960667160378143e182,3.4480241725318854e182,7.009671601915408e182,1.4250333961730644e183,2.8970261312293706e183,5.889518398350624e183,1.197311497835647e184,2.434078180740401e184,4.948366904240469e184,1.0059798084026256e185,2.0451098200631826e185,4.157612450253738e185,8.452231326125965e185,1.7182990296747147e186,3.493221424565946e186,7.101555497797475e186,1.443712961727413e187,2.935000812858621e187,5.966719146979375e187,1.2130060483443286e188,2.4659844666307196e188,5.013230888637577e188,1.01916635254108e189,2.0719174465034718e189,4.2121110988627123e189,8.56302452547195e189,1.740822768032692e190,3.5390111294046312e190,7.194643822474773e190,1.462637382012968e191,2.97347327268524e191,6.044931855362001e191,1.2289063255299147e192,2.4983089852168365e192,5.078945120510643e192,1.0325257480079645e193,2.099076471596565e193,4.267324124469481e193,8.675270019785699e193,1.7636417511535762e194,3.585401053013807e194,7.28895236379207e194,1.4818098666248542e195,3.0124500356652437e195,6.124169788428722e195,1.2450150260905728e196,2.5310572187596405e196,5.145520745040073e196,1.046060260566241e197,2.1265915015320573e197,4.323260891241928e197,8.788986845981806e197,1.7867598491528128e198,3.63239906315747e198,7.384497116544967e198,1.5012336672298316e199,3.051937712284981e199,6.2044463849885845e199,1.2613348820731488e200,2.5642347213828038e200,5.2129690534982155e200,1.0597721856786773e201,2.1544672028783325e201,4.379930886094945e201,8.904194290513277e201,1.8101809828762463e202,3.6800131307309177e202,7.481294285190162e202,1.5209120781181115e203,3.0919429996821137e203,6.285775260008332e203,1.2778686613368105e204,2.597847120013909e204,5.28130148516551e204,1.0736638488973937e205,2.182708303373773e205,4.437343720299169e205,9.020911892644546e205,1.8339091245644888e206,3.728251331113418e206,7.579360286595374e206,1.5408484367619003e207,3.132472682781276e207,6.368170206922942e207,1.2946191680220515e208,2.6319001153393474e208,5.3505296292703145e208,1.0877376062581575e209,2.2113195927290856e209,4.495509131112067e209,9.139159447762329e209,1.8579482985270195e210,3.7771218455376025e210,7.678711752822814e210,1.5610461243817867e211,3.1735336354455126e211,6.451645199972873e211,1.3115892430265582e212,2.66639948277102e212,5.420665226954133e212,1.1019958446802146e213,2.2403059234388968e213,4.5544369834278736e213,9.258957010734941e213,1.8823025818246093e214,3.8266329624767894e214,7.77936553395173e214,1.581508566519676e215,3.21513282164103e215,6.536214396575515e215,1.3287817644869588e216,2.7013510734256957e216,5.4917201732641563e216,1.1164409823707446e217,2.2696722116052337e217,4.61413727145169e217,9.380324899312588e217,1.9069761049606857e218,3.876793079051584e218,7.881338700933595e218,1.6022392336201122e219,3.2572772966189957e219,6.621892139725574e219,1.3461996482668792e220,2.7367608151179786e220,5.56370651916883e220,1.1310754692352356e221,2.2994234377711743e221,4.674620120393989e221,9.503283697575388e221,1.9319730525823e222,3.9276107024527366e222,7.984648548488625e222,1.6232416416187814e223,3.299974208111748e223,6.708692960429533e223,1.3638458484517823e224,2.7726347133645956e224,5.6366364736029274e224,1.1459017872928624e225,2.3295646477655507e225,4.735895788188915e225,9.627854259421822e225,1.9572976641892008e226,3.9790944513846064e226,8.089312598040814e226,1.644519352538723e227,3.3432307975459984e227,6.796631580165971e227,1.3817233578494463e228,2.8089788524043332e228,5.7105224055375696e228,1.1609224510977665e229,2.360100953558593e229,4.797974667232731e229,9.754057712104942e229,1.982954234853173e230,4.031253057527815e230,8.195348600684575e230,1.666075975094919e231,3.387054401268909e231,6.885722913387253e231,1.3998352084982448e232,2.8457993962280395e232,5.785376846079627e232,1.1761400081648057e233,2.3910375341293196e233,4.860867286146062e233,9.881915459819952e233,2.0089471159469417e234,4.084095367017649e234,8.30277454020221e234,1.6879151653053035e235,3.431452451794797e235,6.975982070046793e235,1.4181844721804396e236,2.883102589626424e236,5.861212490593431e236,1.1915570394024665e237,2.4223796363437775e237,4.9245843115617444e237,1.0011449187331718e238,2.0352807158809237e238,4.1376303419477996e238,8.411608636106561e238,1.7100406271120468e239,3.476432479064578e239,7.0674243581593165e239,1.4367742609443464e240,2.9208947592466093e240,5.93804220085815e240,1.207176159550201e241,2.4541325758439465e241,4.9891365499325606e241,1.0142680863649048e242,2.061959500852605e242,4.191867061886642e242,8.521869346737586e242,1.7324561130091922e243,3.5220021117216505e243,7.160065286402646e243,1.4556077276308583e244,2.959182314667405e244,6.015879007247236e244,1.2230000176214733e245,2.4863017379511993e245,5.054534949362305e245,1.027563274575745e246,2.08898799560217e246,4.2468147254203966e246,8.633575372390155e246,1.755165424678485e247,3.568169078408484e247,7.253920566741593e247,1.4746880664093015e248,2.9979717494854137e248,6.094736110936308e248,1.239031297353991e249,2.5188925785774396e249,5.1207906014659684e249,1.0410327382390596e250,2.1163707841815245e250,4.3024826517118425e250,8.746745658482649e250,1.7781724136355142e251,3.6149412090742156e251,7.349006117098361e251,1.49401851331869e252,3.0372696424153212e252,6.174626886146859e252,1.255272717663765e253,2.551910625152383e253,5.187914743249224e253,1.0546787617851016e254,2.1441125107310678e254,4.3588802820793664e254,8.861399398776967e254,1.8014809818813485e255,3.6623264363054237e255,7.445338064049854e255,1.5136023468160453e256,3.0770826584080275e256,6.255564882409024e256,1.271727033107215e257,2.5853614775601904e257,5.255918759012445e257,1.0685036595892776e258,2.1722178802666036e258,4.416017181601132e258,8.977556038625909e258,1.8250950825657157e259,3.7103327966703164e259,7.542932745560185e259,1.5334428883336117e260,3.1174175497782846e260,6.337563826864452e260,1.2883970343479316e261,2.6192508090883164e261,5.324814182285606e261,1.0825097763637138e262,2.200691659478766e262,4.473903040735897e262,9.095235278278092e262,1.8490187206568717e263,3.758968432080457e263,7.641806713757516e263,1.5535435028408049e264,3.158281157352315e264,6.420637626592389e264,1.3052855486295308e265,2.6535843673917588e265,5.3946126977796324e265,1.0966994875557626e266,2.229538677540741e266,4.5325476769649754e266,9.214457076216174e266,1.8732559536202045e267,3.8082415911745856e267,7.741976737734506e267,1.5739075994161213e268,3.1996804116269987e268,6.504800370966105e268,1.3223954402561795e269,2.688367975465496e269,5.465326143372324e269,1.1110751997505245e270,2.258763826926529e270,4.591961036460845e270,9.335241652538658e270,1.897810892107638e271,3.8581606307141965e271,7.84345980639836e271,1.5945386318248098e272,3.2416223339441866e272,6.590066334047568e272,1.3397296110772037e273,2.723607532634162e273,5.536966512114298e273,1.1256393510786237e274,2.288372064242482e274,4.652153195769923e274,9.457609492395469e274,1.9226877006541878e275,3.908734017003849e275,7.946273131349635e275,1.6154400991040821e276,3.2841140376840634e276,6.676449977002456e276,1.3572910009802857e277,2.7593090155516903e277,5.60954595426111e277,1.1403944116305984e278,2.318368411065906e278,4.7131343635251814e278,9.581581349459197e278,1.9478905983836035e279,3.959970327325792e279,8.050434149798584e279,1.6366155461578195e280,3.327162729468656e280,6.7639659505579644e280,1.3750825883896315e281,2.795478479214012e281,5.6830767793383383e281,1.1553428838748138e282,2.348757954798527e282,4.774914882175999e282,9.70717824944162e282,1.9734238597254636e283,4.011878251393313e283,8.155960527527913e283,1.6580685643563303e284,3.3707757103866656e284,6.852629097485392e284,1.3931073907706383e285,2.832122057988173e285,5.757571458224227e285,1.1704873030827786e286,2.3795458495285536e286,4.837505229740609e286,9.83442149366729e286,1.9992918151383613e287,4.0644665928271963e287,8.262870161886266e287,1.679802792146737e288,3.4149603772306433e288,6.94245445511512e288,1.4113684651427516e289,2.8692459666502044e289,5.833042625269221e289,1.1858302377587515e290,2.4107373169039982e290,4.900916021586968e290,9.963332662677489e290,2.0254988518459067e291,4.117744270647519e291,8.371181184820777e291,1.7018219156695166e292,3.4597242237503184e292,7.033457257892398e292,1.4298689085966795e293,2.906856501441382e293,5.909503080436877e293,1.2013742900749513e294,2.442337647020157e294,4.9651580122287575e294,1.0093933619898035e295,2.052049414580146e295,4.17172032078489e295,8.480911965958825e295,1.724129669383083e296,3.5050748419258515e296,7.125652939954838e296,1.4486118588207703e297,2.94496004113513e297,5.986965791472706e297,1.2171220963138285e298,2.474352199314639e298,5.030242097153217e298,1.0226246515344071e299,2.0789480063346853e299,4.226403897616227e299,8.592081115715967e299,1.7467298366983097e300,3.5510199232543085e300,7.219057137755598e300,1.4676004946327002e301,2.9835630481178506e301,6.065443896108204e301,1.2330763273140956e302,2.5067864034782503e302,5.096179314667393e302,1.036029378937319e303,2.106199189130029e303,4.2818042755135755e303,8.704707488458952e303,1.7696262506196317e304,3.5975672600529185e304,7.313685692712992e304,1.4868380365180948e305,3.0226720694872875e305,6.144950704283608e305,1.2492396889246612e306,2.539645760375062e306,5.162980847768492e306,1.0496098176499464e307,2.1338075847854238e307,4.3379308504203717e307,8.818810185700627e307,1.7928227943945155e308],"x":[1.0,1.7094894894894894,2.418978978978979,3.1284684684684683,3.837957957957958,4.547447447447447,5.2569369369369365,5.966426426426427,6.675915915915916,7.385405405405406,8.094894894894894,8.804384384384385,9.513873873873873,10.223363363363363,10.932852852852854,11.642342342342342,12.351831831831833,13.061321321321321,13.770810810810811,14.4803003003003,15.18978978978979,15.899279279279279,16.60876876876877,17.318258258258258,18.027747747747746,18.737237237237238,19.446726726726727,20.156216216216215,20.865705705705707,21.575195195195196,22.284684684684684,22.994174174174173,23.703663663663665,24.413153153153154,25.122642642642642,25.83213213213213,26.541621621621623,27.25111111111111,27.9606006006006,28.67009009009009,29.37957957957958,30.08906906906907,30.798558558558558,31.50804804804805,32.21753753753754,32.92702702702703,33.636516516516515,34.34600600600601,35.05549549549549,35.764984984984984,36.474474474474476,37.18396396396396,37.89345345345345,38.602942942942946,39.31243243243243,40.02192192192192,40.731411411411415,41.4409009009009,42.15039039039039,42.85987987987988,43.56936936936937,44.27885885885886,44.988348348348346,45.69783783783784,46.40732732732733,47.116816816816815,47.82630630630631,48.5357957957958,49.245285285285284,49.954774774774776,50.66426426426426,51.37375375375375,52.083243243243246,52.79273273273273,53.50222222222222,54.211711711711715,54.9212012012012,55.63069069069069,56.34018018018018,57.04966966966967,57.75915915915916,58.468648648648646,59.17813813813814,59.88762762762763,60.597117117117115,61.30660660660661,62.0160960960961,62.725585585585584,63.435075075075076,64.14456456456456,64.85405405405406,65.56354354354355,66.27303303303303,66.98252252252253,67.69201201201201,68.4015015015015,69.11099099099098,69.82048048048048,70.52996996996997,71.23945945945945,71.94894894894895,72.65843843843844,73.36792792792792,74.07741741741742,74.7869069069069,75.49639639639639,76.20588588588589,76.91537537537538,77.62486486486486,78.33435435435436,79.04384384384385,79.75333333333333,80.46282282282283,81.17231231231231,81.8818018018018,82.59129129129128,83.30078078078078,84.01027027027027,84.71975975975975,85.42924924924925,86.13873873873874,86.84822822822822,87.55771771771772,88.2672072072072,88.97669669669669,89.68618618618619,90.39567567567568,91.10516516516516,91.81465465465466,92.52414414414415,93.23363363363363,93.94312312312313,94.65261261261261,95.3621021021021,96.0715915915916,96.78108108108108,97.49057057057057,98.20006006006005,98.90954954954955,99.61903903903904,100.32852852852852,101.03801801801802,101.7475075075075,102.45699699699699,103.16648648648649,103.87597597597598,104.58546546546546,105.29495495495496,106.00444444444445,106.71393393393393,107.42342342342343,108.13291291291291,108.8424024024024,109.5518918918919,110.26138138138138,110.97087087087087,111.68036036036035,112.38984984984985,113.09933933933934,113.80882882882882,114.51831831831832,115.2278078078078,115.93729729729729,116.64678678678679,117.35627627627628,118.06576576576576,118.77525525525526,119.48474474474475,120.19423423423423,120.90372372372373,121.61321321321321,122.3227027027027,123.0321921921922,123.74168168168168,124.45117117117117,125.16066066066067,125.87015015015015,126.57963963963964,127.28912912912912,127.99861861861862,128.70810810810812,129.4175975975976,130.1270870870871,130.8365765765766,131.54606606606606,132.25555555555556,132.96504504504506,133.67453453453453,134.38402402402403,135.0935135135135,135.803003003003,136.5124924924925,137.22198198198197,137.93147147147147,138.64096096096097,139.35045045045044,140.05993993993994,140.76942942942944,141.4789189189189,142.1884084084084,142.8978978978979,143.60738738738738,144.31687687687688,145.02636636636637,145.73585585585585,146.44534534534534,147.15483483483484,147.86432432432431,148.5738138138138,149.2833033033033,149.99279279279278,150.70228228228228,151.41177177177178,152.12126126126125,152.83075075075075,153.54024024024025,154.24972972972972,154.95921921921922,155.66870870870872,156.3781981981982,157.0876876876877,157.7971771771772,158.50666666666666,159.21615615615616,159.92564564564566,160.63513513513513,161.34462462462463,162.05411411411413,162.7636036036036,163.4730930930931,164.18258258258257,164.89207207207207,165.60156156156157,166.31105105105104,167.02054054054054,167.73003003003004,168.4395195195195,169.149009009009,169.8584984984985,170.56798798798798,171.27747747747748,171.98696696696697,172.69645645645645,173.40594594594594,174.11543543543544,174.82492492492491,175.5344144144144,176.2439039039039,176.95339339339338,177.66288288288288,178.37237237237238,179.08186186186185,179.79135135135135,180.50084084084085,181.21033033033032,181.91981981981982,182.62930930930932,183.3387987987988,184.0482882882883,184.7577777777778,185.46726726726726,186.17675675675676,186.88624624624626,187.59573573573573,188.30522522522523,189.01471471471473,189.7242042042042,190.4336936936937,191.1431831831832,191.85267267267267,192.56216216216217,193.27165165165164,193.98114114114114,194.69063063063064,195.4001201201201,196.1096096096096,196.8190990990991,197.52858858858858,198.23807807807808,198.94756756756757,199.65705705705705,200.36654654654654,201.07603603603604,201.78552552552551,202.495015015015,203.2045045045045,203.91399399399398,204.62348348348348,205.33297297297298,206.04246246246245,206.75195195195195,207.46144144144145,208.17093093093092,208.88042042042042,209.58990990990992,210.2993993993994,211.0088888888889,211.7183783783784,212.42786786786786,213.13735735735736,213.84684684684686,214.55633633633633,215.26582582582583,215.97531531531533,216.6848048048048,217.3942942942943,218.1037837837838,218.81327327327327,219.52276276276277,220.23225225225227,220.94174174174174,221.65123123123124,222.3607207207207,223.0702102102102,223.7796996996997,224.48918918918918,225.19867867867868,225.90816816816817,226.61765765765765,227.32714714714714,228.03663663663664,228.74612612612611,229.4556156156156,230.1651051051051,230.87459459459458,231.58408408408408,232.29357357357358,233.00306306306305,233.71255255255255,234.42204204204205,235.13153153153152,235.84102102102102,236.55051051051052,237.26,237.9694894894895,238.678978978979,239.38846846846846,240.09795795795796,240.80744744744746,241.51693693693693,242.22642642642643,242.93591591591593,243.6454054054054,244.3548948948949,245.0643843843844,245.77387387387387,246.48336336336337,247.19285285285287,247.90234234234234,248.61183183183184,249.32132132132134,250.0308108108108,250.7403003003003,251.44978978978978,252.15927927927927,252.86876876876877,253.57825825825824,254.28774774774774,254.99723723723724,255.7067267267267,256.41621621621624,257.1257057057057,257.8351951951952,258.5446846846847,259.2541741741742,259.9636636636637,260.6731531531532,261.3826426426426,262.0921321321321,262.8016216216216,263.5111111111111,264.2206006006006,264.9300900900901,265.63957957957956,266.34906906906906,267.05855855855856,267.76804804804806,268.47753753753756,269.187027027027,269.8965165165165,270.606006006006,271.3154954954955,272.024984984985,272.7344744744745,273.44396396396394,274.15345345345344,274.86294294294294,275.57243243243244,276.28192192192193,276.99141141141143,277.7009009009009,278.4103903903904,279.1198798798799,279.8293693693694,280.5388588588589,281.2483483483484,281.9578378378378,282.6673273273273,283.3768168168168,284.0863063063063,284.7957957957958,285.5052852852853,286.21477477477475,286.92426426426425,287.63375375375375,288.34324324324325,289.05273273273275,289.76222222222225,290.4717117117117,291.1812012012012,291.8906906906907,292.6001801801802,293.3096696696697,294.0191591591592,294.72864864864863,295.43813813813813,296.1476276276276,296.8571171171171,297.5666066066066,298.27609609609607,298.98558558558557,299.69507507507507,300.40456456456457,301.11405405405407,301.82354354354356,302.533033033033,303.2425225225225,303.952012012012,304.6615015015015,305.370990990991,306.0804804804805,306.78996996996995,307.49945945945944,308.20894894894894,308.91843843843844,309.62792792792794,310.33741741741744,311.0469069069069,311.7563963963964,312.4658858858859,313.1753753753754,313.8848648648649,314.5943543543544,315.3038438438438,316.0133333333333,316.7228228228228,317.4323123123123,318.1418018018018,318.8512912912913,319.56078078078076,320.27027027027026,320.97975975975976,321.68924924924926,322.39873873873876,323.10822822822826,323.8177177177177,324.5272072072072,325.2366966966967,325.9461861861862,326.6556756756757,327.36516516516514,328.07465465465464,328.78414414414414,329.49363363363364,330.20312312312313,330.91261261261263,331.6221021021021,332.3315915915916,333.0410810810811,333.7505705705706,334.4600600600601,335.1695495495496,335.879039039039,336.5885285285285,337.298018018018,338.0075075075075,338.716996996997,339.4264864864865,340.13597597597595,340.84546546546545,341.55495495495495,342.26444444444445,342.97393393393395,343.68342342342345,344.3929129129129,345.1024024024024,345.8118918918919,346.5213813813814,347.2308708708709,347.9403603603604,348.64984984984983,349.35933933933933,350.0688288288288,350.7783183183183,351.4878078078078,352.1972972972973,352.90678678678677,353.61627627627627,354.32576576576577,355.03525525525527,355.74474474474476,356.4542342342342,357.1637237237237,357.8732132132132,358.5827027027027,359.2921921921922,360.0016816816817,360.71117117117115,361.42066066066064,362.13015015015014,362.83963963963964,363.54912912912914,364.25861861861864,364.9681081081081,365.6775975975976,366.3870870870871,367.0965765765766,367.8060660660661,368.5155555555556,369.225045045045,369.9345345345345,370.644024024024,371.3535135135135,372.063003003003,372.7724924924925,373.48198198198196,374.19147147147146,374.90096096096096,375.61045045045046,376.31993993993996,377.02942942942946,377.7389189189189,378.4484084084084,379.1578978978979,379.8673873873874,380.5768768768769,381.2863663663664,381.99585585585584,382.70534534534534,383.41483483483483,384.12432432432433,384.83381381381383,385.5433033033033,386.2527927927928,386.9622822822823,387.6717717717718,388.3812612612613,389.0907507507508,389.8002402402402,390.5097297297297,391.2192192192192,391.9287087087087,392.6381981981982,393.3476876876877,394.05717717717715,394.76666666666665,395.47615615615615,396.18564564564565,396.89513513513515,397.60462462462465,398.3141141141141,399.0236036036036,399.7330930930931,400.4425825825826,401.1520720720721,401.8615615615616,402.57105105105103,403.2805405405405,403.99003003003,404.6995195195195,405.409009009009,406.1184984984985,406.82798798798797,407.53747747747747,408.24696696696697,408.95645645645646,409.66594594594596,410.37543543543546,411.0849249249249,411.7944144144144,412.5039039039039,413.2133933933934,413.9228828828829,414.63237237237234,415.34186186186184,416.05135135135134,416.76084084084084,417.47033033033034,418.17981981981984,418.8893093093093,419.5987987987988,420.3082882882883,421.0177777777778,421.7272672672673,422.4367567567568,423.1462462462462,423.8557357357357,424.5652252252252,425.2747147147147,425.9842042042042,426.6936936936937,427.40318318318316,428.11267267267266,428.82216216216216,429.53165165165166,430.24114114114116,430.95063063063066,431.6601201201201,432.3696096096096,433.0790990990991,433.7885885885886,434.4980780780781,435.2075675675676,435.91705705705704,436.62654654654654,437.33603603603603,438.04552552552553,438.75501501501503,439.46450450450453,440.173993993994,440.8834834834835,441.592972972973,442.3024624624625,443.01195195195197,443.7214414414414,444.4309309309309,445.1404204204204,445.8499099099099,446.5593993993994,447.2688888888889,447.97837837837835,448.68786786786785,449.39735735735735,450.10684684684685,450.81633633633635,451.52582582582585,452.2353153153153,452.9448048048048,453.6542942942943,454.3637837837838,455.0732732732733,455.7827627627628,456.49225225225223,457.2017417417417,457.9112312312312,458.6207207207207,459.3302102102102,460.0396996996997,460.74918918918917,461.45867867867867,462.16816816816817,462.87765765765766,463.58714714714716,464.29663663663666,465.0061261261261,465.7156156156156,466.4251051051051,467.1345945945946,467.8440840840841,468.5535735735736,469.26306306306304,469.97255255255254,470.68204204204204,471.39153153153154,472.10102102102104,472.8105105105105,473.52,474.2294894894895,474.938978978979,475.6484684684685,476.357957957958,477.0674474474474,477.7769369369369,478.4864264264264,479.1959159159159,479.9054054054054,480.6148948948949,481.32438438438436,482.03387387387386,482.74336336336336,483.45285285285286,484.16234234234236,484.87183183183186,485.5813213213213,486.2908108108108,487.0003003003003,487.7097897897898,488.4192792792793,489.1287687687688,489.83825825825824,490.54774774774774,491.25723723723723,491.96672672672673,492.67621621621623,493.38570570570573,494.0951951951952,494.8046846846847,495.5141741741742,496.2236636636637,496.93315315315317,497.64264264264267,498.3521321321321,499.0616216216216,499.7711111111111,500.4806006006006,501.1900900900901,501.89957957957955,502.60906906906905,503.31855855855855,504.02804804804805,504.73753753753755,505.44702702702705,506.1565165165165,506.866006006006,507.5754954954955,508.284984984985,508.9944744744745,509.703963963964,510.4134534534534,511.1229429429429,511.8324324324324,512.5419219219219,513.2514114114114,513.9609009009009,514.6703903903904,515.3798798798799,516.0893693693694,516.7988588588588,517.5083483483484,518.2178378378378,518.9273273273274,519.6368168168168,520.3463063063064,521.0557957957958,521.7652852852852,522.4747747747748,523.1842642642642,523.8937537537538,524.6032432432432,525.3127327327327,526.0222222222222,526.7317117117117,527.4412012012012,528.1506906906907,528.8601801801802,529.5696696696697,530.2791591591591,530.9886486486487,531.6981381381381,532.4076276276277,533.1171171171171,533.8266066066066,534.5360960960961,535.2455855855856,535.9550750750751,536.6645645645646,537.374054054054,538.0835435435436,538.793033033033,539.5025225225226,540.212012012012,540.9215015015016,541.630990990991,542.3404804804804,543.04996996997,543.7594594594594,544.468948948949,545.1784384384384,545.8879279279279,546.5974174174174,547.3069069069069,548.0163963963964,548.7258858858859,549.4353753753754,550.1448648648649,550.8543543543543,551.5638438438439,552.2733333333333,552.9828228228229,553.6923123123123,554.4018018018018,555.1112912912913,555.8207807807808,556.5302702702703,557.2397597597597,557.9492492492493,558.6587387387387,559.3682282282282,560.0777177177177,560.7872072072072,561.4966966966967,562.2061861861862,562.9156756756756,563.6251651651652,564.3346546546546,565.0441441441442,565.7536336336336,566.4631231231231,567.1726126126126,567.8821021021021,568.5915915915916,569.3010810810811,570.0105705705706,570.7200600600601,571.4295495495495,572.1390390390391,572.8485285285285,573.5580180180181,574.2675075075075,574.976996996997,575.6864864864865,576.395975975976,577.1054654654655,577.8149549549549,578.5244444444445,579.2339339339339,579.9434234234234,580.6529129129129,581.3624024024024,582.0718918918919,582.7813813813814,583.4908708708708,584.2003603603604,584.9098498498498,585.6193393393394,586.3288288288288,587.0383183183184,587.7478078078078,588.4572972972973,589.1667867867868,589.8762762762763,590.5857657657658,591.2952552552553,592.0047447447447,592.7142342342343,593.4237237237237,594.1332132132133,594.8427027027027,595.5521921921921,596.2616816816817,596.9711711711711,597.6806606606607,598.3901501501501,599.0996396396397,599.8091291291291,600.5186186186186,601.2281081081081,601.9375975975976,602.6470870870871,603.3565765765766,604.066066066066,604.7755555555556,605.485045045045,606.1945345345346,606.904024024024,607.6135135135136,608.323003003003,609.0324924924925,609.741981981982,610.4514714714715,611.160960960961,611.8704504504504,612.5799399399399,613.2894294294294,613.9989189189189,614.7084084084084,615.4178978978979,616.1273873873874,616.8368768768769,617.5463663663663,618.2558558558559,618.9653453453453,619.6748348348349,620.3843243243243,621.0938138138138,621.8033033033033,622.5127927927928,623.2222822822823,623.9317717717718,624.6412612612612,625.3507507507508,626.0602402402402,626.7697297297298,627.4792192192192,628.1887087087088,628.8981981981982,629.6076876876876,630.3171771771772,631.0266666666666,631.7361561561562,632.4456456456456,633.1551351351351,633.8646246246246,634.5741141141141,635.2836036036036,635.9930930930931,636.7025825825826,637.4120720720721,638.1215615615615,638.8310510510511,639.5405405405405,640.2500300300301,640.9595195195195,641.669009009009,642.3784984984985,643.087987987988,643.7974774774775,644.506966966967,645.2164564564565,645.925945945946,646.6354354354354,647.344924924925,648.0544144144144,648.763903903904,649.4733933933934,650.1828828828828,650.8923723723724,651.6018618618618,652.3113513513514,653.0208408408408,653.7303303303303,654.4398198198198,655.1493093093093,655.8587987987988,656.5682882882883,657.2777777777778,657.9872672672673,658.6967567567567,659.4062462462463,660.1157357357357,660.8252252252253,661.5347147147147,662.2442042042042,662.9536936936937,663.6631831831832,664.3726726726727,665.0821621621621,665.7916516516517,666.5011411411411,667.2106306306306,667.9201201201201,668.6296096096096,669.3390990990991,670.0485885885886,670.758078078078,671.4675675675676,672.177057057057,672.8865465465466,673.596036036036,674.3055255255256,675.015015015015,675.7245045045045,676.433993993994,677.1434834834835,677.852972972973,678.5624624624625,679.2719519519519,679.9814414414415,680.6909309309309,681.4004204204205,682.1099099099099,682.8193993993993,683.5288888888889,684.2383783783783,684.9478678678679,685.6573573573573,686.3668468468469,687.0763363363363,687.7858258258258,688.4953153153153,689.2048048048048,689.9142942942943,690.6237837837838,691.3332732732732,692.0427627627628,692.7522522522522,693.4617417417418,694.1712312312312,694.8807207207208,695.5902102102102,696.2996996996997,697.0091891891892,697.7186786786787,698.4281681681682,699.1376576576577,699.8471471471471,700.5566366366367,701.2661261261261,701.9756156156157,702.6851051051051,703.3945945945947,704.1040840840841,704.8135735735735,705.5230630630631,706.2325525525525,706.9420420420421,707.6515315315315,708.361021021021,709.0705105105105,709.78]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl deleted file mode 100644 index a257fd020a7f..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/env julia -# -# @license Apache-2.0 -# -# Copyright (c) 2018 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import JSON - -""" - gen( domain, filepath ) - -Generate fixture data and write to file. - -# Arguments - -* `domain`: domain -* `filepath::AbstractString`: filepath of the output file - -# Examples - -``` julia -julia> x = range( -100, stop = 100, length = 2001 ); -julia> gen( x, \"./data.json\" ); -``` -""" -function gen( domain, filepath ) - x = collect( domain ); - y = exp.( x ); - data = Dict([ - ("x", x), - ("expected", y) - ]); - 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 ); - -# Medium negative values: -x = range( -709.78, stop = -1.0, length = 1000 ); -out = joinpath( dir, "./medium_negative.json" ); -gen( x, out ); - -# Medium positive values: -x = range( 1.0, stop = 709.78, length = 1000 ); -out = joinpath( dir, "./medium_positive.json" ); -gen( x, out ); - -# Small negative values: -x = range( -1.0, stop = -2.0^-54, length = 1000 ); -out = joinpath( dir, "./small_negative.json" ); -gen( x, out ); - -# Small positive values: -x = range( 2.0^-54, stop = 1.0, length = 1000 ); -out = joinpath( dir, "./small_positive.json" ); -gen( x, out ); - -# Tiny values: -x = range( -2.0^-54, stop = 2.0^-54, length = 1000 ); -out = joinpath( dir, "./tiny.json" ); -gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json deleted file mode 100644 index 0007e456f3ce..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[0.36787944117144233,0.3682478732299681,0.36861667427399997,0.3689858446730776,0.36935538479711094,0.3697252950163802,0.3700955757015367,0.3704662272236028,0.3708372499539725,0.3712086442644116,0.3715804105270584,0.37195254911442394,0.3723250603993921,0.37269794475522044,0.3730712025555402,0.3734448341743568,0.37381883998605037,0.37419322036537583,0.3745679756874635,0.3749431063278193,0.37531861266232536,0.3756944950672402,0.37607075391919903,0.37644738959521457,0.3768244024726768,0.37720179292935374,0.377579561343392,0.37795770809331647,0.37833623355803153,0.3787151381168207,0.3790944221493477,0.3794740860356562,0.3798541301561706,0.3802345548916962,0.38061536062341994,0.3809965477329102,0.3813781166021177,0.3817600676133756,0.3821424011494,0.3825251175932903,0.3829082173285295,0.3832917007389847,0.38367556820890764,0.38405982012293455,0.3844444568660871,0.3848294788237724,0.3852148863817837,0.38560067992630065,0.3859868598438895,0.38637342652150364,0.3867603803464842,0.38714772170656,0.38753545098984843,0.38792356858485527,0.3883120748804756,0.38870097026599393,0.3890902551310847,0.3894799298658125,0.38986999486063256,0.3902604505063913,0.39065129719432645,0.3910425353160676,0.3914341652636365,0.39182618742944764,0.39221860220630844,0.3926114099874196,0.3930046111663759,0.3933982061371661,0.3937921952941735,0.3941865790321764,0.3945813577463487,0.3949765318322598,0.39537210168587533,0.39576806770355755,0.39616443028206555,0.3965611898185559,0.396958346710583,0.3973559013560992,0.3977538541534554,0.39815220550140157,0.39855095579908706,0.3989501054460608,0.39934965484227214,0.3997496043880706,0.4001499544842069,0.40055070553183325,0.4009518579325032,0.40135341208817293,0.40175536840120074,0.4021577272743482,0.40256048911078013,0.40296365431406506,0.4033672232881759,0.40377119643748993,0.4041755741667895,0.4045803568812623,0.404985544986502,0.4053911388885082,0.40579713899368725,0.40620354570885253,0.40661035944122487,0.40701758059843285,0.40742520958851336,0.4078332468199118,0.4082416927014828,0.4086505476424905,0.40905981205260866,0.40946948634192154,0.40987957092092403,0.41029006620052216,0.4107009725920335,0.41111229050718745,0.41152402035812585,0.41193616255740334,0.41234871751798763,0.41276168565326005,0.41317506737701604,0.4135888631034652,0.41400307324723223,0.414417698223357,0.41483273844729496,0.4152481943349177,0.41566406630251335,0.41608035476678684,0.41649706014486054,0.41691418285427445,0.41733172331298696,0.4177496819393748,0.41816805915223376,0.4185868553707792,0.41900607101464615,0.4194257065038901,0.4198457622589869,0.4202662387008339,0.4206871362507497,0.4211084553304749,0.4215301963621727,0.42195235976842876,0.42237494597225217,0.4227979553970756,0.4232213884667557,0.423645245605574,0.4240695272382363,0.4244942337898744,0.4249193656860454,0.42534492335273283,0.4257709072163468,0.4261973177037245,0.4266241552421304,0.42705142025925713,0.42747911318322557,0.4279072344425854,0.4283357844663153,0.4287647636838238,0.42919417252494946,0.42962401141996115,0.4300542807995589,0.43048498109487376,0.43091611273746894,0.43134767615933955,0.43177967179291366,0.432212100071052,0.4326449614270491,0.4330782562946335,0.4335119851079679,0.4339461483016499,0.43438074631071244,0.4348157795706239,0.43525124851728914,0.4356871535870493,0.4361234952166826,0.43656027384340473,0.4369974899048692,0.4374351438391678,0.4378732360848312,0.43831176708082925,0.4387507372665712,0.4391901470819066,0.4396299969671255,0.44007028736295883,0.44051101871057885,0.44095219145159975,0.44139380602807804,0.4418358628825128,0.4422783624578464,0.4427213051974649,0.4431646915451981,0.4436085219453206,0.4440527968425518,0.4444975166820565,0.4449426819094454,0.4453882929707754,0.4458343503125502,0.4462808543817206,0.44672780562568504,0.4471752044922901,0.4476230514298307,0.4480713468870511,0.4485200913131444,0.4489692851577542,0.449418928870974,0.4498690229033481,0.4503195677058723,0.4507705637299937,0.4512220114276118,0.45167391125107864,0.45212626365319913,0.45257906908723183,0.45303232800688914,0.4534860408663379,0.4539402081202,0.4543948302235521,0.4548499076319271,0.455305440801314,0.4557614301881584,0.45621787624936316,0.45667477944228857,0.45713214022475296,0.45758995905503336,0.4580482363918657,0.4585069726944451,0.45896616842242693,0.4594258240359266,0.4598859399955205,0.46034651676224636,0.4608075547976034,0.46126905456355305,0.4617310165225197,0.4621934411373905,0.4626563288715166,0.46311968018871263,0.4635834955532582,0.46404777542989767,0.46451252028384094,0.46497773058076386,0.4654434067868085,0.46590954936858386,0.4663761587931663,0.4668432355280998,0.46731078004139687,0.46777879280153833,0.4682472742774746,0.4687162249386254,0.46918564525488093,0.4696555356966017,0.4701258967346193,0.47059672884023707,0.47106803248523016,0.4715398081418463,0.47201205628280624,0.4724847773813039,0.4729579719110074,0.4734316403460591,0.47390578316107623,0.4743804008311514,0.4748554938318529,0.47533106263922537,0.4758071077297903,0.4762836295805463,0.47676062866896984,0.4772381054730153,0.47771606047111603,0.47819449414218435,0.4786734069656123,0.4791527994212721,0.4796326719895163,0.4801130251511788,0.48059385938757493,0.4810751751805021,0.4815569730122402,0.48203925336555214,0.48252201672368433,0.48300526357036716,0.48348899438981546,0.483973209666729,0.48445790988629295,0.48494309553417847,0.48542876709654303,0.4859149250600311,0.48640156991177447,0.48688870213939267,0.48737632223099375,0.4878644306751746,0.48835302796102137,0.48884211457811,0.4893316910165068,0.48982175776676895,0.49031231531994474,0.4908033641675745,0.49129490480169047,0.4917869377148181,0.49227946339997575,0.4927724823506757,0.49326599506092456,0.49376000202522347,0.494254503738569,0.49474950069645335,0.495244993394865,0.49574098233028924,0.49623746799970847,0.4967344509006028,0.4972319315309507,0.49772991038922926,0.49822838797441493,0.4987273647859837,0.4992268413239118,0.4997268180886764,0.5002272955812558,0.5007282743031298,0.5012297547562808,0.5017317374431937,0.5022342228668567,0.5027372115307617,0.5032407039389051,0.5037447005957875,0.5042492020064153,0.5047542086763006,0.5052597211114613,0.5057657398184229,0.5062722653042173,0.5067792980763848,0.5072868386429736,0.5077948875125411,0.5083034451941539,0.5088125121973882,0.5093220890323308,0.5098321762095791,0.5103427742402422,0.510853883635941,0.5113655049088084,0.5118776385714907,0.5123902851371473,0.5129034451194519,0.513417119032592,0.5139313073912707,0.5144460107107063,0.5149612295066329,0.5154769642953017,0.5159932155934803,0.516509983918454,0.5170272697880266,0.5175450737205198,0.5180633962347749,0.5185822378501528,0.519101599086534,0.5196214804643204,0.5201418825044346,0.5206628057283212,0.5211842506579467,0.5217062178158006,0.5222287077248957,0.5227517209087683,0.5232752578914794,0.5237993191976146,0.5243239053522849,0.5248490168811274,0.5253746543103053,0.5259008181665091,0.5264275089769564,0.5269547272693932,0.5274824735720938,0.5280107484138615,0.5285395523240295,0.5290688858324609,0.5295987494695495,0.5301291437662203,0.53066006925393,0.5311915264646676,0.5317235159309549,0.5322560381858469,0.5327890937629326,0.5333226831963354,0.5338568070207134,0.5343914657712604,0.5349266599837061,0.535462390194317,0.535998656939896,0.5365354607577844,0.537072802185861,0.5376106817625437,0.5381491000267894,0.5386880575180951,0.5392275547764978,0.5397675923425751,0.5403081707574467,0.5408492905627738,0.5413909523007597,0.5419331565141517,0.5424759037462398,0.5430191945408585,0.5435630294423867,0.5441074089957487,0.5446523337464146,0.5451978042404007,0.5457438210242699,0.5462903846451329,0.546837495650648,0.5473851545890224,0.5479333620090117,0.5484821184599216,0.5490314244916077,0.5495812806544764,0.5501316874994853,0.5506826455781436,0.5512341554425131,0.5517862176452084,0.5523388327393977,0.5528920012788026,0.5534457238177,0.5540000009109215,0.5545548331138546,0.5551102209824427,0.5556661650731861,0.5562226659431427,0.556779724149928,0.5573373402517161,0.5578955148072401,0.5584542483757924,0.5590135415172259,0.5595733947919541,0.5601338087609516,0.5606947839857551,0.5612563210284633,0.5618184204517381,0.5623810828188051,0.5629443086934534,0.5635080986400371,0.5640724532234758,0.5646373730092541,0.5652028585634237,0.5657689104526026,0.5663355292439768,0.5669027155052999,0.5674704698048944,0.5680387927116518,0.5686076847950333,0.5691771466250708,0.5697471787723666,0.5703177818080947,0.5708889563040012,0.5714607028324045,0.5720330219661967,0.572605914278843,0.5731793803443834,0.5737534207374327,0.5743280360331813,0.5749032268073953,0.5754789936364176,0.5760553370971685,0.5766322577671457,0.5772097562244257,0.5777878330476638,0.5783664888160945,0.5789457241095328,0.5795255395083743,0.5801059355935957,0.5806869129467559,0.5812684721499957,0.5818506137860393,0.5824333384381947,0.5830166466903534,0.5836005391269923,0.5841850163331734,0.5847700788945446,0.5853557273973404,0.5859419624283825,0.5865287845750802,0.587116194425431,0.5877041925680213,0.5882927795920274,0.588881956087215,0.5894717226439409,0.590062079853153,0.590653028306391,0.5912445685957871,0.5918367013140665,0.592429427054548,0.5930227464111447,0.5936166599783643,0.5942111683513102,0.5948062721256815,0.5954019718977739,0.5959982682644807,0.5965951618232924,0.5971926531722984,0.597790742910187,0.5983894316362455,0.5989887199503622,0.5995886084530259,0.6001890977453264,0.6007901884289562,0.6013918811062098,0.6019941763799851,0.602597074853784,0.6032005771317124,0.6038046838184817,0.6044093955194085,0.6050147128404159,0.6056206363880334,0.6062271667693988,0.606834304592257,0.6074420504649621,0.6080504049964774,0.6086593687963759,0.6092689424748414,0.6098791266426684,0.6104899219112634,0.6111013288926451,0.6117133481994453,0.6123259804449092,0.6129392262428961,0.6135530862078803,0.6141675609549513,0.6147826510998147,0.6153983572587928,0.6160146800488249,0.6166316200874686,0.6172491779928995,0.6178673543839127,0.6184861498799227,0.6191055651009646,0.6197256006676943,0.6203462572013894,0.6209675353239497,0.6215894356578976,0.6222119588263794,0.622835105453165,0.6234588761626495,0.624083271579853,0.6247082923304215,0.6253339390406277,0.6259602123373718,0.6265871128481814,0.6272146412012127,0.6278427980252512,0.6284715839497119,0.6291009996046402,0.6297310456207126,0.6303617226292371,0.6309930312621539,0.6316249721520364,0.6322575459320913,0.6328907532361594,0.6335245946987165,0.6341590709548734,0.6347941826403776,0.6354299303916128,0.6360663148456003,0.6367033366399992,0.6373409964131074,0.6379792948038618,0.6386182324518395,0.639257809997258,0.639898028080976,0.6405388873444938,0.6411803884299545,0.6418225319801443,0.6424653186384928,0.6431087490490742,0.6437528238566079,0.644397543706459,0.6450429092446384,0.6456889211178045,0.6463355799732634,0.646982886458969,0.6476308412235245,0.6482794449161826,0.6489286981868462,0.6495786016860691,0.6502291560650564,0.650880361975666,0.6515322200704079,0.652184731002446,0.6528378954255982,0.6534917139943376,0.654146187363792,0.654801316189746,0.6554571011286406,0.6561135428375745,0.6567706419743041,0.6574283991972448,0.6580868151654715,0.6587458905387189,0.6594056259773826,0.6600660221425196,0.6607270796958489,0.661388799299752,0.6620511816172744,0.6627142273121248,0.6633779370486772,0.6640423114919709,0.664707351307711,0.6653730571622696,0.6660394297226858,0.6667064696566671,0.6673741776325897,0.6680425543194988,0.6687116003871101,0.6693813165058097,0.6700517033466553,0.6707227615813766,0.6713944918823759,0.6720668949227291,0.6727399713761861,0.6734137219171717,0.674088147220786,0.6747632479628051,0.6754390248196821,0.6761154784685475,0.6767926095872099,0.6774704188541569,0.6781489069485555,0.6788280745502526,0.6795079223397764,0.6801884509983366,0.6808696612078248,0.6815515536508159,0.682234129010568,0.6829173879710241,0.6836013312168114,0.6842859594332434,0.6849712733063197,0.6856572735227267,0.6863439607698388,0.687031335735719,0.6877193991091187,0.6884081515794799,0.6890975938369346,0.6897877265723059,0.6904785504771092,0.6911700662435519,0.6918622745645352,0.6925551761336538,0.6932487716451973,0.6939430617941504,0.6946380472761943,0.6953337287877062,0.6960301070257614,0.6967271826881329,0.6974249564732928,0.6981234290804125,0.6988226012093637,0.699522473560719,0.7002230468357526,0.7009243217364414,0.7016262989654647,0.702328979226206,0.703032363222753,0.7037364516598987,0.7044412452431419,0.7051467446786879,0.7058529506734493,0.7065598639350468,0.7072674851718095,0.7079758150927762,0.7086848544076956,0.7093946038270273,0.7101050640619424,0.7108162358243242,0.7115281198267692,0.7122407167825872,0.7129540274058026,0.7136680524111547,0.714382792514099,0.7150982484308072,0.7158144208781683,0.7165313105737892,0.7172489182359958,0.7179672445838331,0.7186862903370663,0.7194060562161815,0.7201265429423864,0.7208477512376108,0.7215696818245076,0.7222923354264537,0.7230157127675498,0.7237398145726228,0.7244646415672247,0.7251901944776342,0.7259164740308579,0.7266434809546298,0.7273712159774133,0.7280996798284012,0.7288288732375163,0.7295587969354127,0.7302894516534764,0.7310208381238256,0.7317529570793115,0.7324858092535201,0.7332193953807711,0.7339537161961203,0.7346887724353592,0.7354245648350166,0.7361610941323589,0.7368983610653903,0.7376363663728549,0.7383751107942362,0.7391145950697583,0.7398548199403869,0.7405957861478294,0.7413374944345363,0.7420799455437019,0.742823140219264,0.7435670792059063,0.7443117632490578,0.7450571930948943,0.7458033694903388,0.7465502931830622,0.7472979649214846,0.7480463854547752,0.7487955555328538,0.749545475906391,0.7502961473268094,0.7510475705462841,0.7517997463177435,0.7525526753948701,0.753306358532101,0.7540607964846291,0.7548159900084037,0.7555719398601308,0.7563286467972746,0.7570861115780578,0.7578443349614624,0.7586033177072307,0.7593630605758656,0.7601235643286318,0.7608848297275566,0.76164685753543,0.7624096485158065,0.7631732034330048,0.7639375230521095,0.764702608138971,0.7654684594602069,0.7662350777832028,0.7670024638761126,0.7677706185078593,0.7685395424481365,0.7693092364674081,0.7700797013369101,0.7708509378286506,0.771622946715411,0.7723957287707464,0.7731692847689869,0.7739436154852382,0.7747187216953818,0.7754946041760766,0.7762712637047593,0.7770487010596451,0.7778269170197286,0.7786059123647847,0.779385687875369,0.780166244332819,0.7809475825192549,0.7817297032175796,0.7825126072114807,0.7832962952854304,0.7840807682246865,0.7848660268152934,0.7856520718440826,0.7864389040986736,0.7872265243674748,0.788014933439684,0.7888041321052897,0.7895941211550713,0.7903849013806004,0.791176473574241,0.7919688385291512,0.7927619970392829,0.7935559498993833,0.7943506979049958,0.7951462418524603,0.7959425825389143,0.7967397207622936,0.7975376573213331,0.7983363930155679,0.7991359286453334,0.799936265011767,0.800737402916808,0.8015393431631992,0.802342086554487,0.803145633895023,0.803949985989964,0.8047551436452733,0.8055611076677214,0.8063678788648866,0.8071754580451562,0.8079838460177271,0.8087930435926066,0.809603051580613,0.8104138707933768,0.8112255020433415,0.812037946143764,0.8128512039087159,0.8136652761530839,0.8144801636925709,0.8152958673436969,0.8161123879237993,0.8169297262510342,0.8177478831443772,0.8185668594236242,0.8193866559093916,0.8202072734231184,0.8210287127870657,0.8218509748243181,0.822674060358785,0.8234979702152005,0.824322705219125,0.8251482661969451,0.825974653975876,0.8268018693839604,0.8276299132500707,0.8284587864039097,0.8292884896760107,0.8301190238977387,0.830950389901292,0.8317825885197015,0.8326156205868331,0.8334494869373874,0.834284188406901,0.8351197258317473,0.8359561000491376,0.8367933118971211,0.837631362214587,0.8384702518412641,0.8393099816177226,0.8401505523853742,0.8409919649864732,0.841834220264118,0.8426773190622507,0.8435212622256592,0.8443660505999768,0.8452116850316842,0.8460581663681098,0.8469054954574304,0.8477536731486726,0.8486027002917127,0.8494525777372788,0.8503033063369505,0.8511548869431607,0.8520073204091957,0.8528606075891965,0.8537147493381594,0.8545697465119371,0.8554255999672394,0.8562823105616343,0.8571398791535482,0.8579983066022676,0.8588575937679395,0.8597177415115721,0.8605787506950363,0.8614406221810659,0.8623033568332586,0.8631669555160776,0.864031419094851,0.8648967484357744,0.8657629444059101,0.8666300078731892,0.8674979397064122,0.8683667407752493,0.8692364119502419,0.8701069541028033,0.8709783681052191,0.8718506548306492,0.8727238151531274,0.873597849947563,0.8744727600897417,0.875348546456326,0.8762252099248568,0.8771027513737533,0.8779811716823149,0.8788604717307215,0.8797406524000344,0.8806217145721973,0.8815036591300374,0.8823864869572656,0.8832701989384782,0.8841547959591576,0.8850402789056724,0.8859266486652794,0.8868139061261238,0.8877020521772403,0.8885910877085541,0.8894810136108814,0.8903718307759309,0.8912635400963038,0.8921561424654959,0.8930496387778974,0.8939440299287945,0.8948393168143698,0.8957355003317033,0.8966325813787741,0.8975305608544599,0.8984294396585389,0.8993292186916906,0.9002298988554961,0.90113148105244,0.9020339661859103,0.9029373551601998,0.9038416488805072,0.9047468482529376,0.9056529541845035,0.9065599675831258,0.9074678893576348,0.908376720417771,0.9092864616741857,0.9101971140384426,0.9111086784230181,0.9120211557413027,0.9129345469076013,0.9138488528371348,0.9147640744460405,0.9156802126513732,0.9165972683711064,0.9175152425241326,0.9184341360302648,0.9193539498102372,0.920274684785706,0.9211963418792504,0.9221189220143736,0.923042426115504,0.9239668551079954,0.9248922099181285,0.9258184914731117,0.926745700701082,0.9276738385311059,0.9286029058931803,0.9295329037182336,0.9304638329381266,0.9313956944856532,0.9323284892945415,0.9332622182994548,0.9341968824359923,0.9351324826406906,0.936069019851024,0.9370064950054054,0.9379449090431881,0.9388842629046656,0.9398245575310735,0.94076579386459,0.9417079728483367,0.9426510954263799,0.9435951625437313,0.9445401751463491,0.9454861341811388,0.9464330405959543,0.9473808953395988,0.9483296993618255,0.9492794536133393,0.9502301590457966,0.9511818166118071,0.952134427264935,0.9530879919596988,0.9540425116515734,0.9549979872969904,0.9559544198533394,0.9569118102789688,0.9578701595331868,0.9588294685762621,0.9597897383694255,0.9607509698748703,0.9617131640557534,0.9626763218761963,0.9636404443012861,0.9646055322970767,0.9655715868305889,0.9665386088698125,0.9675065993837065,0.9684755593422004,0.9694454897161952,0.970416391477564,0.9713882655991534,0.9723611130547842,0.9733349348192526,0.9743097318683311,0.9752855051787692,0.976262255728295,0.9772399844956152,0.9782186924604175,0.9791983806033699,0.9801790499061231,0.9811607013513108,0.9821433359225509,0.983126954604446,0.9841115583825852,0.9850971482435446,0.9860837251748881,0.9870712901651689,0.9880598442039302,0.9890493882817063,0.9900399233900232,0.9910314505214004,0.9920239706693509,0.993017484828383,0.9940119939940012,0.9950074991627064,0.9960040013319981,0.9970015015003744,0.9980000006673336,0.9989994998333751,1.0],"x":[-1.0,-0.998998998998999,-0.997997997997998,-0.996996996996997,-0.995995995995996,-0.994994994994995,-0.993993993993994,-0.992992992992993,-0.991991991991992,-0.990990990990991,-0.98998998998999,-0.988988988988989,-0.987987987987988,-0.986986986986987,-0.985985985985986,-0.984984984984985,-0.983983983983984,-0.982982982982983,-0.9819819819819819,-0.980980980980981,-0.97997997997998,-0.978978978978979,-0.977977977977978,-0.9769769769769769,-0.975975975975976,-0.974974974974975,-0.973973973973974,-0.972972972972973,-0.9719719719719719,-0.970970970970971,-0.96996996996997,-0.968968968968969,-0.9679679679679679,-0.9669669669669669,-0.965965965965966,-0.964964964964965,-0.963963963963964,-0.9629629629629629,-0.9619619619619619,-0.960960960960961,-0.95995995995996,-0.958958958958959,-0.9579579579579579,-0.9569569569569569,-0.955955955955956,-0.954954954954955,-0.953953953953954,-0.9529529529529529,-0.9519519519519519,-0.950950950950951,-0.94994994994995,-0.948948948948949,-0.9479479479479479,-0.9469469469469469,-0.9459459459459459,-0.944944944944945,-0.943943943943944,-0.9429429429429429,-0.9419419419419419,-0.9409409409409409,-0.93993993993994,-0.938938938938939,-0.9379379379379379,-0.9369369369369369,-0.9359359359359359,-0.934934934934935,-0.933933933933934,-0.9329329329329329,-0.9319319319319319,-0.9309309309309309,-0.92992992992993,-0.928928928928929,-0.9279279279279279,-0.9269269269269269,-0.9259259259259259,-0.924924924924925,-0.923923923923924,-0.9229229229229229,-0.9219219219219219,-0.9209209209209209,-0.91991991991992,-0.918918918918919,-0.9179179179179179,-0.9169169169169169,-0.9159159159159159,-0.914914914914915,-0.913913913913914,-0.9129129129129129,-0.9119119119119119,-0.9109109109109109,-0.9099099099099099,-0.908908908908909,-0.9079079079079079,-0.9069069069069069,-0.9059059059059059,-0.9049049049049049,-0.9039039039039038,-0.9029029029029029,-0.9019019019019019,-0.9009009009009009,-0.8998998998998999,-0.8988988988988988,-0.8978978978978979,-0.8968968968968969,-0.8958958958958959,-0.8948948948948949,-0.8938938938938938,-0.8928928928928929,-0.8918918918918919,-0.8908908908908909,-0.8898898898898899,-0.8888888888888888,-0.8878878878878879,-0.8868868868868869,-0.8858858858858859,-0.8848848848848849,-0.8838838838838838,-0.8828828828828829,-0.8818818818818819,-0.8808808808808809,-0.8798798798798799,-0.8788788788788788,-0.8778778778778779,-0.8768768768768769,-0.8758758758758759,-0.8748748748748749,-0.8738738738738738,-0.8728728728728729,-0.8718718718718719,-0.8708708708708709,-0.8698698698698699,-0.8688688688688688,-0.8678678678678678,-0.8668668668668669,-0.8658658658658659,-0.8648648648648649,-0.8638638638638638,-0.8628628628628628,-0.8618618618618619,-0.8608608608608609,-0.8598598598598599,-0.8588588588588588,-0.8578578578578578,-0.8568568568568569,-0.8558558558558559,-0.8548548548548549,-0.8538538538538538,-0.8528528528528528,-0.8518518518518519,-0.8508508508508509,-0.8498498498498499,-0.8488488488488488,-0.8478478478478478,-0.8468468468468469,-0.8458458458458459,-0.8448448448448449,-0.8438438438438438,-0.8428428428428428,-0.8418418418418419,-0.8408408408408409,-0.8398398398398398,-0.8388388388388388,-0.8378378378378378,-0.8368368368368369,-0.8358358358358359,-0.8348348348348348,-0.8338338338338338,-0.8328328328328328,-0.8318318318318318,-0.8308308308308309,-0.8298298298298298,-0.8288288288288288,-0.8278278278278278,-0.8268268268268268,-0.8258258258258259,-0.8248248248248248,-0.8238238238238238,-0.8228228228228228,-0.8218218218218218,-0.8208208208208209,-0.8198198198198198,-0.8188188188188188,-0.8178178178178178,-0.8168168168168168,-0.8158158158158159,-0.8148148148148148,-0.8138138138138138,-0.8128128128128128,-0.8118118118118118,-0.8108108108108109,-0.8098098098098098,-0.8088088088088088,-0.8078078078078078,-0.8068068068068068,-0.8058058058058059,-0.8048048048048048,-0.8038038038038038,-0.8028028028028028,-0.8018018018018018,-0.8008008008008008,-0.7997997997997998,-0.7987987987987988,-0.7977977977977978,-0.7967967967967968,-0.7957957957957958,-0.7947947947947948,-0.7937937937937938,-0.7927927927927928,-0.7917917917917918,-0.7907907907907908,-0.7897897897897898,-0.7887887887887888,-0.7877877877877878,-0.7867867867867868,-0.7857857857857858,-0.7847847847847848,-0.7837837837837838,-0.7827827827827828,-0.7817817817817818,-0.7807807807807807,-0.7797797797797797,-0.7787787787787788,-0.7777777777777778,-0.7767767767767768,-0.7757757757757757,-0.7747747747747747,-0.7737737737737738,-0.7727727727727728,-0.7717717717717718,-0.7707707707707707,-0.7697697697697697,-0.7687687687687688,-0.7677677677677678,-0.7667667667667668,-0.7657657657657657,-0.7647647647647647,-0.7637637637637638,-0.7627627627627628,-0.7617617617617618,-0.7607607607607607,-0.7597597597597597,-0.7587587587587588,-0.7577577577577578,-0.7567567567567568,-0.7557557557557557,-0.7547547547547547,-0.7537537537537538,-0.7527527527527528,-0.7517517517517518,-0.7507507507507507,-0.7497497497497497,-0.7487487487487487,-0.7477477477477478,-0.7467467467467468,-0.7457457457457457,-0.7447447447447447,-0.7437437437437437,-0.7427427427427428,-0.7417417417417418,-0.7407407407407407,-0.7397397397397397,-0.7387387387387387,-0.7377377377377378,-0.7367367367367368,-0.7357357357357357,-0.7347347347347347,-0.7337337337337337,-0.7327327327327328,-0.7317317317317318,-0.7307307307307307,-0.7297297297297297,-0.7287287287287287,-0.7277277277277278,-0.7267267267267268,-0.7257257257257257,-0.7247247247247247,-0.7237237237237237,-0.7227227227227228,-0.7217217217217218,-0.7207207207207207,-0.7197197197197197,-0.7187187187187187,-0.7177177177177178,-0.7167167167167167,-0.7157157157157157,-0.7147147147147147,-0.7137137137137137,-0.7127127127127127,-0.7117117117117117,-0.7107107107107107,-0.7097097097097097,-0.7087087087087087,-0.7077077077077077,-0.7067067067067067,-0.7057057057057057,-0.7047047047047047,-0.7037037037037037,-0.7027027027027027,-0.7017017017017017,-0.7007007007007007,-0.6996996996996997,-0.6986986986986987,-0.6976976976976977,-0.6966966966966966,-0.6956956956956957,-0.6946946946946947,-0.6936936936936937,-0.6926926926926927,-0.6916916916916916,-0.6906906906906907,-0.6896896896896897,-0.6886886886886887,-0.6876876876876877,-0.6866866866866866,-0.6856856856856857,-0.6846846846846847,-0.6836836836836837,-0.6826826826826827,-0.6816816816816816,-0.6806806806806807,-0.6796796796796797,-0.6786786786786787,-0.6776776776776777,-0.6766766766766766,-0.6756756756756757,-0.6746746746746747,-0.6736736736736737,-0.6726726726726727,-0.6716716716716716,-0.6706706706706707,-0.6696696696696697,-0.6686686686686687,-0.6676676676676677,-0.6666666666666666,-0.6656656656656657,-0.6646646646646647,-0.6636636636636637,-0.6626626626626627,-0.6616616616616616,-0.6606606606606606,-0.6596596596596597,-0.6586586586586587,-0.6576576576576577,-0.6566566566566566,-0.6556556556556556,-0.6546546546546547,-0.6536536536536537,-0.6526526526526526,-0.6516516516516516,-0.6506506506506506,-0.6496496496496497,-0.6486486486486487,-0.6476476476476476,-0.6466466466466466,-0.6456456456456456,-0.6446446446446447,-0.6436436436436437,-0.6426426426426426,-0.6416416416416416,-0.6406406406406406,-0.6396396396396397,-0.6386386386386387,-0.6376376376376376,-0.6366366366366366,-0.6356356356356356,-0.6346346346346347,-0.6336336336336337,-0.6326326326326326,-0.6316316316316316,-0.6306306306306306,-0.6296296296296297,-0.6286286286286287,-0.6276276276276276,-0.6266266266266266,-0.6256256256256256,-0.6246246246246246,-0.6236236236236237,-0.6226226226226226,-0.6216216216216216,-0.6206206206206206,-0.6196196196196196,-0.6186186186186187,-0.6176176176176176,-0.6166166166166166,-0.6156156156156156,-0.6146146146146146,-0.6136136136136137,-0.6126126126126126,-0.6116116116116116,-0.6106106106106106,-0.6096096096096096,-0.6086086086086087,-0.6076076076076076,-0.6066066066066066,-0.6056056056056056,-0.6046046046046046,-0.6036036036036037,-0.6026026026026026,-0.6016016016016016,-0.6006006006006006,-0.5995995995995996,-0.5985985985985987,-0.5975975975975976,-0.5965965965965966,-0.5955955955955956,-0.5945945945945946,-0.5935935935935935,-0.5925925925925926,-0.5915915915915916,-0.5905905905905906,-0.5895895895895896,-0.5885885885885885,-0.5875875875875876,-0.5865865865865866,-0.5855855855855856,-0.5845845845845846,-0.5835835835835835,-0.5825825825825826,-0.5815815815815816,-0.5805805805805806,-0.5795795795795796,-0.5785785785785785,-0.5775775775775776,-0.5765765765765766,-0.5755755755755756,-0.5745745745745746,-0.5735735735735735,-0.5725725725725725,-0.5715715715715716,-0.5705705705705706,-0.5695695695695696,-0.5685685685685685,-0.5675675675675675,-0.5665665665665666,-0.5655655655655656,-0.5645645645645646,-0.5635635635635635,-0.5625625625625625,-0.5615615615615616,-0.5605605605605606,-0.5595595595595596,-0.5585585585585585,-0.5575575575575575,-0.5565565565565566,-0.5555555555555556,-0.5545545545545546,-0.5535535535535535,-0.5525525525525525,-0.5515515515515516,-0.5505505505505506,-0.5495495495495496,-0.5485485485485485,-0.5475475475475475,-0.5465465465465466,-0.5455455455455456,-0.5445445445445446,-0.5435435435435435,-0.5425425425425425,-0.5415415415415415,-0.5405405405405406,-0.5395395395395396,-0.5385385385385385,-0.5375375375375375,-0.5365365365365365,-0.5355355355355356,-0.5345345345345346,-0.5335335335335335,-0.5325325325325325,-0.5315315315315315,-0.5305305305305306,-0.5295295295295295,-0.5285285285285285,-0.5275275275275275,-0.5265265265265265,-0.5255255255255256,-0.5245245245245245,-0.5235235235235235,-0.5225225225225225,-0.5215215215215215,-0.5205205205205206,-0.5195195195195195,-0.5185185185185185,-0.5175175175175175,-0.5165165165165165,-0.5155155155155156,-0.5145145145145145,-0.5135135135135135,-0.5125125125125125,-0.5115115115115115,-0.5105105105105106,-0.5095095095095095,-0.5085085085085085,-0.5075075075075075,-0.5065065065065065,-0.5055055055055055,-0.5045045045045045,-0.5035035035035035,-0.5025025025025025,-0.5015015015015015,-0.5005005005005005,-0.4994994994994995,-0.4984984984984985,-0.4974974974974975,-0.4964964964964965,-0.4954954954954955,-0.4944944944944945,-0.4934934934934935,-0.4924924924924925,-0.4914914914914915,-0.4904904904904905,-0.4894894894894895,-0.48848848848848847,-0.4874874874874875,-0.48648648648648657,-0.48548548548548554,-0.48448448448448456,-0.4834834834834835,-0.48248248248248254,-0.48148148148148157,-0.48048048048048053,-0.47947947947947955,-0.4784784784784785,-0.47747747747747754,-0.4764764764764765,-0.47547547547547553,-0.47447447447447455,-0.4734734734734735,-0.47247247247247254,-0.4714714714714715,-0.4704704704704705,-0.46946946946946955,-0.4684684684684685,-0.46746746746746753,-0.4664664664664665,-0.4654654654654655,-0.46446446446446454,-0.4634634634634635,-0.46246246246246253,-0.4614614614614615,-0.4604604604604605,-0.45945945945945954,-0.4584584584584585,-0.45745745745745753,-0.4564564564564565,-0.4554554554554555,-0.45445445445445454,-0.4534534534534535,-0.4524524524524525,-0.4514514514514515,-0.4504504504504505,-0.44944944944944953,-0.4484484484484485,-0.4474474474474475,-0.4464464464464465,-0.4454454454454455,-0.4444444444444445,-0.4434434434434435,-0.4424424424424425,-0.4414414414414415,-0.4404404404404405,-0.43943943943943947,-0.4384384384384385,-0.4374374374374375,-0.4364364364364365,-0.4354354354354355,-0.43443443443443447,-0.4334334334334335,-0.4324324324324325,-0.4314314314314315,-0.4304304304304305,-0.42942942942942947,-0.4284284284284285,-0.4274274274274275,-0.4264264264264265,-0.4254254254254255,-0.42442442442442446,-0.4234234234234235,-0.4224224224224225,-0.42142142142142147,-0.4204204204204205,-0.41941941941941946,-0.4184184184184185,-0.41741741741741745,-0.41641641641641647,-0.4154154154154155,-0.41441441441441446,-0.4134134134134135,-0.41241241241241244,-0.41141141141141147,-0.4104104104104105,-0.40940940940940945,-0.4084084084084085,-0.40740740740740744,-0.40640640640640646,-0.4054054054054055,-0.40440440440440445,-0.40340340340340347,-0.40240240240240244,-0.40140140140140146,-0.4004004004004005,-0.39939939939939945,-0.39839839839839847,-0.39739739739739743,-0.39639639639639646,-0.3953953953953955,-0.39439439439439444,-0.39339339339339346,-0.39239239239239243,-0.39139139139139145,-0.3903903903903905,-0.38938938938938944,-0.38838838838838846,-0.3873873873873874,-0.38638638638638645,-0.3853853853853854,-0.38438438438438444,-0.38338338338338346,-0.3823823823823824,-0.38138138138138145,-0.3803803803803804,-0.37937937937937943,-0.37837837837837845,-0.3773773773773774,-0.37637637637637644,-0.3753753753753754,-0.37437437437437443,-0.37337337337337345,-0.3723723723723724,-0.37137137137137144,-0.3703703703703704,-0.3693693693693694,-0.36836836836836845,-0.3673673673673674,-0.36636636636636644,-0.3653653653653654,-0.3643643643643644,-0.36336336336336345,-0.3623623623623624,-0.36136136136136143,-0.3603603603603604,-0.3593593593593594,-0.35835835835835844,-0.3573573573573574,-0.35635635635635643,-0.3553553553553554,-0.3543543543543544,-0.3533533533533534,-0.3523523523523524,-0.3513513513513514,-0.3503503503503504,-0.3493493493493494,-0.3483483483483484,-0.3473473473473474,-0.3463463463463464,-0.3453453453453454,-0.3443443443443444,-0.3433433433433434,-0.3423423423423424,-0.3413413413413414,-0.3403403403403404,-0.3393393393393394,-0.3383383383383384,-0.3373373373373374,-0.3363363363363364,-0.3353353353353354,-0.3343343343343344,-0.33333333333333337,-0.3323323323323324,-0.3313313313313314,-0.3303303303303304,-0.3293293293293294,-0.32832832832832837,-0.3273273273273274,-0.3263263263263264,-0.3253253253253254,-0.3243243243243244,-0.32332332332332336,-0.3223223223223224,-0.32132132132132135,-0.3203203203203204,-0.3193193193193194,-0.31831831831831836,-0.3173173173173174,-0.31631631631631635,-0.31531531531531537,-0.3143143143143144,-0.31331331331331336,-0.3123123123123124,-0.31131131131131135,-0.31031031031031037,-0.3093093093093094,-0.30830830830830835,-0.3073073073073074,-0.30630630630630634,-0.30530530530530536,-0.3043043043043044,-0.30330330330330335,-0.3023023023023024,-0.30130130130130134,-0.30030030030030036,-0.2992992992992994,-0.29829829829829835,-0.29729729729729737,-0.29629629629629634,-0.29529529529529536,-0.2942942942942944,-0.29329329329329334,-0.29229229229229237,-0.29129129129129133,-0.29029029029029035,-0.2892892892892893,-0.28828828828828834,-0.28728728728728736,-0.28628628628628633,-0.28528528528528535,-0.2842842842842843,-0.28328328328328334,-0.28228228228228236,-0.2812812812812813,-0.28028028028028035,-0.2792792792792793,-0.27827827827827833,-0.27727727727727736,-0.2762762762762763,-0.27527527527527534,-0.2742742742742743,-0.27327327327327333,-0.27227227227227235,-0.2712712712712713,-0.27027027027027034,-0.2692692692692693,-0.26826826826826833,-0.26726726726726735,-0.2662662662662663,-0.26526526526526534,-0.2642642642642643,-0.2632632632632633,-0.26226226226226235,-0.2612612612612613,-0.26026026026026033,-0.2592592592592593,-0.2582582582582583,-0.2572572572572573,-0.2562562562562563,-0.2552552552552553,-0.2542542542542543,-0.25325325325325326,-0.2522522522522523,-0.2512512512512513,-0.2502502502502503,-0.24924924924924927,-0.2482482482482483,-0.24724724724724728,-0.24624624624624628,-0.24524524524524527,-0.24424424424424426,-0.24324324324324328,-0.24224224224224228,-0.24124124124124127,-0.24024024024024027,-0.23923923923923926,-0.23823823823823825,-0.23723723723723728,-0.23623623623623627,-0.23523523523523526,-0.23423423423423426,-0.23323323323323325,-0.23223223223223227,-0.2312312312312313,-0.2302302302302303,-0.22922922922922928,-0.22822822822822827,-0.2272272272272273,-0.2262262262262263,-0.22522522522522528,-0.22422422422422428,-0.22322322322322327,-0.22222222222222227,-0.2212212212212213,-0.22022022022022028,-0.21921921921921927,-0.21821821821821827,-0.21721721721721726,-0.21621621621621628,-0.21521521521521528,-0.21421421421421427,-0.21321321321321327,-0.21221221221221226,-0.21121121121121128,-0.21021021021021027,-0.20920920920920927,-0.20820820820820826,-0.20720720720720726,-0.20620620620620625,-0.20520520520520527,-0.20420420420420426,-0.20320320320320326,-0.20220220220220225,-0.20120120120120125,-0.20020020020020027,-0.19919919919919926,-0.19819819819819826,-0.19719719719719725,-0.19619619619619624,-0.19519519519519526,-0.19419419419419426,-0.19319319319319325,-0.19219219219219225,-0.19119119119119124,-0.19019019019019023,-0.18918918918918926,-0.18818818818818825,-0.18718718718718724,-0.18618618618618624,-0.18518518518518523,-0.18418418418418425,-0.18318318318318325,-0.18218218218218224,-0.18118118118118123,-0.18018018018018023,-0.17917917917917925,-0.17817817817817824,-0.17717717717717724,-0.17617617617617623,-0.17517517517517522,-0.17417417417417422,-0.17317317317317324,-0.17217217217217223,-0.17117117117117123,-0.17017017017017022,-0.16916916916916921,-0.16816816816816824,-0.16716716716716723,-0.16616616616616622,-0.16516516516516522,-0.1641641641641642,-0.16316316316316323,-0.16216216216216223,-0.16116116116116122,-0.16016016016016021,-0.1591591591591592,-0.1581581581581582,-0.15715715715715722,-0.15615615615615622,-0.1551551551551552,-0.1541541541541542,-0.1531531531531532,-0.15215215215215222,-0.15115115115115121,-0.1501501501501502,-0.1491491491491492,-0.1481481481481482,-0.14714714714714722,-0.1461461461461462,-0.1451451451451452,-0.1441441441441442,-0.1431431431431432,-0.14214214214214219,-0.1411411411411412,-0.1401401401401402,-0.1391391391391392,-0.1381381381381382,-0.13713713713713718,-0.1361361361361362,-0.1351351351351352,-0.1341341341341342,-0.13313313313313319,-0.13213213213213218,-0.1311311311311312,-0.1301301301301302,-0.1291291291291292,-0.12812812812812818,-0.12712712712712718,-0.12612612612612617,-0.12512512512512516,-0.12412412412412417,-0.12312312312312317,-0.12212212212212216,-0.12112112112112117,-0.12012012012012016,-0.11911911911911917,-0.11811811811811816,-0.11711711711711716,-0.11611611611611616,-0.11511511511511516,-0.11411411411411415,-0.11311311311311316,-0.11211211211211215,-0.11111111111111116,-0.11011011011011015,-0.10910910910910915,-0.10810810810810816,-0.10710710710710715,-0.10610610610610614,-0.10510510510510515,-0.10410410410410414,-0.10310310310310317,-0.10210210210210216,-0.10110110110110115,-0.10010010010010016,-0.09909909909909916,-0.09809809809809815,-0.09709709709709716,-0.09609609609609615,-0.09509509509509516,-0.09409409409409415,-0.09309309309309315,-0.09209209209209215,-0.09109109109109115,-0.09009009009009014,-0.08908908908908915,-0.08808808808808814,-0.08708708708708715,-0.08608608608608614,-0.08508508508508514,-0.08408408408408415,-0.08308308308308314,-0.08208208208208213,-0.08108108108108114,-0.08008008008008013,-0.07907907907907914,-0.07807807807807814,-0.07707707707707713,-0.07607607607607614,-0.07507507507507513,-0.07407407407407413,-0.07307307307307313,-0.07207207207207213,-0.07107107107107113,-0.07007007007007013,-0.06906906906906912,-0.06806806806806813,-0.06706706706706712,-0.06606606606606612,-0.06506506506506513,-0.06406406406406412,-0.06306306306306311,-0.062062062062062114,-0.061061061061061114,-0.06006006006006011,-0.05905905905905911,-0.05805805805805811,-0.0570570570570571,-0.056056056056056104,-0.055055055055055105,-0.054054054054054106,-0.0530530530530531,-0.0520520520520521,-0.0510510510510511,-0.0500500500500501,-0.049049049049049095,-0.048048048048048096,-0.0470470470470471,-0.0460460460460461,-0.04504504504504509,-0.04404404404404409,-0.04304304304304309,-0.042042042042042094,-0.04104104104104109,-0.04004004004004009,-0.039039039039039096,-0.0380380380380381,-0.03703703703703709,-0.03603603603603609,-0.03503503503503509,-0.03403403403403409,-0.033033033033033087,-0.03203203203203209,-0.031031031031031085,-0.030030030030030082,-0.029029029029029083,-0.02802802802802808,-0.02702702702702708,-0.026026026026026078,-0.02502502502502508,-0.024024024024024076,-0.023023023023023077,-0.022022022022022074,-0.021021021021021075,-0.020020020020020072,-0.019019019019019073,-0.01801801801801807,-0.01701701701701707,-0.016016016016016068,-0.01501501501501507,-0.01401401401401407,-0.013013013013013068,-0.012012012012012067,-0.011011011011011066,-0.010010010010010065,-0.009009009009009064,-0.008008008008008063,-0.0070070070070070625,-0.0060060060060060615,-0.0050050050050050605,-0.0040040040040040595,-0.003003003003003058,-0.0020020020020020575,-0.0010010010010010565,-5.551115123125783e-17]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json deleted file mode 100644 index 4db80502a8de..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[1.0,1.0010015021697125,1.002004007346021,1.0030075165334387,1.004012030737485,1.005017550964686,1.0060240782225762,1.0070316135196993,1.0080401578656082,1.009049712270868,1.010060277747055,1.0110718553067592,1.012084445963584,1.013098050732149,1.0141126706280887,1.0151283066680556,1.0161449598697203,1.0171626312517723,1.0181813218339215,1.019201032636899,1.020221764682458,1.0212435189933753,1.0222662965934521,1.0232900985075144,1.024314925761415,1.025340779382034,1.0263676603972798,1.0273955698360904,1.0284245087284343,1.0294544781053114,1.030485478998754,1.0315175124418285,1.0325505794686356,1.0335846811143112,1.0346198184150288,1.035655992407999,1.0366932041314716,1.0377314546247354,1.038770744928121,1.0398110760830004,1.0408524491317885,1.0418948651179447,1.0429383250859727,1.0439828300814225,1.0450283811508918,1.0460749793420254,1.0471226257035184,1.0481713212851156,1.0492210671376132,1.0502718643128595,1.0513237138637568,1.0523766168442616,1.053430574309386,1.0544855873151981,1.055541656918825,1.0565987841784512,1.0576569701533214,1.0587162159037415,1.059776522491079,1.0608378909777643,1.0619003224272916,1.062963817904221,1.064028378474178,1.0650940052038556,1.066160699161015,1.067228461414487,1.0682972930341725,1.0693671950910442,1.0704381686571474,1.0715102148056006,1.0725833346105975,1.0736575291474075,1.0747327994923768,1.0758091467229296,1.076886571917569,1.0779650761558788,1.0790446605185233,1.0801253260872494,1.0812070739448871,1.0822899051753514,1.0833738208636425,1.084458822095847,1.08554490995914,1.0866320855417846,1.0877203499331338,1.0888097042236324,1.0899001495048164,1.0909916868693155,1.0920843174108534,1.0931780422242494,1.094272862405419,1.0953687790513755,1.0964657932602309,1.0975639061311966,1.098663118764585,1.0997634322618108,1.1008648477253915,1.1019673662589489,1.1030709889672095,1.1041757169560071,1.1052815513322825,1.1063884932040848,1.1074965436805737,1.108605703872019,1.1097159748898024,1.1108273578464192,1.1119398538554783,1.1130534640317045,1.1141681894909383,1.1152840313501382,1.116400990727381,1.1175190687418637,1.1186382665139039,1.119758585164941,1.1208800258175378,1.1220025895953816,1.1231262776232844,1.1242510910271852,1.1253770309341506,1.1265040984723758,1.1276322947711859,1.1287616209610372,1.1298920781735178,1.1310236675413496,1.1321563901983884,1.133290247279626,1.1344252399211907,1.1355613692603483,1.1366986364355043,1.1378370425862037,1.1389765888531331,1.1401172763781213,1.1412591063041406,1.1424020797753083,1.1435461979368875,1.1446914619352877,1.1458378729180674,1.1469854320339334,1.148134140432744,1.1492839992655086,1.1504350096843887,1.151587172842701,1.152740489894916,1.1538949619966612,1.1550505903047212,1.1562073759770393,1.1573653201727179,1.1585244240520207,1.1596846887763739,1.1608461155083658,1.1620087054117496,1.1631724596514443,1.1643373793935352,1.1655034658052752,1.1666707200550865,1.167839143312562,1.1690087367484645,1.1701795015347312,1.1713514388444712,1.1725245498519699,1.1736988357326879,1.1748742976632631,1.1760509368215124,1.1772287543864315,1.1784077515381974,1.179587929458169,1.1807692893288881,1.181951832334081,1.183135559658659,1.1843204724887213,1.1855065720115536,1.1866938594156318,1.187882335890621,1.1890720026273787,1.1902628608179544,1.1914549116555917,1.1926481563347293,1.1938425960510024,1.1950382320012425,1.1962350653834812,1.197433097396949,1.1986323292420775,1.1998327621205012,1.201034397235057,1.2022372357897873,1.2034412789899398,1.2046465280419698,1.2058529841535406,1.2070606485335247,1.2082695223920057,1.2094796069402787,1.2106909033908524,1.2119034129574495,1.2131171368550084,1.214332076299684,1.2155482325088498,1.2167656067010977,1.2179842000962404,1.2192040139153122,1.2204250493805706,1.2216473077154968,1.2228707901447973,1.2240954978944054,1.225321432191482,1.226548594264417,1.2277769853428306,1.2290066066575744,1.230237459440733,1.2314695449256248,1.2327028643468025,1.2339374189400567,1.2351732099424146,1.2364102385921427,1.2376485061287474,1.238888013792977,1.2401287628268214,1.2413707544735153,1.2426139899775381,1.2438584705846158,1.2451041975417216,1.246351172097078,1.2475993955001567,1.2488488690016823,1.2500995938536303,1.2513515713092316,1.252604802622971,1.2538592890505902,1.2551150318490887,1.2563720322767242,1.2576302915930153,1.258889811058742,1.2601505919359464,1.2614126354879347,1.2626759429792787,1.2639405156758161,1.265206354844653,1.266473461754164,1.2677418376739942,1.26901148387506,1.2702824016295509,1.2715545922109306,1.2728280568939376,1.274102796954588,1.2753788136701747,1.276656108319271,1.2779346821817292,1.279214536538685,1.2804956726725565,1.2817780918670456,1.2830617954071402,1.2843467845791157,1.285633060670535,1.2869206249702507,1.2882094787684062,1.289499623356437,1.290791060027072,1.2920837900743347,1.2933778147935444,1.2946731354813181,1.2959697534355712,1.2972676699555188,1.298566886341677,1.299867403895865,1.3011692239212054,1.3024723477221256,1.30377677660436,1.30508251187495,1.3063895548422466,1.307697906815911,1.3090075691069154,1.3103185430275461,1.3116308298914028,1.3129444310134009,1.3142593477097728,1.315575581298069,1.3168931330971598,1.3182120044272363,1.3195321966098112,1.3208537109677214,1.3221765488251283,1.3235007115075197,1.3248262003417106,1.3261530166558448,1.3274811617793965,1.328810637043171,1.3301414437793069,1.3314735833212763,1.3328070570038875,1.334141866163285,1.3354780121369518,1.3368154962637102,1.3381543198837238,1.3394944843384975,1.3408359909708805,1.3421788411250664,1.3435230361465953,1.3448685773823548,1.3462154661805816,1.3475637038908619,1.3489132918641344,1.3502642314526905,1.3516165240101756,1.352970170891591,1.3543251734532953,1.355681533053005,1.3570392510497968,1.3583983288041082,1.3597587676777394,1.3611205690338541,1.362483734236982,1.3638482646530183,1.3652141616492268,1.3665814265942409,1.367950060858064,1.3693200658120717,1.3706914428290133,1.3720641932830129,1.3734383185495707,1.3748138200055644,1.3761906990292507,1.3775689570002667,1.378948595299631,1.3803296153097455,1.3817120184143967,1.3830958059987566,1.3844809794493846,1.385867540154229,1.3872554895026274,1.38864482888531,1.3900355596943987,1.3914276833234103,1.3928212011672567,1.3942161146222474,1.3956124250860895,1.397010133957891,1.3984092426381602,1.3998097525288085,1.4012116650331508,1.402614981555908,1.4040197035032076,1.405425832282585,1.4068333693029862,1.408242315974767,1.4096526737096966,1.4110644439209579,1.412477628023149,1.4138922274322847,1.4153082435657978,1.4167256778425408,1.4181445316827874,1.4195648065082338,1.4209865037419993,1.422409624808629,1.423834171134095,1.4252601441457966,1.4266875452725634,1.4281163759446556,1.4295466375937662,1.4309783316530216,1.4324114595569837,1.4338460227416512,1.4352820226444605,1.4367194607042881,1.4381583383614518,1.439598657057711,1.4410404182362693,1.4424836233417766,1.443928273820328,1.4453743711194684,1.4468219166881915,1.4482709119769421,1.4497213584376185,1.4511732575235725,1.4526266106896113,1.4540814193919989,1.4555376850884585,1.4569954092381732,1.4584545933017863,1.4599152387414052,1.461377347020601,1.4628409196044108,1.464305957959339,1.4657724635533582,1.4672404378559118,1.4687098823379143,1.470180798471754,1.471653187731293,1.4731270515918704,1.474602391530302,1.4760792090248827,1.4775575055553887,1.4790372826030773,1.48051854165069,1.482001284182453,1.4834855116840782,1.484971225642767,1.486458427547209,1.4879471188875848,1.4894373011555682,1.4909289758443263,1.4924221444485217,1.4939168084643137,1.4954129693893607,1.4969106287228207,1.4984097879653522,1.499910448619118,1.5014126121877844,1.5029162801765241,1.5044214540920173,1.5059281354424525,1.5074363257375292,1.5089460264884589,1.510457239207966,1.511969965410291,1.5134842066111895,1.5149999643279362,1.516517240079325,1.5180360353856708,1.5195563517688115,1.5210781907521083,1.522601553860449,1.5241264426202479,1.5256528585594482,1.5271808032075236,1.528710278095479,1.5302412847558537,1.5317738247227202,1.533307899531689,1.5348435107199072,1.5363806598260625,1.5379193483903826,1.5394595779546383,1.5410013500621447,1.5425446662577618,1.5440895280878975,1.5456359371005077,1.5471838948450995,1.5487334028727313,1.5502844627360146,1.5518370759891162,1.5533912441877598,1.5549469688892261,1.5565042516523566,1.558063094037553,1.5596234976067809,1.5611854639235685,1.5627489945530117,1.5643140910617725,1.5658807550180829,1.5674489879917446,1.5690187915541318,1.570590167278193,1.5721631167384513,1.573737641511007,1.5753137431735384,1.5768914233053046,1.5784706834871458,1.580051525301486,1.581633950332333,1.5832179601652818,1.5848035563875151,1.5863907405878053,1.5879795143565159,1.589569879285603,1.5911618369686171,1.592755389000705,1.5943505369786104,1.5959472825006769,1.597545627166848,1.5991455725786703,1.600747120339294,1.6023502720534748,1.603955029327576,1.6055613937695687,1.6071693669890357,1.6087789505971708,1.6103901462067816,1.6120029554322914,1.6136173798897397,1.6152334211967851,1.616851080972706,1.6184703608384021,1.620091262416397,1.6217137873308394,1.6233379372075039,1.624963713673794,1.6265911183587423,1.6282201528930136,1.6298508189089056,1.6314831180403506,1.6331170519229175,1.6347526221938127,1.636389830491883,1.6380286784576161,1.6396691677331428,1.6413112999622381,1.642955076790324,1.6446004998644697,1.6462475708333941,1.647896291347468,1.6495466630587137,1.651198687620809,1.6528523666890875,1.6545077019205412,1.6561646949738207,1.6578233475092383,1.6594836611887689,1.6611456376760518,1.6628092786363928,1.664474585736765,1.666141560645812,1.667810205033847,1.669480520572857,1.6711525089365034,1.6728261718001238,1.6745015108407337,1.6761785277370276,1.6778572241693817,1.6795376018198551,1.6812196623721913,1.6829034075118208,1.6845888389258603,1.686275958303118,1.6879647673340925,1.689655267710976,1.6913474611276547,1.6930413492797118,1.6947369338644285,1.6964342165807855,1.6981331991294657,1.6998338832128548,1.7015362705350434,1.7032403628018287,1.7049461617207167,1.706653669000923,1.7083628863533753,1.7100738154907145,1.711786458127297,1.713500815979196,1.7152168907642034,1.7169346842018314,1.718654198013314,1.72037543392161,1.7220983936514025,1.723823078929103,1.7255494914828509,1.7272776330425172,1.7290075053397052,1.730739110107752,1.7324724490817314,1.7342075239984538,1.73594433659647,1.7376828886160716,1.739423181799293,1.7411652178899133,1.7429089986334578,1.7446545257772006,1.7464018010701652,1.748150826263127,1.749901603108614,1.7516541333609108,1.7534084187760577,1.755164461111854,1.7569222621278597,1.7586818235853974,1.760443147247552,1.7622062348791758,1.7639710882468882,1.7657377091190776,1.7675060992659037,1.7692762604592986,1.7710481944729695,1.7728219030823995,1.7745973880648502,1.7763746511993634,1.778153694266762,1.7799345190496525,1.7817171273324268,1.7835015209012641,1.7852877015441324,1.78707567105079,1.7888654312127876,1.790656983823471,1.792450330677981,1.7942454735732571,1.7960424143080376,1.7978411546828628,1.799641696500076,1.801444041563826,1.803248191680068,1.8050541486565657,1.8068619143028937,1.8086714904304388,1.8104828788524021,1.8122960813838003,1.8141110998414676,1.8159279360440583,1.8177465918120481,1.8195670689677355,1.821389369335244,1.8232134947405245,1.8250394470113562,1.826867227977349,1.8286968394699452,1.8305282833224208,1.8323615613698883,1.834196675449298,1.83603362739944,1.8378724190609457,1.8397130522762901,1.8415555288897931,1.8433998507476224,1.8452460196977938,1.8470940375901745,1.848943906276484,1.8507956276102968,1.8526492034470428,1.8545046356440111,1.8563619260603508,1.858221076557072,1.8600820889970493,1.861944965245023,1.8638097071676012,1.865676316633261,1.8675447955123505,1.8694151456770913,1.8712873690015803,1.873161467361791,1.8750374426355758,1.8769152967026677,1.8787950314446817,1.8806766487451188,1.8825601504893645,1.884445538564694,1.8863328148602718,1.8882219812671541,1.8901130396782921,1.8920059919885317,1.8939008400946176,1.8957975858951925,1.8976962312908023,1.8995967781838952,1.9014992284788252,1.9034035840818537,1.9053098469011502,1.9072180188467962,1.909128101830786,1.9110400977670288,1.9129540085713501,1.9148698361614946,1.9167875824571272,1.918707249379836,1.9206288388531332,1.922552352802457,1.9244777931551746,1.926405161840583,1.9283344607899118,1.9302656919363244,1.9321988572149202,1.9341339585627368,1.936070997918752,1.9380099772238852,1.9399508984209997,1.9418937634549038,1.9438385742723552,1.9457853328220598,1.9477340410546757,1.949684700922815,1.9516373143810446,1.953591883385889,1.9555484098958327,1.9575068958713213,1.9594673432747638,1.961429754070534,1.9633941302249744,1.9653604737063954,1.9673287864850797,1.9692990705332825,1.9712713278252345,1.9732455603371435,1.9752217700471966,1.9771999589355622,1.9791801289843918,1.9811622821778216,1.9831464205019753,1.9851325459449656,1.9871206604968963,1.9891107661498646,1.9911028648979623,1.9930969587372782,1.995093049665901,1.9970911396839197,1.999091230793427,2.0010933249985197,2.0030974243053032,2.0051035307218905,2.0071116462584064,2.0091217729269895,2.011133912741793,2.013148067718986,2.015164239876759,2.0171824312353226,2.019202643816911,2.0212248796457826,2.023249140748225,2.025275429152553,2.027303746889115,2.029334095990291,2.031366478490497,2.033400896426186,2.0354373518358524,2.03747584676003,2.039516383241297,2.041558963324277,2.0436035890556425,2.0456502624841137,2.047698985660465,2.049749760637522,2.051802589470168,2.053857474215344,2.055914416932051,2.057973419681352,2.0600344845263736,2.062097613532309,2.0641628087664206,2.06623007229804,2.0682994061985718,2.070370812541495,2.0724442934023646,2.0745198508588154,2.076597486990562,2.078677203879403,2.08075900360922,2.0828428882659833,2.0849288599377522,2.087016920714676,2.0891070726889986,2.0911993179550583,2.0932936586092916,2.095390096750234,2.0974886344785237,2.0995892738969015,2.101692017110214,2.1037968662254176,2.1059038233515768,2.108012890599869,2.110124070083587,2.112237363918138,2.11435277422105,2.11647030311197,2.118589952712669,2.120711725147042,2.1228356225411114,2.1249616470230293,2.1270898007230787,2.129220085773676,2.131352504309374,2.133487058466862,2.13562375038497,2.13776258220467,2.1399035560690782,2.142046674123457,2.1441919385152173,2.1463393513939204,2.1484889149112805,2.1506406312211674,2.1527945024796074,2.154950530844786,2.1571087184770503,2.1592690675389106,2.161431580195044,2.1635962586122948,2.1657631049596766,2.167932121408377,2.170103310131757,2.1722766733053542,2.1744522131068855,2.1766299317162483,2.1788098313155233,2.1809919140889766,2.183176182223062,2.1853626379064233,2.187551283329895,2.1897421206865073,2.191935152171486,2.194130379982255,2.1963278063184393,2.198527433381867,2.2007292633765716,2.2029332985087926,2.2051395409869814,2.207347993021799,2.2095586568261205,2.211771534615039,2.2139866286058645,2.2162039410181276,2.2184234740735826,2.2206452299962085,2.2228692110122115,2.225095419350027,2.227323857240324,2.2295545269160026,2.231787430612201,2.2340225705662964,2.236259949017905,2.238499568208888,2.2407414303833497,2.2429855377876433,2.2452318926703714,2.2474804972823885,2.2497313538768036,2.2519844647089813,2.2542398320365464,2.2564974581193833,2.2587573452196406,2.261019495601732,2.2632839115323398,2.2655505952804145,2.2678195491171813,2.2700907753161386,2.2723642761530622,2.2746400539060065,2.2769181108553087,2.2791984492835877,2.2814810714757505,2.283765979718992,2.286053176302796,2.2883426635189412,2.290634443661501,2.2929285190268462,2.2952248919136475,2.2975235646228773,2.2998245394578127,2.302127818724038,2.3044334047294455,2.3067412997842403,2.3090515062009396,2.3113640262943775,2.313678862381707,2.3159960167824,2.3183154918182534,2.3206372898133876,2.322961413094251,2.3252878639896233,2.3276166448306155,2.329947757950672,2.3322812056855766,2.3346169903734504,2.336955114354757,2.3392955799723043,2.3416383895712456,2.343983545499083,2.346331050105671,2.3486809057432154,2.3510331147662797,2.3533876795317843,2.35574460239901,2.358103885729601,2.3604655318875665,2.362829543239284,2.365195922153499,2.3675646710013307,2.369935792156273,2.372309287994197,2.3746851608933524,2.3770634132343713,2.3794440474002694,2.3818270657764504,2.3842124707507053,2.386600264713218,2.388990450056565,2.391383029175719,2.393778004468052,2.3961753783333366,2.3985751531737494,2.4009773313938716,2.403381915400693,2.4057889076036147,2.4081983104144498,2.410610126247428,2.4130243575191956,2.4154410066488206,2.4178600760577917,2.420281568170025,2.4227054854118624,2.425131830212077,2.427560605001873,2.429991812214891,2.4324254542872077,2.4348615336573407,2.437300052766248,2.4397410140573337,2.4421844199764484,2.444630272971893,2.4470785754944195,2.449529329997234,2.451982538936001,2.4544382047688424,2.4568963299563435,2.459356916961554,2.4618199682499884,2.464285486289632,2.466753473550942,2.4692239325068495,2.471696865632761,2.474172275406564,2.476650164308626,2.4791305348218,2.4816133894314247,2.4840987306253277,2.486586560893829,2.4890768827297425,2.4915696986283775,2.4940650110875437,2.4965628226075522,2.499063135691217,2.50156595284386,2.5040712765733124,2.5065791093899157,2.5090894538065256,2.5116023123385154,2.514117687503777,2.516635581822725,2.5191559978182965,2.5216789380159557,2.524204404943697,2.526732401132046,2.5292629291140623,2.531795991425344,2.534331590604026,2.5368697291907867,2.5394104097288492,2.541953634763983,2.544499406844508,2.547047728521295,2.5495986023477704,2.5521520308799177,2.5547080166762797,2.557266562297963,2.5598276703086382,2.562391343274542,2.564957583764484,2.5675263943498448,2.5700977776045804,2.5726717361052245,2.5752482724308923,2.57782738916328,2.5804090888866713,2.5829933741879376,2.5855802476565395,2.5881697118845333,2.59076176946657,2.593356422999899,2.5959536750843712,2.5985535283224417,2.6011559853191706,2.6037610486822285,2.606368721021896,2.608979004951071,2.6115919030852637,2.614207418042607,2.6168255524438555,2.619446308912387,2.622069690074208,2.624695698557955,2.6273243369948958,2.6299556080189346,2.632589514266613,2.635226058377114,2.6378652429922615,2.6405070707565272,2.643151544317031,2.645798666323544,2.6484484394284893,2.6511008662869484,2.6537559495566616,2.65641369189803,2.65907409597412,2.6617371644506647,2.6644028999960665,2.6670713052814006,2.669742382980418,2.6724161357695464,2.675092566327894,2.6777716773372537,2.6804534714821013,2.683137951449604,2.685825119929619,2.688514979614697,2.6912075332000858,2.693902783383732,2.6966007328662855,2.6993013843510996,2.7020047405442353,2.7047108041544634,2.707419577893269,2.7101310644748513,2.7128452666161285,2.715562187036739,2.718281828459045],"x":[5.551115123125783e-17,0.0010010010010010565,0.0020020020020020575,0.003003003003003058,0.0040040040040040595,0.0050050050050050605,0.0060060060060060615,0.0070070070070070625,0.008008008008008063,0.009009009009009064,0.010010010010010065,0.011011011011011066,0.012012012012012067,0.013013013013013068,0.01401401401401407,0.01501501501501507,0.016016016016016068,0.01701701701701707,0.01801801801801807,0.019019019019019073,0.020020020020020072,0.021021021021021075,0.022022022022022074,0.023023023023023077,0.024024024024024076,0.02502502502502508,0.026026026026026078,0.02702702702702708,0.02802802802802808,0.029029029029029083,0.030030030030030082,0.031031031031031085,0.03203203203203209,0.033033033033033087,0.03403403403403409,0.03503503503503509,0.03603603603603609,0.03703703703703709,0.0380380380380381,0.039039039039039096,0.04004004004004009,0.04104104104104109,0.042042042042042094,0.04304304304304309,0.04404404404404409,0.04504504504504509,0.0460460460460461,0.0470470470470471,0.048048048048048096,0.049049049049049095,0.0500500500500501,0.0510510510510511,0.0520520520520521,0.0530530530530531,0.054054054054054106,0.055055055055055105,0.056056056056056104,0.0570570570570571,0.05805805805805811,0.05905905905905911,0.06006006006006011,0.061061061061061114,0.062062062062062114,0.06306306306306311,0.06406406406406412,0.06506506506506513,0.06606606606606612,0.06706706706706712,0.06806806806806813,0.06906906906906912,0.07007007007007013,0.07107107107107113,0.07207207207207213,0.07307307307307313,0.07407407407407413,0.07507507507507513,0.07607607607607614,0.07707707707707713,0.07807807807807814,0.07907907907907914,0.08008008008008013,0.08108108108108114,0.08208208208208213,0.08308308308308314,0.08408408408408415,0.08508508508508514,0.08608608608608614,0.08708708708708715,0.08808808808808814,0.08908908908908915,0.09009009009009014,0.09109109109109115,0.09209209209209215,0.09309309309309315,0.09409409409409415,0.09509509509509516,0.09609609609609615,0.09709709709709716,0.09809809809809815,0.09909909909909916,0.10010010010010016,0.10110110110110115,0.10210210210210216,0.10310310310310317,0.10410410410410414,0.10510510510510515,0.10610610610610614,0.10710710710710715,0.10810810810810816,0.10910910910910915,0.11011011011011015,0.11111111111111116,0.11211211211211215,0.11311311311311316,0.11411411411411415,0.11511511511511516,0.11611611611611616,0.11711711711711716,0.11811811811811816,0.11911911911911917,0.12012012012012016,0.12112112112112117,0.12212212212212216,0.12312312312312317,0.12412412412412417,0.12512512512512516,0.12612612612612617,0.12712712712712718,0.12812812812812818,0.1291291291291292,0.1301301301301302,0.1311311311311312,0.13213213213213218,0.13313313313313319,0.1341341341341342,0.1351351351351352,0.1361361361361362,0.13713713713713718,0.1381381381381382,0.1391391391391392,0.1401401401401402,0.1411411411411412,0.14214214214214219,0.1431431431431432,0.1441441441441442,0.1451451451451452,0.1461461461461462,0.14714714714714722,0.1481481481481482,0.1491491491491492,0.1501501501501502,0.15115115115115121,0.15215215215215222,0.1531531531531532,0.1541541541541542,0.1551551551551552,0.15615615615615622,0.15715715715715722,0.1581581581581582,0.1591591591591592,0.16016016016016021,0.16116116116116122,0.16216216216216223,0.16316316316316323,0.1641641641641642,0.16516516516516522,0.16616616616616622,0.16716716716716723,0.16816816816816824,0.16916916916916921,0.17017017017017022,0.17117117117117123,0.17217217217217223,0.17317317317317324,0.17417417417417422,0.17517517517517522,0.17617617617617623,0.17717717717717724,0.17817817817817824,0.17917917917917925,0.18018018018018023,0.18118118118118123,0.18218218218218224,0.18318318318318325,0.18418418418418425,0.18518518518518523,0.18618618618618624,0.18718718718718724,0.18818818818818825,0.18918918918918926,0.19019019019019023,0.19119119119119124,0.19219219219219225,0.19319319319319325,0.19419419419419426,0.19519519519519526,0.19619619619619624,0.19719719719719725,0.19819819819819826,0.19919919919919926,0.20020020020020027,0.20120120120120125,0.20220220220220225,0.20320320320320326,0.20420420420420426,0.20520520520520527,0.20620620620620625,0.20720720720720726,0.20820820820820826,0.20920920920920927,0.21021021021021027,0.21121121121121128,0.21221221221221226,0.21321321321321327,0.21421421421421427,0.21521521521521528,0.21621621621621628,0.21721721721721726,0.21821821821821827,0.21921921921921927,0.22022022022022028,0.2212212212212213,0.22222222222222227,0.22322322322322327,0.22422422422422428,0.22522522522522528,0.2262262262262263,0.2272272272272273,0.22822822822822827,0.22922922922922928,0.2302302302302303,0.2312312312312313,0.23223223223223227,0.23323323323323325,0.23423423423423426,0.23523523523523526,0.23623623623623627,0.23723723723723728,0.23823823823823825,0.23923923923923926,0.24024024024024027,0.24124124124124127,0.24224224224224228,0.24324324324324328,0.24424424424424426,0.24524524524524527,0.24624624624624628,0.24724724724724728,0.2482482482482483,0.24924924924924927,0.2502502502502503,0.2512512512512513,0.2522522522522523,0.25325325325325326,0.2542542542542543,0.2552552552552553,0.2562562562562563,0.2572572572572573,0.2582582582582583,0.2592592592592593,0.26026026026026033,0.2612612612612613,0.26226226226226235,0.2632632632632633,0.2642642642642643,0.26526526526526534,0.2662662662662663,0.26726726726726735,0.26826826826826833,0.2692692692692693,0.27027027027027034,0.2712712712712713,0.27227227227227235,0.27327327327327333,0.2742742742742743,0.27527527527527534,0.2762762762762763,0.27727727727727736,0.27827827827827833,0.2792792792792793,0.28028028028028035,0.2812812812812813,0.28228228228228236,0.28328328328328334,0.2842842842842843,0.28528528528528535,0.28628628628628633,0.28728728728728736,0.28828828828828834,0.2892892892892893,0.29029029029029035,0.29129129129129133,0.29229229229229237,0.29329329329329334,0.2942942942942944,0.29529529529529536,0.29629629629629634,0.29729729729729737,0.29829829829829835,0.2992992992992994,0.30030030030030036,0.30130130130130134,0.3023023023023024,0.30330330330330335,0.3043043043043044,0.30530530530530536,0.30630630630630634,0.3073073073073074,0.30830830830830835,0.3093093093093094,0.31031031031031037,0.31131131131131135,0.3123123123123124,0.31331331331331336,0.3143143143143144,0.31531531531531537,0.31631631631631635,0.3173173173173174,0.31831831831831836,0.3193193193193194,0.3203203203203204,0.32132132132132135,0.3223223223223224,0.32332332332332336,0.3243243243243244,0.3253253253253254,0.3263263263263264,0.3273273273273274,0.32832832832832837,0.3293293293293294,0.3303303303303304,0.3313313313313314,0.3323323323323324,0.33333333333333337,0.3343343343343344,0.3353353353353354,0.3363363363363364,0.3373373373373374,0.3383383383383384,0.3393393393393394,0.3403403403403404,0.3413413413413414,0.3423423423423424,0.3433433433433434,0.3443443443443444,0.3453453453453454,0.3463463463463464,0.3473473473473474,0.3483483483483484,0.3493493493493494,0.3503503503503504,0.3513513513513514,0.3523523523523524,0.3533533533533534,0.3543543543543544,0.3553553553553554,0.35635635635635643,0.3573573573573574,0.35835835835835844,0.3593593593593594,0.3603603603603604,0.36136136136136143,0.3623623623623624,0.36336336336336345,0.3643643643643644,0.3653653653653654,0.36636636636636644,0.3673673673673674,0.36836836836836845,0.3693693693693694,0.3703703703703704,0.37137137137137144,0.3723723723723724,0.37337337337337345,0.37437437437437443,0.3753753753753754,0.37637637637637644,0.3773773773773774,0.37837837837837845,0.37937937937937943,0.3803803803803804,0.38138138138138145,0.3823823823823824,0.38338338338338346,0.38438438438438444,0.3853853853853854,0.38638638638638645,0.3873873873873874,0.38838838838838846,0.38938938938938944,0.3903903903903905,0.39139139139139145,0.39239239239239243,0.39339339339339346,0.39439439439439444,0.3953953953953955,0.39639639639639646,0.39739739739739743,0.39839839839839847,0.39939939939939945,0.4004004004004005,0.40140140140140146,0.40240240240240244,0.40340340340340347,0.40440440440440445,0.4054054054054055,0.40640640640640646,0.40740740740740744,0.4084084084084085,0.40940940940940945,0.4104104104104105,0.41141141141141147,0.41241241241241244,0.4134134134134135,0.41441441441441446,0.4154154154154155,0.41641641641641647,0.41741741741741745,0.4184184184184185,0.41941941941941946,0.4204204204204205,0.42142142142142147,0.4224224224224225,0.4234234234234235,0.42442442442442446,0.4254254254254255,0.4264264264264265,0.4274274274274275,0.4284284284284285,0.42942942942942947,0.4304304304304305,0.4314314314314315,0.4324324324324325,0.4334334334334335,0.43443443443443447,0.4354354354354355,0.4364364364364365,0.4374374374374375,0.4384384384384385,0.43943943943943947,0.4404404404404405,0.4414414414414415,0.4424424424424425,0.4434434434434435,0.4444444444444445,0.4454454454454455,0.4464464464464465,0.4474474474474475,0.4484484484484485,0.44944944944944953,0.4504504504504505,0.4514514514514515,0.4524524524524525,0.4534534534534535,0.45445445445445454,0.4554554554554555,0.4564564564564565,0.45745745745745753,0.4584584584584585,0.45945945945945954,0.4604604604604605,0.4614614614614615,0.46246246246246253,0.4634634634634635,0.46446446446446454,0.4654654654654655,0.4664664664664665,0.46746746746746753,0.4684684684684685,0.46946946946946955,0.4704704704704705,0.4714714714714715,0.47247247247247254,0.4734734734734735,0.47447447447447455,0.47547547547547553,0.4764764764764765,0.47747747747747754,0.4784784784784785,0.47947947947947955,0.48048048048048053,0.48148148148148157,0.48248248248248254,0.4834834834834835,0.48448448448448456,0.48548548548548554,0.48648648648648657,0.4874874874874875,0.48848848848848847,0.4894894894894895,0.4904904904904905,0.4914914914914915,0.4924924924924925,0.4934934934934935,0.4944944944944945,0.4954954954954955,0.4964964964964965,0.4974974974974975,0.4984984984984985,0.4994994994994995,0.5005005005005005,0.5015015015015015,0.5025025025025025,0.5035035035035035,0.5045045045045045,0.5055055055055055,0.5065065065065065,0.5075075075075075,0.5085085085085085,0.5095095095095095,0.5105105105105106,0.5115115115115115,0.5125125125125125,0.5135135135135135,0.5145145145145145,0.5155155155155156,0.5165165165165165,0.5175175175175175,0.5185185185185185,0.5195195195195195,0.5205205205205206,0.5215215215215215,0.5225225225225225,0.5235235235235235,0.5245245245245245,0.5255255255255256,0.5265265265265265,0.5275275275275275,0.5285285285285285,0.5295295295295295,0.5305305305305306,0.5315315315315315,0.5325325325325325,0.5335335335335335,0.5345345345345346,0.5355355355355356,0.5365365365365365,0.5375375375375375,0.5385385385385385,0.5395395395395396,0.5405405405405406,0.5415415415415415,0.5425425425425425,0.5435435435435435,0.5445445445445446,0.5455455455455456,0.5465465465465466,0.5475475475475475,0.5485485485485485,0.5495495495495496,0.5505505505505506,0.5515515515515516,0.5525525525525525,0.5535535535535535,0.5545545545545546,0.5555555555555556,0.5565565565565566,0.5575575575575575,0.5585585585585585,0.5595595595595596,0.5605605605605606,0.5615615615615616,0.5625625625625625,0.5635635635635635,0.5645645645645646,0.5655655655655656,0.5665665665665666,0.5675675675675675,0.5685685685685685,0.5695695695695696,0.5705705705705706,0.5715715715715716,0.5725725725725725,0.5735735735735735,0.5745745745745746,0.5755755755755756,0.5765765765765766,0.5775775775775776,0.5785785785785785,0.5795795795795796,0.5805805805805806,0.5815815815815816,0.5825825825825826,0.5835835835835835,0.5845845845845846,0.5855855855855856,0.5865865865865866,0.5875875875875876,0.5885885885885885,0.5895895895895896,0.5905905905905906,0.5915915915915916,0.5925925925925926,0.5935935935935935,0.5945945945945946,0.5955955955955956,0.5965965965965966,0.5975975975975976,0.5985985985985987,0.5995995995995996,0.6006006006006006,0.6016016016016016,0.6026026026026026,0.6036036036036037,0.6046046046046046,0.6056056056056056,0.6066066066066066,0.6076076076076076,0.6086086086086087,0.6096096096096096,0.6106106106106106,0.6116116116116116,0.6126126126126126,0.6136136136136137,0.6146146146146146,0.6156156156156156,0.6166166166166166,0.6176176176176176,0.6186186186186187,0.6196196196196196,0.6206206206206206,0.6216216216216216,0.6226226226226226,0.6236236236236237,0.6246246246246246,0.6256256256256256,0.6266266266266266,0.6276276276276276,0.6286286286286287,0.6296296296296297,0.6306306306306306,0.6316316316316316,0.6326326326326326,0.6336336336336337,0.6346346346346347,0.6356356356356356,0.6366366366366366,0.6376376376376376,0.6386386386386387,0.6396396396396397,0.6406406406406406,0.6416416416416416,0.6426426426426426,0.6436436436436437,0.6446446446446447,0.6456456456456456,0.6466466466466466,0.6476476476476476,0.6486486486486487,0.6496496496496497,0.6506506506506506,0.6516516516516516,0.6526526526526526,0.6536536536536537,0.6546546546546547,0.6556556556556556,0.6566566566566566,0.6576576576576577,0.6586586586586587,0.6596596596596597,0.6606606606606606,0.6616616616616616,0.6626626626626627,0.6636636636636637,0.6646646646646647,0.6656656656656657,0.6666666666666666,0.6676676676676677,0.6686686686686687,0.6696696696696697,0.6706706706706707,0.6716716716716716,0.6726726726726727,0.6736736736736737,0.6746746746746747,0.6756756756756757,0.6766766766766766,0.6776776776776777,0.6786786786786787,0.6796796796796797,0.6806806806806807,0.6816816816816816,0.6826826826826827,0.6836836836836837,0.6846846846846847,0.6856856856856857,0.6866866866866866,0.6876876876876877,0.6886886886886887,0.6896896896896897,0.6906906906906907,0.6916916916916916,0.6926926926926927,0.6936936936936937,0.6946946946946947,0.6956956956956957,0.6966966966966966,0.6976976976976977,0.6986986986986987,0.6996996996996997,0.7007007007007007,0.7017017017017017,0.7027027027027027,0.7037037037037037,0.7047047047047047,0.7057057057057057,0.7067067067067067,0.7077077077077077,0.7087087087087087,0.7097097097097097,0.7107107107107107,0.7117117117117117,0.7127127127127127,0.7137137137137137,0.7147147147147147,0.7157157157157157,0.7167167167167167,0.7177177177177178,0.7187187187187187,0.7197197197197197,0.7207207207207207,0.7217217217217218,0.7227227227227228,0.7237237237237237,0.7247247247247247,0.7257257257257257,0.7267267267267268,0.7277277277277278,0.7287287287287287,0.7297297297297297,0.7307307307307307,0.7317317317317318,0.7327327327327328,0.7337337337337337,0.7347347347347347,0.7357357357357357,0.7367367367367368,0.7377377377377378,0.7387387387387387,0.7397397397397397,0.7407407407407407,0.7417417417417418,0.7427427427427428,0.7437437437437437,0.7447447447447447,0.7457457457457457,0.7467467467467468,0.7477477477477478,0.7487487487487487,0.7497497497497497,0.7507507507507507,0.7517517517517518,0.7527527527527528,0.7537537537537538,0.7547547547547547,0.7557557557557557,0.7567567567567568,0.7577577577577578,0.7587587587587588,0.7597597597597597,0.7607607607607607,0.7617617617617618,0.7627627627627628,0.7637637637637638,0.7647647647647647,0.7657657657657657,0.7667667667667668,0.7677677677677678,0.7687687687687688,0.7697697697697697,0.7707707707707707,0.7717717717717718,0.7727727727727728,0.7737737737737738,0.7747747747747747,0.7757757757757757,0.7767767767767768,0.7777777777777778,0.7787787787787788,0.7797797797797797,0.7807807807807807,0.7817817817817818,0.7827827827827828,0.7837837837837838,0.7847847847847848,0.7857857857857858,0.7867867867867868,0.7877877877877878,0.7887887887887888,0.7897897897897898,0.7907907907907908,0.7917917917917918,0.7927927927927928,0.7937937937937938,0.7947947947947948,0.7957957957957958,0.7967967967967968,0.7977977977977978,0.7987987987987988,0.7997997997997998,0.8008008008008008,0.8018018018018018,0.8028028028028028,0.8038038038038038,0.8048048048048048,0.8058058058058059,0.8068068068068068,0.8078078078078078,0.8088088088088088,0.8098098098098098,0.8108108108108109,0.8118118118118118,0.8128128128128128,0.8138138138138138,0.8148148148148148,0.8158158158158159,0.8168168168168168,0.8178178178178178,0.8188188188188188,0.8198198198198198,0.8208208208208209,0.8218218218218218,0.8228228228228228,0.8238238238238238,0.8248248248248248,0.8258258258258259,0.8268268268268268,0.8278278278278278,0.8288288288288288,0.8298298298298298,0.8308308308308309,0.8318318318318318,0.8328328328328328,0.8338338338338338,0.8348348348348348,0.8358358358358359,0.8368368368368369,0.8378378378378378,0.8388388388388388,0.8398398398398398,0.8408408408408409,0.8418418418418419,0.8428428428428428,0.8438438438438438,0.8448448448448449,0.8458458458458459,0.8468468468468469,0.8478478478478478,0.8488488488488488,0.8498498498498499,0.8508508508508509,0.8518518518518519,0.8528528528528528,0.8538538538538538,0.8548548548548549,0.8558558558558559,0.8568568568568569,0.8578578578578578,0.8588588588588588,0.8598598598598599,0.8608608608608609,0.8618618618618619,0.8628628628628628,0.8638638638638638,0.8648648648648649,0.8658658658658659,0.8668668668668669,0.8678678678678678,0.8688688688688688,0.8698698698698699,0.8708708708708709,0.8718718718718719,0.8728728728728729,0.8738738738738738,0.8748748748748749,0.8758758758758759,0.8768768768768769,0.8778778778778779,0.8788788788788788,0.8798798798798799,0.8808808808808809,0.8818818818818819,0.8828828828828829,0.8838838838838838,0.8848848848848849,0.8858858858858859,0.8868868868868869,0.8878878878878879,0.8888888888888888,0.8898898898898899,0.8908908908908909,0.8918918918918919,0.8928928928928929,0.8938938938938938,0.8948948948948949,0.8958958958958959,0.8968968968968969,0.8978978978978979,0.8988988988988988,0.8998998998998999,0.9009009009009009,0.9019019019019019,0.9029029029029029,0.9039039039039038,0.9049049049049049,0.9059059059059059,0.9069069069069069,0.9079079079079079,0.908908908908909,0.9099099099099099,0.9109109109109109,0.9119119119119119,0.9129129129129129,0.913913913913914,0.914914914914915,0.9159159159159159,0.9169169169169169,0.9179179179179179,0.918918918918919,0.91991991991992,0.9209209209209209,0.9219219219219219,0.9229229229229229,0.923923923923924,0.924924924924925,0.9259259259259259,0.9269269269269269,0.9279279279279279,0.928928928928929,0.92992992992993,0.9309309309309309,0.9319319319319319,0.9329329329329329,0.933933933933934,0.934934934934935,0.9359359359359359,0.9369369369369369,0.9379379379379379,0.938938938938939,0.93993993993994,0.9409409409409409,0.9419419419419419,0.9429429429429429,0.943943943943944,0.944944944944945,0.9459459459459459,0.9469469469469469,0.9479479479479479,0.948948948948949,0.94994994994995,0.950950950950951,0.9519519519519519,0.9529529529529529,0.953953953953954,0.954954954954955,0.955955955955956,0.9569569569569569,0.9579579579579579,0.958958958958959,0.95995995995996,0.960960960960961,0.9619619619619619,0.9629629629629629,0.963963963963964,0.964964964964965,0.965965965965966,0.9669669669669669,0.9679679679679679,0.968968968968969,0.96996996996997,0.970970970970971,0.9719719719719719,0.972972972972973,0.973973973973974,0.974974974974975,0.975975975975976,0.9769769769769769,0.977977977977978,0.978978978978979,0.97997997997998,0.980980980980981,0.9819819819819819,0.982982982982983,0.983983983983984,0.984984984984985,0.985985985985986,0.986986986986987,0.987987987987988,0.988988988988989,0.98998998998999,0.990990990990991,0.991991991991992,0.992992992992993,0.993993993993994,0.994994994994995,0.995995995995996,0.996996996996997,0.997997997997998,0.998998998998999,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json deleted file mode 100644 index ce831c3528ab..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"x":[-5.551115123125783e-17,-5.5400017795359415e-17,-5.5288884359461e-17,-5.5177750923562586e-17,-5.506661748766417e-17,-5.4955484051765757e-17,-5.4844350615867345e-17,-5.473321717996893e-17,-5.4622083744070516e-17,-5.45109503081721e-17,-5.4399816872273687e-17,-5.4288683436375275e-17,-5.417755000047686e-17,-5.4066416564578446e-17,-5.395528312868003e-17,-5.3844149692781617e-17,-5.37330162568832e-17,-5.362188282098479e-17,-5.3510749385086376e-17,-5.339961594918796e-17,-5.3288482513289546e-17,-5.317734907739113e-17,-5.306621564149272e-17,-5.2955082205594306e-17,-5.284394876969589e-17,-5.2732815333797476e-17,-5.262168189789906e-17,-5.251054846200065e-17,-5.2399415026102235e-17,-5.228828159020382e-17,-5.2177148154305406e-17,-5.206601471840699e-17,-5.1954881282508577e-17,-5.1843747846610165e-17,-5.173261441071175e-17,-5.1621480974813336e-17,-5.151034753891492e-17,-5.1399214103016507e-17,-5.1288080667118095e-17,-5.117694723121968e-17,-5.1065813795321266e-17,-5.095468035942285e-17,-5.0843546923524437e-17,-5.0732413487626025e-17,-5.062128005172761e-17,-5.0510146615829196e-17,-5.039901317993078e-17,-5.0287879744032366e-17,-5.017674630813395e-17,-5.006561287223554e-17,-4.9954479436337126e-17,-4.984334600043871e-17,-4.9732212564540296e-17,-4.962107912864188e-17,-4.950994569274347e-17,-4.9398812256845055e-17,-4.928767882094664e-17,-4.9176545385048226e-17,-4.906541194914981e-17,-4.8954278513251397e-17,-4.8843145077352985e-17,-4.873201164145457e-17,-4.8620878205556156e-17,-4.850974476965774e-17,-4.8398611333759327e-17,-4.8287477897860915e-17,-4.81763444619625e-17,-4.8065211026064086e-17,-4.795407759016567e-17,-4.7842944154267257e-17,-4.7731810718368845e-17,-4.762067728247043e-17,-4.7509543846572016e-17,-4.73984104106736e-17,-4.7287276974775186e-17,-4.7176143538876775e-17,-4.706501010297836e-17,-4.6953876667079946e-17,-4.684274323118153e-17,-4.6731609795283116e-17,-4.66204763593847e-17,-4.650934292348629e-17,-4.6398209487587875e-17,-4.628707605168946e-17,-4.6175942615791046e-17,-4.606480917989263e-17,-4.5953675743994217e-17,-4.5842542308095805e-17,-4.573140887219739e-17,-4.5620275436298976e-17,-4.550914200040056e-17,-4.5398008564502147e-17,-4.5286875128603735e-17,-4.517574169270532e-17,-4.5064608256806906e-17,-4.495347482090849e-17,-4.4842341385010077e-17,-4.4731207949111665e-17,-4.462007451321325e-17,-4.4508941077314836e-17,-4.439780764141642e-17,-4.4286674205518006e-17,-4.4175540769619595e-17,-4.406440733372118e-17,-4.3953273897822766e-17,-4.384214046192435e-17,-4.3731007026025936e-17,-4.3619873590127525e-17,-4.350874015422911e-17,-4.3397606718330695e-17,-4.328647328243228e-17,-4.3175339846533866e-17,-4.306420641063545e-17,-4.2953072974737037e-17,-4.2841939538838625e-17,-4.273080610294021e-17,-4.2619672667041796e-17,-4.250853923114338e-17,-4.2397405795244967e-17,-4.2286272359346555e-17,-4.217513892344814e-17,-4.2064005487549726e-17,-4.195287205165131e-17,-4.1841738615752897e-17,-4.1730605179854485e-17,-4.161947174395607e-17,-4.1508338308057656e-17,-4.139720487215924e-17,-4.1286071436260826e-17,-4.1174938000362415e-17,-4.1063804564464e-17,-4.0952671128565586e-17,-4.084153769266717e-17,-4.0730404256768756e-17,-4.0619270820870345e-17,-4.050813738497193e-17,-4.0397003949073515e-17,-4.02858705131751e-17,-4.0174737077276686e-17,-4.0063603641378275e-17,-3.9952470205479857e-17,-3.9841336769581445e-17,-3.973020333368303e-17,-3.9619069897784616e-17,-3.95079364618862e-17,-3.9396803025987787e-17,-3.9285669590089375e-17,-3.917453615419096e-17,-3.9063402718292546e-17,-3.895226928239413e-17,-3.8841135846495717e-17,-3.8730002410597305e-17,-3.861886897469889e-17,-3.8507735538800476e-17,-3.839660210290206e-17,-3.8285468667003646e-17,-3.8174335231105235e-17,-3.806320179520682e-17,-3.7952068359308406e-17,-3.784093492340999e-17,-3.7729801487511576e-17,-3.7618668051613165e-17,-3.750753461571475e-17,-3.7396401179816335e-17,-3.728526774391792e-17,-3.7174134308019506e-17,-3.7063000872121095e-17,-3.6951867436222677e-17,-3.6840734000324265e-17,-3.672960056442585e-17,-3.6618467128527436e-17,-3.6507333692629024e-17,-3.6396200256730607e-17,-3.6285066820832195e-17,-3.617393338493378e-17,-3.6062799949035366e-17,-3.595166651313695e-17,-3.5840533077238537e-17,-3.5729399641340125e-17,-3.561826620544171e-17,-3.5507132769543296e-17,-3.539599933364488e-17,-3.5284865897746466e-17,-3.5173732461848055e-17,-3.506259902594964e-17,-3.4951465590051226e-17,-3.484033215415281e-17,-3.4729198718254396e-17,-3.4618065282355985e-17,-3.450693184645757e-17,-3.4395798410559155e-17,-3.428466497466074e-17,-3.4173531538762326e-17,-3.4062398102863915e-17,-3.3951264666965497e-17,-3.3840131231067085e-17,-3.372899779516867e-17,-3.3617864359270256e-17,-3.3506730923371844e-17,-3.3395597487473427e-17,-3.3284464051575015e-17,-3.31733306156766e-17,-3.3062197179778186e-17,-3.295106374387977e-17,-3.2839930307981357e-17,-3.2728796872082945e-17,-3.261766343618453e-17,-3.2506530000286116e-17,-3.23953965643877e-17,-3.2284263128489286e-17,-3.2173129692590875e-17,-3.206199625669246e-17,-3.1950862820794046e-17,-3.183972938489563e-17,-3.1728595948997216e-17,-3.1617462513098805e-17,-3.150632907720039e-17,-3.1395195641301975e-17,-3.128406220540356e-17,-3.1172928769505146e-17,-3.1061795333606735e-17,-3.0950661897708317e-17,-3.0839528461809905e-17,-3.072839502591149e-17,-3.0617261590013076e-17,-3.0506128154114664e-17,-3.0394994718216247e-17,-3.0283861282317835e-17,-3.017272784641942e-17,-3.0061594410521006e-17,-2.9950460974622594e-17,-2.9839327538724177e-17,-2.9728194102825765e-17,-2.961706066692735e-17,-2.9505927231028936e-17,-2.939479379513052e-17,-2.9283660359232106e-17,-2.9172526923333695e-17,-2.906139348743528e-17,-2.8950260051536866e-17,-2.883912661563845e-17,-2.8727993179740036e-17,-2.8616859743841625e-17,-2.850572630794321e-17,-2.8394592872044795e-17,-2.828345943614638e-17,-2.8172326000247966e-17,-2.8061192564349555e-17,-2.7950059128451137e-17,-2.7838925692552725e-17,-2.772779225665431e-17,-2.7616658820755896e-17,-2.750552538485748e-17,-2.7394391948959067e-17,-2.7283258513060655e-17,-2.717212507716224e-17,-2.7060991641263826e-17,-2.694985820536541e-17,-2.6838724769466997e-17,-2.6727591333568582e-17,-2.661645789767017e-17,-2.6505324461771756e-17,-2.639419102587334e-17,-2.6283057589974926e-17,-2.6171924154076512e-17,-2.60607907181781e-17,-2.5949657282279686e-17,-2.583852384638127e-17,-2.5727390410482856e-17,-2.5616256974584442e-17,-2.550512353868603e-17,-2.5393990102787615e-17,-2.52828566668892e-17,-2.5171723230990786e-17,-2.506058979509237e-17,-2.4949456359193957e-17,-2.4838322923295545e-17,-2.472718948739713e-17,-2.4616056051498716e-17,-2.45049226156003e-17,-2.4393789179701887e-17,-2.4282655743803475e-17,-2.417152230790506e-17,-2.4060388872006646e-17,-2.394925543610823e-17,-2.3838122000209817e-17,-2.3726988564311405e-17,-2.361585512841299e-17,-2.3504721692514576e-17,-2.339358825661616e-17,-2.3282454820717746e-17,-2.3171321384819332e-17,-2.306018794892092e-17,-2.2949054513022506e-17,-2.283792107712409e-17,-2.2726787641225676e-17,-2.2615654205327262e-17,-2.250452076942885e-17,-2.2393387333530435e-17,-2.228225389763202e-17,-2.2171120461733606e-17,-2.205998702583519e-17,-2.194885358993678e-17,-2.1837720154038365e-17,-2.172658671813995e-17,-2.1615453282241536e-17,-2.150431984634312e-17,-2.1393186410444707e-17,-2.1282052974546295e-17,-2.117091953864788e-17,-2.1059786102749466e-17,-2.094865266685105e-17,-2.0837519230952637e-17,-2.0726385795054225e-17,-2.061525235915581e-17,-2.0504118923257396e-17,-2.039298548735898e-17,-2.0281852051460566e-17,-2.0170718615562155e-17,-2.005958517966374e-17,-1.9948451743765326e-17,-1.983731830786691e-17,-1.9726184871968496e-17,-1.9615051436070082e-17,-1.950391800017167e-17,-1.9392784564273255e-17,-1.928165112837484e-17,-1.9170517692476426e-17,-1.905938425657801e-17,-1.89482508206796e-17,-1.8837117384781185e-17,-1.872598394888277e-17,-1.8614850512984356e-17,-1.850371707708594e-17,-1.839258364118753e-17,-1.8281450205289115e-17,-1.81703167693907e-17,-1.8059183333492286e-17,-1.794804989759387e-17,-1.7836916461695457e-17,-1.7725783025797045e-17,-1.761464958989863e-17,-1.7503516154000216e-17,-1.73923827181018e-17,-1.7281249282203386e-17,-1.7170115846304975e-17,-1.705898241040656e-17,-1.6947848974508146e-17,-1.683671553860973e-17,-1.6725582102711316e-17,-1.6614448666812905e-17,-1.650331523091449e-17,-1.6392181795016075e-17,-1.628104835911766e-17,-1.6169914923219246e-17,-1.605878148732083e-17,-1.594764805142242e-17,-1.5836514615524005e-17,-1.572538117962559e-17,-1.5614247743727176e-17,-1.550311430782876e-17,-1.539198087193035e-17,-1.5280847436031935e-17,-1.516971400013352e-17,-1.5058580564235106e-17,-1.494744712833669e-17,-1.483631369243828e-17,-1.4725180256539865e-17,-1.461404682064145e-17,-1.4502913384743036e-17,-1.439177994884462e-17,-1.4280646512946206e-17,-1.4169513077047795e-17,-1.405837964114938e-17,-1.3947246205250966e-17,-1.3836112769352551e-17,-1.3724979333454138e-17,-1.3613845897555723e-17,-1.350271246165731e-17,-1.3391579025758895e-17,-1.328044558986048e-17,-1.3169312153962068e-17,-1.3058178718063653e-17,-1.2947045282165238e-17,-1.2835911846266825e-17,-1.272477841036841e-17,-1.2613644974469997e-17,-1.2502511538571583e-17,-1.2391378102673168e-17,-1.2280244666774755e-17,-1.216911123087634e-17,-1.2057977794977926e-17,-1.1946844359079513e-17,-1.1835710923181098e-17,-1.1724577487282685e-17,-1.161344405138427e-17,-1.1502310615485856e-17,-1.1391177179587443e-17,-1.1280043743689028e-17,-1.1168910307790613e-17,-1.10577768718922e-17,-1.0946643435993786e-17,-1.0835510000095371e-17,-1.0724376564196958e-17,-1.0613243128298543e-17,-1.050210969240013e-17,-1.0390976256501715e-17,-1.02798428206033e-17,-1.0168709384704888e-17,-1.0057575948806473e-17,-9.946442512908058e-18,-9.835309077009645e-18,-9.72417564111123e-18,-9.613042205212817e-18,-9.501908769314403e-18,-9.390775333415988e-18,-9.279641897517575e-18,-9.16850846161916e-18,-9.057375025720746e-18,-8.946241589822333e-18,-8.835108153923918e-18,-8.723974718025505e-18,-8.61284128212709e-18,-8.501707846228676e-18,-8.390574410330263e-18,-8.279440974431848e-18,-8.168307538533433e-18,-8.05717410263502e-18,-7.946040666736606e-18,-7.834907230838192e-18,-7.723773794939778e-18,-7.612640359041363e-18,-7.50150692314295e-18,-7.390373487244535e-18,-7.27924005134612e-18,-7.168106615447708e-18,-7.056973179549293e-18,-6.94583974365088e-18,-6.834706307752465e-18,-6.723572871854051e-18,-6.612439435955637e-18,-6.501306000057223e-18,-6.390172564158809e-18,-6.279039128260395e-18,-6.1679056923619804e-18,-6.0567722564635666e-18,-5.945638820565153e-18,-5.834505384666739e-18,-5.723371948768324e-18,-5.61223851286991e-18,-5.5011050769714964e-18,-5.3899716410730825e-18,-5.278838205174668e-18,-5.167704769276254e-18,-5.05657133337784e-18,-4.945437897479426e-18,-4.834304461581012e-18,-4.723171025682598e-18,-4.612037589784184e-18,-4.50090415388577e-18,-4.389770717987355e-18,-4.2786372820889415e-18,-4.1675038461905276e-18,-4.056370410292114e-18,-3.945236974393699e-18,-3.834103538495285e-18,-3.722970102596871e-18,-3.6118366666984575e-18,-3.500703230800043e-18,-3.389569794901629e-18,-3.278436359003215e-18,-3.167302923104801e-18,-3.056169487206387e-18,-2.9450360513079727e-18,-2.833902615409559e-18,-2.7227691795111445e-18,-2.6116357436127307e-18,-2.5005023077143164e-18,-2.3893688718159025e-18,-2.2782354359174883e-18,-2.1671020000190744e-18,-2.05596856412066e-18,-1.9448351282222463e-18,-1.833701692323832e-18,-1.7225682564254181e-18,-1.611434820527004e-18,-1.50030138462859e-18,-1.389167948730176e-18,-1.2780345128317619e-18,-1.1669010769333478e-18,-1.0557676410349337e-18,-9.446342051365197e-19,-8.335007692381055e-19,-7.223673333396914e-19,-6.112338974412774e-19,-5.001004615428633e-19,-3.8896702564444924e-19,-2.7783358974603517e-19,-1.667001538476211e-19,-5.556671794920703e-20,5.556671794920703e-20,1.667001538476211e-19,2.7783358974603517e-19,3.8896702564444924e-19,5.001004615428633e-19,6.112338974412774e-19,7.223673333396914e-19,8.335007692381055e-19,9.446342051365197e-19,1.0557676410349337e-18,1.1669010769333478e-18,1.2780345128317619e-18,1.389167948730176e-18,1.50030138462859e-18,1.611434820527004e-18,1.7225682564254181e-18,1.833701692323832e-18,1.9448351282222463e-18,2.05596856412066e-18,2.1671020000190744e-18,2.2782354359174883e-18,2.3893688718159025e-18,2.5005023077143164e-18,2.6116357436127307e-18,2.7227691795111445e-18,2.833902615409559e-18,2.9450360513079727e-18,3.056169487206387e-18,3.167302923104801e-18,3.278436359003215e-18,3.389569794901629e-18,3.500703230800043e-18,3.6118366666984575e-18,3.722970102596871e-18,3.834103538495285e-18,3.945236974393699e-18,4.056370410292114e-18,4.1675038461905276e-18,4.2786372820889415e-18,4.389770717987355e-18,4.50090415388577e-18,4.612037589784184e-18,4.723171025682598e-18,4.834304461581012e-18,4.945437897479426e-18,5.05657133337784e-18,5.167704769276254e-18,5.278838205174668e-18,5.3899716410730825e-18,5.5011050769714964e-18,5.61223851286991e-18,5.723371948768324e-18,5.834505384666739e-18,5.945638820565153e-18,6.0567722564635666e-18,6.1679056923619804e-18,6.279039128260395e-18,6.390172564158809e-18,6.501306000057223e-18,6.612439435955637e-18,6.723572871854051e-18,6.834706307752465e-18,6.94583974365088e-18,7.056973179549293e-18,7.168106615447708e-18,7.27924005134612e-18,7.390373487244535e-18,7.50150692314295e-18,7.612640359041363e-18,7.723773794939778e-18,7.834907230838192e-18,7.946040666736606e-18,8.05717410263502e-18,8.168307538533433e-18,8.279440974431848e-18,8.390574410330263e-18,8.501707846228676e-18,8.61284128212709e-18,8.723974718025505e-18,8.835108153923918e-18,8.946241589822333e-18,9.057375025720746e-18,9.16850846161916e-18,9.279641897517575e-18,9.390775333415988e-18,9.501908769314403e-18,9.613042205212817e-18,9.72417564111123e-18,9.835309077009645e-18,9.946442512908058e-18,1.0057575948806473e-17,1.0168709384704888e-17,1.02798428206033e-17,1.0390976256501715e-17,1.050210969240013e-17,1.0613243128298543e-17,1.0724376564196958e-17,1.0835510000095371e-17,1.0946643435993786e-17,1.10577768718922e-17,1.1168910307790613e-17,1.1280043743689028e-17,1.1391177179587443e-17,1.1502310615485856e-17,1.161344405138427e-17,1.1724577487282685e-17,1.1835710923181098e-17,1.1946844359079513e-17,1.2057977794977926e-17,1.216911123087634e-17,1.2280244666774755e-17,1.2391378102673168e-17,1.2502511538571583e-17,1.2613644974469997e-17,1.272477841036841e-17,1.2835911846266825e-17,1.2947045282165238e-17,1.3058178718063653e-17,1.3169312153962068e-17,1.328044558986048e-17,1.3391579025758895e-17,1.350271246165731e-17,1.3613845897555723e-17,1.3724979333454138e-17,1.3836112769352551e-17,1.3947246205250966e-17,1.405837964114938e-17,1.4169513077047795e-17,1.4280646512946206e-17,1.439177994884462e-17,1.4502913384743036e-17,1.461404682064145e-17,1.4725180256539865e-17,1.483631369243828e-17,1.494744712833669e-17,1.5058580564235106e-17,1.516971400013352e-17,1.5280847436031935e-17,1.539198087193035e-17,1.550311430782876e-17,1.5614247743727176e-17,1.572538117962559e-17,1.5836514615524005e-17,1.594764805142242e-17,1.605878148732083e-17,1.6169914923219246e-17,1.628104835911766e-17,1.6392181795016075e-17,1.650331523091449e-17,1.6614448666812905e-17,1.6725582102711316e-17,1.683671553860973e-17,1.6947848974508146e-17,1.705898241040656e-17,1.7170115846304975e-17,1.7281249282203386e-17,1.73923827181018e-17,1.7503516154000216e-17,1.761464958989863e-17,1.7725783025797045e-17,1.7836916461695457e-17,1.794804989759387e-17,1.8059183333492286e-17,1.81703167693907e-17,1.8281450205289115e-17,1.839258364118753e-17,1.850371707708594e-17,1.8614850512984356e-17,1.872598394888277e-17,1.8837117384781185e-17,1.89482508206796e-17,1.905938425657801e-17,1.9170517692476426e-17,1.928165112837484e-17,1.9392784564273255e-17,1.950391800017167e-17,1.9615051436070082e-17,1.9726184871968496e-17,1.983731830786691e-17,1.9948451743765326e-17,2.005958517966374e-17,2.0170718615562155e-17,2.0281852051460566e-17,2.039298548735898e-17,2.0504118923257396e-17,2.061525235915581e-17,2.0726385795054225e-17,2.0837519230952637e-17,2.094865266685105e-17,2.1059786102749466e-17,2.117091953864788e-17,2.1282052974546295e-17,2.1393186410444707e-17,2.150431984634312e-17,2.1615453282241536e-17,2.172658671813995e-17,2.1837720154038365e-17,2.194885358993678e-17,2.205998702583519e-17,2.2171120461733606e-17,2.228225389763202e-17,2.2393387333530435e-17,2.250452076942885e-17,2.2615654205327262e-17,2.2726787641225676e-17,2.283792107712409e-17,2.2949054513022506e-17,2.306018794892092e-17,2.3171321384819332e-17,2.3282454820717746e-17,2.339358825661616e-17,2.3504721692514576e-17,2.361585512841299e-17,2.3726988564311405e-17,2.3838122000209817e-17,2.394925543610823e-17,2.4060388872006646e-17,2.417152230790506e-17,2.4282655743803475e-17,2.4393789179701887e-17,2.45049226156003e-17,2.4616056051498716e-17,2.472718948739713e-17,2.4838322923295545e-17,2.4949456359193957e-17,2.506058979509237e-17,2.5171723230990786e-17,2.52828566668892e-17,2.5393990102787615e-17,2.550512353868603e-17,2.5616256974584442e-17,2.5727390410482856e-17,2.583852384638127e-17,2.5949657282279686e-17,2.60607907181781e-17,2.6171924154076512e-17,2.6283057589974926e-17,2.639419102587334e-17,2.6505324461771756e-17,2.661645789767017e-17,2.6727591333568582e-17,2.6838724769466997e-17,2.694985820536541e-17,2.7060991641263826e-17,2.717212507716224e-17,2.7283258513060655e-17,2.7394391948959067e-17,2.750552538485748e-17,2.7616658820755896e-17,2.772779225665431e-17,2.7838925692552725e-17,2.7950059128451137e-17,2.8061192564349555e-17,2.8172326000247966e-17,2.828345943614638e-17,2.8394592872044795e-17,2.850572630794321e-17,2.8616859743841625e-17,2.8727993179740036e-17,2.883912661563845e-17,2.8950260051536866e-17,2.906139348743528e-17,2.9172526923333695e-17,2.9283660359232106e-17,2.939479379513052e-17,2.9505927231028936e-17,2.961706066692735e-17,2.9728194102825765e-17,2.9839327538724177e-17,2.9950460974622594e-17,3.0061594410521006e-17,3.017272784641942e-17,3.0283861282317835e-17,3.0394994718216247e-17,3.0506128154114664e-17,3.0617261590013076e-17,3.072839502591149e-17,3.0839528461809905e-17,3.0950661897708317e-17,3.1061795333606735e-17,3.1172928769505146e-17,3.128406220540356e-17,3.1395195641301975e-17,3.150632907720039e-17,3.1617462513098805e-17,3.1728595948997216e-17,3.183972938489563e-17,3.1950862820794046e-17,3.206199625669246e-17,3.2173129692590875e-17,3.2284263128489286e-17,3.23953965643877e-17,3.2506530000286116e-17,3.261766343618453e-17,3.2728796872082945e-17,3.2839930307981357e-17,3.295106374387977e-17,3.3062197179778186e-17,3.31733306156766e-17,3.3284464051575015e-17,3.3395597487473427e-17,3.3506730923371844e-17,3.3617864359270256e-17,3.372899779516867e-17,3.3840131231067085e-17,3.3951264666965497e-17,3.4062398102863915e-17,3.4173531538762326e-17,3.428466497466074e-17,3.4395798410559155e-17,3.450693184645757e-17,3.4618065282355985e-17,3.4729198718254396e-17,3.484033215415281e-17,3.4951465590051226e-17,3.506259902594964e-17,3.5173732461848055e-17,3.5284865897746466e-17,3.539599933364488e-17,3.5507132769543296e-17,3.561826620544171e-17,3.5729399641340125e-17,3.5840533077238537e-17,3.595166651313695e-17,3.6062799949035366e-17,3.617393338493378e-17,3.6285066820832195e-17,3.6396200256730607e-17,3.6507333692629024e-17,3.6618467128527436e-17,3.672960056442585e-17,3.6840734000324265e-17,3.6951867436222677e-17,3.7063000872121095e-17,3.7174134308019506e-17,3.728526774391792e-17,3.7396401179816335e-17,3.750753461571475e-17,3.7618668051613165e-17,3.7729801487511576e-17,3.784093492340999e-17,3.7952068359308406e-17,3.806320179520682e-17,3.8174335231105235e-17,3.8285468667003646e-17,3.839660210290206e-17,3.8507735538800476e-17,3.861886897469889e-17,3.8730002410597305e-17,3.8841135846495717e-17,3.895226928239413e-17,3.9063402718292546e-17,3.917453615419096e-17,3.9285669590089375e-17,3.9396803025987787e-17,3.95079364618862e-17,3.9619069897784616e-17,3.973020333368303e-17,3.9841336769581445e-17,3.9952470205479857e-17,4.0063603641378275e-17,4.0174737077276686e-17,4.02858705131751e-17,4.0397003949073515e-17,4.050813738497193e-17,4.0619270820870345e-17,4.0730404256768756e-17,4.084153769266717e-17,4.0952671128565586e-17,4.1063804564464e-17,4.1174938000362415e-17,4.1286071436260826e-17,4.139720487215924e-17,4.1508338308057656e-17,4.161947174395607e-17,4.1730605179854485e-17,4.1841738615752897e-17,4.195287205165131e-17,4.2064005487549726e-17,4.217513892344814e-17,4.2286272359346555e-17,4.2397405795244967e-17,4.250853923114338e-17,4.2619672667041796e-17,4.273080610294021e-17,4.2841939538838625e-17,4.2953072974737037e-17,4.306420641063545e-17,4.3175339846533866e-17,4.328647328243228e-17,4.3397606718330695e-17,4.350874015422911e-17,4.3619873590127525e-17,4.3731007026025936e-17,4.384214046192435e-17,4.3953273897822766e-17,4.406440733372118e-17,4.4175540769619595e-17,4.4286674205518006e-17,4.439780764141642e-17,4.4508941077314836e-17,4.462007451321325e-17,4.4731207949111665e-17,4.4842341385010077e-17,4.495347482090849e-17,4.5064608256806906e-17,4.517574169270532e-17,4.5286875128603735e-17,4.5398008564502147e-17,4.550914200040056e-17,4.5620275436298976e-17,4.573140887219739e-17,4.5842542308095805e-17,4.5953675743994217e-17,4.606480917989263e-17,4.6175942615791046e-17,4.628707605168946e-17,4.6398209487587875e-17,4.650934292348629e-17,4.66204763593847e-17,4.6731609795283116e-17,4.684274323118153e-17,4.6953876667079946e-17,4.706501010297836e-17,4.7176143538876775e-17,4.7287276974775186e-17,4.73984104106736e-17,4.7509543846572016e-17,4.762067728247043e-17,4.7731810718368845e-17,4.7842944154267257e-17,4.795407759016567e-17,4.8065211026064086e-17,4.81763444619625e-17,4.8287477897860915e-17,4.8398611333759327e-17,4.850974476965774e-17,4.8620878205556156e-17,4.873201164145457e-17,4.8843145077352985e-17,4.8954278513251397e-17,4.906541194914981e-17,4.9176545385048226e-17,4.928767882094664e-17,4.9398812256845055e-17,4.950994569274347e-17,4.962107912864188e-17,4.9732212564540296e-17,4.984334600043871e-17,4.9954479436337126e-17,5.006561287223554e-17,5.017674630813395e-17,5.0287879744032366e-17,5.039901317993078e-17,5.0510146615829196e-17,5.062128005172761e-17,5.0732413487626025e-17,5.0843546923524437e-17,5.095468035942285e-17,5.1065813795321266e-17,5.117694723121968e-17,5.1288080667118095e-17,5.1399214103016507e-17,5.151034753891492e-17,5.1621480974813336e-17,5.173261441071175e-17,5.1843747846610165e-17,5.1954881282508577e-17,5.206601471840699e-17,5.2177148154305406e-17,5.228828159020382e-17,5.2399415026102235e-17,5.251054846200065e-17,5.262168189789906e-17,5.2732815333797476e-17,5.284394876969589e-17,5.2955082205594306e-17,5.306621564149272e-17,5.317734907739113e-17,5.3288482513289546e-17,5.339961594918796e-17,5.3510749385086376e-17,5.362188282098479e-17,5.37330162568832e-17,5.3844149692781617e-17,5.395528312868003e-17,5.4066416564578446e-17,5.417755000047686e-17,5.4288683436375275e-17,5.4399816872273687e-17,5.45109503081721e-17,5.4622083744070516e-17,5.473321717996893e-17,5.4844350615867345e-17,5.4955484051765757e-17,5.506661748766417e-17,5.5177750923562586e-17,5.5288884359461e-17,5.5400017795359415e-17,5.551115123125783e-17]} From 3bfc14c40f1ec23a9d7d03c4a9f01c9d5d4126a1 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Tue, 3 Dec 2024 20:33:23 +0530 Subject: [PATCH 03/18] updated main.js --- .../base/special/expf/benchmark/julia/REQUIRE | 2 - .../special/expf/benchmark/julia/benchmark.jl | 144 ------------------ .../expf/benchmark/python/benchmark.py | 97 ------------ .../base/special/expf/benchmark/r/DESCRIPTION | 9 -- .../base/special/expf/benchmark/r/benchmark.R | 109 ------------- .../math/base/special/expf/lib/main.js | 2 +- .../expf/scripts/fixtures/julia/REQUIRE | 2 - .../expf/scripts/fixtures/julia/data.json | 1 - .../expf/scripts/fixtures/julia/runner.jl | 63 -------- 9 files changed, 1 insertion(+), 428 deletions(-) delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE deleted file mode 100644 index 98645e192e41..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 1.5 -BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl deleted file mode 100644 index 85ada3d1f97c..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/julia/benchmark.jl +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/env julia -# -# @license Apache-2.0 -# -# Copyright (c) 2018 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import BenchmarkTools -using Printf - -# Benchmark variables: -name = "exp"; -repeats = 3; - -""" - print_version() - -Prints the TAP version. - -# Examples - -``` julia -julia> print_version() -``` -""" -function print_version() - @printf( "TAP version 13\n" ); -end - -""" - print_summary( total, passing ) - -Print the benchmark summary. - -# Arguments - -* `total`: total number of tests -* `passing`: number of passing tests - -# Examples - -``` julia -julia> print_summary( 3, 3 ) -``` -""" -function print_summary( total, passing ) - @printf( "#\n" ); - @printf( "1..%d\n", total ); # TAP plan - @printf( "# total %d\n", total ); - @printf( "# pass %d\n", passing ); - @printf( "#\n" ); - @printf( "# ok\n" ); -end - -""" - print_results( iterations, elapsed ) - -Print benchmark results. - -# Arguments - -* `iterations`: number of iterations -* `elapsed`: elapsed time (in seconds) - -# Examples - -``` julia -julia> print_results( 1000000, 0.131009101868 ) -``` -""" -function print_results( iterations, elapsed ) - rate = iterations / elapsed - - @printf( " ---\n" ); - @printf( " iterations: %d\n", iterations ); - @printf( " elapsed: %0.9f\n", elapsed ); - @printf( " rate: %0.9f\n", rate ); - @printf( " ...\n" ); -end - -""" - benchmark() - -Run a benchmark. - -# Notes - -* Benchmark results are returned as a two-element array: [ iterations, elapsed ]. -* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation. -* The elapsed time is in seconds. - -# Examples - -``` julia -julia> out = benchmark(); -``` -""" -function benchmark() - t = BenchmarkTools.@benchmark exp( (100.0*rand()) - 50.0 ) samples=1e6 - - # Compute the total "elapsed" time and convert from nanoseconds to seconds: - s = sum( t.times ) / 1.0e9; - - # Determine the number of "iterations": - iter = length( t.times ); - - # Return the results: - [ iter, s ]; -end - -""" - main() - -Run benchmarks. - -# Examples - -``` julia -julia> main(); -``` -""" -function main() - print_version(); - for i in 1:repeats - @printf( "# julia::%s\n", name ); - results = benchmark(); - print_results( results[ 1 ], results[ 2 ] ); - @printf( "ok %d benchmark finished\n", i ); - end - print_summary( repeats, repeats ); -end - -main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py deleted file mode 100644 index 0ad7230ef86e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/python/benchmark.py +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/env python -# -# @license Apache-2.0 -# -# Copyright (c) 2018 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. - -"""Benchmark expf.""" - -from __future__ import print_function -import timeit - -NAME = "expf" -REPEATS = 3 -ITERATIONS = 1000000 - - -def print_version(): - """Print the TAP version.""" - print("TAP version 13") - - -def print_summary(total, passing): - """Print the benchmark summary. - - # Arguments - - * `total`: total number of tests - * `passing`: number of passing tests - - """ - print("#") - print("1.." + str(total)) # TAP plan - print("# total " + str(total)) - print("# pass " + str(passing)) - print("#") - print("# ok") - - -def print_results(elapsed): - """Print benchmark results. - - # Arguments - - * `elapsed`: elapsed time (in seconds) - - # Examples - - ``` python - python> print_results(0.131009101868) - ``` - """ - rate = ITERATIONS / elapsed - - print(" ---") - print(" iterations: " + str(ITERATIONS)) - print(" elapsed: " + str(elapsed)) - print(" rate: " + str(rate)) - print(" ...") - - -def benchmark(): - """Run the benchmark and print benchmark results.""" - setup = "from math import expf; from random import random;" - stmt = "y = exp(100.0*random() - 50.0)" - - t = timeit.Timer(stmt, setup=setup) - - print_version() - - for i in range(REPEATS): - print("# python::" + NAME) - elapsed = t.timeit(number=ITERATIONS) - print_results(elapsed) - print("ok " + str(i+1) + " benchmark finished") - - print_summary(REPEATS, REPEATS) - - -def main(): - """Run the benchmark.""" - benchmark() - - -if __name__ == "__main__": - main() diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION deleted file mode 100644 index 517a6d00676f..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/DESCRIPTION +++ /dev/null @@ -1,9 +0,0 @@ -Package: exp-benchmarks -Title: Benchmarks -Version: 0.0.0 -Authors@R: person("stdlib", "js", role = c("aut","cre")) -Description: Benchmarks. -Depends: R (>=3.4.0) -Imports: - microbenchmark -LazyData: true diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R deleted file mode 100644 index b78af82ce33d..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/r/benchmark.R +++ /dev/null @@ -1,109 +0,0 @@ -#!/usr/bin/env Rscript -# -# @license Apache-2.0 -# -# Copyright (c) 2018 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. - -# Set the precision to 16 digits: -options( digits = 16L ); - -#' Run benchmarks. -#' -#' @examples -#' main(); -main <- function() { - # Define benchmark parameters: - name <- "exp"; - iterations <- 1000000L; - repeats <- 3L; - - #' Print the TAP version. - #' - #' @examples - #' print_version(); - print_version <- function() { - cat( "TAP version 13\n" ); - } - - #' Print the TAP summary. - #' - #' @param total Total number of tests. - #' @param passing Total number of passing tests. - #' - #' @examples - #' print_summary( 3, 3 ); - print_summary <- function( total, passing ) { - cat( "#\n" ); - cat( paste0( "1..", total, "\n" ) ); # TAP plan - cat( paste0( "# total ", total, "\n" ) ); - cat( paste0( "# pass ", passing, "\n" ) ); - cat( "#\n" ); - cat( "# ok\n" ); - } - - #' Print benchmark results. - #' - #' @param iterations Number of iterations. - #' @param elapsed Elapsed time in seconds. - #' - #' @examples - #' print_results( 10000L, 0.131009101868 ); - print_results <- function( iterations, elapsed ) { - rate <- iterations / elapsed; - cat( " ---\n" ); - cat( paste0( " iterations: ", iterations, "\n" ) ); - cat( paste0( " elapsed: ", elapsed, "\n" ) ); - cat( paste0( " rate: ", rate, "\n" ) ); - cat( " ...\n" ); - } - - #' Run a benchmark. - #' - #' ## Notes - #' - #' * We compute and return a total "elapsed" time, rather than the minimum - #' evaluation time, to match benchmark results in other languages (e.g., - #' Python). - #' - #' - #' @param iterations Number of Iterations. - #' @return Elapsed time in seconds. - #' - #' @examples - #' elapsed <- benchmark( 10000L ); - benchmark <- function( iterations ) { - # Run the benchmarks: - results <- microbenchmark::microbenchmark( exp( (100.0*runif(1)) - 50.0 ), times = iterations ); - - # Sum all the raw timing results to get a total "elapsed" time: - elapsed <- sum( results$time ); - - # Convert the elapsed time from nanoseconds to seconds: - elapsed <- elapsed / 1.0e9; - - return( elapsed ); - } - - print_version(); - for ( i in 1:repeats ) { - cat( paste0( "# r::", name, "\n" ) ); - elapsed <- benchmark( iterations ); - print_results( iterations, elapsed ); - cat( paste0( "ok ", i, " benchmark finished", "\n" ) ); - } - print_summary( repeats, repeats ); -} - -main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js index bb6868f5db42..d7f12baafcee 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js @@ -193,7 +193,7 @@ var NEG_NEARZERO = -NEARZERO; * var v = expf( NaN ); * // returns NaN */ -function exp( x ) { +function expf( x ) { var hi; var lo; var k; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE deleted file mode 100644 index 308c3be89c85..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 1.5 -JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json deleted file mode 100644 index 9fcb093508f0..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[5.148200222412013e-131,5.466579947751696e-131,5.804649204408437e-131,6.163625650457948e-131,6.544802247503371e-131,6.949551917667985e-131,7.379332488584545e-131,7.835691944200803e-131,8.320274000310539e-131,8.834824024887105e-131,9.381195324554646e-131,9.9613558198258e-131,1.057739513316043e-130,1.1231532115371103e-130,1.192612283747725e-130,1.266366907680831e-130,1.3446827327902489e-130,1.4278418370672333e-130,1.5161437430294275e-130,1.6099064965407038e-130,1.70946781234964e-130,1.8151862904700153e-130,1.9274427077873346e-130,2.0466413895405853e-130,2.1732116656214234e-130,2.307609416935255e-130,2.4503187173925274e-130,2.6018535774474868e-130,2.7627597954604474e-130,2.9336169235550585e-130,3.1150403550500573e-130,3.3076835409821765e-130,3.5122403437079063e-130,3.729447536056141e-130,3.960087455037545e-130,4.204990819667226e-130,4.465039723047481e-130,4.741170809493181e-130,5.034378648136204e-130,5.345719315165864e-130,5.676314197605798e-130,6.027354032324385e-130,6.400103194834111e-130,6.795904253317853e-130,7.216182804292757e-130,7.66245260732603e-130,8.136321037292307e-130,8.639494873820937e-130,9.173786448772927e-130,9.741120173900259e-130,1.0343539472195181e-129,1.0983214137888649e-129,1.1662448151621235e-129,1.2383687978917266e-129,1.3149531381871158e-129,1.396273677576398e-129,1.48262331643273e-129,1.5743130689433472e-129,1.6716731833200823e-129,1.7750543312882944e-129,1.8848288711358923e-129,2.0013921888739135e-129,2.1251641223384832e-129,2.2565904733622223e-129,2.3961446134645277e-129,2.544329188840575e-129,2.7016779307930547e-129,2.868757578126424e-129,3.0461699184260423e-129,3.23455395557837e-129,3.4345882113344404e-129,3.646993169210414e-129,3.872533869526242e-129,4.112022664926964e-129,4.366322146316718e-129,4.636348249737688e-129,4.923073555389762e-129,5.227530790671433e-129,5.550816549856088e-129,5.894095243808311e-129,6.258603293957616e-129,6.645653585642802e-129,7.056640196864445e-129,7.493043419473348e-129,7.956435090889835e-129,8.44848425554552e-129,8.970963176452172e-129,9.525753718536621e-129,1.0114854126744377e-128,1.0740386223321428e-128,1.1404603050191023e-128,1.2109896983966337e-128,1.2858808352809847e-128,1.365403458619071e-128,1.4498439930490467e-128,1.5395065765442214e-128,1.634714155858054e-128,1.7358096497134064e-128,1.8431571839276566e-128,1.9571434029216439e-128,2.0781788623350727e-128,2.2066995077669592e-128,2.343168244963993e-128,2.4880766071150775e-128,2.641946525256344e-128,2.805332208161725e-128,2.978822138493656e-128,3.163041192399263e-128,3.358652890190103e-128,3.566361786210673e-128,3.7869160065013915e-128,4.0211099434010485e-128,4.2697871167882324e-128,4.533843212272358e-128,4.814229307275509e-128,5.111955296621939e-128,5.42809352998006e-128,5.763782674249936e-128,6.12023181481688e-128,6.498724810433832e-128,6.900624917425532e-128,7.327379699867301e-128,7.780526243419572e-128,8.261696691607292e-128,8.772624124472623e-128,9.31514880078495e-128,9.891224786287838e-128,1.0502926991850634e-127,1.1152458646888219e-127,1.1842159234950209e-127,1.257451292007594e-127,1.3352157494260424e-127,1.4177893878250358e-127,1.5054696209908244e-127,1.5985722556458784e-127,1.6974326289219632e-127,1.8024068161779495e-127,1.913872913511609e-127,2.0322323995871916e-127,2.157911581680819e-127,2.2913631311546077e-127,2.433067713889093e-127,2.583535721545013e-127,2.743309109893414e-127,2.9129633508313284e-127,3.093109505117227e-127,3.284396423290623e-127,3.487513082701154e-127,3.7031910690691205e-127,3.9322072115098764e-127,4.175386380519095e-127,4.433604458990389e-127,4.707791496971486e-127,4.9989350615199585e-127,5.308083793721055e-127,5.636351185686075e-127,5.984919591126991e-127,6.355044483959634e-127,6.748058980271623e-127,7.165378639938274e-127,7.60850656519009e-127,8.079038814484672e-127,8.578670151192207e-127,9.109200147796857e-127,9.672539667594737e-127,1.0270717747246654e-126,1.0905888904960048e-126,1.1580340900635556e-126,1.2296502975924237e-126,1.3056954603867195e-126,1.3864434779648758e-126,1.4721851885906216e-126,1.5632294168146304e-126,1.6599040857992748e-126,1.7625573984318732e-126,1.871559091482819e-126,1.987301767323059e-126,2.1102023079998402e-126,2.2407033767631257e-126,2.37927501244955e-126,2.5264163224696078e-126,2.6826572804920064e-126,2.8485606353042986e-126,3.0247239377208287e-126,3.211781692842053e-126,3.410407645416015e-126,3.621317206531361e-126,3.8452700303869844e-126,4.083072750413661e-126,4.33558188460742e-126,4.603706920537411e-126,4.888413591137131e-126,5.1907273530839857e-126,5.5117370802879864e-126,5.852598985799259e-126,6.214540786258034e-126,6.598866123882949e-126,7.006959261933212e-126,7.440290070546448e-126,7.900419320918919e-126,8.389004306893689e-126,8.907804814199573e-126,9.458689458852266e-126,1.004364241753339e-125,1.0664770574200726e-125,1.1324311108666173e-125,1.202463955446728e-125,1.2768278355070554e-125,1.3557905949205456e-125,1.4396366418068628e-125,1.5286679729140018e-125,1.6232052613498094e-125,1.723589011583275e-125,1.8301807858730366e-125,1.9433645065433294e-125,2.0635478387949776e-125,2.1911636590344607e-125,2.3266716140088375e-125,2.470559776360842e-125,2.6233464025702844e-125,2.785581799609651e-125,2.957850307040498e-125,3.1407724016886036e-125,3.3350069324766463e-125,3.5412534934680874e-125,3.760254943664274e-125,3.9928000826349843e-125,4.2397264916179656e-125,4.501923550318018e-125,4.780335640277286e-125,5.075965546347628e-125,5.389878068522437e-125,5.72320385713494e-125,6.077143485233193e-125,6.452971772807424e-125,6.852042378435226e-125,7.27579267489084e-125,7.725748926276672e-125,8.203531785319494e-125,8.710862130641939e-125,9.249567265021163e-125,9.821587496970449e-125,1.0428983129345456e-124,1.1073941880140564e-124,1.1758786762217606e-124,1.2485984450330262e-124,1.3258154165600038e-124,1.4078077109423936e-124,1.4948706480809362e-124,1.587317811321098e-124,1.6854821769171839e-124,1.7897173133471352e-124,1.9003986547950736e-124,2.017924853390646e-124,2.1427192150748982e-124,2.2752312242630954e-124,2.415938162798941e-124,2.565346829027778e-124,2.7239953631835513e-124,2.8924551856631474e-124,3.0713330551676903e-124,3.261273254127714e-124,3.4629599092788925e-124,3.6771194557506325e-124,3.904523253541268e-124,4.145990365801567e-124,4.4023905089386636e-124,4.674647185159626e-124,4.963741008742946e-124,5.2707132380165915e-124,5.596669525760991e-124,5.942783901552288e-124,6.310303000380741e-124,6.7005505527822965e-124,7.114932152653326e-124,7.554940319917016e-124,8.022159876285771e-124,8.518273653469782e-124,9.045068554404953e-124,9.604441989317869e-124,1.0198408709820492e-123,1.0829108065645704e-123,1.1498811710154565e-123,1.220993178238371e-123,1.2965029595084994e-123,1.3766824860065197e-123,1.4618205484048296e-123,1.5522237970334397e-123,1.648217846373985e-123,1.750148447857595e-123,1.858382735192862e-123,1.973310546708612e-123,2.095345829473124e-123,2.2249281302498306e-123,2.362524178656353e-123,2.5086295682318627e-123,2.6637705414666728e-123,2.8285058852218008e-123,3.0034289433690368e-123,3.1891697538962306e-123,3.386397318178957e-123,3.595822010590729e-123,3.818198137128552e-123,4.0543266522743613e-123,4.305058043871966e-123,4.571295396415306e-123,4.8539976437796045e-123,5.154183023108238e-123,5.472932742302109e-123,5.8113948743127055e-123,6.170788492274451e-123,6.552408060360934e-123,6.957628096187708e-123,7.387908121552e-123,7.844797919336557e-123,8.329943115521935e-123,8.845091106400289e-123,9.392097352349685e-123,9.97293206083421e-123,1.0589687282694829e-122,1.1244584447303917e-122,1.1939982363707054e-122,1.2678385716584605e-122,1.3462454087628958e-122,1.4295011534822623e-122,1.5179056764138136e-122,1.6117773930273827e-122,1.7114544105346474e-122,1.817295745684219e-122,1.9296826178677315e-122,2.0490198221969067e-122,2.175737187494127e-122,2.3102911244504662e-122,2.4531662695264335e-122,2.604877230514992e-122,2.765970440057335e-122,2.9370261237833543e-122,3.118660390169093e-122,3.311527449637224e-122,3.516321970891357e-122,3.7337815829757064e-122,3.964689532066322e-122,4.20987750256934e-122,4.470228612680936e-122,4.746680595203626e-122,5.040229175073755e-122,5.351931655762363e-122,5.682910727473767e-122,6.034358510849864e-122,6.407540850751857e-122,6.803801875582275e-122,7.224568838565018e-122,7.671357258429988e-122,8.145776378006735e-122,8.649534960397427e-122,9.184447443602498e-122,9.75244047576123e-122,1.0355559854558375e-121,1.0995977895775939e-121,1.1676001257543078e-121,1.2398079248460976e-121,1.3164812649519607e-121,1.3978963081597923e-121,1.4843462952266808e-121,1.5761426017738588e-121,1.6736158597999087e-121,1.7771171485506914e-121,1.8870192590375526e-121,2.003718036755562e-121,2.1276338074403498e-121,2.2592128909980034e-121,2.3989292090595632e-121,2.5472859919532726e-121,2.7048175912388463e-121,2.8720914043364066e-121,3.0497099181778646e-121,3.238312879245162e-121,3.4385795978101567e-121,3.651231394673536e-121,3.877034199220082e-121,4.1168013081422605e-121,4.371396314773337e-121,4.6417362195792095e-121,4.928794733009569e-121,5.233605782610909e-121,5.557267237025586e-121,5.900944860296565e-121,6.265876510718198e-121,6.653376599352712e-121,7.064840824279637e-121,7.501751197619563e-121,7.96568138344738e-121,8.45830236581803e-121,8.981388467314836e-121,9.536823739809535e-121,1.0126608750438152e-120,1.0752867787246404e-120,1.1417856510453728e-120,1.2123970076887524e-120,1.2873751766865675e-120,1.3669902144580708e-120,1.4515288784995522e-120,1.5412956602279414e-120,1.636613881697624e-120,1.737826860142715e-120,1.8452991445365793e-120,1.9594178286253366e-120,2.0805939451616767e-120,2.2092639463631802e-120,2.3458912759266028e-120,2.4909680382588204e-120,2.645016770939851e-120,2.8085923267981148e-120,2.9822838723800974e-120,3.166717010011346e-120,3.362556031090165e-120,3.570506308734223e-120,3.7913168383926454e-120,4.0257829355788284e-120,4.2747491004391095e-120,4.5391120594723696e-120,4.8198239953620286e-120,5.117895976546556e-120,5.4344015988871246e-120,5.770480852546879e-120,6.127344228006122e-120,6.506277076010289e-120,6.90864423714481e-120,7.335894957719748e-120,7.789568109667462e-120,8.271297733249644e-120,8.782818922548098e-120,9.325974074924617e-120,9.90271952697028e-120,1.0515132600841667e-119,1.1165419086357287e-119,1.185592118581747e-119,1.2589125950145245e-119,1.3367674236753265e-119,1.4194370221381045e-119,1.5072191498178887e-119,1.60042998044112e-119,1.699405240839794e-119,1.8045014201732963e-119,1.9160970539306542e-119,2.0345940873401676e-119,2.160419323096366e-119,2.2940259586174354e-119,2.4358952183729407e-119,2.586538087157572e-119,2.7464971505568634e-119,2.916348549232813e-119,3.096704054066616e-119,3.28821326963673e-119,3.491565973963903e-119,3.70749460295458e-119,3.936776888489698e-119,4.180238659658439e-119,4.438756817231733e-119,4.7132624920824614e-119,5.004744398933885e-119,5.31425239751389e-119,5.642901273938487e-119,5.991874755951538e-119,6.362429776473998e-119,6.755901000826608e-119,7.173705633929534e-119,7.617348524789345e-119,8.088427586668336e-119,8.588639552446221e-119,9.119786085917335e-119,9.683780271021242e-119,1.0282653502391033e-118,1.0918562802033727e-118,1.15937985884895e-118,1.2310792926467578e-118,1.3072128286654112e-118,1.3880546847258588e-118,1.473896037079561e-118,1.5650460691667597e-118,1.6618330852342525e-118,1.7646056928212568e-118,1.873734058374511e-118,1.989611240514367e-118,2.112654605752852e-118,2.2433073317655306e-118,2.3820400036283545e-118,2.529352308771621e-118,2.6857748367549455e-118,2.851870990344094e-118,3.028239014776632e-118,3.215514152520941e-118,3.414370931293394e-118,3.6255255935733466e-118,3.849738676364431e-118,4.087817750498849e-118,4.340620329345081e-118,4.609056957400682e-118,4.8940944898928945e-118,5.196759575196627e-118,5.518142352619431e-118,5.85940037886368e-118,6.221762797317526e-118,6.606534765182158e-118,7.015102154388756e-118,7.448936543234202e-118,7.909600516710001e-118,8.398753294625249e-118,8.918156707782659e-118,9.469681543743104e-118,1.005531428503121e-117,1.06771642640457e-117,1.1337471260458685e-117,1.2038613568451555e-117,1.278311656285815e-117,1.3573661795063806e-117,1.4413096651413897e-117,1.5304444608937878e-117,1.625091612530542e-117,1.7255920202257156e-117,1.8323076664152513e-117,1.9456229195848714e-117,2.0659459186895567e-117,2.193710043187972e-117,2.3293754739891813e-117,2.4734308509329717e-117,2.6263950327722347e-117,2.788818965999867e-117,2.9612876692472198e-117,3.1444223404049928e-117,3.3388825940547744e-117,3.545368837268042e-117,3.7646247923343e-117,3.9974401754989484e-117,4.244653541365454e-117,4.5071553032003664e-117,4.7858909400250174e-117,5.081864402043351e-117,5.396141726668548e-117,5.729854878179545e-117,6.084205824828691e-117,6.460470868092608e-117,6.860005239656863e-117,7.28424798268781e-117,7.734727134982262e-117,8.213065232652301e-117,8.720985154178017e-117,9.260316325873932e-117,9.833001311114485e-117,1.0441102807064193e-116,1.1086811074097954e-116,1.1772451824683802e-116,1.250049460013775e-116,1.327356166541469e-116,1.4094437453989615e-116,1.4966078596826932e-116,1.5891624571577848e-116,1.687440901035591e-116,1.7917971706809126e-116,1.9026071365758548e-116,2.0202699141297035e-116,2.1452093012133424e-116,2.2778753045950918e-116,2.418745760774541e-116,2.5683280570553804e-116,2.727160959052263e-116,2.8958165512182884e-116,3.074902297378143e-116,3.2650632286921125e-116,3.4669842669303367e-116,3.681392691423207e-116,3.90906075857808e-116,4.150808483391534e-116,4.4075065929804744e-116,4.6800796627684463e-116,4.969509446620265e-116,5.27683841292582e-116,5.603173499361538e-116,5.949690099859987e-116,6.3176362981456e-116,6.708337363081118e-116,7.123200522024659e-116,7.56372002937963e-116,8.03148254860223e-116,8.528172867048392e-116,9.055579964238841e-116,9.615603455410501e-116,1.02102604335485e-115,1.084169273455438e-115,1.1512174651714052e-115,1.2224121127244557e-115,1.298009645043968e-115,1.3782823493724213e-115,1.4635193519899499e-115,1.5540276595898364e-115,1.6501332650548448e-115,1.7521823216192941e-115,1.8605423896432778e-115,1.9756037604925903e-115,2.097780862289727e-115,2.2275137526016494e-115,2.365269703439826e-115,2.5115448842799933e-115,2.666866149166756e-115,2.831792934335885e-115,3.006919273192501e-115,3.192875935901531e-115,3.390332701294923e-115,3.600000769282904e-115,3.822635322453009e-115,4.0590382460877394e-115,4.310061016396235e-115,4.576607767360255e-115,4.8596385472464615e-115,5.1601727765071805e-115,5.479292919530355e-115,5.818148383461479e-115,6.177959658136865e-115,6.560022712047327e-115,6.965713660156017e-115,7.396493720391152e-115,7.853914476663042e-115,8.339623467357145e-115,8.855370119442394e-115,9.403012049555278e-115,9.984521754765929e-115,1.0601993717121173e-114,1.1257651947547441e-114,1.195385799629949e-114,1.269311945878872e-114,1.3478099007447288e-114,1.4311623982138665e-114,1.5196696573674132e-114,1.6136504637108392e-114,1.7134433173752025e-114,1.8194076523278638e-114,1.9319251309813392e-114,2.0514010188654918e-114,2.1782656443135556e-114,2.3129759484182035e-114,2.4560171308432456e-114,2.607904397415227e-114,2.7691848157924646e-114,2.9404392858942033e-114,3.1222846321852377e-114,3.315375825355986e-114,3.5204083413951775e-114,3.738120666556203e-114,3.969296957238066e-114,4.21476986435895e-114,4.4754235324006085e-114,4.752196783918956e-114,5.046086500996412e-114,5.3581512158133524e-114,5.6895149232680364e-114,6.0413711293845536e-114,6.414987150081467e-114,6.811708675791986e-114,7.232964618373898e-114,7.680272257762555e-114,8.155242706913964e-114,8.659586714709119e-114,9.195120827734065e-114,9.76377393311534e-114,1.0367594205988208e-113,1.1008756486617089e-113,1.1689570113732593e-113,1.2412487242314172e-113,1.3180111675759142e-113,1.3995208244265257e-113,1.486071276320046e-113,1.5779742607319138e-113,1.6755607938931153e-113,1.7791823630440704e-113,1.889212192421847e-113,2.0060465875398052e-113,2.130106362600316e-113,2.261838356184524e-113,2.4017170406750427e-113,2.5502462312112166e-113,2.707960900331288e-113,2.875429104835831e-113,3.053254031816322e-113,3.2420761712137115e-113,3.4425756227359635e-113,3.6554745454422457e-113,3.88153975881456e-113,4.1215855046902786e-113,4.376476379997476e-113,4.6471304508612976e-113,4.9345225592959804e-113,5.239687834389637e-113,5.56372542063508e-113,5.907802436826878e-113,6.273158179793069e-113,6.66110858809307e-113,7.073050981766949e-113,7.510469095204943e-113,7.974938421260191e-113,8.468131885863265e-113,8.991825873564893e-113,9.547906625720209e-113,1.0138377034355853e-112,1.0765363856184027e-112,1.1431125372760743e-112,1.2138059524361767e-112,1.2888712546887113e-112,1.3685788142897533e-112,1.453215721980711e-112,1.5430868230325572e-112,1.638515815237179e-112,1.7398464148025194e-112,1.847443594350158e-112,1.9616948974732537e-112,2.083011834592139e-112,2.2118313651320834e-112,2.3486174713643364e-112,2.4938628295782063e-112,2.6480905846019175e-112,2.8118562340671113e-112,2.9857496291995806e-112,3.1703970993462098e-112,3.3664637078890015e-112,3.5746556476695606e-112,3.7957227845564318e-112,4.0304613583109075e-112,4.279716850485612e-112,4.544387029678998e-112,4.82542518511949e-112,5.1238435602241275e-112,5.44071699849568e-112,5.777186814896958e-112,6.134464906637758e-112,6.51383811818785e-112,6.916672876235422e-112,7.344420111281276e-112,7.798620483603293e-112,8.28090993240673e-112,8.793025568151329e-112,9.336811929277198e-112,9.91422762586356e-112,1.0527352394153384e-111,1.1178394587347774e-111,1.186969912965425e-111,1.2603755962236692e-111,1.3383209011485676e-111,1.4210865711916406e-111,1.508970711798687e-111,1.6022898641262102e-111,1.7013801451595697e-111,1.806598458339414e-111,1.918323779056531e-111,2.0369585196459624e-111,2.1629299787958254e-111,2.2966918805920626e-111,2.438726008742228e-111,2.5895439418640945e-111,2.7496888960902634e-111,2.919737681624134e-111,3.1003027802953416e-111,3.2920345515973177e-111,3.4956235751521794e-111,3.7118031380414215e-111,3.9413518759594555e-111,4.1850965777042695e-111,4.443915163105869e-111,4.718739845118647e-111,5.010560487466096e-111,5.3204281699334145e-111,5.649458974146863e-111,5.998838003477446e-111,6.369823651547205e-111,6.763752134711493e-111,7.182042304845001e-111,7.626200759762688e-111,8.097827269684979e-111,8.598620539291453e-111,9.130384326115541e-111,9.695033937321036e-111,1.0294603128255784e-110,1.0931251427633291e-110,1.1607271915724685e-110,1.232509948357713e-110,1.3087319603004641e-110,1.3896677638944245e-110,1.4756088737711904e-110,1.56686483267788e-110,1.6637643263884543e-110,1.7666563675641724e-110,1.8759115528279038e-110,1.991923397579111e-110,2.1151097533579245e-110,2.245914312863164e-110,2.3848082080447447e-110,2.5322917070274246e-110,2.688896015976625e-110,2.855185192397214e-110,3.0317581767562044e-110,3.219250949747023e-110,3.418338822964833e-110,3.629738871244829e-110,3.8542125154225026e-110,4.092568264819806e-110,4.345664629334696e-110,4.614413211622168e-110,4.8997819905060315e-110,5.202798807445212e-110,5.524555068613925e-110,5.866209675929328e-110,6.228993201184571e-110,6.614212318324069e-110,7.023254509821958e-110,7.457593064117555e-110,7.918792382106646e-110,8.408513611801917e-110,8.928520631456041e-110,9.480686402700936e-110,1.0066999716581318e-109,1.068957235678384e-109,1.1350646705861308e-109,1.2052603821846396e-109,1.2797972014349938e-109,1.3589435951026951e-109,1.4429846327214682e-109,1.532223013356944e-109,1.6269801558681826e-109,1.7275973565945913e-109,1.834437018637141e-109,1.9478839571621384e-109,2.0683467854287504e-109,2.196259386532577e-109,2.3320824761658297e-109,2.4763052620237843e-109,2.6294472058331445e-109,2.792059894349699e-109,2.9647290260639505e-109,3.148076520769999e-109,3.342762759597163e-109,3.5494889635708534e-109,3.768999719271009e-109,4.0020856606846543e-109,4.249586316911475e-109,4.512393135980954e-109,4.791452695670046e-109,5.087770112887755e-109,5.402412663905893e-109,5.736513628475627e-109,6.091276371674614e-109,6.467978678189085e-109,6.867977354638959e-109,7.292713116524998e-109,7.743715777399073e-109,8.222609758946779e-109,8.731119941831829e-109,9.271077878371542e-109,9.844428389423415e-109,1.0453236569242486e-108,1.1099695223538036e-108,1.1786132767524389e-108,1.2515021612407256e-108,1.328898707051635e-108,1.41108168111571e-108,1.4983470901240238e-108,1.5910092466851111e-108,1.6894019014165793e-108,1.7938794450481442e-108,1.9048181848664387e-108,2.0226177000989044e-108,2.147702281118298e-108,2.2805224576523713e-108,2.4215566215019286e-108,2.5713127496127895e-108,2.730330233707569e-108,2.89918182306684e-108,3.0784756874583283e-108,3.268857607642891e-108,3.471013301348169e-108,3.685670893087155e-108,3.9136035367176646e-108,4.1556322001879824e-108,4.412628622500412e-108,4.685518453540977e-108,4.975284588085904e-108,5.282970705992833e-108,5.6096850313270415e-108,5.956604323964495e-108,6.324978118045785e-108,6.7161332225491725e-108,7.131478500192259e-108,7.572509941873868e-108,8.040816054936246e-108,8.538083584651095e-108,9.066103589540017e-108,9.62677789241029e-108,1.022212593034183e-107,1.0854292028295863e-107,1.1525553122547702e-107,1.2238326961756242e-107,1.2995180815212962e-107,1.3798840719634582e-107,1.4652201297802386e-107,1.5558336184418776e-107,1.6520509096725303e-107,1.754218558976198e-107,1.8627045538606285e-107,1.977899639254759e-107,2.10021872489437e-107,2.2301023797440484e-107,2.3680184188388296e-107,2.5144635882607015e-107,2.6699653543190546e-107,2.8350838033788864e-107,3.0104136591806896e-107,3.196586424916529e-107,3.3942726577787314e-107,3.6041843841733345e-107,3.8270776642968676e-107,4.063755315315072e-107,4.3150698029499144e-107,4.581926311891289e-107,4.865286006091983e-107,5.166169490688095e-107,5.485660488016109e-107,5.824909740964198e-107,6.185139157718864e-107,6.567646212834655e-107,6.973808620479095e-107,7.4050892966837e-107,7.863041628477089e-107,8.349315068874655e-107,8.86566107787973e-107,9.413939430893669e-107,9.996124917255082e-107,1.0614314453038946e-106,1.1270734633729319e-106,1.1967749753972684e-106,1.2707870323296362e-106,1.3493762108461982e-106,1.4328255735028091e-106,1.52143568826978e-106,1.6155257111178308e-106,1.7154345355542777e-106,1.8215220132499471e-106,1.9341702501529616e-106,2.0537849827584994e-106,2.1807970394905785e-106,2.3156638924602096e-106,2.4588713051888236e-106,2.6109350822313723e-106,2.772402927001927e-106,2.9438564144919353e-106,3.125913085987478e-106,3.319228673329987e-106,3.524499460731252e-106,3.742464792650917e-106,3.9739097367674837e-106,4.2196679116356965e-106,4.480624489214405e-106,4.757719383079659e-106,5.051950633805521e-106,5.364378003708059e-106,5.696126793897456e-106,6.048391897388425e-106,6.422442102866849e-106,6.81962466461301e-106,7.241370155044013e-106,7.68919761734978e-106,8.164720036784003e-106,8.669650150315755e-106,9.205806615565682e-106,9.775120561249676e-106,1.0379642542718633e-105,1.102154992765032e-105,1.170315473849374e-105,1.2426911979913485e-105,1.3195428481225793e-105,1.4011472285680183e-105,1.487798262039813e-105,1.5798080482883619e-105,1.6775079882234513e-105,1.781249977554087e-105,1.8914076742469725e-105,2.0083778443678407e-105,2.13258179115378e-105,2.264466872463582e-105,2.4045081120713205e-105,2.5532099106076756e-105,2.7111078623102177e-105,2.87877068412715e-105,3.0568022641223955e-105,3.2458438365601194e-105,3.4465762915023706e-105,3.659722627239899e-105,3.886050554387531e-105,4.126375261024864e-105,4.381562348841359e-105,4.652530950860599e-105,4.940257041974951e-105,5.24577695421211e-105,5.570191109396615e-105,5.91466798265007e-105,6.2804483110049674e-105,6.668849562293137e-105,7.081270680401622e-105,7.519197123989867e-105,7.984206216815717e-105,8.477972828941421e-105,9.00227540928079e-105,9.559002391219104e-105,1.0150158994372807e-104,1.0777874446991097e-104,1.144440965501199e-104,1.2152165345393555e-104,1.2903690713055777e-104,1.3701692602571275e-104,1.4549045257680217e-104,1.544880067374378e-104,1.6404199590421344e-104,1.7418683164171352e-104,1.849590536260924e-104,1.9639746125370884e-104,2.0854325338881744e-104,2.2144017675367207e-104,2.3513468349547457e-104,2.4967609849778612e-104,2.6511679703890204e-104,2.8151239343717e-104,2.9892194136268766e-104,3.174081465368177e-104,3.370375925857466e-104,3.5788098086140125e-104,3.80013385093634e-104,4.035145217908445e-104,4.2846903736290765e-104,4.549668130007365e-104,4.8310328841037167e-104,5.129798055677898e-104,5.447039737324999e-104,5.783900570346632e-104,6.141593860316487e-104,6.521407947166118e-104,6.924710845527943e-104,7.352955172051417e-104,7.807683377438873e-104,8.290533302044629e-104,8.803244075050754e-104,9.34766237846288e-104,9.925749098490891e-104,1.0539586388270491e-103,1.1191385167362582e-103,1.1883493085046556e-103,1.2618402976083907e-103,1.3398761839412426e-103,1.4227380372108735e-103,1.5107243092959347e-103,1.6041519092100727e-103,1.7033573445452773e-103,1.8086979335049872e-103,1.9205530918930755e-103,2.039325699694004e-103,2.165443552165992e-103,2.299360900674603e-103,2.4415600888153936e-103,2.5925532897194557e-103,2.752884350799021e-103,2.9231307525771235e-103,3.1039056886577946e-103,3.2958602743268937e-103,3.499685891739657e-103,3.7161166801414056e-103,3.945932180090884e-103,4.189960141209524e-103,4.449079503571242e-103,4.724223563468951e-103,5.016383334961884e-103,5.326611119310848e-103,5.65602429515701e-103,6.005809343097918e-103,6.377226119153534e-103,6.771612392516634e-103,7.190388663930985e-103,7.635063282051069e-103,8.10723787621447e-103,8.608613125190713e-103,9.140994882687384e-103,9.70630068167523e-103,1.0306566640959983e-102,1.0943954798875291e-102,1.1620760900515535e-102,1.2339422666550932e-102,1.3102528573411757e-102,1.3912827176464868e-102,1.4773237009760719e-102,1.5686857098013558e-102,1.6656978118669203e-102,1.7687094254269646e-102,1.878091577780261e-102,1.9942382416363164e-102,2.117567754126854e-102,2.2485243235725692e-102,2.3875796294330074e-102,2.5352345212019575e-102,2.6920208223675696e-102,2.8585032459342495e-102,3.0352814284067836e-102,3.222992089561209e-102,3.4223113257826013e-102,3.633957045229592e-102,3.858691553596046e-102,4.097324299784825e-102,4.350714791380989e-102,4.6197756904268925e-102,4.9054761006490764e-102,5.208845057976175e-102,5.5309752369220165e-102,5.873026886180895e-102,6.23623200761222e-102,6.62189879366564e-102,7.031416339229685e-102,7.466259644873877e-102,7.927994929507937e-102,8.41828527158933e-102,8.93889659920057e-102,9.491704050570423e-102,1.0078698727946985e-101,1.0701994869152659e-101,1.1363837462646326e-101,1.2066610333524543e-101,1.2812844729584724e-101,1.3605228438373723e-101,1.4446615468064947e-101,1.5340036327025505e-101,1.628870893910362e-101,1.7296050233948907e-101,1.8365688454112382e-101,1.9501476223250873e-101,2.070750442251251e-101,2.1988116925073202e-101,2.3347926241902438e-101,2.479183013510909e-101,2.632502925870148e-101,2.795304589031057e-101,2.968174382133055e-101,3.151734947712727e-101,3.3466474343382224e-101,3.553613877934239e-101,3.773379730376037e-101,4.006736544458144e-101,4.254524824909824e-101,4.5176370557255784e-101,4.7970209147147305e-101,5.093682686847456e-101,5.408690888693458e-101,5.74318011700514e-101,6.098355135309078e-101,6.475495213224283e-101,6.875958734135644e-101,7.301188087821188e-101,7.752714865651838e-101,8.232165377078423e-101,8.741266507274386e-101,9.281851937030986e-101,9.855868747311442e-101,1.0465384432247503e-100,1.1112594345841432e-100,1.1799829609193514e-100,1.2529565506735967e-100,1.3304430401712647e-100,1.4127215203021626e-100,1.500088341751137e-100,1.592858182394202e-100,1.691365180705571e-100,1.7959641392576504e-100,1.9070318026494586e-100,2.0249682144653948e-100,2.150198158152532e-100,2.2831726870059877e-100,2.4243707487727277e-100,2.57430091072626e-100,2.7335031914243327e-100,2.9025510057482004e-100,3.082053230228723e-100,3.2726563960983604e-100,3.475047017967428e-100,3.6899540665134256e-100,3.9181515940877507e-100,4.1604615226980704e-100,4.4177566044076795e-100,4.690963564813975e-100,4.981066440930061e-100,5.289110125489447e-100,5.616204130441508e-100,5.963526583192542e-100,6.332328469985175e-100,6.723938141702445e-100,7.139766098322246e-100,7.581310069257256e-100,8.050160407877737e-100,8.548005819647618e-100,9.076639444503998e-100,9.637965315391198e-100,1.0234005216206958e-99,1.086690596386527e-99,1.1538947140703301e-99,1.2252549305081285e-99,1.3010282709753165e-99,1.3814876559403424e-99,1.4669228840698658e-99,1.5576416760258328e-99,1.6539707828137885e-99,1.7562571626751257e-99,1.8648692307613413e-99,1.9801981860920167e-99,2.1026594205757115e-99,2.2326940151688766e-99,2.3707703285612938e-99,2.5173856841110834e-99,2.673068161104069e-99,2.838378496790162e-99,3.0139121060472476e-99,3.200301225946556e-99,3.398217192945065e-99,3.608372860905277e-99,3.831525168652814e-99,4.068477866319306e-99,4.320084410289697e-99,4.587251037182696e-99,4.870940027933996e-99,5.172173173740504e-99,5.492035456348552e-99,5.8316789559420515e-99,6.192327000705012e-99,6.575278573006781e-99,6.981912988076979e-99,7.413694862024174e-99,7.872179387091381e-99,8.359017933147653e-99,8.875963995594471e-99,9.424879511105814e-99,1.0007741563953116e-98,1.0626649507069029e-98,1.1283832523497035e-98,1.1981657655466172e-98,1.2722638330004176e-98,1.3509443411800913e-98,1.4344906815927007e-98,1.523203771503147e-98,1.617403137778007e-98,1.7174280677578646e-98,1.82363883130252e-98,1.936417978411248e-98,2.0561717170917042e-98,2.1833313764399667e-98,2.318354960202303e-98,2.4617287964131485e-98,2.6139692890518002e-98,2.7756247780266952e-98,2.9472775141861476e-98,3.129545756470305e-98,3.3230859987563127e-98,3.5285953344184695e-98,3.746813967119616e-98,3.9785278768772927e-98,4.2245716510066484e-98,4.4858314901382526e-98,4.763248400135681e-98,5.05782158141118e-98,5.370612027846527e-98,5.7027463482809066e-98,6.05542082433227e-98,6.42990571916468e-98,6.827549852723181e-98,7.249785459914572e-98,7.698133349231253e-98,8.174208380401466e-98,8.679725280791358e-98,9.216504821511354e-98,9.786480375470756e-98,1.0391704881001887e-97,1.1034358236133578e-97,1.1716755150151077e-97,1.2441353480716363e-97,1.3210763086581812e-97,1.4027755227781582e-97,1.4895272547156304e-97,1.5816439669168342e-97,1.6794574454174768e-97,1.783319994869938e-97,1.8936057074744574e-97,2.0107118103844596e-97,2.1350600964398954e-97,2.2670984433807684e-97,2.4073024270135306e-97,2.556177034140341e-97,2.714258481420942e-97,2.8821161467178845e-97,3.0603546198825396e-97,3.249615880366937e-97,3.4505816095058593e-97,3.66397564579723e-97,3.890566592023695e-97,4.131170583607244e-97,4.3866542281659193e-97,4.657937726861819e-97,4.945998188782393e-97,5.25187315029206e-97,5.576664312032196e-97,5.921541507026703e-97,6.287746914187514e-97,6.676599532395428e-97,7.089499931271365e-97,7.527935295748167e-97,7.993484782615467e-97,8.487825208326891e-97,9.012737088558878e-97,9.570111051273512e-97,1.01619546463825e-96,1.079039957654339e-96,1.1457709375126566e-96,1.216628755901154e-96,1.2918686285576002e-96,1.3717615545056547e-96,1.4565952921395442e-96,1.5466753956723008e-96,1.6423263156811656e-96,1.743892567713894e-96,1.8517399731651396e-96,1.9662569768919924e-96,2.087856046315229e-96,2.2169751570445463e-96,2.354079370379454e-96,2.4996625083674464e-96,2.6542489324523036e-96,2.8183954321199046e-96,2.9926932303426986e-96,3.1777701130470703e-96,3.3742926902732065e-96,3.5829687971712068e-96,3.804550043482758e-96,4.039834520689244e-96,4.289669676578262e-96,4.554955367581634e-96,4.836647099879044e-96,5.135759470940293e-96,5.453369823903947e-96,5.7906221279520495e-96,6.1487310986592135e-96,6.528986573156182e-96,6.932758155865337e-96,7.361500151543904e-96,7.816756803399094e-96,8.300167855144491e-96,8.813474457030315e-96,9.358525437118571e-96,9.937283960394655e-96,1.0551834599695361e-95,1.120439084392495e-95,1.189730307060098e-95,1.2633067011445966e-95,1.3414332741514167e-95,1.424391422423578e-95,1.5124799446750933e-95,1.6060161182044105e-95,1.705336841664047e-95,1.8107998485021913e-95,1.922784995447559e-95,2.0416956306774264e-95,2.1679600465974116e-95,2.3020330224654138e-95,2.4443974624155898e-95,2.595566134783171e-95,2.7560835189935454e-95,2.926527766668677e-95,3.1075127840140077e-95,3.2996904429863296e-95,3.503752929206271e-95,3.7204352350734685e-95,3.950517807062331e-95,4.1948293567347584e-95,4.4542498455941293e-95,4.729713654530734e-95,5.022212949276227e-95,5.332801253986341e-95,5.662597245825015e-95,6.012788784216725e-95,6.38463718927868e-95,6.77948178484546e-95,7.198744722445845e-95,7.643936103609312e-95,8.116659418950729e-95,8.618617323624171e-95,9.151617769946427e-95,9.717580519282304e-95,1.0318544056641444e-94,1.0956672932895239e-94,1.1634265561057931e-94,1.2353762494710855e-94,1.3117755218391874e-94,1.3928995481604873e-94,1.479040521007327e-94,1.5705087029934484e-94,1.6676335442779087e-94,1.7707648691791434e-94,1.88027413617226e-94,1.996555775808464e-94,2.120028611375284e-94,2.2511373674146312e-94,2.390354271531702e-94,2.538180755265054e-94,2.695149260142813e-94,2.8618251554309867e-94,3.038808774480951e-94,3.226737577010178e-94,3.426288445105574e-94,3.6381801212175074e-94,3.863175796926923e-94,4.102085861809412e-94,4.355770822296467e-94,4.6251444010487983e-94,4.911176828002786e-94,5.214898334945418e-94,5.537402866203839e-94,5.879852018814914e-94,6.243479226365572e-94,6.629594201575684e-94,7.039587653621587e-94,7.474936297193475e-94,7.937208171327592e-94,8.428068287169389e-94,8.949284625013099e-94,9.502734502213483e-94,1.0090411334908947e-93,1.0714431817909428e-93,1.137704354860798e-93,1.208063312238034e-93,1.2827734728624594e-93,1.3621039278406525e-93,1.4463404096584902e-93,1.5357863213326498e-93,1.630763829207626e-93,1.7316150233349406e-93,1.8387031496131525e-93,1.952413918127219e-93,2.073156892399397e-93,2.2013669645551814e-93,2.337505921718393e-93,2.48206410927613e-93,2.635562197005164e-93,2.798553054420771e-93,2.971623742102209e-93,3.1553976261683675e-93,3.3505366235179697e-93,3.5577435859223747e-93,3.77776483155756e-93,4.01139283309354e-93,4.259469072022512e-93,4.522887069508119e-93,4.802595604670148e-93,5.099602131897893e-93,5.414976409500216e-93,5.749854352761127e-93,6.10544212528111e-93,6.483020483337404e-93,6.883949388912961e-93,7.309672908008636e-93,7.761724411880258e-93,8.241732099937456e-93,8.751424864192583e-93,9.292638516385335e-93,9.867322400210686e-93,1.0477546412466622e-92,1.1125508458408645e-92,1.1813542368168119e-92,1.2544126302742065e-92,1.331989167983538e-92,1.4143632651703298e-92,1.501831616912926e-92,1.5947092667792578e-92,1.693330741550824e-92,1.7980512561215145e-92,1.9092479929109065e-92,2.0273214603999433e-92,2.1526969356829644e-92,2.2858259962308222e-92,2.427188146382968e-92,2.5772925444265062e-92,2.7366798364829283e-92,2.9059241038073714e-92,3.085634930515319e-92,3.276459599182779e-92,3.479085422229174e-92,3.694242217479778e-92,3.9227049368236345e-92,4.1652964574364014e-92,4.422890545619511e-92,4.6964150039323196e-92,4.98685501295213e-92,5.295256679697693e-92,5.6227308054989954e-92,5.9704568868816934e-92,6.339687363878621e-92,6.73175213106914e-92,7.148063327594529e-92,7.590120423400884e-92,8.059515620032168e-92,8.557939585422011e-92,9.087187543342802e-92,9.64916573944415e-92,1.0245898307168657e-91,1.0879534558278707e-91,1.1552356724247965e-91,1.226678817640448e-91,1.3025402154431528e-91,1.3830931034662578e-91,1.4686276171558343e-91,1.559451834780581e-91,1.6558928870683734e-91,1.758298135465939e-91,1.8670364232656008e-91,1.9824994041050866e-91,2.1051029526261718e-91,2.2352886623720405e-91,2.3735254363192547e-91,2.5203111757728816e-91,2.676174573707464e-91,2.841677019014149e-91,3.017414618511297e-91,3.204020344002487e-91,3.40216631211488e-91,3.612566205128955e-91,3.835977841520389e-91,4.0732059054707795e-91,4.32510484517976e-91,4.592581950417099e-91,4.876600620399736e-91,5.178183833763184e-91,5.498417833127469e-91,5.838456037525997e-91,6.199523196791129e-91,6.582919802859139e-91,6.990026773882204e-91,7.422310428021414e-91,7.881327764831793e-91,8.368732073264519e-91,8.886278886484424e-91,9.435832304949531e-91,1.00193717105308e-90,1.0638998895850114e-90,1.1296945634518585e-90,1.199558171954025e-90,1.2737423498834452e-90,1.3525142938618043e-90,1.4361577247297196e-90,1.524973909452516e-90,1.619282746223818e-90,1.7194239166751266e-90,1.8257581093411532e-90,1.938668318788312e-90,2.058561225084618e-90,2.185868658580274e-90,2.3210491552745827e-90,2.4645896083709547e-90,2.6170070219695585e-90,2.778850373212784e-90,2.950702589591544e-90,3.133182648533898e-90,3.326947806838467e-90,3.5326959679820336e-90,3.751168195829305e-90,3.983151383796877e-90,4.229481089086555e-90,4.491044542195973e-90,4.768783842545488e-90,5.063699351733254e-90,5.3768532966377975e-90,5.70937359534763e-90,6.062457919697542e-90,6.43737800904314e-90,6.835484250813517e-90,7.258210544336936e-90,7.707079465460554e-90,8.18370775056513e-90,8.689812119727452e-90,9.227215460002878e-90,9.797853391102606e-90,1.0403781237109088e-89,1.1047181429343923e-89,1.1730371367050793e-89,1.2455811764204287e-89,1.3226115512513094e-89,1.4044057092533827e-89,1.4912582566797269e-89,1.5834820190938817e-89,1.6814091681049952e-89,1.7853924177840107e-89,1.8958062950692704e-89,2.0130484887379365e-89,2.1375412818016948e-89,2.269733072486053e-89,2.410099989271116e-89,2.5591476058118396e-89,2.7174127619133136e-89,2.8854654971207916e-89,3.063911103888594e-89,3.2533923077225324e-89,3.4545915821495736e-89,3.668233606851114e-89,3.895087877814822e-89,4.1359714789059225e-89,4.3917520248399415e-89,4.663350786158659e-89,4.951746007462513e-89,5.257976430852763e-89,5.583145037273493e-89,5.928423019229278e-89,6.295053999186469e-89,6.684358508854407e-89,7.097738745476772e-89,7.536683622266718e-89,8.002774131175701e-89,8.497689037310461e-89,9.023210925511625e-89,9.581232620868113e-89,1.0173764006296031e-88,1.08029392617366e-88,1.1471024551045698e-88,1.2180426184266134e-88,1.2933699284675607e-88,1.3733556991831716e-88,1.4582880233759852e-88,1.5484728103482113e-88,1.6442348877258872e-88,1.745919171423496e-88,1.853891907962168e-88,1.9685419936166904e-88,2.0902823751424252e-88,2.2195515371269797e-88,2.3568150813246315e-88,2.5025674036608118e-88,2.657333474947737e-88,2.821670731724712e-88,2.996171084033115e-88,3.181463047358848e-88,3.378214006419527e-88,3.5871326189512817e-88,3.8089713681526655e-88,4.044529272979255e-88,4.2946547660502114e-88,4.560248749534121e-88,4.842267840018593e-88,5.141727814052633e-88,5.459707266771453e-88,5.797351496780541e-88,6.155876631293844e-88,6.536574006380995e-88,6.940814818102578e-88,7.370055061285226e-88,7.825840773723936e-88,8.309813604703253e-88,8.82371672788997e-88,9.369401119897396e-88,9.948832227134167e-88,1.0564097044950738e-87,1.1217411634579445e-87,1.191112910494709e-87,1.2647748088103103e-87,1.3429921738794408e-87,1.4260467290600376e-87,1.514237620304502e-87,1.6078824936240273e-87,1.7073186391860602e-87,1.812904206166289e-87,1.92501949273064e-87,2.0440683157932495e-87,2.1704794654848167e-87,2.3047082495689713e-87,2.447238133370135e-87,2.598582481119251e-87,2.7592864049894915e-87,2.9299287284813415e-87,3.111124071229925e-87,3.30352506274212e-87,3.5078246930380266e-87,3.724758808662992e-87,3.9551087630597733e-87,4.199704230848507e-87,4.459426196148904e-87,4.735210125709551e-87,5.028049338272802e-87,5.338998582310337e-87,5.66917783501774e-87,6.019776336248571e-87,6.392056871919395e-87,6.787360322312949e-87,7.207110491661842e-87,7.65281923640679e-87,8.126091910603346e-87,8.628633148086435e-87,9.162253002221828e-87,9.728873465357849e-87,1.0330535391457612e-86,1.09694058468498e-86,1.164778591556857e-86,1.236811898739981e-86,1.3132999558484506e-86,1.3945182576175188e-86,1.4807593361809329e-86,1.5723338147132279e-86,1.6695715262325185e-86,1.7728227015932857e-86,1.8824592309481558e-86,1.998876003221891e-86,2.1224923284228934e-86,2.2537534479140714e-86,2.3931321380835284e-86,2.5411304131909454e-86,2.698281333522595e-86,2.8651509253686567e-86,3.0423402197368117e-86,3.230487417146198e-86,3.430270186298566e-86,3.6424081049054736e-86,3.867665251464344e-86,4.1068529573165306e-86,4.360832728901183e-86,4.630519350729712e-86,4.916884180257398e-86,5.22095864651877e-86,5.5438379651302135e-86,5.8866850830377696e-86,6.2507348672203594e-86,6.637298552434685e-86,7.047768464020705e-86,7.483623032781087e-86,7.94643211999353e-86,8.437862671738347e-86,8.959684722906236e-86,9.513777772510114e-86,1.0102137553267424e-85,1.0726883219830583e-85,1.139026498155988e-85,1.2094672207329049e-85,1.2842642031556047e-85,1.3636868492454063e-85,1.4480212235422283e-85,1.537571081651901e-85,1.6326589643133445e-85,1.733627359126069e-85,1.8408399341220445e-85,1.9546828476257502e-85,2.0755661391192964e-85,2.2039252061229528e-85,2.3402223724102962e-85,2.4849485532060238e-85,2.6386250233651266e-85,2.801805294900759e-85,2.975077110624235e-85,3.159064561077488e-85,3.354430332382892e-85,3.5618780931062065e-85,3.782155028731045e-85,4.0160545328716846e-85,4.264419064918806e-85,4.5281431844104226e-85,4.8081767730565135e-85,5.1055284560243545e-85,5.421269234804827e-85,5.756536344746429e-85,6.112537351150486e-85,6.490554498679978e-85,6.891949329750242e-85,7.318167588532681e-85,7.770744428237264e-85,8.251309940428379e-85,8.761595026289969e-85,9.303437630985602e-85,9.878789363572036e-85,1.0489722526305074e-84,1.1138437578659458e-84,1.1827271062945606e-84,1.2558704020067955e-84,1.3335370925741703e-84,1.4160069179347926e-84,1.503576917960885e-84,1.596562502337242e-84,1.6952985866038648e-84,1.8001407984552416e-84,1.9114667586402432e-84,2.0296774410768307e-84,2.155198617080183e-84,2.2884823889061687e-84,2.430008818133299e-84,2.5802876547492207e-84,2.739860173168315e-84,2.9093011217943076e-84,3.0892207931495394e-84,3.280267222026639e-84,3.483128519581183e-84,3.6985353517705813e-84,3.9272635710672956e-84,4.170137010924911e-84,4.428030453061555e-84,4.701872778249964e-84,4.992650311960428e-84,5.301410376908626e-84,5.6292650653033e-84,5.977395244380881e-84,6.3470548096532185e-84,6.739575201190272e-84,7.1563701992011945e-84,7.598941016188993e-84,8.068881704018962e-84,8.56788489537485e-84,9.097747900285736e-84,9.660379179677616e-84,1.0257805219269456e-83,1.089217782857113e-83,1.1565781891271126e-83,1.2281043594933955e-83,1.3040539169642958e-83,1.3847004167067837e-83,1.4703343313376492e-83,1.5612640971480127e-83,1.6578172250291894e-83,1.760341480101895e-83,1.8692061342967222e-83,1.9848032963980688e-83,2.1075493243418785e-83,2.2378863248536997e-83,2.376283745829333e-83,2.5232400671923478e-83,2.6792845963194622e-83,2.8449793745002867e-83,3.0209212012977e-83,3.2077437841013848e-83,3.406120020615217e-83,3.616764422500749e-83,3.84043568890578e-83,4.0779394391475826e-83,4.330131114392633e-83,4.59791905878586e-83,4.8822677911247445e-83,5.184201478863884e-83,5.50480762696217e-83,5.845240994858265e-83,6.206727755684829e-83,6.590569912699133e-83,6.998149988839414e-83,7.430936006297124e-83,7.890486774039416e-83,8.378457502329554e-83,8.896605764463539e-83,9.446797827198986e-83,1.0031015372675977e-82,1.065136263604143e-82,1.1310073984483458e-82,1.2009521964978376e-82,1.2752225849730826e-82,1.3540860710090378e-82,1.4378267051625718e-82,1.5267461045057896e-82,1.6211645389908427e-82,1.721422084998302e-82,1.8278798502245305e-82,1.940921274319681e-82,2.060953509960669e-82,2.1884088893342758e-82,2.3237464813113006e-82,2.4674537449211762e-82,2.620048285082229e-82,2.782079716911499e-82,2.9541316453285257e-82,3.1368237670843967e-82,3.330814102785622e-82,3.536801366953266e-82,3.755527484653487e-82,3.9877802637633147e-82,4.234396232498211e-82,4.496263652419552e-82,4.7743257177758105e-82,5.069583952700379e-82,5.383101818501296e-82,5.716008544037735e-82,6.069503192976716e-82,6.444858982581563e-82,6.843427869586689e-82,7.266645419676481e-82,7.716035978105926e-82,8.193218160089574e-82,8.699910680730117e-82,9.237938545487782e-82,9.809239623486507e-82,1.0415871627331149e-81,1.1060019524579746e-81,1.1744003407560065e-81,1.2470286849879958e-81,1.3241485779728823e-81,1.406037790192801e-81,1.4929912702672118e-81,1.585322207298888e-81,1.6833631589186748e-81,1.787467249091785e-81,1.8980094399999876e-81,2.0153878825804329e-81,2.140025350586279e-81,2.272370763333273e-81,2.412900802617693e-81,2.562121629629234e-81,2.720570708042434e-81,2.888818739854121e-81,3.0674717209379683e-81,3.257173123720907e-81,3.4586062148426424e-81,3.6724965161455074e-81,3.899614417860092e-81,4.140777953396918e-81,4.396855745739815e-81,4.668770136052765e-81,4.957500505769072e-81,5.264086804127497e-81,5.589633293862956e-81,5.935312528540231e-81,6.302369575858322e-81,6.692126502136306e-81,7.105987134131944e-81,7.545442115346946e-81,8.012074275027001e-81,8.5075643291974e-81,9.03369693426739e-81,9.592367115005827e-81,1.0185587090044135e-80,1.0815493519485749e-80,1.1484355200730151e-80,1.2194581240228855e-80,1.294872973060701e-80,1.3749516964401681e-80,1.4599827217608268e-80,1.5502723138266317e-80,1.646145677750762e-80,1.747948130279666e-80,1.856046343554954e-80,1.970829665793653e-80,2.0927115236426847e-80,2.2221309112592873e-80,2.3595539714805315e-80,2.5054756747766394e-80,2.660421602036345e-80,2.8249498376042362e-80,2.9996529793893842e-80,3.1851602732848884e-80,3.382139879586251e-80,3.591301279571202e-80,3.8133978309103946e-80,4.049229481111204e-80,4.299645648769285e-80,4.5655482830051705e-80,4.847895112104702e-80,5.14770309306617e-80,5.4660520744762164e-80,5.804088685909316e-80,6.163030467859124e-80,6.5441702570759484e-80,6.948880843108046e-80,7.378619912815264e-80,7.83493530066672e-80,8.319470563732018e-80,8.833970901446465e-80,9.380289441470568e-80,9.960393914287953e-80,1.057637374057737e-79,1.1230447556889738e-79,1.1924971206735092e-79,1.2662446225859986e-79,1.3445528852282589e-79,1.4277039593531264e-79,1.5159973385550796e-79,1.6097510379865133e-79,1.7093027397847476e-79,1.815011009336043e-79,1.9272565867564737e-79,2.0464437582419755e-79,2.1730018122266376e-79,2.307386585594137e-79,2.4500821055110733e-79,2.6016023327967238e-79,2.7624930131072156e-79,2.9333336426026563e-79,3.114739555176882e-79,3.3073641387671375e-79,3.511901188727703e-79,3.7290874067421273e-79,3.959705054275928e-79,4.2045847701265804e-79,4.464608562218427e-79,4.7407129844201014e-79,5.0338925098244274e-79,5.3452031126423796e-79,5.675766071611707e-79,6.02677200861961e-79,6.399485177084777e-79,6.795248015547193e-79,7.215485982863518e-79,7.661712692425912e-79,8.13553536389599e-79,8.638660612088779e-79,9.172900593860432e-79,9.740179535135132e-79,1.0342540661583532e-78,1.0982153557914652e-78,1.1661321982286307e-78,1.2382492163984605e-78,1.3148261614253037e-78,1.3961388482010494e-78,1.4824801488153906e-78,1.5741610474227566e-78,1.6715117603450731e-78,1.7748829254453925e-78,1.8846468650554116e-78,2.001198927006339e-78,2.1249589085930367e-78,2.2563725685999626e-78,2.3959132328358076e-78,2.5440834989584824e-78,2.701417046731753e-78,2.8684805602334544e-78,3.0458757689382586e-78,3.234241615027777e-78,3.434256554732622e-78,3.6466410019965957e-78,3.8721599232641096e-78,4.111625592736956e-78,4.365900518023612e-78,4.6359005467204e-78,4.922598165111529e-78,5.227026000870951e-78,5.550280542381572e-78,5.893526088067216e-78,6.25799893996439e-78,6.645011856635186e-78,7.055958781462092e-78,7.492319863354418e-78,7.955666787948788e-78,8.447668438508761e-78,8.97009690690887e-78,9.524833876356524e-78,1.0113877398839849e-77,1.0739349091712976e-77,1.1403501779337647e-77,1.2108727607309294e-77,1.2857566658487467e-77,1.365271610186828e-77,1.4497039907249914e-77,1.5393579160679324e-77,1.6345563017840409e-77,1.7356420334827537e-77,1.8429792018202117e-77,1.9569544138812834e-77,2.0779781856610036e-77,2.206486420661684e-77,2.342941979930226e-77,2.4878363491914013e-77,2.641691409081467e-77,2.805061314858268e-77,2.9785344923577022e-77,3.1627357573867565e-77,3.3583285661851918e-77,3.566017405062748e-77,3.786550327818514e-77,4.020721650081176e-77,4.269374810276212e-77,4.533405407522561e-77,4.813764427402237e-77,5.1114616672209716e-77,5.427569373096264e-77,5.763226101975004e-77,6.119640822488091e-77,6.4980972694146e-77,6.899958567438564e-77,7.326672140852582e-77,7.779774926890791e-77,8.260898911471629e-77,8.771777007285022e-77,9.314249295398659e-77,9.890269652863503e-77,1.0501912790188344e-76,1.1151381724035152e-76,1.1841015712044873e-76,1.2573298678377442e-76,1.3350868160311867e-76,1.4176524808128263e-76,1.5053242472494123e-76,1.5984178915680195e-76,1.697268718519109e-76,1.8022327690774048e-76,1.913688102830568e-76,2.032036159674258e-76,2.157703205718937e-76,2.291141868615221e-76,2.4328327678285084e-76,2.5832862457345644e-76,2.7430442057707437e-76,2.9126820642645806e-76,3.092810822968423e-76,3.2840792697660234e-76,3.4871763154772674e-76,3.7028334751772426e-76,3.931827502968298e-76,4.174983189693114e-76,4.433176333667004e-76,4.7073368951288713e-76,4.998452345772768e-76,5.307571225423538e-76,5.635806918669092e-76,5.984341665049215e-76,6.354430817246873e-76,6.74740736261853e-76,7.164686724348154e-76,7.607771859520497e-76,8.078258672472209e-76,8.57784176292131e-76,9.108320529577869e-76,9.671605651218441e-76,1.0269725968571691e-75,1.0904835791797284e-75,1.157922265988192e-75,1.2295315579898773e-75,1.3055693775807174e-75,1.386309597830174e-75,1.4720430289176557e-75,1.5630784655726797e-75,1.6597437992919654e-75,1.7623871993393007e-75,1.8713783667816297e-75,1.987109866078897e-75,2.1099985390227894e-75,2.2404870061178273e-75,2.3790452608122643e-75,2.5261723623205344e-75,2.682398233135461e-75,2.8482855677031863e-75,3.024431859136469e-75,3.211471551265778e-75,3.4100783237796023e-75,3.620967518684022e-75,3.8448987168225903e-75,4.082678473734754e-75,4.3351632247082254e-75,4.603262369488308e-75,4.887941547753993e-75,5.19022611716036e-75,5.51120484647197e-75,5.85203383709105e-75,6.213940687104481e-75,6.598228912846705e-75,7.006282643906765e-75,7.439571608486513e-75,7.899656427068792e-75,8.388194233461339e-75,8.906944643462699e-75,9.457776092646586e-75,1.0042672566095862e-74,1.0663740744320364e-74,1.1323217591100416e-74,1.2023478410584816e-74,1.2767045402661559e-74,1.3556596747421077e-74,1.439497625142577e-74,1.5285203590534721e-74,1.6230485186174668e-74,1.7234225754229055e-74,1.8300040568148644e-74,1.94317684804441e-74,2.0633485749467974e-74,2.1909520721284755e-74,2.3264469419511286e-74,2.470321209927512e-74,2.6230930824924533e-74,2.7853128134788836e-74,2.9575646860225274e-74,3.140469117033376e-74,3.334684891813383e-74,3.540911536870322e-74,3.75989183947249e-74,3.992414523020476e-74,4.2393170878717485e-74,4.501488827849531e-74,4.779874033302597e-74,5.075475392250407e-74,5.389357601865621e-74,5.722651203301067e-74,6.076556653673813e-74,6.452348649871724e-74,6.8513807197585775e-74,7.275090097310967e-74,7.725002899248763e-74,8.202739621803575e-74,8.710020977422239e-74,9.248674092431424e-74,9.820639087981563e-74,1.0427976067976736e-73,1.1072872539158602e-73,1.1757651290068412e-73,1.2484778757270158e-73,1.3256873908962244e-73,1.4076717677979188e-73,1.4947262978157373e-73,1.5871645340142534e-73,1.6853194204944348e-73,1.7895444915921936e-73,1.90021514523842e-73,2.017729995067545e-73,2.1425123061444568e-73,2.2750115194806542e-73,2.4157048708315377e-73,2.5650991096042406e-73,2.7237323240680395e-73,2.8921758794411264e-73,3.0710364758339093e-73,3.2609583334623553e-73,3.4626255130004815e-73,3.6767643794306266e-73,3.904146218265331e-73,4.14559001356413e-73,4.401965397750421e-73,4.6741957838548014e-73,4.9632616914642835e-73,5.2702042783585135e-73,5.596129090552719e-73,5.942210044253458e-73,6.309693654071729e-73,6.69990352271952e-73,7.114245108363087e-73,7.554210786803352e-73,8.02138522671519e-73,8.517451097309401e-73,9.044195128970955e-73,9.60351454870591e-73,1.0197423913574905e-72,1.0828062366726438e-72,1.1497701342162878e-72,1.220875274599477e-72,1.2963777643644705e-72,1.376549548429476e-72,1.4616793895800802e-72,1.5520739085350794e-72,1.6480586883334314e-72,1.7499794470193055e-72,1.858203282849604e-72,1.9731199965087654e-72,2.0951434950929106e-72,2.224713282921025e-72,2.362296044541695e-72,2.5083873256378803e-72,2.6635133178836854e-72,2.8282327541819663e-72,3.003138921108557e-72,3.1888617958127233e-72,3.386070315068972e-72,3.5954747846540534e-72,3.817829437726887e-72,4.053935151425636e-72,4.304642331468147e-72,4.570853975143424e-72,4.853528923727967e-72,5.153685316041072e-72,5.472404255577334e-72,5.810833704426795e-72,6.170192618005002e-72,6.551775335487584e-72,6.956956241761956e-72,7.38719471768794e-72,7.844040396495897e-72,8.329138745257953e-72,8.844236991531601e-72,9.39119041652529e-72,9.971969037451794e-72,1.058866470313643e-71,1.1243498628441192e-71,1.1938829394636862e-71,1.2677161444542854e-71,1.3461154103031447e-71,1.4293631155384364e-71,1.5177591018006735e-71,1.6116217538123832e-71,1.7112891461364513e-71,1.8171202608533087e-71,1.9294962805428838e-71,2.0488219612280588e-71,2.1755270902255017e-71,2.3100680341537044e-71,2.4529293826746235e-71,2.604625693889126e-71,2.765703347672407e-71,2.936742513625825e-71,3.1183592407318737e-71,3.311207676239892e-71,3.515982421774164e-71,3.733421035150121e-71,3.964306686911157e-71,4.209470981152433e-71,4.469796950793161e-71,4.746222238085162e-71,5.039742471813497e-71,5.351414853352335e-71,5.682361964494398e-71,6.033775810766268e-71,6.406922114794826e-71,6.803144875188053e-71,7.22387120734935e-71,7.670616483663884e-71,8.144989791567118e-71,8.648699729157197e-71,9.183560559224984e-71,9.751498743865963e-71,1.0354559883214228e-70,1.0994916083285421e-70,1.1674873779469874e-70,1.2396882043853142e-70,1.3163541406285865e-70,1.3977613220972441e-70,1.484202961232063e-70,1.575990403586779e-70,1.673454249232744e-70,1.776945543514539e-70,1.8868370414451296e-70,2.0035245502954155e-70,2.127428355212932e-70,2.2589947330052227e-70,2.3986975595400124e-70,2.5470400165513558e-70,2.704556404000341e-70,2.8718140645167883e-70,3.0494154268543757e-70,3.23800017571893e-70,3.438247555785325e-70,3.65087881820102e-70,3.8766598183894995e-70,4.1164037745084717e-70,4.370974196499668e-70,4.641287996279662e-70,4.9283187902733035e-70,5.233100406186778e-70,5.556730606648428e-70,5.900375043131047e-70,6.26527145439631e-70,6.65273412458238e-70,7.064158616994423e-70,7.501026800644788e-70,7.964912187649961e-70,8.457485600707573e-70,8.98052119106696e-70,9.535902828667315e-70,1.0125630887463187e-69,1.0751829450371753e-69,1.1416753959796326e-69,1.2122799341280671e-69,1.2872508629552063e-69,1.3668582128027486e-69,1.451388713476696e-69,1.5411468269909957e-69,1.6364558441790701e-69,1.737659049122776e-69,1.8451209555935101e-69,1.9592286199579777e-69,2.0803930352781167e-69,2.209050611626184e-69,2.345664747946913e-69,2.490727501127879e-69,2.644761358290716e-69,2.8083211186853273e-69,2.981995891966254e-69,3.1664112200483205e-69,3.362231330183559e-69,3.570161527375902e-69,3.7909507347488695e-69,4.0253941910174647e-69,4.2743363147796285e-69,4.538673745943236e-69,4.819358575245021e-69,5.117401773491168e-69,5.433876832872752e-69,5.769923633470631e-69,6.126752548876458e-69,6.505648805716412e-69,6.90797711278233e-69,7.335186576440086e-69,7.78881592002203e-69,8.270499026001954e-69,8.781970820913157e-69,9.325073524209358e-69,9.901763283571066e-69,1.0514117220559816e-68,1.1164340911996338e-68,1.1854776334007352e-68,1.2587910297358617e-68,1.336638340445039e-68,1.419299956024122e-68,1.5070736071354713e-68,1.6002754369744963e-68,1.6992411399542503e-68,1.8043271708100568e-68,1.9159120284782396e-68,2.034397619373888e-68,2.1602107049777148e-68,2.2938044389455984e-68,2.4356599992780847e-68,2.586288321427395e-68,2.746231938585139e-68,2.9160669357788095e-68,3.096405024814895e-68,3.2878957475433556e-68,3.491228815377576e-68,3.707136593497476e-68,3.936396738682905e-68,4.17983500027847e-68,4.438328194377614e-68,4.712807361940093e-68,5.004261122215484e-68,5.313739233552765e-68,5.6423563744208e-68,5.991296158257369e-68,6.361815396609766e-68,6.755248625918867e-68,7.173012914253522e-68,7.616612965307491e-68,8.08764653804137e-68,8.587810201493134e-68,9.118905445480821e-68,9.682845169209955e-68,1.0281660571155196e-67,1.0917508465032672e-67,1.1592679048211844e-67,1.2309604150551733e-67,1.307086599336615e-67,1.3879206490070441e-67,1.473753712200749e-67,1.564894942502151e-67,1.6616726124556362e-67,1.7644352959376656e-67,1.8735531236504362e-67,1.989419116258948e-67,2.1124505999728767e-67,2.2430907096727236e-67,2.3818099849931098e-67,2.5291080651127995e-67,2.6855154883554288e-67,2.8515956030828777e-67,3.027946596763455e-67,3.215203650524398e-67,3.414041226947368e-67,3.625175499348309e-67,3.849366931291084e-67,4.087423015625216e-67,4.340201182914815e-67,4.608611889732138e-67,4.8936218979407823e-67,5.1962577567793645e-67,5.51760950028667e-67,5.858834573387847e-67,6.221162000779746e-67,6.605896813633036e-67,7.014424750054353e-67,7.448217246238943e-67,7.908836736289714e-67,8.397942279794653e-67,8.917295537427964e-67,9.468767116100859e-67,1.0054343306515067e-66,1.0676133237384891e-66,1.1336376472100086e-66,1.2037451075185685e-66,1.278188217761667e-66,1.3572351071836783e-66,1.4411704869237944e-66,1.53029667548902e-66,1.6249346876450267e-66,1.7254253906473876e-66,1.8321307319774857e-66,1.945435043005251e-66,2.0657464232739286e-66,2.1934982103936075e-66,2.3291505408367045e-66,2.473192007257871e-66,2.6261414183074164e-66,2.788549667276362e-66,2.961001716304696e-66,3.1441187032981185e-66,3.338560179143036e-66,3.5450264832774854e-66,3.764261266173796e-66,3.997054167819943e-66,4.244243661845002e-66,4.5067200755341225e-66,4.785428796609939e-66,5.081373678330847e-66,5.395620655169777e-66,5.729301582098525e-66,6.083618311303208e-66,6.459847021016398e-66,6.859342812056936e-66,7.283544588632199e-66,7.733980240985375e-66,8.212272148550811e-66,8.720143023441544e-66,9.259422115315192e-66,9.832051799965568e-66,1.0440094575374646e-65,1.1085740490418169e-65,1.1771315032985394e-65,1.2499287505922946e-65,1.327227992097183e-65,1.4093076442729593e-65,1.4964633416658435e-65,1.5890090017250828e-65,1.6872779554710661e-65,1.7916241480872682e-65,1.902423413760047e-65,2.020074829358765e-65,2.14500215183093e-65,2.277655344490298e-65,2.4185121976951123e-65,2.5680800497534585e-65,2.726897614255127e-65,2.895536920410317e-65,3.074605373384895e-65,3.2647479420527253e-65,3.4666494820450934e-65,3.681037202463788e-65,3.908683285143905e-65,4.15040766589852e-65,4.4070809877641446e-65,4.679627736883528e-65,4.969029572319945e-65,5.27632886179824e-65,5.602632436105086e-65,5.949115575672983e-65,6.317026243706284e-65,6.70768958109519e-65,7.122512679310149e-65,7.562989648464162e-65,8.030706998799765e-65,8.527349354982675e-65,9.054705523784303e-65,9.614674937006171e-65,1.0209274492856134e-64,1.0840645820412715e-64,1.1511062993346413e-64,1.2222940720680093e-64,1.2978843044088214e-64,1.3781492573065862e-64,1.4633780291224132e-64,1.5538775969037156e-64,1.6499739220543924e-64,1.7520131243826456e-64,1.860362728755813e-64,1.975412988851498e-64,2.0975782927735764e-64,2.2272986555955407e-64,2.3650413042071586e-64,2.51130236017233e-64,2.6666086266604605e-64,2.8315194858862117e-64,3.0066289138928023e-64,3.192567619935407e-64,3.390005318169816e-64,3.599653139829861e-64,3.822266194580022e-64,4.0586462902700054e-64,4.309644820886919e-64,4.5761658331062225e-64,4.859169282488359e-64,5.1596744910468735e-64,5.4787638186432303e-64,5.8175865614312956e-64,6.177363091393166e-64,6.559389251875097e-64,6.965041024957962e-64,7.395779487469761e-64,7.853156073493281e-64,8.338818162322651e-64,8.854515011994258e-64,9.40210405976689e-64,9.983557612239593e-64,1.0600969949207129e-63,1.1256564866838651e-63,1.1952703687346988e-63,1.2691893764002427e-63,1.347679751211818e-63,1.4310241998539946e-63,1.5195229124177166e-63,1.613494643625219e-63,1.713277860920819e-63,1.8192319635634508e-63,1.9317385771109817e-63,2.0512029279594441e-63,2.178055302887805e-63,2.3127525988649277e-63,2.455779968701742e-63,2.607652568474727e-63,2.7689174130154705e-63,2.9401553461491394e-63,3.121983132777829e-63,3.3150556803452866e-63,3.5200683976826626e-63,3.737759699732582e-63,3.968913667172579e-63,4.2143628705175273e-63,4.4749913688722067e-63,4.7517378941366745e-63,5.045599232130995e-63,5.357633812819188e-63,5.68896552256314e-63,6.040787752136623e-63,6.414367695081917e-63,6.811050911887753e-63,7.232266176430121e-63,7.679530622131202e-63,8.154455206370681e-63,8.658750512834383e-63,9.194232912694913e-63,9.762831106818757e-63,1.0366593072562363e-62,1.1007693440178662e-62,1.1688441325400542e-62,1.241128864641726e-62,1.3178838955193822e-62,1.3993856814946496e-62,1.4859277757548858e-62,1.5778218856730827e-62,1.675398995515934e-62,1.7790105585830305e-62,1.8890297630716265e-62,2.005852876226198e-62,2.129900671613844e-62,2.2616199446671323e-62,2.4014851219519737e-62,2.549999969957596e-62,2.707699409563021e-62,2.875151442715531e-62,3.0529591982601354e-62,3.2417631042899296e-62,3.4422431948401137e-62,3.655121559235115e-62,3.8811649429105088e-62,4.121187509076809e-62,4.376053771173706e-62,4.646681706674731e-62,4.934046063459242e-62,5.239181870660132e-62,5.563188166631871e-62,5.907231957468453e-62,6.272552420326155e-62,6.660465366692793e-62,7.072367981678417e-62,7.509743856397792e-62,7.974168331569025e-62,8.467314171578065e-62,8.990957589441769e-62,9.546984644373338e-62,1.0137398034991945e-61,1.0764324312642826e-61,1.1430021540813012e-61,1.2136887428224816e-61,1.2887467964904984e-61,1.3684466592333665e-61,1.453075394070021e-61,1.5429378168343183e-61,1.6383575940607615e-61,1.7396784087668775e-61,1.8472651983309403e-61,1.9615054689237202e-61,2.082810691228249e-61,2.2116177824755265e-61,2.348390680133084e-61,2.4936220129153147e-61,2.6478348751339873e-61,2.8115847107793875e-61,2.9854613141192943e-61,3.170090954020082e-61,3.366138629642411e-61,3.574310465635753e-61,3.7953562554582285e-61,4.030072161983773e-61,4.279303585121725e-61,4.543948206778879e-61,4.824959224130783e-61,5.123348782848102e-61,5.4401916226430054e-61,5.776628948268228e-61,6.133872539908555e-61,6.513209117771641e-61,6.916004976597912e-61,7.343710906781103e-61,7.797867419827215e-61,8.280110296969132e-61,8.792176480924757e-61,9.335910332018712e-61,9.913270271199548e-61,1.0526335833883177e-60,1.117731516002391e-60,1.186855294739467e-60,1.260253889672101e-60,1.3381916679087218e-60,1.4209493457911116e-60,1.508824999978935e-60,1.6021351410623058e-60,1.7012158535698774e-60,1.806424006478376e-60,1.9181385385833173e-60,2.0367618233613124e-60,2.1627211182389295e-60,2.2964701034888272e-60,2.438490516295734e-60,2.58929388587749e-60,2.7494233759117285e-60,2.919455740902912e-60,3.1000034035371536e-60,3.291716660506663e-60,3.4952860247489015e-60,3.711444712536158e-60,3.940971284374982e-60,4.1846924492255614e-60,4.443486042142702e-60,4.7182841860628474e-60,5.010076649124573e-60,5.319914409616904e-60,5.648913441393113e-60,5.998258733386219e-60,6.369208557703098e-60,6.763099001669087e-60,7.181348780149267e-60,7.625464345475912e-60,8.097045313389688e-60,8.597790224536695e-60,9.129502662273566e-60,9.694097748814184e-60,1.0293609043119664e-59,1.0930195865371393e-59,1.1606151074412147e-59,1.2323909326166963e-59,1.3086055842787087e-59,1.3895335724106908e-59,1.475466383494502e-59,1.566713530386663e-59,1.6636036671220148e-59,1.7664857726598572e-59,1.875730407836872e-59,1.991731050053213e-59,2.114905510499712e-59,2.24569743903051e-59,2.3845779221014616e-59,2.5320471795293836e-59,2.68863636618452e-59,2.8549094851042495e-59,3.0314654189196684e-59,3.2189400869115432e-59,3.418008735464441e-59,3.6293883701701446e-59,3.8538403383385198e-59,4.092173071218856e-59,4.3452449958082e-59,4.613967626733811e-59,4.8993088493478625e-59,5.202296405857092e-59,5.524021597045476e-59,5.865643212922132e-59,6.228391706452122e-59,6.613573625402071e-59,7.022576318265817e-59,7.45687293121647e-59,7.91802771408545e-59,8.40770165447882e-59,8.927658460322613e-59,9.479770912388612e-59,1.0066027609676477e-58,1.068854013195118e-58,1.1349550645232735e-58,1.2051439977630006e-58,1.2796736194610853e-58,1.3588123704588807e-58,1.4428452927627378e-58,1.532075056208497e-58,1.6268230486179505e-58,1.7274305333735312e-58,1.8342598785812636e-58,1.9476958622482716e-58,2.0681470581765074e-58,2.1960473075642075e-58,2.3318572816151627e-58,2.4760661407849362e-58,2.629193296639078e-58,2.7917902826701084e-58,2.9644427408113076e-58,3.1477725308018885e-58,3.342439970002315e-58,3.549146211725488e-58,3.768635770651301e-58,4.0016992044201074e-58,4.249175961063885e-58,4.51195740253024e-58,4.790990015191173e-58,5.087278818897865e-58,5.401890986861963e-58,5.735959689400932e-58,6.090688175391024e-58,6.46735410613083e-58,6.867314157221983e-58,7.292008905044398e-58,7.74296801542547e-58,8.221815753190593e-58,8.730276832442597e-58,9.2701826286373e-58,9.84347777483307e-58,1.0452227165871474e-57,1.1098623395717214e-57,1.1784994654743297e-57,1.2513813115410516e-57,1.3287703836538673e-57,1.4109454218245483e-57,1.4982024041606618e-57,1.5908556129195492e-57,1.6892387664906177e-57,1.7937062213822977e-57,1.904634248543591e-57,2.0224223886170853e-57,2.1474948910044806e-57,2.2803022419287052e-57,2.4213227869952732e-57,2.5710644540978617e-57,2.730066582873339e-57,2.898901867295713e-57,3.0781784184053415e-57,3.268541954604171e-57,3.470678127404389e-57,3.6853149910085803e-57,3.9132256246159495e-57,4.1552309168990664e-57,4.4122025226818764e-57,4.6850660024662095e-57,4.9748041561163204e-57,5.282460562708244e-57,5.609143339293023e-57,5.956029132114317e-57,6.324367354653054e-57,6.715484687765893e-57,7.130789858125211e-57,7.571778712171999e-57,8.040039603855723e-57,8.537259115569897e-57,9.065228132884853e-57,9.625848294960797e-57,1.022113884387329e-56,1.0853243897519572e-56,1.1524440172305528e-56,1.2237145183423254e-56,1.2993925952259173e-56,1.3797508252293766e-56,1.465078642679278e-56,1.5556833813657029e-56,1.6518913814971397e-56,1.7540491651129028e-56,1.862524684186446e-56,1.9777086459150815e-56,2.100015919969206e-56,2.229887032770483e-56,2.3677897541799885e-56,2.514220782312064e-56,2.6697075325419536e-56,2.834810037150749e-56,3.010122962450094e-56,3.196277750651796e-56,3.3939448941967356e-56,3.603836350734839e-56,3.8267081074548976e-56,4.063362903999604e-56,4.314653123773555e-56,4.581483864058766e-56,4.864816195994198e-56,5.165670626162854e-56,5.485130772252908e-56,5.824347266032373e-56,6.184541897695828e-56,6.567012016508951e-56,6.973135203601686e-56,7.4043742337415195e-56,7.862282343955853e-56,8.348508827982864e-56,8.864804976698528e-56,9.413030385916862e-56,9.995159654284115e-56,1.0613289495389154e-55,1.126964628970741e-55,1.1966594103580604e-55,1.2706643204111232e-55,1.3492459100645438e-55,1.432687214540591e-55,1.5212887727855763e-55,1.6153697099513522e-55,1.7152688868204423e-55,1.8213461203149605e-55,1.9339834794856082e-55,2.0535866616480386e-55,2.1805864536239017e-55,2.3154402833490346e-55,2.458633867437603e-55,2.6106829606367207e-55,2.7721352134721553e-55,2.9435721447762347e-55,3.1256112362030416e-55,3.318908156273922e-55,3.5241591219651e-55,3.742103406342336e-55,3.973526001274975e-55,4.219260444820506e-55,4.480191823462349e-55,4.7572599600147465e-55,5.0514627986776474e-55,5.363859999432268e-55,5.695576754725599e-55,6.047807842189129e-55,6.421821927989445e-55,6.81896613631138e-55,7.240670901430581e-55,7.688455119852318e-55,8.163931621074643e-55,8.66881297667791e-55,9.204917668667014e-55,9.774176639280791e-55,1.0378640245860618e-54,1.1020485645829683e-54,1.170202463837967e-54,1.2425711991110125e-54,1.319415428161319e-54,1.401011928584514e-54,1.4876545947104936e-54,1.5796554961521667e-54,1.6773460018179253e-54,1.7810779734365315e-54,1.891225032892868e-54,2.0081839079394105e-54,2.132375861130697e-54,2.2642482071268574e-54,2.404275923832059e-54,2.552963363170158e-54,2.7108460676596844e-54,2.8784926993314535e-54,3.0565070879357554e-54,3.245530405816615e-54,3.4462434772870774e-54,3.6593692308223063e-54,3.8856753029041856e-54,4.1259768028947803e-54,4.3811392488975975e-54,4.6520816851816166e-54,4.939779992395393e-54,5.245270402494418e-54,5.56965323104255e-54,5.914096840328773e-54,6.279841847575801e-54,6.668205593395812e-54,7.080586886588442e-54,7.51847104237182e-54,7.983435232191657e-54,8.477154164378064e-54,9.00140611611192e-54,9.558079338423881e-54,1.0149178857299054e-53,1.07768336953806e-53,1.1443304540284432e-53,1.2150991887146278e-53,1.2902444684726259e-53,1.3700369516213676e-53,1.4547640347801413e-53,1.5447308880137788e-53,1.6402615539945378e-53,1.741700115139159e-53,1.8494119329250695e-53,1.9637849638497405e-53,2.0852311567725938e-53,2.214187936672587e-53,2.3511197801660015e-53,2.496519888458385e-53,2.6509119637572067e-53,2.814852095542731e-53,2.988930763491353e-53,3.1737749642659286e-53,3.3700504698326644e-53,3.5784642254388845e-53,3.7997668958892285e-53,4.0347555692902492e-53,4.284276628003251e-53,4.549228797144701e-53,4.830566381614756e-53,5.129302703313663e-53,5.44651375092509e-53,5.783342055412642e-53,6.1410008051891975e-53,6.520778215779091e-53,6.924042169714246e-53,7.352245143374161e-53,7.806929438515975e-53,8.289732737338578e-53,8.802394001087182e-53,9.346759733444697e-53,9.924790631270806e-53,1.0538568646640199e-52,1.1190304485619875e-52,1.188234557079138e-52,1.2617184496198494e-52,1.3397468005175103e-52,1.4226006523386686e-52,1.5105784281422702e-52,1.603997006340175e-52,1.7031928620298643e-52,1.808523278910825e-52,1.9203676361491567e-52,2.039128774825622e-52,2.1652344488890795e-52,2.299138865840869e-52,2.441324322699595e-52,2.5923029431390758e-52,2.752618522055465e-52,2.922848484208319e-52,3.103605963989386e-52,3.295542013810328e-52,3.499347949063992e-52,3.715757838104539e-52,3.945551146215165e-52,4.18955554308705e-52,4.448649883920166e-52,4.723767374884928e-52,5.015898934344638e-52,5.326096761945692e-52,5.6554781284313844e-52,6.005229399828229e-52,6.376610310499645e-52,6.77095850045862e-52,7.189694333279697e-52,7.634326011966095e-52,8.10645501119604e-52,8.60778184551497e-52,9.140112194250635e-52,9.70536340520981e-52,1.030557140058247e-51,1.0942898009928656e-51,1.1619638756656495e-51,1.2338231126040987e-51,1.3101263344559685e-51,1.391148370216797e-51,1.4771810451092746e-51,1.5685342316794768e-51,1.6655369658959378e-51,1.7685386322717774e-51,1.8779102222778916e-51,1.9940456705804447e-51,2.1173632739149525e-51,2.2483071977076455e-51,2.3873490758709757e-51,2.5349897095348794e-51,2.691760870832508e-51,2.8582272182377046e-51,3.034988330351975e-51,3.2226808654673655e-51,3.421980854682623e-51,3.6336061368322995e-51,3.8583189439994374e-51,4.096928646923463e-51,4.3502946701920777e-51,4.6193295877177184e-51,4.905002409646402e-51,5.208342072539559e-51,5.530441145398257e-51,5.872459764878709e-51,6.235629813873721e-51,6.621259358509112e-51,7.030737359536866e-51,7.465538675095547e-51,7.927229372854565e-51,8.41747237067845e-51,8.938033426125264e-51,9.49078749635294e-51,1.0077725491341986e-50,1.0700961444756038e-50,1.1362740128269258e-50,1.2065445136787504e-50,1.28116074736808e-50,1.3603914666954117e-50,1.444522044918708e-50,1.533855503610926e-50,1.628713604083438e-50,1.7294380063060877e-50,1.8363914994982187e-50,1.9499593088232998e-50,2.0705504828929725e-50,2.1985993670788004e-50,2.334567167937645e-50,2.478943614385648e-50,2.632248721604361e-50,2.795034664031689e-50,2.967887764184026e-50,3.15143060447336e-50,3.346324269624697e-50,3.5532707277717633e-50,3.77301535880618e-50,4.0063496390870896e-50,4.254113992181548e-50,4.51720081590255e-50,4.796557696547865e-50,5.093190821917451e-50,5.408168605400811e-50,5.742625534189538e-50,6.097766255473851e-50,6.47486991534138e-50,6.875294766006905e-50,7.300483057965864e-50,7.751966234692829e-50,8.231370448596355e-50,8.740422418094963e-50,9.280955646913468e-50,9.854917027997625e-50,1.0464373855833992e-49,1.1111521272433424e-49,1.1798690173794657e-49,1.2528355605326564e-49,1.3303145676469514e-49,1.4125851026620347e-49,1.499943487646047e-49,1.5927043700885592e-49,1.6912018561980414e-49,1.795790714285958e-49,1.9068476525714513e-49,2.0247726760091727e-49,2.1499905270275833e-49,2.282952215366294e-49,2.4241366425234504e-49,2.57405232666339e-49,2.7332392341975923e-49,2.9022707246362722e-49,3.0817556157149552e-49,3.272340376234463e-49,3.4747114545129814e-49,3.689597750835707e-49,3.917773242808715e-49,4.160059773071885e-49,4.4173300094120915e-49,4.69051058793896e-49,4.98058545064328e-49,5.288599389359695e-49,5.615661808899132e-49,5.962950722903201e-49,6.3317169968150545e-49,6.7232888532471656e-49,7.139076655974124e-49,7.580577989782383e-49,8.049383054471883e-49,8.547180392438413e-49,9.075762970467526e-49,9.637034637642565e-49,1.0233016982630427e-48,1.0865856615040636e-48,1.1537832897084791e-48,1.2251366153385798e-48,1.3009026388504318e-48,1.3813542543582325e-48,1.4667812325446438e-48,1.5574912643568762e-48,1.6538110692482892e-48,1.7560875719566813e-48,1.864689152057965e-48,1.9800069707961148e-48,2.1024563799679318e-48,2.2324784179373315e-48,2.3705413981678227e-48,2.5171425959940107e-48,2.6728100397084523e-48,2.838104412414225e-48,3.013621071493578e-48,3.1999921929667845e-48,3.3978890484640466e-48,3.608024423011954e-48,3.831155182343403e-48,4.068084998976704e-48,4.319667246884155e-48,4.5868080751748453e-48,4.8704696718629195e-48,5.1716737294773886e-48,5.491505124994796e-48,5.831115827349589e-48,6.191729046597145e-48,6.574643639671921e-48,6.981238788611817e-48,7.412978968096727e-48,7.871419220194102e-48,8.35821075531111e-48,8.87510689952512e-48,9.423969409714339e-48,1.0006775179235856e-47,1.0625623358300429e-47,1.1282742914694056e-47,1.1980500662075268e-47,1.2721409784765616e-47,1.3508138889739634e-47,1.434352161841478e-47,1.523056685286234e-47,1.6172469553202328e-47,1.717262226521127e-47,1.8234627339597407e-47,1.9362309906949282e-47,2.0559731655092773e-47,2.183120545848265e-47,2.3181310912315933e-47,2.461491082731991e-47,2.613716874462936e-47,2.775356753382975e-47,2.946992914116305e-47,3.1292435559016624e-47,3.3227651092226165e-47,3.528254600139583e-47,3.7464521608386387e-47,3.978143695439956e-47,4.224163710668161e-47,4.485398321578772e-47,4.762788443168401e-47,5.057333179362859e-47,5.37009342159012e-47,5.7021956699001965e-47,6.05483609039358e-47,6.42928482357284e-47,6.826890559136128e-47,7.249085393687925e-47,7.697389988866202e-47,8.173419048462267e-47,8.678887134261594e-47,9.215614841554294e-47,9.785535356556132e-47,1.0390701419359513e-46,1.1033292717495074e-46,1.1715623736730546e-46,1.2440152097388195e-46,1.3209487406202915e-46,1.4026400655604938e-46,1.4893834204283315e-46,1.5814912374974912e-46,1.6792952707651433e-46,1.783147790863868e-46,1.893422853870069e-46,2.010517648579569e-46,2.1348539271024132e-46,2.2668795239298086e-46,2.4070699689448682e-46,2.5559302001863844e-46,2.71399638253488e-46,2.881837838871887e-46,3.0600591006671817e-46,3.249302085380911e-46,3.450248408522223e-46,3.663621838692308e-46,3.8901909044549174e-46,4.1307716624229324e-46,4.38623063653143e-46,4.6574879390845845e-46,4.945520584816294e-46,5.2513660099029445e-46,5.576125808601548e-46,5.9209697009724315e-46,6.28713974597819e-46,6.675954815132284e-46,7.088815342811038e-46,7.527208370339782e-46,7.992712902018497e-46,8.487005592381286e-46,9.011866785171505e-46,9.569186925784653e-46,1.0160973370276612e-45,1.0789357615459684e-45,1.1456602976128773e-45,1.2165112737071177e-45,1.2917438809218091e-45,1.3716290921120249e-45,1.4564546378849588e-45,1.5465260429481516e-45,1.6421677265487107e-45,1.7437241709667146e-45,1.8515611622716434e-45,1.9660671078110602e-45,2.0876544351762524e-45,2.2167610776843892e-45,2.3538520517269676e-45,2.4994211316660534e-45,2.6539926283113058e-45,2.8181232773829154e-45,2.992404244762566e-45,3.177463255755384e-45,3.373966856031029e-45,3.5826228123886365e-45,3.8041826619916285e-45,4.0394444192546027e-45,4.2892554501324997e-45,4.554515524163726e-45,4.836180055260474e-45,5.135263542919645e-45,5.452843226247275e-45,5.79006296395956e-45,6.148137354333752e-45,6.528356109948771e-45,6.932088702973349e-45,7.360789297731569e-45,7.816001988312575e-45,8.299366360090422e-45,8.812623395182915e-45,9.357621743122941e-45,9.936324379325297e-45,1.0550815675332403e-44,1.1203308906305942e-44,1.1896154222802447e-44,1.2631847115546622e-44,1.3413037403692673e-44,1.424253877894332e-44,1.5123338939907736e-44,1.605861035319587e-44,1.7051721680010114e-44,1.8106249909392796e-44,1.9225993241827112e-44,2.0414984769597306e-44,2.1677507003185061e-44,2.3018107296016367e-44,2.444161422312417e-44,2.595315497271238e-44,2.755817381326459e-44,2.9262451702716094e-44,3.1072127110311106e-44,3.299371812614397e-44,3.5034145938023543e-44,3.720075976020836e-44,3.950136330381486e-44,4.1944242884227963e-44,4.45381972667555e-44,4.729256935803115e-44,5.021727985729686e-44,5.332286298878851e-44,5.662050444391006e-44,6.012208166986179e-44,6.384020664984227e-44,6.77882713288958e-44,7.198049584902595e-44,7.643197976731932e-44,8.115875644153234e-44,8.617785077905725e-44,9.150734055724208e-44,9.716642153593708e-44,1.0317547659680308e-43,1.0955614915838474e-43,1.1633142113138517e-43,1.235256956949381e-43,1.3116488519198189e-43,1.3927650446036543e-43,1.4788976993580492e-43,1.5703570488365497e-43,1.667472511385387e-43,1.7705938775426438e-43,1.8800925699139675e-43,1.996362980962937e-43,2.1198238935338914e-43,2.2509199892244514e-43,2.3901234500399176e-43,2.5379356590986292e-43,2.6948890065142123e-43,2.8615488069585563e-43,3.0385153358124535e-43,3.226425991238147e-43,3.4259575899601252e-43,3.637828805024355e-43,3.862802754315223e-43,4.101689749153867e-43,4.355350212878359e-43,4.624697779916909e-43,4.9107025865167614e-43,5.214394764982031e-43,5.536868154004386e-43,5.879284238452473e-43,6.242876332808697e-43,6.628954023321876e-43,7.0389078848763815e-43,7.474214489565458e-43,7.936441725009238e-43,8.427254441574167e-43,8.948420448831288e-43,9.501816882854732e-43,1.0089436967291378e-42,1.0713397192554663e-42,1.137594493900201e-42,1.2079466571550525e-42,1.2826496034887209e-42,1.3619723980233834e-42,1.446200745653488e-42,1.5356380200979643e-42,1.6306063565918346e-42,1.731447812153049e-42,1.8385255976038135e-42,1.9522253857835143e-42,2.07295670066532e-42,2.201154392380096e-42,2.337280203459668e-42,2.4818244319415897e-42,2.635307697324862e-42,2.798282815737473e-42,2.97133679107012e-42,3.1550929292471125e-42,3.350213083249931e-42,3.5574000369800497e-42,3.777400036546089e-42,4.011005478093894e-42,4.2590577618593604e-42,4.522450322724185e-42,4.802131848190571e-42,5.0991096953643483e-42,5.4144535192542446e-42,5.749299125456516e-42,6.104852561099707e-42,6.482394458786544e-42,6.883284649177096e-42,7.30896705882744e-42,7.760974910925872e-42,8.240936247656959e-42,8.750579794084587e-42,9.291741184675891e-42,9.866369574889717e-42,1.0476534661646954e-41,1.1124434137965934e-41,1.1812401608614125e-41,1.2542914995288264e-41,1.3318605461593962e-41,1.414226688997196e-41,1.5016865944707076e-41,1.5945552757260052e-41,1.6931672272414584e-41,1.797877629610112e-41,1.9090636288293041e-41,2.0271256947055195e-41,2.1524890632667407e-41,2.2856052683777615e-41,2.426953768075376e-41,2.5770436714804053e-41,2.7364155725074963e-41,2.9056434969765595e-41,3.0853369701392163e-41,3.276143212067504e-41,3.4787494688114525e-41,3.6938854877222133e-41,3.9223261458569017e-41,4.16489424093089e-41,4.422463454871542e-41,4.695961500646218e-41,4.986373463699251e-41,5.294745350033749e-41,5.622187853716541e-41,5.969880357376558e-41,6.339075180106539e-41,6.731102088066104e-41,7.147373084035012e-41,7.589387493165472e-41,8.058737363252145e-41,8.557113198971587e-41,9.086310050742835e-41,9.64823398014081e-41,1.0244908925151063e-40,1.087848398998991e-40,1.1551241185750398e-40,1.226560364975101e-40,1.3024144373192728e-40,1.3829595468561487e-40,1.468485801015229e-40,1.55930124831599e-40,1.655732987897391e-40,1.7581283476636021e-40,1.866856135290036e-40,1.982307966595021e-40,2.1048996760618265e-40,2.23507281459175e-40,2.373296239882374e-40,2.5200678051594265e-40,2.6759161523451014e-40,2.841402616120607e-40,3.0171232457420502e-40,3.2037109518909456e-40,3.4018377862921894e-40,3.6122173623106784e-40,3.835607425244284e-40,4.0728125815712044e-40,4.32468719698249e-40,4.59213847363652e-40,4.876129717720745e-40,5.1776838090883996e-40,5.4978868854676135e-40,5.837892254513433e-40,6.1989245477919125e-40,6.582284131658635e-40,6.989351790919731e-40,7.421593702142792e-40,7.880566714533272e-40,8.367923957394742e-40,8.885420794370748e-40,9.434921145915444e-40,1.0018404202763223e-39,1.0637971554578788e-39,1.1295854759465194e-39,1.1994423381590141e-39,1.2736193525884861e-39,1.3523836900552109e-39,1.4360190440025957e-39,1.524826652304526e-39,1.6191263822640903e-39,1.719257882711776e-39,1.825581807353011e-39,1.938481113770735e-39,2.058362442762448e-39,2.1856575829792418e-39,2.3208250261423514e-39,2.4643516184391277e-39,2.6167543140458775e-39,2.778582037093645e-39,2.950417658783775e-39,3.132880096773486e-39,3.3266265443941835e-39,3.5323548377307306e-39,3.7508059690877684e-39,3.9827667558965866e-39,4.229072674674541e-39,4.490610870244749e-39,4.768323351055318e-39,5.063210382105515e-39,5.376334087701358e-39,5.7088222770154766e-39,6.061872506230687e-39,6.43675639189913e-39,6.834824191051401e-39,7.25750966455293e-39,7.706335241225492e-39,8.182917501331562e-39,8.68897299917491e-39,9.22632444578676e-39,9.796907273967188e-39,1.0402776609329036e-38,1.1046114672450384e-38,1.1729238638797591e-38,1.2454608984730532e-38,1.3224838349646708e-38,1.4042700946188738e-38,1.4911142552404878e-38,1.583329112185367e-38,1.681246804987042e-38,1.7852200136570568e-38,1.8956232289679925e-38,2.012854101294757e-38,2.1373348728717636e-38,2.2695138986254835e-38,2.4098672610594453e-38,2.558900485008407e-38,2.7171503584382437e-38,2.885186865849113e-38,3.06361524124588e-38,3.2530781480706466e-38,3.4542579939480273e-38,3.6678793885817e-38,3.894711753653996e-38,4.13557209412926e-38,4.3913279409431973e-38,4.662900475676236e-38,4.951267848465751e-38,5.257468701108343e-38,5.582605908040011e-38,5.92785054867053e-38,6.294446125377862e-38,6.683713042355566e-38,7.097053361446029e-38,7.535955852087519e-38,8.002001353564599e-38,8.496868468876873e-38,9.022339610731504e-38,9.580307421439302e-38,1.017278158983475e-37,1.0801896089774137e-37,1.146991686628487e-37,1.21792499970474e-37,1.2932450358606892e-37,1.3732230828530465e-37,1.4581472056650016e-37,1.548323284058999e-37,1.6440761142946228e-37,1.7457505789799063e-37,1.853712889269877e-37,1.9683519038860795e-37,2.09008052970809e-37,2.2193372089819875e-37,2.3565874985016963e-37,2.502325746451969e-37,2.657076872951928e-37,2.8213982607125807e-37,2.995881762618463e-37,3.181155833463655e-37,3.377887793520537e-37,3.586786232094708e-37,3.808603559722048e-37,4.0441387182018274e-37,4.294240058225683e-37,4.559808394967515e-37,4.841800252640536e-37,5.1412313097066675e-37,5.4591800571476686e-37,5.796791682975189e-37,6.155282196969108e-37,6.5359428105029275e-37,6.940144587229542e-37,7.369343381378909e-37,7.825085081455373e-37,8.309011178219644e-37,8.822864677010956e-37,9.368496375705685e-37,9.947871530921396e-37,1.0563076936480345e-36,1.12163284396245e-36,1.190997892205513e-36,1.2646526774544617e-36,1.3428624895641592e-36,1.425909024688211e-36,1.5140913998924914e-36,1.6077272305150347e-36,1.7071537741533152e-36,1.8127291453988323e-36,1.924833605694403e-36,2.0438709329602325e-36,2.1702698759214297e-36,2.3044856983753556e-36,2.4470018189612877e-36,2.5983315523377428e-36,2.759019958039791e-36,2.929645803674762e-36,3.1108236495276694e-36,3.3032060620850997e-36,3.507485964449512e-36,3.724399132109973e-36,3.954726843059156e-36,4.199298691800524e-36,4.4589955773827424e-36,4.734752876222316e-36,5.027563811142779e-36,5.338483028765717e-36,5.668630398137503e-36,6.019195044274118e-36,6.391439631152994e-36,6.786704909576309e-36,7.206414546288725e-36,7.652080251740985e-36,8.125307224969287e-36,8.62779993520288e-36,9.161368261022184e-36,9.727934009180273e-36,1.032953783656862e-35,1.0968346600255389e-35,1.1646661162073643e-35,1.2366924675866655e-35,1.3131731387240504e-35,1.394383597752065e-35,1.4806163485564533e-35,1.572181984316781e-35,1.6694103062013046e-35,1.772651511244866e-35,1.8822774536889648e-35,1.9986829843265536e-35,2.1222873726757966e-35,2.253535817105468e-35,2.3929010483506604e-35,2.5408850321945537e-35,2.698020777449349e-35,2.864874255747481e-35,3.0420464400588795e-35,3.2301754692757144e-35,3.429938946661341e-35,3.642056380442452e-35,3.867291775334174e-35,4.106456384332586e-35,4.3604116306866854e-35,4.630072210572772e-35,4.916409387648159e-35,5.220454491349101e-35,5.543302631533616e-35,5.886116642849336e-35,6.250131273031928e-35,6.636657630220031e-35,7.047087905306045e-35,7.482900386329492e-35,7.945664782976526e-35,8.437047880361073e-35,8.958819542452194e-35,9.512859086772008e-35,1.010116205332249e-34,1.0725847392122328e-34,1.1389165095243534e-34,1.2093504300833189e-34,1.284140189831391e-34,1.3635551665753443e-34,1.4478813972315706e-34,1.537422608074148e-34,1.6325013086962877e-34,1.7334599536255302e-34,1.8406621757768525e-34,1.9544940961857534e-34,2.0753657147394315e-34,2.2037123869145862e-34,2.3399963918409643e-34,2.4847085973388228e-34,2.638370227926892e-34,2.8015347421690736e-34,2.974789826122132e-34,3.1587595100634155e-34,3.3541064161238074e-34,3.5615341449204513e-34,3.7817898097857662e-34,4.01566672772104e-34,4.264007276766005e-34,4.527705930076435e-34,4.807712477638576e-34,5.105035447222855e-34,5.420745736900334e-34,5.7559804722039215e-34,6.111947101827618e-34,6.4899277466165055e-34,6.891283817510261e-34,7.317460919073668e-34,7.769994056276799e-34,8.250513163276126e-34,8.760748974113202e-34,9.302539256473388e-34,9.87783543095833e-34,1.0488709599714752e-33,1.1137362009733003e-33,1.1826128977697655e-33,1.2557491304935592e-33,1.3334083212766586e-33,1.4158701830444597e-33,1.5034317269859326e-33,1.596408332328654e-33,1.6951348822720435e-33,1.7999669701698406e-33,1.9112821803064037e-33,2.0294814478802152e-33,2.1549905030923372e-33,2.2882614045419267e-33,2.4297741674511256e-33,2.580038492584099e-33,2.7395956020877925e-33,2.9090201888661297e-33,3.088922486509171e-33,3.279950467233152e-33,3.482792175746907e-33,3.698178207452068e-33,3.926884339901955e-33,4.169734326997506e-33,4.4276028659849584e-33,4.7014187479408255e-33,4.99216820309201e-33,5.300898453020961e-33,5.628721482548515e-33,5.976818044882075e-33,6.346441914453102e-33,6.738924402762417e-33,7.155679153499387e-33,7.59820723420447e-33,8.068102542814947e-33,8.567057548568337e-33,9.096869387938327e-33,9.65944633756295e-33,1.0256814687476326e-32,1.0891126039401013e-32,1.1564665056389376e-32,1.227985769172412e-32,1.3039279926717898e-32,1.384566704888574e-32,1.470192350390401e-32,1.5611133356846104e-32,1.6576571400369586e-32,1.7601714949865815e-32,1.8690256368058237e-32,1.9846116364156293e-32,2.107345811546759e-32,2.2376702262334665e-32,2.376054283039801e-32,2.522996413754288e-32,2.6790258746417966e-32,2.844704652718986e-32,3.0206294899197457e-32,3.2074340324405843e-32,3.40579111300779e-32,3.616415174287104e-32,3.84006484216342e-32,4.077545658160346e-32,4.329712980840068e-32,4.597475066634198e-32,4.881796341202756e-32,5.183700873102998e-32,5.504276062279997e-32,5.844676556665006e-32,6.206128410986544e-32,6.589933502775687e-32,6.997474221469216e-32,7.430218447500504e-32,7.889724839312816e-32,8.377648447336087e-32,8.895746675148274e-32,9.445885609293587e-32,1.0030046740553254e-31,1.0650334100881253e-31,1.1308981841707644e-31,1.2008362280906192e-31,1.2750994447411403e-31,1.353955315425821e-31,1.4376878632724744e-31,1.5265986762280589e-31,1.6210079933181889e-31,1.7212558580844165e-31,1.8277033433532293e-31,1.9407338517483175e-31,2.060754496630552e-31,2.1881975684390906e-31,2.323522091715276e-31,2.4672154784177502e-31,2.6197952834829166e-31,2.7818110689548915e-31,2.9538463833983492e-31,3.136520863724001e-31,3.330492466997481e-31,3.5364598402694325e-31,3.755164836962768e-31,3.987395188881172e-31,4.233987343461623e-31,4.495829476491712e-31,4.7738646911416405e-31,5.06909441483363e-31,5.382582006184288e-31,5.715456585010196e-31,6.068917099192177e-31,6.444236643047127e-31,6.84276704275932e-31,7.265943725389463e-31,7.715290888996609e-31,8.192426992495403e-31,8.69907058502312e-31,9.23704649581081e-31,9.808292406854033e-31,1.0414865832058086e-30,1.1058951527991864e-30,1.1742869362946537e-30,1.2469082672638314e-30,1.3240207132652123e-30,1.4059020179584716e-30,1.4928471014817189e-30,1.585169122694984e-30,1.683200607116155e-30,1.787294644611435e-30,1.8978261611548207e-30,2.0151932692366613e-30,2.1398187017854045e-30,2.2721513347675053e-30,2.412667803949111e-30,2.5618742216429722e-30,2.72030799962435e-30,2.8885397847808216e-30,3.0671755144688835e-30,3.256858598979424e-30,3.4582722389731954e-30,3.672141886233678e-30,3.899237856599682e-30,4.1403781044892754e-30,4.396431169008938e-30,4.668319302257844e-30,4.957021791096498e-30,5.263578484342651e-30,5.589093538099226e-30,5.934739392704945e-30,6.301760995630534e-30,6.69148028553107e-30,7.105300953606139e-30,7.544713499414998e-30,8.011300599359559e-30,8.506742807169048e-30,9.032824606919167e-30,9.591440840388744e-30,1.0184603531901803e-29,1.0814449135237656e-29,1.1483246228712575e-29,1.2193403686145487e-29,1.2947479353142394e-29,1.374818925994597e-29,1.4598417404034483e-29,1.5501226137706982e-29,1.645986719806535e-29,1.747779341912244e-29,1.8558671168223554e-29,1.970639355156887e-29,2.0925094436407728e-29,2.2219163340403747e-29,2.3593261241801505e-29,2.5052337367342937e-29,2.6601647018394697e-29,2.824677049949495e-29,2.999363321750062e-29,3.184852702371865e-29,3.3818132875903115e-29,3.5909544901732164e-29,3.813029595044029e-29,4.0488384724642686e-29,4.299230459006635e-29,4.565107416695853e-29,4.8474269813363394e-29,5.147206011724983e-29,5.465524252174298e-29,5.803528221536027e-29,6.162435342733257e-29,6.54353832767559e-29,6.94820983334956e-29,7.377907405855158e-29,7.83417873019706e-29,8.318667204736674e-29,8.833117860386218e-29,9.379383645861928e-29,9.959432101635563e-29,1.0575352446623774e-28,1.122936310313785e-28,1.1923819687198172e-28,1.2661223492994696e-28,1.3444230502048705e-28,1.4275660949530042e-28,1.5158509482181567e-28,1.6095955944439098e-28,1.709137683159863e-28,1.8148357451278167e-28,1.9270704836981512e-28,2.046246146027451e-28,2.172791979096106e-28,2.307163775770425e-28,2.4498455164776546e-28,2.601351112407078e-28,2.762226256515577e-28,2.933050389004957e-28,3.114438784350016e-28,3.307044767394646e-28,3.511562066497565e-28,3.728727312203671e-28,3.9593226904403776e-28,4.204178759795528e-28,4.464177443023706e-28,4.740255203556312e-28,5.033406418456116e-28,5.344686959965367e-28,5.675217998546941e-28,6.026190041116991e-28,6.398867219013487e-28,6.794591841145485e-28,7.214789228721998e-28,7.660972848975051e-28,8.134749766366872e-28,8.637826430915974e-28,9.17201482448964e-28,9.73923898720165e-28,1.0341541947421116e-27,1.098109308035373e-27,1.1660195921698392e-27,1.238129646452393e-27,1.3146991969248396e-27,1.396004031845376e-27,1.4823369950228689e-27,1.5740090405819174e-27,1.6713503529576073e-27,1.7747115361540758e-27,1.8844648765501815e-27,2.0010056838008767e-27,2.124753714663762e-27,2.2561546848793163e-27,2.395681874550061e-27,2.5438378328012085e-27,2.7011561878624056e-27,2.868203569090321e-27,3.0455816478545344e-27,3.233929304637948e-27,3.4339249301568955e-27,3.646288868789378e-27,3.8717860131117825e-27,4.111228558889569e-27,4.3654789304444706e-27,4.635452886935112e-27,4.922122820738783e-27,5.2265212598150724e-27,5.549744586665693e-27,5.892956987285872e-27,6.257394644330011e-27,6.644370189595355e-27,7.055277431859992e-27,7.491596377104436e-27,7.95489855919787e-27,8.446852700250085e-27,8.969230721015773e-27,9.523914123000145e-27,1.011290076525194e-26,1.0738312060253728e-26,1.1402400614826673e-26,1.2107558343571606e-26,1.2856325084068163e-26,1.3651397744863796e-26,1.4495640019200603e-26,1.5392092699467967e-26,1.6343984629530035e-26,1.7354744334378092e-26,1.842801236899394e-26,1.9567654430903793e-26,2.0777775283649464e-26,2.206273354132892e-26,2.3427157367455182e-26,2.4875961144679414e-26,2.641436317541669e-26,2.804790447713175e-26,2.978246873997907e-26,3.1624303518682803e-26,3.3580042734982363e-26,3.565673057169699e-26,3.786184684446767e-26,4.0203333942563206e-26,4.268962543578162e-26,4.532967645048851e-26,4.813299592419664e-26,5.110968085486477e-26,5.427045266826967e-26,5.762669583444595e-26,6.119049887227718e-26,6.497469788993292e-26,6.899292281796925e-26,7.32596465016234e-26,7.779023682911649e-26,8.260101208372581e-26,8.770929971898516e-26,9.313349876872082e-26,9.889314611670258e-26,1.0500898686460763e-25,1.1150304905173758e-25,1.183987229956278e-25,1.2572084553930727e-25,1.3349578950865998e-25,1.4175155870208163e-25,1.5051788875458288e-25,1.5982635423961746e-25,1.6971048239440645e-25,1.8020587387835719e-25,1.9135033099954644e-25,2.0318399387109657e-25,2.157494849878674e-25,2.290920627441784e-25,2.4325978444552925e-25,2.583036794014317e-25,2.7427793272281807e-25,2.912400804859992e-25,3.0925121696615e-25,3.283762146867063e-25,3.4868395807727267e-25,3.702475915815933e-25,3.931447831092676e-25,4.174580037800737e-25,4.432748249685147e-25,4.7068823371843665e-25,4.997969676638368e-25,5.307058706621332e-25,5.635262704208554e-25,5.983763794778343e-25,6.353817209792142e-25,6.746755807887965e-25,7.1639948755717195e-25,7.607037224796816e-25,8.077478605793444e-25,8.577013454642725e-25,9.107440996297955e-25,9.670671725033893e-25,1.026873428566656e-24,1.0903782780327352e-24,1.157810452710985e-24,1.2294128298533204e-24,1.3054433069496934e-24,1.3861757306234251e-24,1.4719008829721983e-24,1.5629275289071528e-24,1.6595835282625877e-24,1.76221701668171e-24,1.8711976595318764e-24,1.9869179833654892e-24,2.1097947897224432e-24,2.2402706563661624e-24,2.3788155313605493e-24,2.525928425729142e-24,2.682139210793415e-24,2.848010526663624e-24,3.024139808756411e-24,3.2111614396379727e-24,3.4097490339436865e-24,3.620617864603712e-24,3.8445274391136134e-24,4.082284235128813e-24,4.3347446052364486e-24,4.602817861366642e-24,4.887469549952945e-24,5.189724929637938e-24,5.5106726640506236e-24,5.8514687429557424e-24,6.2133406458986435e-24,6.5975917633416926e-24,7.00560609121707e-24,7.438853215804158e-24,7.898893606886587e-24,8.387384238253048e-24,8.906084555786792e-24,9.456862814638876e-24,1.004170280831108e-23,1.0662711013884278e-23,1.1322124179129261e-23,1.2022317378826205e-23,1.276581256931094e-23,1.3555287672058473e-23,1.4393586219022674e-23,1.5283727594471394e-23,1.6228917910207158e-23,1.7232561553342177e-23,1.8298273448222545e-23,1.9429892076664928e-23,2.0631493303403484e-23,2.1907405056541393e-23,2.3262222915885724e-23,2.4700826665309558e-23,2.6228397868761503e-23,2.7850438533225157e-23,2.9572790925852253e-23,3.1401658616643975e-23,3.3343628822474444e-23,3.540569613293155e-23,3.75952877034353e-23,3.992029000637065e-23,4.2389077236590174e-23,4.5010541473593025e-23,4.779412470902392e-23,5.0749852854844334e-23,5.388837185467036e-23,5.722098602833745e-23,6.075969878780852e-23,6.451725587107044e-23,6.850719124974343e-23,7.274387587574647e-23,7.724256944260326e-23,8.201947534781558e-23,8.709179905427358e-23,9.24778100609001e-23,9.819690770574644e-23,1.0426969103853974e-22,1.107180330143571e-22,1.1756515927564546e-22,1.2483573180635904e-22,1.3255593775950786e-22,1.4075358377806693e-22,1.494581961489558e-22,1.5870112715084238e-22,1.685156679787991e-22,1.7893716865255624e-22,1.9000316534021986e-22,2.0175351555607163e-22,2.1423054171938806e-22,2.274791835913643e-22,2.415471601391674e-22,2.564851414101502e-22,2.7234693103525814e-22,2.891896600189911e-22,3.070739925138822e-22,3.260643443206906e-22,3.462291149012716e-22,3.676409337398136e-22,3.903769219397488e-22,4.1451896999860447e-22,4.401540327612464e-22,4.673744426139098e-22,4.962782420470315e-22,5.269695367847697e-22,5.59558870753064e-22,5.94163624236838e-22,6.309084366603641e-22,6.699256555136417e-22,7.113558130416652e-22,7.553481324135794e-22,8.020610651947595e-22,8.516628620577857e-22,9.043321787878165e-22,9.602587197651408e-22,1.019643921242505e-21,1.0827016768783667e-21,1.149659108139204e-21,1.2207573823457964e-21,1.2962525813097961e-21,1.3764166236893986e-21,1.461538244386131e-21,1.5519240345104545e-21,1.6478995456617698e-21,1.7498104625004275e-21,1.8580238478349443e-21,1.972929464709126e-21,2.0949411802507826e-21,2.2244984563386764e-21,2.3620679324565824e-21,2.50814510643576e-21,2.663256119139276e-21,2.82795964951658e-21,3.0028489268536838e-21,3.1885538674668836e-21,3.3857433435356467e-21,3.595127592246957e-21,3.817460773928044e-21,4.053543688381659e-21,4.304226659207185e-21,4.5704125964968535e-21,4.853060248937852e-21,5.153187657034129e-21,5.4718758198851626e-21,5.810272588729369e-21,6.169596801275388e-21,6.551142671712732e-21,6.956284452213064e-21,7.386481382712757e-21,7.843282946804179e-21,8.328334452666951e-21,8.843382959139733e-21,9.390283568278119e-21,9.971006107062352e-21,1.0587642222321736e-20,1.1242412914429174e-20,1.193767653690207e-20,1.2675937290721449e-20,1.345985424396509e-20,1.429225090924017e-20,1.5176125413413227e-20,1.6114661296265304e-20,1.7111238976968117e-20,1.8169447929679432e-20,1.9293099612113923e-20,2.0486241193653867e-20,2.1753170132447112e-20,2.309844965399387e-20,2.452692518697593e-20,2.60437418155246e-20,2.7654362810788934e-20,2.936458930854829e-20,3.118058120374785e-20,3.310887933721185e-20,3.5156429054449465e-20,3.7330605221403474e-20,3.96392387872483e-20,4.2090644989907454e-20,4.469365330588421e-20,4.745763925227432e-20,5.0392558155510796e-20,5.3508981008464793e-20,5.681813254505622e-20,6.033193166950572e-20,6.406303438585329e-20,6.802487938236133e-20,7.223173643499288e-20,7.669875780429744e-20,8.144203281083501e-20,8.647864578570062e-20,9.182673760488191e-20,9.75055710290748e-20,1.035356000843103e-19,1.0993854373327776e-19,1.1673746410270225e-19,1.2395684954852363e-19,1.316227028580763e-19,1.397626349069442e-19,1.484059641078351e-19,1.5758382200965325e-19,1.6732926542713678e-19,1.776773955049131e-19,1.886654841448301e-19,2.0033310825190974e-19,2.1272229228247597e-19,2.2587765960786687e-19,2.3984659323892974e-19,2.5467940649017196e-19,2.7042952419829697e-19,2.871536751478134e-19,3.049120963968172e-19,3.2376875023885586e-19,3.43791554582368e-19,3.6505262757744687e-19,3.876285473710521e-19,4.116006279262154e-19,4.370552118987371e-19,4.640839816262156e-19,4.927842893495662e-19,5.232595078563672e-19,5.556194028090492e-19,5.899805280989233e-19,6.264666456500821e-19,6.652091711851564e-19,7.063476475585681e-19,7.50030247362069e-19,7.964143066129003e-19,8.456668914467352e-19,8.979653998566182e-19,9.534982006451629e-19,1.0124653118914594e-18,1.0750791213762846e-18,1.1415651515605802e-18,1.2121628718723886e-18,1.2871265612280322e-18,1.3667262238940357e-18,1.451248561988706e-18,1.540998008125995e-18,1.6362978219211367e-18,1.7374912543072805e-18,1.8449427838569752e-18,1.959039429561311e-18,2.0801921447952354e-18,2.208837297489614e-18,2.3454382418415898e-18,2.490486987224008e-18,2.6445059703051757e-18,2.8080499367615023e-18,2.981707939360913e-18,3.1661054596134652e-18,3.36190666063116e-18,3.56981677931095e-18,3.790584666457557e-18,4.025005483994749e-18,4.273923568980204e-18,4.538235474739124e-18,4.818893200070709e-18,5.116907618158009e-18,5.433352117531774e-18,5.769366468201772e-18,6.126160926881312e-18,6.505020596090603e-18,6.907310052840056e-18,7.334478263564405e-18,7.788063803011158e-18,8.269700395880052e-18,8.781122801174e-18,9.32417306045489e-18,9.900807132510337e-18,1.0513101938327234e-17,1.1163262841747434e-17,1.1853631592748294e-17,1.258669476195958e-17,1.3365092696795076e-17,1.4191629031458032e-17,1.5069280785072174e-17,1.6001209084311526e-17,1.6990770549148377e-17,1.8041529382729834e-17,1.915727020892638e-17,2.0342011703793144e-17,2.1600021070039736e-17,2.2935829406644424e-17,2.4354248028968585e-17,2.586038579815617e-17,2.7459667522232878e-17,2.915785349518407e-17,3.09610602443844e-17,3.2875782561110945e-17,3.490891689348634e-17,3.7067786186111223e-17,3.936016625584957e-17,4.1794313798772025e-17,4.437899612912878e-17,4.7123522757469164e-17,5.0037778921641146e-17,5.3132261191448845e-17,5.641811527520396e-17,5.990717616434702e-17,6.361201076072518e-17,6.75459631400692e-17,7.17232026146935e-17,7.61587747685367e-17,8.086865564835304e-17,8.586980930625014e-17,9.118024890082221e-17,9.681910157695918e-17,1.0280667735800634e-16,1.0916454229842238e-16,1.1591559616040741e-16,1.2308415489428508e-16,1.306960382197038e-16,1.3877866262312361e-16,1.4736114010653353e-16,1.564743830430839e-16,1.6615121551728676e-16,1.7642649155082935e-16,1.8733722063981038e-16,1.9892270105557324e-16,2.1122466138923825e-16,2.2428741084977513e-16,2.381579988569387e-16,2.5288638450390713e-16,2.6852561649996724e-16,2.851320242413977e-16,3.0276542069872267e-16,3.214893178511172e-16,3.413711554438843e-16,3.6248254389298253e-16,3.848995222114658e-16,4.0870283188686195e-16,4.339782076959009e-16,4.608166865041014e-16,4.89314935162408e-16,5.195755986819332e-16,5.517076699408072e-16,5.858268822548127e-16,6.220561262257112e-16,6.605258923687122e-16,7.013747411132729e-16,7.447498018701624e-16,7.90807302962262e-16,8.397131343278661e-16,8.916434450231397e-16,9.46785277675928e-16,1.0053372421760073e-15,1.0675102310283469e-15,1.1335281789458318e-15,1.2036288694174911e-15,1.2780647911572105e-15,1.3571040475177872e-15,1.4410313221457137e-15,1.5301489043549603e-15,1.624777777912808e-15,1.7252587771594432e-15,1.8319538146252447e-15,1.9452471845676225e-15,2.0655469471223048e-15,2.193286398054667e-15,2.3289256294046255e-15,2.4729531866465084e-15,2.6258878283324413e-15,2.7882803945573224e-15,2.9607157909749347e-15,3.143815095511594e-15,3.3382377953649984e-15,3.544684162345751e-15,3.763897775116702e-15,3.996668197415159e-15,4.24383382190404e-15,4.50628488989524e-15,4.7849666978212134e-15,5.080883002004413e-15,5.395099633987413e-15,5.72874833944583e-15,6.0830308545104286e-15,6.459223234181271e-15,6.858680448423382e-15,7.282841262498676e-15,7.733233419111347e-15,8.211479141032762e-15,8.719300974024406e-15,9.258527991104615e-15,9.831102380504628e-15,1.04390864410437e-14,1.1084670010118236e-14,1.17701783510599e-14,1.249808052827018e-14,1.3270998300298461e-14,1.409171556289383e-14,1.4963188376042333e-14,1.588855561110619e-14,1.687115025641236e-14,1.791451142201258e-14,1.9022397086851836e-14,2.0198797634259946e-14,2.1447950224516386e-14,2.277435405625759e-14,2.4182786571692993e-14,2.5678320664000248e-14,2.7266342948874564e-14,2.895257316604546e-14,3.0743084780638403e-14,3.2644326858586337e-14,3.466314729487886e-14,3.680681747831587e-14,3.908305848159967e-14,4.1500068871100803e-14,4.4066554236458826e-14,4.6791758546382034e-14,4.9685497443578946e-14,5.27581935987481e-14,5.602091425095892e-14,5.948541106964233e-14,6.316416248176e-14,6.707041861661261e-14,7.121824903016261e-14,7.562259338077232e-14,8.029931523887327e-14,8.526525922438706e-14,9.053831167768634e-14,9.613746508262996e-14,1.0208288647370156e-13,1.0839599007365048e-13,1.1509951442325087e-13,1.2221760428099595e-13,1.2977589758770229e-13,1.3780161780926548e-13,1.463236719901543e-13,1.5537275487082663e-13,1.6498145944406214e-13,1.7518439434842986e-13,1.8601830852170113e-13,1.9752222356320318e-13,2.0973757428183654e-13,2.22708357936003e-13,2.3648129270295455e-13,2.5110598594836157e-13,2.666351129021495e-13,2.831246063841838e-13,3.006338582631309e-13,3.1922593337413834e-13,3.3896779666579193e-13,3.599305543945211e-13,3.8218971023515166e-13,4.0582543723010253e-13,4.3092286655669273e-13,4.575723941526841e-13,4.85870006304419e-13,5.159176253703026e-13,5.478234768848092e-13,5.817024793652984e-13,6.176766582255927e-13,6.558755852872113e-13,6.96436845471226e-13,7.395065323517409e-13,7.852397743558054e-13,8.338012935051078e-13,8.853659987118411e-13,9.401196157657636e-13,9.98259356281448e-13,1.0599946280152333e-12,1.1255477891101934e-12,1.1951549489858762e-12,1.2690668187573371e-12,1.3475496142466343e-12,1.4308860148391207e-12,1.5193761816382793e-12,1.6133388385861485e-12,1.713112420443471e-12,1.8190562917641985e-12,1.9315520412550277e-12,2.0510048561818128e-12,2.177844981773381e-12,2.3125292708790323e-12,2.455542829461496e-12,2.6074007638518486e-12,2.7686500360599116e-12,2.9398714338223107e-12,3.1216816624842123e-12,3.314735566248968e-12,3.519728486796489e-12,3.737398767765285e-12,3.9685304141191734e-12,4.213955915976777e-12,4.474559247075106e-12,4.751279048666631e-12,5.045112010318108e-12,5.35711645978759e-12,5.6884161749101955e-12,6.040204431221723e-12,6.4137482998994265e-12,6.810393211499669e-12,7.2315678019307744e-12,7.678789058114614e-12,8.153667781871317e-12,8.657914391706132e-12,9.19334508339617e-12,9.761888371565332e-12,1.0365592035809829e-11,1.1006630496391831e-11,1.1687312646068112e-11,1.2410090166261222e-11,1.31775663575276e-11,1.399250551612692e-11,1.4857842890466575e-11,1.5776695253280973e-11,1.6752372127626058e-11,1.7788387707121247e-11,1.8888473513374825e-11,2.005659183618047e-11,2.1296950004895818e-11,2.26140155424036e-11,2.4012532256239158e-11,2.5497537324838947e-11,2.7074379440453906e-11,2.874873807407204e-11,3.052664393174162e-11,3.241450067597145e-11,3.441910799044762e-11,3.654768607113787e-11,3.8807901631999227e-11,4.120789551895245e-11,4.375631203158738e-11,4.646233005820588e-11,4.933569613634905e-11,5.238675955788142e-11,5.5626509645078656e-11,5.906661533197445e-11,6.271946719353648e-11,6.6598222074046e-11,7.071685047543013e-11,7.509018687622316e-11,7.973398316240326e-11,8.466496536254394e-11,8.990089389163707e-11,9.546062752056513e-11,1.0136419130163748e-10,1.0763284869483428e-10,1.1428917815455395e-10,1.2135715445270213e-10,1.2886223503104454e-10,1.3683145169383437e-10,1.4529350797098639e-10,1.5427888250246662e-10,1.638199388162821e-10,1.739510418954535e-10,1.8470868195383841e-10,1.9613160586660349e-10,2.0826095672875023e-10,2.211404220443368e-10,2.348163910801652e-10,2.493381219506673e-10,2.64757919035821e-10,2.811313213710942e-10,2.9851730268798687e-10,3.169784838256495e-10,3.365813582786714e-10,3.5739653169338536e-10,3.79498976175341e-10,4.029683003238753e-10,4.2788903596642923e-10,4.5435094262532923e-10,4.824493308137069e-10,5.122854053249564e-10,5.439666297522402e-10,5.776071135509172e-10,6.133280230380702e-10,6.512580178094119e-10,6.915337141455199e-10,7.3430017707643e-10,7.797114428769773e-10,8.279310738747334e-10,8.791327475689297e-10,9.335008821821675e-10,9.91231300898119e-10,1.052531937177577e-9,1.1176235836933601e-9,1.1867406875814796e-9,1.2601321948730233e-9,1.3380624471481035e-9,1.4208121336415724e-9,1.5086793022296583e-9,1.6019804329390467e-9,1.7010515778448095e-9,1.8062495714630387e-9,1.9179533159975984e-9,2.0365651460703865e-9,2.162512277850393e-9,2.2962483478012374e-9,2.438255046589231e-9,2.589043854037202e-9,2.7491578813727994e-9,2.919173827406944e-9,3.099704055687921e-9,3.2913988001128933e-9,3.4949485069407077e-9,3.7110863216417802e-9,3.940590729541846e-9,4.184288359771031e-9,4.443056962617096e-9,4.71782857100713e-9,5.009592857504241e-9,5.319400698910998e-9,5.648367961318054e-9,5.997679519231529e-9,6.368593523254649e-9,6.762445931695588e-9,7.180655322422828e-9,7.624728002300061e-9,8.096263432603059e-9,8.596959989960583e-9,9.128621083568233e-9,9.69316165070914e-9,1.0292615053976099e-8,1.0929140405038587e-8,1.1605030341332336e-8,1.2322719283682687e-8,1.3084792204602823e-8,1.3893993938849851e-8,1.4753239069772094e-8,1.566562242705774e-8,1.6634430233694077e-8,1.7663151942288075e-8,1.8755492803378672e-8,1.9915387211011135e-8,2.1147012873639643e-8,2.2454805861400954e-8,2.38434765839542e-8,2.5318026756438178e-8,2.6883767414651638e-8,2.8546338044346263e-8,3.0311726893529496e-8,3.2186292540941003e-8,3.4176786798385006e-8,3.6290379029411467e-8,3.8534681971933535e-8,4.091777915779311e-8,4.3448254028030154e-8,4.613522084872753e-8,4.8988357538779446e-8,5.201794052782754e-8,5.5234881769910634e-8,5.865076804614959e-8,6.227790269802175e-8,6.612934994154612e-8,7.021898192198373e-8,7.456152867854146e-8,7.917263119903525e-8,8.406889775561252e-8,8.92679637244357e-8,9.478855510479434e-8,1.0065055596641927e-7,1.06875080067941e-7,1.1348454690443691e-7,1.205027624579863e-7,1.279550049420707e-7,1.3586811584866076e-7,1.4427059662592018e-7,1.531927113347405e-7,1.626665956538561e-7,1.7272637262615323e-7,1.8340827556306882e-7,1.9475077854975592e-7,2.0679473502106924e-7,2.1958352490749435e-7,2.331632108810102e-7,2.47582704263652e-7,2.628939411963436e-7,2.791520697025248e-7,2.96415648320339e-7,3.1474685701881516e-7,3.342117211577218e-7,3.5488034929775215e-7,3.768271857175851e-7,4.001312785473377e-7,4.2487656448417346e-7,4.5115217111555425e-7,4.790527379390446e-7,5.086787572349175e-7,5.401369360193164e-7,5.735405803816581e-7,6.090100035905809e-7,6.466729594383562e-7,6.866651023845838e-7,7.291304761565143e-7,7.74222032565843e-7,8.221021824106481e-7,8.729433804467108e-7,9.269287465351715e-7,9.842527252037673e-7,1.045121785997263e-6,1.109755167139595e-6,1.178385665186254e-6,1.2512604735110737e-6,1.3286420726474906e-6,1.4108091756911048e-6,1.4980577321686956e-6,1.5907019939894232e-6,1.6890756473175678e-6,1.7935330144435782e-6,1.904450329982335e-6,2.0222270959952396e-6,2.147287520917005e-6,2.2800820474698803e-6,2.421088975068551e-6,2.57081618255929e-6,2.7298029574983257e-6,2.8986219385581242e-6,3.077881178057743e-6,3.2682263320460817e-6,3.4703429858262692e-6,3.6849591232972716e-6,3.912847749006783e-6,4.154829672359526e-6,4.411776464009115e-6,4.684613595081816e-6,4.974323770539078e-6,5.281950468684912e-6,5.608601699566751e-6,5.955453995806779e-6,6.323756650237917e-6,6.714836215607589e-6,7.1301012825562905e-6,7.571047553080306e-6,8.039263227752158e-6,8.536434726102497e-6,9.064352760767088e-6,9.62491878727679e-6,1.022015185272136e-5,1.0852195867954604e-5,1.1523327329533944e-5,1.223596351920722e-5,1.2992671210479731e-5,1.379617591362075e-5,1.4649371692408245e-5,1.5555331587969728e-5,1.6517318687263856e-5,1.7538797876069214e-5,1.8623448318812234e-5,1.9775176710184096e-5,2.099813134627628e-5,2.229671706591621e-5,2.3675611116018693e-5,2.5139779998096976e-5,2.6694497356611244e-5,2.8345362973584756e-5,3.0098322937902492e-5,3.1959691061938085e-5,3.393617162264743e-5,3.603488350903797e-5,3.826338586298784e-5,4.0629705305768156e-5,4.3142364848332916e-5,4.581041458950553e-5,4.8643464312630826e-5,5.165171809809916e-5,5.484601107641e-5,5.8237848454152176e-5,6.183944695346473e-5,6.566377881423486e-5,6.972461851752025e-5,7.403659239848421e-5,7.861523132753936e-5,8.34770266494472e-5,8.863948958185465e-5,9.412121428720951e-5,9.994194484522723e-5,0.00010612264636713046,0.00011268558050780067,0.00011965438564782165,0.00012705416203421448,0.00013491156218652412,0.0001432548868938821,0.00015211418714880778,0.00016152137238489346,0.00017151032540822341,0.0001821170244364878,0.00019337967268535109,0.0002053388359688198,0.00021803758880921872,0.00023152166958303414,0.0002458396452614289,0.00026104308633879183,0.00027718675257937866,0.00029432879025106793,0.00031253094155662747,0.00033185876701682156,0.00035238188160633906,0.0003741742054930543,0.0003973142302837395,0.00042188530173518517,0.00044797591994900297,0.0004756800581313512,0.0005050975010656916,0.0005363342045176889,0.0005695026768667593,0.0006047223843388262,0.0006421201812998529,0.0006818307671599829,0.0007239971715339658,0.0007687712694053194,0.0008163143281497465,0.0008667975883880777,0.0009204028807608535,0.0009773232808460476,0.0010377638045788124,0.001101942146678012,0.001170089464739207,0.0012424512118182356,0.0013192880205041954,0.0014008766416660776,0.0014875109412542322,0.0015795029587469434,0.0016771840310544342,0.001780905985928369,0.0018910424091752866,0.0020079899902382082,0.0021321699509929386,0.002264029562905301,0.002404043758013802,0.002552716839540166,0.002710584298289018,0.0028782147413790194,0.0030562119402523726,0.003245217005339204,0.0034459106952095396,0.003659015868529982,0.0038853000876565356,0.004125578383241218,0.004380716189810006,0.004651632462885492,0.004939302988881503,0.005244763899691255,0.005569115404627903,0.00591352575315918,0.006279235442709116,0.006667561686682488,0.007079903158804942,0.007517745030866959,0.007982664322016603,0.008476335578868144,0.009000536906885173,0.009557156374762059,0.010148198814871025,0.010775793044268747,0.011442199532271033,0.012149818542212736,0.012901198776717835,0.013699046557618246,0.014546235573585628,0.015445817230585142,0.016401031642431518,0.017415319301033155,0.018492333468358185,0.01963595333475587,0.020850297991027007,0.022139741264567935,0.02350892747302497,0.024962788152200825,0.026506559818463567,0.02814580282963477,0.029886421412290056,0.0317346849276063,0.03369725045235097,0.03578118675634562,0.03799399976276582,0.04034365958298026,0.0428386292233032,0.04548789506705631,0.04830099924173013,0.05128807398782524,0.05445987815316289,0.057827835944110284,0.06140407807329476,0.0652014854520126,0.06923373558470403,0.07351535183259778,0.07806175572396339,0.082889322499382,0.08801544009209886,0.09345857175589295,0.09923832256603675,0.10537551003286959,0.11189223908232022,0.11881198167344395,0.12615966133974035,0.13396174295875307,0.14224632807328336,0.15104325610754576,0.16038421184282642,0.17030283953974928,0.18083486411819671,0.19201821983134978,0.20389318689730687,0.21650253658040006,0.2298916852447638,0.24410885793502554,0.25920526207330385,0.27523527189813574,0.2922566243096452,0.31033062682634915,0.32952237840261833,0.349901003902135,0.37153990307187307,0.394517014913356,0.41891509840340474,0.44482203057547576,0.4723311230352191,0.5015414580502822,0.5325582454248875,0.5654932014445763,0.6004649512560002,0.6375994561310546,0.6770304671542714,0.7189000069675653,0.7633588813074803,0.810567222177393,0.8606950646110689,0.9139229591049619,0.9704426219251127,1.030457625630924,1.0941841323029422,1.161851672115583,1.2337039700590677,1.3099998237882566,1.3910140357602154,1.4770384030178882,1.568382768184884,1.6653761354568442,1.7683678556089761,1.8777288842879083,1.9938531181199874,2.117158813448411,2.2480900928092042,2.3871185445720675,2.534744921507683,2.6915009443993787,2.8579512171954025,3.0346952605998005,3.2223696714264918,3.421650415494098,3.6332552623200813,3.8579463703834747,4.096533032267801,4.349874589571642,4.618883528085785,4.904528764385155,5.207839135673184,5.529907105448334,5.8718926983398685,6.235027678285327,6.620619985098708,7.030058445408965,7.464817774936691,7.926463890126181,8.416659548264342,8.93717033640099,9.489871030641483,10.076752348716536,10.699928120150691,11.361642899854907,12.064280052565948,12.810370337251078,13.602601022397414,14.44382556501736,15.337073888231982,16.285563294450142,17.292710053450463,18.362141707104108,19.497710135057517,20.70350542843511,21.983870621532226,23.343417334558964,24.78704238377693,26.31994541885536,27.94764765097275,29.676011739118987,31.511262906224427,33.46001136117202,35.529276107452084,37.72651022421378,40.05962771077059,42.53703199124834,45.167646182043825,47.96094523111148,50.9269900448372,54.07646372541775,57.42071004926539,60.971774325029344,64.74244677839661,68.74630861993536,72.99778096190825,77.51217676024427,82.30575596875367,87.39578410424042,92.80059443345228,98.53965400585315,104.63363377005503,111.10448302645439,117.97550848423717,125.27145820749948,133.01861075284145,141.24486981949,149.97986475286143,159.2550572635575,169.10385474617584,179.56173060608617,190.6663520275655,202.45771564348763,214.9782915952224,228.27317650161916,242.39025588803875,257.380376660471,273.2975302459544,290.1990470589348,308.14580299398983,327.20243868866737,347.43759234617664,368.9241469565151,391.7394928064701,415.96580622400586,441.6903455610167,469.0057654805172,498.0104506802695,528.8088702548537,561.5119539725224,596.237491822115,633.1105582691173,672.2639627489563,713.8387280201125,757.984598099987,804.8605776130025,854.635504493567,907.4886581066587,963.6104049763625,1023.2028844481447,1086.4807367544822,1153.6718761061961,1225.0183115940088,1300.7770188570482,1381.2208656578787,1466.6395946977893,1557.34086721225,1653.6513711053562,1755.9179976145392,1864.5090907436595,1979.8157739646842,2102.2533589664727,2232.2628415246936,2370.312489880707,2516.8995313504283,2672.551943238008,2837.830354504841,3013.3300650433353,3199.683189828454,3397.5609356698724,3607.6760187651016,3830.7852317611714,4067.692169570891,4319.250123761546,4586.365155941036,4869.999361211181,5171.174333442505,5490.974844851717,5830.552753135019,6191.131150229916,6574.008767648585,6980.564654249896,7412.263143298527,7870.659126701488,8357.403655418839,8874.249886220136,9423.059396205668,10005.808887836101,10624.59730862072,11281.65341110797,11979.3437804079,12720.18135815997,13506.834493647948,14342.13655466214,15229.096132725399,16170.907879440087,17170.964012986355,18232.866536215854,19360.440210348028,20557.74633099762,21829.097356151953,23179.07243878499,24612.533920053585,26134.644842481117,27750.8875462075,29467.0834152856,31289.413845146177,33224.44250675212,35279.1389876329,37460.9038949496,39777.595511006766,42237.558097218855,44849.651948476574,47623.285306163,50568.448244763655,53695.74865412347,57016.45044695158,60542.51412918963,64286.63987937009,68262.3132921278,72483.85395062377,76966.46700282942,81726.29792743865,86780.49068666389,92147.24947537069,97845.90428895889,103896.98054615308,110322.2730174695,117144.92432563503,124389.50830070132,132082.1184900822,140250.46214231043,148923.96000302376,158133.85228262655,167913.3111773003,178297.5603486422,189324.0017922731,201032.35055237025,213464.77776734007,226666.06256185286,240683.7533323238,255568.33900675914,271373.4308958109,288155.9557900314,305976.36099882575,324898.8320696113,344991.5239713651,366326.8065752373,388981.52531640104,413037.27797599253,438580.7085800539,465703.8194740439,494504.30269694794,525085.8918485291,557558.7357170773,592039.7950133889,628653.263639933,667531.0160125328,708813.0820457244,752648.1515125975,799194.1095957187,848618.6055580889,901099.6565823702,956826.288953294,1.0159992188926605e6,1.0788315754991593e6,1.1455496683969018e6,1.216393802857575e6,1.2916191453321315e6,1.371496642509483e6,1.4563139972124654e6,1.5463767046460593e6,1.6420091527302235e6,1.7435557904805231e6,1.8513823686448243e6,1.9658772570645818e6,2.0874528435055963e6,2.216547018996543e6,2.353624755025173e6,2.4991797782729315e6,2.653736348920045e6,2.817851148926194e6,2.9921152870879658e6,3.177156428094916e6,3.373641053252665e6,3.582276861015713e6,3.8038153159762067e6,4.0390543554896116e6,4.2888412636860125e6,4.55407572321866e6,4.835713055741555e6,5.134767662787623e6,5.45231667944083e6,5.7895038539620545e6,6.14754366734234e6,6.527725707621336e6,6.9314193147263685e6,7.360078512561907e6,7.815247246113834e6,8.298564942431534e6,8.811772415517332e6,9.356718136391526e6,9.935364890916618e6,1.054979684936057e7,1.120222707316293e7,1.1895005485940717e7,1.2630627337445183e7,1.3411742190953717e7,1.4241163466468973e7,1.5121878574096562e7,1.6057059674101148e7,1.7050075102395013e7,1.8104501502613027e7,1.922413670846964e7,2.041301342279938e7,2.1675413742548093e7,2.3015884582033172e7,2.4439254050021976e7,2.5950648839617852e7,2.755551269358614e7,2.9259626011631206e7,3.1069126670243204e7,3.2990532130106565e7,3.503076291069336e7,3.719716751659593e7,3.949754890537462e7,4.194019259225662e7,4.453389649290916e7,4.7288002611779206e7,5.02124306901301e7,5.33177139349736e7,5.661503695758055e7,6.0116276058222756e7,6.3834042002237655e7,6.778172544149302e7,7.19735451448441e7,7.642459921130663e7,8.115091945039801e7,8.616952912552172e7,9.149850426836652e7,9.71570387851719e7,1.0316551358935e8,1.0954557000947572e8,1.1632018773703575e8,1.2351376759469971e8,1.3115221942321639e8,1.3926305540349895e8,1.4787548915001294e8,1.570205409323962e8,1.6673114940428296e8,1.7704229024177256e8,1.8799110211883882e8,1.996170204734354e8,2.1196191954607773e8,2.2507026320251572e8,2.3898926508370975e8,2.5376905865996018e8,2.6946287780166787e8,2.8612724851713103e8,3.038221925479527e8,3.226114435553974e8,3.4256267667632663e8,3.6374775227556133e8,3.862429747725822e8,4.101293674748491e8,4.3549296440759367e8,4.6242512019123995e8,4.9102283908252573e8,5.2138912436451197e8,5.536333493438634e8,5.878716512917118e8,6.24227349746942e8,6.628313906886059e8,7.038228181772197e8,7.473492751637733e8,7.935675352701901e8,8.426440674566841e8,8.94755635609751e8,9.500899352104751e8,1.0088462693762152e9,1.0712362667107321e9,1.137484643548207e9,1.207830013336715e9,1.2825257460762696e9,1.361840880907093e9,1.4460610951349354e9,1.535489733183824e9,1.630448899182173e9,1.7312806171176906e9,1.8383480627395632e9,1.9520368716451588e9,2.07275652826253e9,2.200941840731755e9,2.337054506997129e9,2.4815847777511926e9,2.6350532222199383e9,2.7980126031494665e9,2.9710498677471414e9,3.154788261748513e9,3.349889574224143e9,3.5570565212120104e9,3.777035276760514e9,4.010618160498757e9,4.2586464914138165e9,4.522013618114143e9,4.801668136493061e9,5.098617306382215e9,5.413930679500575e9,5.748743951766677e9,6.104263053848789e9,6.481768494686964e9,6.882619973630823e9,7.308261277805767e9,7.760225482346223e9,8.240140472226886e9,8.749734805579702e9,9.290843939615934e9,9.86541684157693e9,1.047552300852589e10,1.112335992126352e10,1.1811260959216114e10,1.2541703804802856e10,1.3317319367554323e10,1.4140901260123854e10,1.5015415860323845e10,1.594401299542695e10,1.6930037287216478e10,1.7977040198646927e10,1.90887928255061e10,2.0269299479149952e10,2.1522812109234425e10,2.2853845618390026e10,2.4267194124001728e10,2.5767948225663548e10,2.7361513340504246e10,2.905362917242165e10,3.0850390385352753e10,3.2758268555037567e10,3.47841354783458e10,3.693528792411853e10,3.921947391467605e10,4.164492063264885e10,4.422036405365059e10,4.69550804115198e10,4.985891960946629e10,5.2942340697457924e10,5.621644954363507e10,5.969303883543255e10,6.338463055449061e10,6.730452107833517e10,7.146682907128107e10,7.588654633704474e10,8.05795918162349e10,8.55628689232014e10,9.085432642876653e10,9.647302310811746e10,1.0243919638671802e11,1.0877433523147855e11,1.1550125754973416e11,1.2264419237479575e11,1.3022886713410144e11,1.3828260031427866e11,1.4683439985689124e11,1.5591506763925876e11,1.6555731041668317e11,1.757958576256575e11,1.866675864723781e11,1.9821165475708585e11,2.104696419126622e11,2.234856987654532e11,2.37306706557751e11,2.5198244580467776e11,2.675657755936847e11,2.841128239724419e11,3.016831901108852e11,3.2034015896553876e11,3.401509292193222e11,3.611868553178025e11,3.8352370447369385e11,4.072419295652446e11,4.3242695891147906e11,4.5916950396796265e11,4.8756588605139526e11,5.177183832697819e11,5.4973559890780365e11,5.837328525941873e11,6.198325956600359e11,6.581648521840997e11,6.988676873136072e11,7.420877045473857e11,7.879805737724624e11,8.36711591955946e11,8.884562785117762e11,9.434010074866426e11,1.0017436788421757e12,1.0636944312511355e12,1.129476398975051e12,1.1993265155493237e12,1.2734963671706257e12,1.3522530988601968e12,1.435880376666998e12,1.5246794093762385e12,1.618970033403419e12,1.719091864781306e12,1.825405522389231e12,1.938293926830363e12,2.0581636796354456e12,2.1854465277604072e12,2.320600918652895e12,2.464113651488537e12,2.6165016305246035e12,2.778313726886039e12,2.950132755489921e12,3.1325775742285405e12,3.3263053129722544e12,3.532013740420208e12,3.7504437773241924e12,3.982382165137409e12,4.2286642997004653e12,4.490177240170563e12,4.767862904031883e12,5.062721459694482e12,5.375814928901683e12,5.708271011920548e12,6.061287149293617e12,6.436134834780894e12,6.834164195027084e12,7.25680885244848e12,7.705591088855324e12,8.182127328407251e12,8.688133959651123e12,9.22543351761022e12,9.795961248192355e12,1.0401772078559613e13,1.1045048018566658e13,1.1728106019925006e13,1.2453406321401547e13,1.3223561310107865e13,1.4041344930798232e13,1.490970267706531e13,1.5831762200421344e13,1.6810844575475045e13,1.78504762617808e13,1.895440180544258e13,2.0126597326223086e13,2.137128483873408e13,2.269294745929197e13,2.4096345553208586e13,2.5586533880678773e13,2.716887980301838e13,2.884908261483054e13,3.063319407172806e13,3.252764018755161e13,3.4539244379589863e13,3.667525204516933e13,3.894335665813034e13,4.135172747918735e13,4.3909038979976484e13,4.662450208677451e13,4.9507897356418e13,5.256961020392082e13,5.5820668308667516e13,5.927278133391773e13,6.293838310267765e13,6.683067638185369e13,7.09636804359854e13,7.53522815218438e13,8.001228650575889e13,8.496047979680362e13,9.021468380088775e13,9.579382311351184e13,1.0171799268239034e14,1.0800853018544389e14,1.1468809288486442e14,1.2178073923405589e14,1.293120155313912e14,1.373090479328818e14,1.4580064015518784e14,1.548173772208623e14,1.6439173561950994e14,1.7455820028162294e14,1.853533887864309e14,1.9681618325111975e14,2.08987870376473e14,2.219122901533302e14,2.3563599376550038e14,2.5020841125784444e14,2.6568202957345047e14,2.821125816011303e14,2.9955924691418256e14,3.180848649234155e14,3.3775616121218775e14,3.5864398786864606e14,3.8082357868083256e14,4.0437482011378775e14,4.293825390446854e14,4.5593680829231825e14,4.841332710414489e14,5.140734853304897e14,5.458652898433282e14,5.796231923227498e14,6.154687820045161e14,6.53531167557548e14,6.93947442107634e14,7.368631770195154e14,7.82432946215943e14,8.308208829221258e14,8.822012708409141e14,9.367591718879234e14,9.946910927476881e14,1.0562056926515568e15,1.1215245349266808e15,1.1908828850229105e15,1.2645305578920795e15,1.3427328177716485e15,1.4257713336136505e15,1.5139451936000565e15,1.6075719823988245e15,1.7069889250405505e15,1.8125541015358552e15,1.9246477366081362e15,2.0436735691872785e15,2.1700603065967745e15,2.3042631686721105e15,2.4467655273717855e15,2.5980806477868135e15,2.758753536819237e15,2.9293629061884325e15,3.11052325683525e15,3.3028870922319925e15,3.507147268569814e15,3.7240394902887115e15,3.9543449599381255e15,4.1988931919128995e15,4.458565000198729e15,4.73429567088869e15,5.027078330897131e15,5.337967525004978e15,5.668083014119765e15,6.018613808431378e15,6.39082244998952e15,6.786049560128663e15,7.205718668118781e15,7.651341338434232e15,8.12452261510739e15,8.626966802777519e15,9.160483605256244e15,9.726994643720216e15,1.0328540378007164e16,1.0967287455945766e16,1.1645536517189096e16,1.2365730479660396e16,1.3130463338456014e16,1.3942489508898982e16,1.4804733747393798e16,1.5720301685816416e16,1.6692491017380604e16,1.772480337427197e16,1.8820956939828884e16,1.998489984069824e16,2.122082436719989e16,2.253318207312121e16,2.392669980932625e16,2.540639674893099e16,2.6977602465363464e16,2.864597612842552e16,3.0417526887494044e16,3.229863551528007e16,3.4296077390098948e16,3.64170468994333e16,3.866918335268221e16,4.1060598496432024e16,4.359990573134904e16,4.629625113593282e16,4.91593464088673e16,5.219950384862491e16,5.54276734963082e16,5.885548257551643e16,6.249527737128662e16,6.636016769895302e16,7.0464074123086136e16,7.482177809659323e16,7.944897520056435e16,8.436233167662902e16,8.95795444554332e16,9.511940489745813e16,1.0100186647575381e17,1.0724811664437446e17,1.1388065315136058e17,1.209233650711455e17,1.2840161884823829e17,1.3634234966210406e17,1.447741584423061e17,1.5372741488335664e17,1.6323436683030086e17,1.7332925642903136e17,1.840484434596654e17,1.954305362972297e17,2.0751653097132902e17,2.203499588256786e17,2.3397704330931888e17,2.4844686646427053e17,2.638115457092632e17,2.8012642155629654e17,2.974502569361225e17,3.1584544885061574e17,3.353782531143328e17,3.5611902299475866e17,3.781424626107386e17,4.015278960018331e17,4.263595528376908e17,4.527268717965416e17,4.807248227054696e17,5.104542486028118e17,5.420222289546745e17,5.75542465333841e17,6.111356909501504e17,6.48930105507468e17,6.890618369534566e17,7.316754317853284e17,7.769243756774872e17,8.249716463063521e17,8.759903003634501e17,9.301640968711489e17,9.876881590459904e17,1.048769677093646e18,1.1136286544667246e18,1.182498700273387e18,1.2556278706907423e18,1.333279562413782e18,1.415733461357756e18,1.5032865500311283e18,1.5962541772073175e18,1.694971193748157e18,1.799793158669932e18,1.9110976197961341e18,2.0292854736093878e18,2.1547824092007206e18,2.2880404415167887e18,2.429539539427677e18,2.5797893544790026e18,2.7393310565552563e18,2.9087392830658176e18,3.0886242086744443e18,3.279633743026662e18,3.4824558643912407e18,3.697821097620737e18,3.926505145356501e18,4.1693316819548175e18,4.427175320197854e18,4.700964761474507e18,4.991686140777817e18,5.300386578566456e18,5.628177952284021e18,5.976240901119883e18,6.345829078436378e18,6.738273667178076e18,7.154988174527571e18,7.597473523076499e18,8.067323456849749e18,8.566230281653445e18,9.095990960423336e18,9.658513585526985e18,1.0255824251332407e19,1.089007435179572e19,1.1563548329353599e19,1.227867190302942e19,1.3038020805390019e19,1.384433005982045e19,1.4700503831533396e19,1.5609625887793177e19,1.6574970705031178e19,1.760001526285662e19,1.8688451567444464e19,1.984419994940548e19,2.1071423184036213e19,2.2374541484805034e19,2.3758248424080486e19,2.52275278384431e19,2.6787671779472003e19,2.8444299574658826e19,3.0203378067105894e19,3.2071243106905326e19,3.4054622371609027e19,3.616065959798087e19,3.839694031231345e19,4.077151915198123e19,4.329294887664002e19,4.597031117356068e19,4.881324936805759e19,5.183200315682355e19,5.503744548927763e19,5.844112172975955e19,6.20552912416321e19,6.589297154306346e19,6.996798519353477e19,7.429500957994131e19,7.888962978161635e19,8.376839470467916e19,8.894887668789866e19,9.444973479475138e19,1.0029078201965108e20,1.0649305665040405e20,1.1307889804393115e20,1.2007202708817412e20,1.2749763164000856e20,1.3538245724688205e20,1.4375490347894863e20,1.52645126218654e20,1.6208514627621673e20,1.7210896472220195e20,1.827526853526049e20,1.9405464472752017e20,2.0605555025179453e20,2.1879862679498208e20,2.3232977237871447e20,2.4669772349221703e20,2.6195423063143416e20,2.7815424469399686e20,2.9535611490141045e20,3.13621798961308e20,3.33017086226771e20,3.536118346564609e20,3.754802224290711e20,3.987010151183262e20,4.23357849390888e20,4.495395342489514e20,4.773403709025813e20,5.068604924238549e20,5.382062244062403e20,5.714904679281833e20,6.068331062003031e20,6.443614363607973e20,6.842106279743749e20,7.265242098860756e20,7.714545871835811e20,8.191635901299314e20,8.698230570438948e20,9.236154532273273e20,9.807345281688459e20,1.0413860133908277e21,1.1057883634533701e21,1.1741735427840572e21,1.2467878611676234e21,1.3238928609046527e21,1.4057662588348434e21,1.4927029466176894e21,1.5850160528734985e21,1.6830380710102048e21,1.7871220567983897e21,1.8976429000077672e21,2.0149986746854634e21,2.1396120729393053e21,2.271931927390591e21,2.412434827779695e21,2.561626837547382e21,2.7200453165743473e21,2.88826085664446e21,3.066879336602596e21,3.25654410460955e21,3.457938295353748e21,3.671787290566309e21,3.8988613317013993e21,4.1399782941925295e21,4.3960066332766755e21,4.6678685119970416e21,4.956543122650463e21,5.263070213643016e21,5.588553834456318e21,5.934166312213827e21,6.301152474169381e21,6.690834131327006e21,7.104614839340426e21,7.543984953840913e21,8.010526998401116e21,8.505921364469735e21,9.031952363806241e21,9.590514655216387e21,1.0183620068735428e22,1.0813404851839187e22,1.1482137363781213e22,1.2192226245770943e22,1.294622909641906e22,1.3746861683698242e22,1.4597007726597535e22,1.5499729281703693e22,1.645827777211843e22,1.747610569843679e22,1.8556879073965427e22,1.9704490628972236e22,2.0923073831524566e22,2.221701777541788e22,2.359098298881585e22,2.5049918220544384e22,2.6599078264498138e22,2.8244042886361437e22,2.999073692081094e22,3.1845451611589877e22,3.381486727131356e22,3.590607734262478e22,3.8126613947358875e22,4.048447501574611e22,4.29881530933616e22,4.564666592958289e22,4.84695889577239e22,5.146708978383819e22,5.464996480840861e22,5.802967811283137e22,6.161840275074971e22,6.542906459296824e22,6.947538888386219e22,7.377194967697373e22,7.833422232784488e22,8.317863923316542e22,8.832264901698913e22,9.37847793772021e22,9.958470381859375e22,1.0574331251290193e23,1.1228278754104605e23,1.1922668278856428e23,1.2660000878200944e23,1.3442932277188342e23,1.427428243865581e23,1.5157045720171963e23,1.6094401659115354e23,1.708972642473472e23,1.8146604978437412e23,1.9268843986106314e23,2.046048552895082e23,2.1725821662278113e23,2.3069409874620576e23,2.4496089502901698e23,2.6010999162762068e23,2.7619595256829266e23,2.9327671627592155e23,3.114138042566743e23,3.3067254268618644e23,3.51122297701433e23,3.728367252437228e23,3.958940363527272e23,4.203772788670402e23,4.4637463654594886e23,4.7397974668975095e23,5.032920374026592e23,5.3441708571299374e23,5.674669978406066e23,6.0256081298113185e23,6.39824932061457e23,6.793935730106415e23,7.214092541861596e23,7.660233076966061e23,8.133964244698086e23,8.636992330294864e23,9.17112914065203e23,9.738298530090832e23,1.0340543329698178e24,1.0980032705196616e24,1.1659069969847154e24,1.2380100880524347e24,1.3145722446845396e24,1.3958692285080612e24,1.4821938550537886e24,1.573857048419424e24,1.67118896115625e24,1.774540163412746e24,1.8842829056184244e24,2.000812459255654e24,2.1245485405488062e24,2.255936822198348e24,2.39545053860513e24,2.543592190366336e24,2.7008953541825407e24,2.867926604694523e24,3.045287555172257e24,3.2336170244059473e24,3.4335933376040696e24,3.6459367695854253e24,3.8714121390655543e24,4.1108315633812463e24,4.365057383575423e24,4.6350052703775157e24,4.921647522267021e24,5.226016567498754e24,5.549208682703769e24,5.892387941459057e24,6.256790407048663e24,6.643728584517184e24,7.054596148051491e24,7.490872960717081e24,7.954130404630033e24,8.446037040762068e24,8.968364618764806e24,9.5229944584585e24,1.0111924225971256e25,1.0737275128934094e25,1.1401299556648319e25,1.210638919274237e25,1.2855083629539808e25,1.365007951516447e25,1.4494240266329888e25,1.539060638179494e25,1.6342406393634706e25,1.735306849576923e25,1.8426232891635166e25,1.9565764905472247e25,2.077576890445118e25,2.20606030817858e25,2.342489515407693e25,2.487355902942421e25,2.64118125063442e25,2.804519606724021e25,2.9779592834116305e25,3.1621249758408953e25,3.3576800121261634e25,3.565328742528085e25,3.785819076382957e25,4.01994517592292e25,4.268550316690116e25,4.5325299248470475e25,4.812834802323251e25,5.110474551414141e25,5.426521211167356e25,5.762113118653644e25,6.118459009030251e25,6.49684236916378e25,6.898626060494205e25,7.3252572277900275e25,7.778272511475474e25,8.259303582302707e25,8.770083018304833e25,9.3124505451965e25,9.888359662699482e25,1.0499884680658882e26,1.1149228190293996e26,1.1838728997492676e26,1.257087054672429e26,1.3348289865911175e26,1.4173787064477898e26,1.505033541878708e26,1.5981092081288594e26,1.696940945195277e26,1.801884725294725e26,1.913318535004644e26,2.031643736695513e26,2.157286514158025e26,2.2906994076322e26,2.432362943767099e26,2.582787366382092e26,2.7425144742632934e26,2.912119572614857e26,3.092213545193606e26,3.283445054590645e26,3.48650287858459e26,3.7021183909819105e26,3.9310681958795534e26,4.174176924838205e26,4.4323202070406395e26,4.7064278231335996e26,4.9974870541122934e26,5.3065462373098834e26,5.634718542299387e26,5.983185980308729e26,6.353203661589491e26,6.746104316074041e26,7.163303093602826e26,7.606302661012193e26,8.076698614440703e26,8.576185226348605e26,9.106561547949173e26,9.669737889032799e26,1.0267742698521945e27,1.090272987054012e27,1.157698650230875e27,1.2292941131815764e27,1.3053172484925178e27,1.3860418763434014e27,1.4717587507528814e27,1.5627766068166202e27,1.6594232727095407e27,1.7620468504576139e27,1.8710169697318997e27,1.9867261191809894e27,2.1095910600968565e27,2.2400543275060175e27,2.3785858240923974e27,2.525684512693191e27,2.68188021346351e27,2.847735512183046e27,3.023847786577802e27,3.2108513579556527e27,3.40941977590522e27,3.620268244287326e27,3.8441561972565925e27,4.0818900345919876e27,4.334326026188031e27,4.6023733961683974e27,4.8869975977297927e27,5.189223790512045e27,5.510140533018712e27,5.850903703387983e27,6.212740662635103e27,6.596954675362205e27,7.004929603857817e27,7.438134892492468e27,7.898130860365021e27,8.386574321260785e27,8.905224551164149e27,9.455949624820819e27,1.0040733144169712e28,1.0661681382882638e28,1.132103087274187e28,1.2021156459181308e28,1.2764579855007291e28,1.355397872310505e28,1.4392196320846068e28,1.5282251740935735e28,1.622735078558187e28,1.7230897513156725e28,1.8296506498936118e28,1.942801585407828e28,2.06295010497367e28,2.190528959609417e28,2.32599766291909e28,2.4698441461690717e28,2.622586515719013e28,2.7847749191379005e28,2.9569935267258453e28,3.139862635578929e28,3.334040903775946e28,3.5402277227334003e28,3.7591657362738207e28,3.991643515481129e28,4.238498398976077e28,4.5006195088434365e28,4.7789509530723674e28,5.07449522604499e28,5.388316819321717e28,5.721546055727497e28,6.075383160549056e28,6.451102584507712e28,6.850057594076161e28,7.273685145675176e28,7.723511061303965e28,8.201155524246526e28,8.708338914649514e28,9.246888005988334e28,9.818742544740639e28,1.0425962236967408e29,1.107073416696254e29,1.1755380674695503e29,1.2482367720416609e29,1.3254313766553733e29,1.4073999208893073e29,1.4944376391010094e29,1.5868580238021914e29,1.6849939547964184e29,1.789198898145631e29,1.899848179284604e29,2.017340334868286e29,2.1420985482213e29,2.2745721735600924e29,2.4152383544771742e29,2.5646037425171256e29,2.7232063220347054e29,2.8916173479069786e29,3.0704434030797713e29,3.2603285833584304e29,3.46195681731238e29,3.676054329649772e29,3.903392256934001e29,4.1447894250637265e29,4.401115298520922e29,4.673293112008172e29,4.9623031957564634e29,5.269186506479094e29,5.5950483766900336e29,5.941062495891743e29,6.308475137970616e29,6.698609650026813e29,7.11287121880736e29,7.552751931907969e29,8.019836151975818e29,8.515806223267722e29,9.042448531118435e29,9.601659936145232e29,1.019545460636145e30,1.082597127180772e30,1.1495480927832273e30,1.2206395014762301e30,1.296127410343244e30,1.3762837117850083e30,1.461397112821707e30,1.5517741749582223e30,1.647740418357516e30,1.7496414942992975e30,1.8578444301471963e30,1.9727389513079733e30,2.0947388849449273e30,2.2242836505007806e30,2.3618398423988202e30,2.5079029106231913e30,2.662998945230896e30,2.827686571223195e30,3.002558960601776e30,3.188245968855749e30,3.38541640357586e30,3.594780433366e30,3.8170921457288014e30,4.053152263138808e30,4.303811027085082e30,4.5699712604713804e30,4.8525916194047163e30,5.152690046083064e30,5.471347435220705e30,5.809711527215359e30,6.16900104208005e30,6.550510069030151e30,6.955612727534568e30,7.385768116619849e30,7.842525570254729e30,8.327530237741433e30,8.84252900921628e30,9.389376807599452e30,9.970043269657188e30,1.058661984024159e31,1.1241327305257735e31,1.1936523790491337e31,1.2674713255108888e31,1.3458554510418144e31,1.429087079637767e31,1.5174659950343945e31,1.6113105204683273e31,1.7109586652141512e31,1.816769342026383e31,1.9291236598715876e31,2.048426296607089e31,2.175106956549735e31,2.309621918185385e31,2.4524556775929935e31,2.6041226935027977e31,2.765169240274322e31,2.9361753754676405e31,3.1177570290949526e31,3.3105682220780044e31,3.515303421900737e31,3.7327000439430494e31,3.9635411075038846e31,4.208658056080485e31,4.468933752062469e31,4.745305656626027e31,5.038769206281999e31,5.350381398240241e31,5.681264597502322e31,6.032610579397042e31,6.405684822117416e31,6.801831064720584e31,7.222476147008585e31,7.66913514872066e31,8.143416846548143e31,8.64702950862817e31,9.181787047384108e31,9.749615552877347e31,1.0352560230199457e32,1.0992792765892788e32,1.167261914993337e32,1.2394487981446772e32,1.3160999288073508e32,1.3974913890751568e32,1.4839163347641657e32,1.575686051301667e32,1.6731310749141776e32,1.7766023831529682e32,1.8864726590453812e32,2.0031376334247467e32,2.1270175102738722e32,2.2585584802162274e32,2.3982343276053955e32,2.5465481370020887e32,2.704034105184373e32,2.871259465217857e32,3.0488265295163554e32,3.23737485925104e32,3.437583567922151e32,3.6501737673907764e32,3.875911165179656e32,4.1156088223993966e32,4.3701300822323834e32,4.6403916795226455e32,4.927367042672382e32,5.23208979973688e32,5.555657501346496e32,5.899235573865768e32,6.2640615170262664e32,6.651449361154507e32,7.062794400047049e32,7.499578216540301e32,7.963374018877164e32,8.45585230708927e32,8.978786889804734e32,9.534061273154095e32,1.0123675444782964e33,1.074975307740977e33,1.1414549177871222e33,1.2120458209206935e33,1.2870022715038946e33,1.3665942477306624e33,1.4511084240342436e33,1.5408492036314973e33,1.6361398149224432e33,1.737323475694676e33,1.8447646293253654e33,1.9588502574335718e33,2.0799912737110563e33,2.208624003951419e33,2.3452117576085382e33,2.4902464965450886e33,2.644250606980849e33,2.807778781023972e33,2.981420014561303e33,3.1657997287040186e33,3.361582022430059e33,3.5694720645361523e33,3.7902186335151057e33,4.0246168145070284e33,4.273510863037109e33,4.537797245856108e33,4.818427869834753e33,5.1164135105423255e33,5.432827452859184e33,5.768809356734782e33,6.125569362015384e33,6.504392447127142e33,6.906643057311568e33,7.333770019085943e33,7.78731175862739e33,8.26890184287696e33,8.780274863322779e33,9.323272683652545e33,9.899851073778968e33,1.0512086754134076e34,1.1162184875601162e34,1.1852486962029707e34,1.258547934393716e34,1.336380211377529e34,1.4190258635017998e34,1.5067825639317276e34,1.5999663948096591e34,1.6989129857201104e34,1.8039787225604512e34,1.9155420311720293e34,2.034004740354557e34,2.159793529173259e34,2.293361463771984e34,2.4351896292270688e34,2.585788862319781e34,2.745701591468817e34,2.915503790449061e34,3.095807052934573e34,3.2872607953369866e34,3.490554595873834e34,3.7064206782921016e34,3.9356365491920874e34,4.179027798451021e34,4.437471072833625e34,4.711897233498554e34,5.003294708775164e34,5.312713054285163e34,5.641266733232512e34,5.9901391304781825e34,6.360586814856343e34,6.75394406508454e34,7.171627675570304e34,7.615142059421455e34,8.086084667042912e34,8.58615173983437e34,9.11714441971332e34,9.68097523646993e34,1.0279674996317798e35,1.0915400096452672e35,1.1590440291966336e35,1.2307226943086816e35,1.3068341772454387e35,1.387652616397146e35,1.4734691036720343e35,1.5645927329514701e35,1.6613517133844508e35,1.7640945515314635e35,1.873191306615814e35,1.9890349234029857e35,2.112042647509542e35,2.2426575282385933e35,2.3813500143549736e35,2.528619648548105e35,2.6849968666851043e35,2.8510449083349265e35,3.0273618454452847e35,3.2145827364782784e35,3.413381913764672e35,3.624475412314425e35,3.8486235488319064e35,4.0866336602254086e35,4.339363011473632e35,4.607721883323063e35,4.892676850938205e35,5.195254265312144e35,5.516543949978707e35,5.857703126339411e35,6.219960581744022e35,6.604621095338138e35,7.013070137617368e35,7.446778860615587e35,7.907309396701993e35,8.396320485069714e35,8.915573446184481e35,9.46693852570957e35,1.0052401630757464e36,1.0674071482732199e36,1.1334187212523176e36,1.2035126425407797e36,1.2779413764712855e36,1.3569730005075237e36,1.4408921708059012e36,1.5300011474902303e36,1.624620883332376e36,1.725092179760292e36,1.8317769143567753e36,1.945059344270303e36,2.0653474902328686e36,2.1930746061691136e36,2.328700739690797e36,2.4727143890965163e36,2.625634262845094e36,2.788011147840258e36,2.960429893255186e36,3.143511517042521e36,3.3379154427175363e36,3.544341874469849e36,3.763534319159655e36,3.9962822642811125e36,4.243424021538746e36,4.505849746279436e36,4.784504643654397e36,5.080392373059508e36,5.394578663116868e36,5.728195150216302e36,6.082443454444575e36,6.458599507581227e36,6.85801814875022e36,7.282138004280936e36,7.732486669353215e36,8.210686210090348e36,8.71845900591869e36,9.257633953234127e36,9.830153052723158e36,1.0438078404061951e37,1.108359963318786e37,1.1769041778896472e37,1.2496873667167484e37,1.326971680338324e37,1.409035481446978e37,1.4961743474964722e37,1.5887021353129286e37,1.6869521115445044e37,1.7912781530213523e37,1.902056021349565e37,2.0196847163295152e37,2.144587913073515e37,2.2772154879993174e37,2.4180451391950617e37,2.567584106992785e37,2.726371000946902e37,2.8949777397983375e37,3.0740116114120574e37,3.2641174601068053e37,3.465980009255654e37,3.680326327523433e37,3.907928447622748e37,4.149606147022272e37,4.406229900621643e37,4.6787240160283405e37,4.968069962729815e37,5.275309907150779e37,5.6015504663286915e37,5.947966693728274e37,6.315806311549243e37,6.706394204773527e37,7.12113719313666e37,7.561529098211733e37,8.029156123857516e37,8.525702569408323e37,9.052956896184093e37,9.61281816917242e37,1.0207302897081082e38,1.0838552295401384e38,1.1508839998639175e38,1.2220580249492622e38,1.2976336594474133e38,1.377883111729347e38,1.4630954243260059e38,1.5535775150020173e38,1.6496552822121407e38,1.7516747789226877e38,1.8600034590252707e38,1.975031500832391e38,2.0971732124221014e38,2.226868523893048e38,2.3645845719048976e38,2.5108173822116868e38,2.6660936562474583e38,2.8309726682000723e38,3.0060482794052596e38,3.191951077316644e38,3.3893506467563013e38,3.59895798162571e38,3.8215280457639014e38,4.0578624921770724e38,4.3088125504325e38,4.5752820926181535e38,4.858230888909627e38,5.158678064470793e38,5.477705770139892e38,5.816463080120974e38,6.1761701307198714e38,6.558122515032537e38,6.96369594941244e38,7.394351228527276e38,7.851639486849929e38,8.337207785535302e38,8.852805044806945e38,9.400288343218785e38,9.981629606481492e38,1.059892270994675e39,1.1254391020327794e39,1.1950395403824134e39,1.2689442729490619e39,1.3474194898479502e39,1.430747843167885e39,1.5192294650276898e39,1.613183048592203e39,1.7129469959416825e39,1.8188806369284673e39,1.9313655234116418e39,2.0508068035307132e39,2.177634680968361e39,2.3123059644585173e39,2.455305713120296e39,2.607148983544142e39,2.7683826849232453e39,2.9395875489111533e39,3.1213802213016876e39,3.314415483064079e39,3.5193886087333484e39,3.737037870650867e39,3.9681471980740505e39,4.2135490007331e39,4.4741271670053225e39,4.75082024750441e39,5.0446248355530967e39,5.356599156713484e39,5.687866880304342e39,6.039621166634458e39,6.413128964528037e39,6.809735574621531e39,7.230869494869014e39,7.678047565706313e39,8.152880433408591e39,8.657078351316906e39,9.192457339829458e39,9.760945727345788e39,1.0364591095720978e40,1.1005567655246882e40,1.1686184075725238e40,1.240889180183488e40,1.317629388274795e40,1.3991154347793682e40,1.4856408161940497e40,1.577517179695593e40,1.675075445631621e40,1.7786669994296814e40,1.8886649572176798e40,2.0054655097136023e40,2.1294893492256877e40,2.2611831849021954e40,2.401021351688612e40,2.549507518787763e40,2.7071765037758033e40,2.874596198908395e40,3.052369616555686e40,3.241137061132347e40,3.441578435346734e40,3.6544156890748017e40,3.880415419679486e40,4.120391633141905e40,4.375208675948508e40,4.645784348294633e40,4.933093209818298e40,5.238170089769247e40,5.562113814258094e40,5.906091164008767e40,6.271341076869834e40,6.659179110222165e40,7.071002179354166e40,7.508293588871883e40,7.972628375267227e40,8.465678979884631e40,8.98922127272216e40,9.545140948760971e40,1.013544031986231e41,1.0762245526696527e41,1.14278141966776e41,1.2134543575486554e41,1.288497916147369e41,1.3681823874034912e41,1.4527947788989826e41,1.5426398476022277e41,1.6380411975418184e41,1.739342445363888e41,1.846908457970721e41,1.961126666698522e41,2.0824084627680455e41,2.2111906790335527e41,2.347937163367876e41,2.49314044934992e41,2.6473235302723244e41,2.811041742859262e41,2.98488476747853e41,3.1694787520525622e41,3.3654885673187267e41,3.573620201560846e41,3.794623303438586e41,4.029293882072377e41,4.2784771741094155e41,4.543070688097919e41,4.824027437133867e41,5.122359371423991e41,5.439141023129183e41,5.775513376614589e41,6.132687978048371e41,6.511951299149302e41,6.914669370801179e41,7.342292703224307e41,7.796361510423946e41,8.27851125773379e41,8.790478552436877e41,9.334107398677944e41,9.91135583919963e41,1.0524303007821797e42,1.117515661806666e42,1.1866260914903682e42,1.26001051182523e42,1.3379332388655318e42,1.4206749347417583e42,1.5085336185494975e42,1.6018257397549562e42,1.7008873179828044e42,1.8060751532918078e42,1.9177681112976606e42,2.0363684877713513e42,2.1623034576282447e42,2.2960266135271843e42,2.4380195996205924e42,2.5887938463409187e42,2.748892412471029e42,2.9188919411335706e42,3.099404736744784e42,3.291080970412858e42,3.4946110217245124e42,3.710727965354985e42,3.940210211456499e42,4.1838843093368207e42,4.4426279245249735e42,4.717372999947328e42,5.009109112600627e42,5.318887037810907e42,5.647822533916536e42,5.997100361007867e42,6.367978548196302e42,6.761792924784951e42,7.179961931659297e42,7.62399173022819e42,8.095481627317631e42,8.596129835554885e42,9.12773958999148e42,9.692225642997275e42,1.029162116081582e43,1.0928085046624799e43,1.1603909716474594e43,1.2321529356113421e43,1.3083528688440158e43,1.3892652283160566e43,1.4751814442179683e43,1.5664109696337748e43,1.6632823951291817e43,1.7661446322694448e43,1.8753681703292201e43,1.9913464107209986e43,2.1144970839487315e43,2.24526375418977e43,2.384117416924514e43,2.531558195368474e43,2.6881171418161356e43,2.8543581503857125e43,3.030879988053264e43,3.218318451291852e43,3.417348656084007e43,3.6286874695545667e43,3.8530960919834917e43,4.0913827984974154e43,4.3444058503153525e43,4.613076586034873e43,4.898362704091918e43,5.201291748217459e43,5.522954808445674e43,5.864510451002194e43,6.227188891229228e43,6.612296424575807e43,7.021220131613302e43,7.455432874023711e43,7.9164985995536e43,8.406077975041787e43,8.925934367811065e43,9.477940196964866e43,1.0064083677468495e44,1.0686475981302785e44,1.1347358841484274e44,1.204911262634157e44,1.27942649131272e44,1.3585499591846457e44,1.4425666532095507e44,1.5317791847722092e44,1.626508879628578e44,1.727096935257066e44,1.833905649783763e44,1.947319726908216e44,2.067747661529406e44,2.195623211062859e44,2.331406957748597e44,2.4755879675763176e44,2.628685551803823e44,2.7912511374125696e44,2.9638702532376133e44,3.147164638925992e44,3.3417944843188977e44,3.5484608073237387e44,3.767907978841239e44,4.000926403840654e44,4.248355368241274e44,4.511086061852872e44,4.790064788263552e44,5.086296373237023e44,5.400847783894538e44,5.7348519717175425e44,6.089511953213615e44,6.466105142941493e44,6.865987954504267e44,7.29060068608057e44,7.741472708091204e44,8.220227971687141e44,8.728590857897597e44,9.268392388506391e44,9.84157682102829e44,1.0450208651536002e45,1.1096480050564452e45,1.1782718758871699e45,1.2511396471496653e45,1.3285137740312874e45,1.4106729427140847e45,1.4979130741468105e45,1.590548389893335e45,1.6889125438959177e45,1.7933598242303516e45,1.9042664291809323e45,2.0220318222316038e45,2.1470801708539624e45,2.2798618742738666e45,2.420855185719569e45,2.5705679349947408e45,2.729539357579929e45,2.898342036851515e45,3.0775839664128096e45,3.267910739965679e45,3.470007876610629e45,3.6846032899498463e45,3.912469909886732e45,4.15442846656571e45,4.411350446478178e45,4.684161231383528e45,4.973843431349634e45,5.281440423918229e45,5.608060112143243e45,5.954878915036582e45,6.323146004794645e45,6.714187806068166e45,7.12941277347871e45,7.570316464592107e45,8.038486926618443e45,8.535610416241207e45,9.06347747317841e45,9.623989369349431e45,1.021916495687707e46,1.0851147939591423e46,1.1522214594222634e46,1.2234781969096986e46,1.299141658986277e46,1.3794843703603505e46,1.464795709463577e46,1.5553829507343037e46,1.6515723713587716e46,1.7537104264566612e46,1.8621649969431878e46,1.9773267145629972e46,2.0996103688677787e46,2.2294564012054556e46,2.367332491102302e46,2.513735240751294e46,2.6691919636741104e46,2.8342625839995746e46,3.0095416531984616e46,3.195660491539654e46,3.3932894619798006e46,3.6031403846769126e46,3.825969100824966e46,4.062578195043093e46,4.3138198861252186e46,4.580599096562685e46,4.863876711894213e46,5.164673041624504e46,5.484071494175534e46,5.823222479107487e46,6.18334755066513e46,6.565743807572507e46,6.971788564923698e46,7.402944314997895e46,7.860763994864303e46,8.346896579752616e46,8.863093022332825e46,9.411212559297323e46,9.993229407961602e46,1.0611239877001175e47,1.1267469916937078e47,1.1964283137567018e47,1.2704189321215456e47,1.3489853462470416e47,1.4324105366962314e47,1.5209949843759146e47,1.6150577528090975e47,1.7149376373381509e47,1.8209943853980246e47,1.933609992254969e47,2.053190076877139e47,2.1801653428934475e47,2.3149931299021145e47,2.458159060716633e47,2.610178790482535e47,2.7715998639643546e47,2.9430036876926036e47,3.1250076240744753e47,3.3182672150098513e47,3.5234785430228517e47,3.741380738412218e47,3.9727586414511546e47,4.218445629225855e47,4.479326617293513e47,4.7563412469715676e47,5.05048726973887e47,5.362824140937108e47,5.694476835718234e47,6.046639900980542e47,6.420581757888208e47,6.817649270471992e47,7.2392725967647814e47,7.686970339945422e47,8.162355018045389e47,8.66713887191645e47,9.2031400323817e47,9.772289068780057e47,1.037663594249177e48,1.1018357390491505e48,1.1699764765520662e48,1.2423312361118708e48,1.3191606251500452e48,1.4007413678114516e48,1.487367301669669e48,1.579350436071313e48,1.6770220759314387e48,1.7807340150279372e48,1.89085980309254e48,2.007796091262409e48,2.1319640607386546e48,2.263810939796847e48,2.403811614614318e48,2.5524703397154347e48,2.7103225541957698e48,2.8779368102672023e48,3.055916821069563e48,3.244903635124889e48,3.44557794526672e48,3.65866254035964e48,3.8849249086410294e48,4.125180002060574e48,4.380293171574563e48,4.651183283967885e48,4.938826031428872e48,5.2442574457978574e48,5.5685776301478425e48,5.912954721135896e48,6.278629096399082e48,6.666917842147248e48,7.079219497044723e48,7.517019089468374e48,7.981893486283542e48,8.475517072403837e48,8.999667781592611e48,9.556233500225052e48,1.0147218867079447e49,1.0774752493646128e49,1.1441094630961294e49,1.2148645310581592e49,1.2899952989018985e49,1.3697723726772546e49,1.4544830935020243e49,1.5444325725071747e49,1.6399447897864545e49,1.74136376130806e49,1.8490547779915006e49,1.9634057214128225e49,2.0848284608766635e49,2.2137603368872968e49,2.350665736362158e49,2.496037765260712e49,2.650400024654048e49,2.814308496631481e49,2.98835354683709e49,3.1731620508493204e49,3.369399652061756e49,3.5777731591977937e49,3.799033092095104e49,4.0339763849280946e49,4.283449256606308e49,4.5483502586861195e49,4.829633511774126e49,5.128312142079768e49,5.445461930493814e49,5.782225187336453e49,6.139814866731908e49,6.519518935426773e49,6.922705011790082e49,7.350825291701845e49,7.805421779072801e49,8.288131839835756e49,8.800694099411012e49,9.344954704888184e49,9.922873974480887e49,1.0536533458201163e50,1.118814343518864e50,1.1880050874695055e50,1.261474788939914e50,1.3394880711500722e50,1.4223259223921185e50,1.5102867080941032e50,1.6036872454729257e50,1.7028639446466335e50,1.8081740203167613e50,1.9199967783844227e50,2.0387349821344724e50,2.1648163029087346e50,2.2986948604928573e50,2.4408528587651568e50,2.5918023224990956e50,2.7520869415741866e50,2.9222840292388096e50,3.103006601477358e50,3.2949055849714837e50,3.498672161608514e50,3.7150402579807167e50,3.944789188842428e50,4.188746464046823e50,4.44779076907102e50,4.7228551298664244e50,5.014930273432057e50,5.325068196215511e50,5.6543859531948665e50,6.004069681287877e50,6.3753788715804425e50,6.769650905763043e50,7.188305873112295e50,7.632851685370107e50,8.104889507940946e50,8.606119526970096e50,9.138347073075934e50,9.703489123790652e50,1.0303581208130783e51,1.0940784738167937e51,1.16173947940031e51,1.2335848390188726e51,1.3098733253368968e51,1.3908797142754657e51,1.476895774700534e51,1.5682313193161776e51,1.6652153205481268e51,1.768197095437026e51,1.8775475638085988e51,1.9936605842530936e51,2.1169543727253508e51,2.247873008875215e51,2.386888035534089e51,2.5345001571181418e51,2.6912410430656974e51,2.857675242804822e51,3.034402219147536e51,3.2220585074356424e51,3.4213200082140394e51,3.6329044216896035e51,3.857573832744557e51,4.096137455814182e51,4.349454549515728e51,4.618437511527085e51,4.904055164860864e51,5.207336247372215e51,5.529373117067344e51,5.8713256865590696e51,6.234425600841305e51,6.619980673428611e51,7.0293795968395e51,7.464096944390725e51,7.925698481315668e51,8.41584680433931e51,8.936307330019948e51,9.488954653427343e51,1.0075779300061228e52,1.0698894895327063e52,1.1360545777392948e52,1.2063115080849403e52,1.280913332028387e52,1.360128750469099e52,1.4442430815542965e52,1.5335592883379822e52,1.6283990699935938e52,1.7291040205102477e52,1.8360368590461195e52,1.9495827363707235e52,2.0701506221010075e52,2.198174777728578e52,2.3341163207429594e52,2.478464885484771e52,2.631740386711217e52,2.7944948922253204e52,2.9673146113139776e52,3.150822006157241e52,3.3456780338126855e52,3.552584526851278e52,3.7722867212182853e52,4.0055759404244345e52,4.253292445735771e52,4.516328462627111e52,4.795631394400154e52,5.092207234541772e52,5.407124190111494e52,5.741516529210894e52,6.096588666391007e52,6.473619500713188e52,6.87396702208912e52,7.299073202489553e52,7.750469189639593e52,8.229780821908318e52,8.738734484253656e52,9.279163326317651e52,9.853013865065774e52,1.0462352995752587e53,1.1109375436467267e53,1.1796411633070332e53,1.2525936152994559e53,1.3300576598144804e53,1.41231230689949e53,1.4996538213974681e53,1.592396790033858e53,1.6908752544951708e53,1.795443914580686e53,1.9064794057603674e53,2.024381655740666e53,2.1495753249245886e53,2.282511335953598e53,2.42366849784129e53,2.573555230547935e53,2.732711396207721e53,2.90171024360476e53,3.0811604729008466e53,3.271708428051972e53,3.4740404248107207e53,3.6888852226984454e53,3.91701664985213e53,4.1592563901989605e53,4.416476942997856e53,4.689604765408232e53,4.979623609403861e53,5.2875780650511664e53,5.614577322914913e53,5.961799169140949e53,6.330494227607656e53,6.721990464423672e53,7.137697970996801e53,7.5791140429027525e53,8.047828572845095e53,8.545529777131505e53,9.074010276293179e53,9.635173551745727e53,1.0231040801750669e54,1.0863758221368342e54,1.1535604732624226e54,1.2249000192732716e54,1.3006514109940052e54,1.3810874898380262e54,1.46649797052803e54,1.5571904845905338e54,1.6534916883834544e54,1.7557484396471415e54,1.86432904681674e54,1.9796245955959055e54,2.1020503575694868e54,2.2320472859289032e54,2.3700836036978552e54,2.516656490178075e54,2.672293871690295e54,2.8375563230595323e54,3.0130390866937455e54,3.19937421652857e54,3.397232854559501e54,3.607327648161432e54,3.830415316902783e54,4.067299378098145e54,4.3188330409178504e54,4.585922279477187e54,4.869529095974371e54,5.1706749856310834e54,5.49044461591448e54,5.829989733292946e54,6.190533311597849e54,6.573373956930849e54,6.979890584984822e54,7.411547387623084e54,7.869899106606299e54,8.356596633463012e54,8.87339295567157e54,9.422149470571218e54,1.0004842689745141e55,1.0623571358020178e55,1.1280564012728283e55,1.1978187010453414e55,1.271895305017572e55,1.3505530223513405e55,1.4340751624656454e55,1.522762555460655e55,1.616934635647904e55,1.7169305920888436e55,1.8231105902863823e55,1.9358570694291763e55,2.0555761198612665e55,2.182698945738714e55,2.3176834181409456e55,2.4610157242310086e55,2.613212118405052e55,2.774820781737482e55,2.9464237964201705e55,3.1286392423063877e55,3.32212342311109e55,3.5275732302863376e55,3.745728653085281e55,3.9773754438558315e55,4.223347948164086e55,4.48453210994087e55,4.7618686624750146e55,5.056356516747199e55,5.369056359308343e55,5.701094472660536e55,6.053666791902997e55,6.428043212251328e55,6.8255721629471e55,7.247685464031197e55,7.695903483474417e55,8.171840613238986e55,8.677211083997884e55,9.213835139451188e55,9.783645592481269e55,1.0388694786759807e56,1.1031161988879448e56,1.1713361237639395e56,1.2437749678750773e56,1.3206936414985978e56,1.402369190364719e56,1.489095793519976e56,1.5811858229017418e56,1.6789709684395256e56,1.782803432736023e56,1.8930571996306848e56,2.010129381215018e56,2.1344416481509587e56,2.266441748444875e56,2.406605120146421e56,2.555436603781673e56,2.713472260688155e56,2.8812813038006167e56,3.0594681478430114e56,3.2486745863095634e56,3.4495821030770736e56,3.662914326974108e56,3.8894396381473882e56,4.1299739356145255e56,4.3853835759692485e56,4.656588493825262e56,4.9445655152373555e56,5.250351876034288e56,5.575048957734909e56,5.919826254505711e56,6.285925585445138e56,6.674665567368583e56,7.087446364203523e56,7.525754730100089e56,7.991169364424338e56,8.48536659791792e56,9.01012643050745e56,9.567338942509705e56,1.0159011102323115e57,1.078727399512946e57,1.1454390498636863e57,1.2162763433514496e57,1.2914944217873678e57,1.371364205696772e57,1.4561733701207686e57,1.5462273807646227e57,1.64185059422419e57,1.7433874262537587e57,1.8512035922829953e57,1.965687424650818e57,2.087251271301381e57,2.2163329809789754e57,2.3533974802719765e57,2.4989384481858167e57,2.6534800942760743e57,2.8175790467472174e57,2.9918263573161715e57,3.176849630062856e57,3.37331528193498e57,3.581930943049152e57,3.803448005433108e57,4.038664329390614e57,4.288427117234847e57,4.553635964742359e57,4.83524610131788e57,5.1342718305396834e57,5.4517901834797004e57,5.788944797954227e57,6.1469500376795065e57,6.527095366167961e57,6.930749991118004e57,7.359367796028328e57,7.81449257679575e57,8.297763602160483e57,8.810921518025384e57,9.355814616915801e57,9.934405495159775e57,1.0548778121770357e58,1.1201145344485587e58,1.18938568600052e58,1.262940767713014e58,1.3410447103285507e58,1.423978828679991e58,1.512041834930363e58,1.6055509144745647e58,1.7048428683779803e58,1.8102753264665914e58,1.9222280354386065e58,2.0411042266361877e58,2.1673320684044151e58,2.3013662082683177e58,2.443689410482704e58,2.5948142948525034e58,2.75528518308753e58,2.925680059340513e58,3.106612651990873e58,3.2987346441721e58,3.5027380210041376e58,3.7193575619863885e58,3.949373487526658e58,4.193614269139622e58,4.4529596134362156e58,4.7283436306509923e58,5.02075819912173e58,5.331256537837007e58,5.660956999921184e58,6.011047100719431e58,6.382787794991477e58,6.777518018618594e58,7.196659511184807e58,7.641721936798785e58,8.11430832160321e58,8.61612082755566e58,9.148966883275714e58,9.714765694044e58,1.0315555154396122e59,1.0953499188212787e59,1.163089554274263e59,1.2350184064628475e59,1.3113955487750552e59,1.3924960764532238e59,1.4786120974322667e59,1.5700537844542272e59,1.6671504922487168e59,1.7702519438028138e59,1.8797294899938283e59,1.9959774471209604e59,2.1194145171540543e59,2.250485295814698e59,2.38966187392114e59,2.5374455377656857e59,2.6943685746477565e59,2.8609961900667033e59,3.0379285434794364e59,3.225802909954821e59,3.425295975511949e59,3.6371262744079666e59,3.8620567771553225e59,4.100897638589473e59,4.354509115885232e59,4.623804667031155e59,4.909754240923852e59,5.2133877709301e59,5.535798884501652e59,5.878148842203492e59,6.241670720342254e59,6.627673852262264e59,7.037548544302621e59,7.472771083403653e59,7.934909054398435e59,8.425626986140003e59,8.9466923468038e59,9.49998190995488e59,1.0087488514312399e60,1.0711328241557448e60,1.1373748038037794e60,1.2077133807819467e60,1.2824019006239505e60,1.3617093764905843e60,1.4459214581015458e60,1.5353414605888306e60,1.6302914569772072e60,1.7311134382273064e60,1.8381705450187258e60,1.9518483757104153e60,2.0725563751891605e60,2.2007293096082217e60,2.3368288323286952e60,2.481345146702677e60,2.634798771688077e60,2.7977424166541522e60,2.9707629721305667e60,3.154483623669762e60,3.349566096437589e60,3.556713038615131e60,3.776670552197472e60,4.010230880304475e60,4.258235260682136e60,4.521576955673921e60,4.8012044695732406e60,5.0981249649469544e60,5.413407890234332e60,5.7481888316865536e60,6.103673603522927e60,6.481142591032758e60,6.881955362268091e60,7.30755556493683e60,7.759476126134236e60,8.239344773639905e60,8.748889898670048e60,9.289946781197296e60,9.864464200263539e60,1.0474511453093887e61,1.1122285808291619e61,1.1810120419963448e61,1.2540492731274416e61,1.3316033397704609e61,1.413953576214624e61,1.5013965915966364e61,1.594247338227909e61,1.6928402459898503e61,1.7975304268836754e61,1.9086949540730504e61,2.0267342200265223e61,2.1520733786511544e61,2.2851638766124874e61,2.4264850793552245e61,2.576545997682062e61,2.7358871211092197e61,2.9050823646016337e61,3.084741135700717e61,3.275510529488552e61,3.4780776592954606e61,3.6931721315453695e61,3.921568673652295e61,4.1640899244346784e61,4.421609397096032e61,4.6950546254454746e61,4.9854105046896316e61,5.293722838828997e61,5.621102107434893e61,5.968727465376407e61,6.337850989900614e61,6.729802190365389e61,7.145992796867298e61,7.587921845011217e61,8.057181075138945e61,8.555460665459873e61,9.08455531973617e61,9.646370731448273e61,1.0242930447721865e62,1.0876383157742857e62,1.1549010431906494e62,1.226323493957939e62,1.3021629175071676e62,1.3826924723249117e62,1.468202209815577e62,1.5590001190089698e62,1.6554132358752396e62,1.7577888212432936e62,1.8664956115651357e62,1.9819251470308565e62,2.1044931818186623e62,2.2346411815583485e62,2.372837913402552e62,2.5195811344326664e62,2.675399384480348e62,2.840853889823055e62,3.0165405846089524e62,3.2030922572929976e62,3.401180829814817e62,3.611519777727704e62,3.834866699994938e62,4.0720260477108384e62,4.323852021572858e62,4.591251648542331e62,4.875188048774917e62,5.17668390458689e62,5.496825143953788e62,5.836764851805997e62,6.197727423210951e62,6.5810129734002995e62,6.98800202052508e62,7.420160458008007e62,7.879044834398669e62,8.366307959751315e62,8.883704858717213e62,9.433099091793882e62,1.0016469467497486e63,1.0635917169638234e63,1.1293673325364605e63,1.1992107041238866e63,1.2733733936287032e63,1.352122520275573e63,1.435741722721634e63,1.5245321806662647e63,1.618813699640363e63,1.718925862882169e63,1.825229254448208e63,1.9381067579654715e63,2.0579649357017343e63,2.185235492921849e63,2.3203768328040578e63,2.4638757075169368e63,2.6162489714034074e63,2.7780454425874636e63,2.949847879707388e63,3.132275080896274e63,3.325984112569649e63,3.531672676047359e63,3.750081620535199e63,3.981997611515716e63,4.228255964160565e63,4.489743651969374e63,4.767402501470992e63,5.062232584495652e63,5.375295820233871e63,5.7077198000578256e63,6.060701848880703e63,6.435513337682569e63,6.833504262734484e63,7.256108108017053e63,7.704847008343276e63,8.181337231784916e63,8.687295001148171e63,9.224542675465149e63,9.795015313769288e63,1.0400767644791339e64,1.1043981467682917e64,1.1726973510422475e64,1.2452203774206379e64,1.3222284393884803e64,1.403998904634951e64,1.4908262940765457e64,1.5830233426627126e64,1.680922125784851e64,1.7848752553454916e64,1.895257149796359e64,2.0124653827188213e64,2.1369221148047255e64,2.269075614395125e64,2.409401872053237e64,2.5584063149879469e64,2.716625627501621e64,2.8846296840200476e64,3.063023601666613e64,3.252449919773216e64,3.453590914179375e64,3.6671710546534684e64,3.893959614288512e64,4.1347734402705054e64,4.390479895999294e64,4.661999985158153e64,4.9503116689861994e64,5.256453388699358e64,5.581527805748748e64,5.926705773387604e64,6.293230553850643e64,6.682422296337797e64,7.09568279192784e64,7.534500522550593e64,8.000456022202364e64,8.495227569713458e64,9.020597233575317e64,9.578457290595134e64,1.0170817041499943e65,1.079981004803732e65,1.1467701817639843e65,1.2176897963329993e65,1.2929952868260646e65,1.3729578886092785e65,1.4578656110353032e65,1.548024274795689e65,1.6437586134258712e65,1.7454134429308933e65,1.8533549037437556e65,1.967971779490314e65,2.089676897310463e65,2.2189086147789712e65,2.3561323987824324e65,2.5018425020379847e65,2.656563743293131e65,2.820853397618258e65,2.995303203600442e65,3.180541494667551e65,3.377235462220506e65,3.586093558723385e65,3.807868049408068e65,4.0433577217837644e65,4.293410762709946e65,4.558927813397017e65,4.840865213335987e65,5.140238444842801e65,5.4581257906233765e65,5.79567221753237e65,6.1540935005164575e65,6.534680601592766e65,6.938804319636872e65,7.367920227727113e65,7.823573915828895e65,8.307406557700791e65,8.82116082207658e65,9.36668714940981e65,9.945950416791662e65,1.0561037015046894e66,1.1214162363496502e66,1.1907678889458288e66,1.2644084501219984e66,1.342603158500728e66,1.4256336558350723e66,1.5137990014258658e66,1.6074167492739498e66,1.706824091846229e66,1.812379074575764e66,1.924461885470052e66,2.043476224472504e66,2.169850757508943e66,2.3040406604571607e66,2.4465292585994776e66,2.5978297674641227e66,2.758487141325346e66,2.929080036019777e66,3.110222893149865e66,3.3025681531797524e66,3.5068086053958485e66,3.723679883195854e66,3.953963113693204e66,4.198487731181851e66,4.458134464592848e66,4.73383850970451e66,5.026592897531188e66,5.337452071023197e66,5.6675356829595426e66,6.0180326287149315e66,6.390205328423352e66,6.785394273963897e66,7.205022857145523e66,7.650602496479801e66,8.123738081010336e66,8.626133750802398e66,9.159599034915951e66,9.726055368968916e66,1.0327543015764159e67,1.0966228413911052e67,1.1644411980904437e67,1.2364536398770162e67,1.3129195412118841e67,1.3941143170297327e67,1.4803304147284103e67,1.5718783675063937e67,1.669087912841318e67,1.772309180138683e67,1.8819139518282313e67,1.998297002449945e67,2.121877520553558e67,2.2531006185319513e67,2.392438935827318e67,2.5403943412842937e67,2.6974997407812155e67,2.86432099665129e67,3.041458965805647e67,3.2295516639002375e67,3.4292765633410425e67,3.641353033404749e67,3.8665449312630823e67,4.105663353244682e67,4.3595695562420033e67,4.629178059787072e67,4.915459939968681e67,5.219446327054352e67,5.542232119416833e67,5.884979927139261e67,6.248924259505066e67,6.635375971454523e67,7.045726985022215e67,7.481455302763844e67,7.944130331226104e67,8.435418533636418e67,8.957089432171293e67,9.51102198142276e67,1.0099211336017221e68,1.072377603676628e68,1.1386965641227435e68,1.209116882616224e68,1.2838921991074242e68,1.3632918393812964e68,1.447601785115396e68,1.537125703928739e68,1.6321860431320716e68,1.7331251911188576e68,1.8403067105798303e68,1.9541166479836212e68,2.0749649240390025e68,2.203286810147615e68,2.339544496164797e68,2.4842287551153807e68,2.637860710860028e68,2.800993715079912e68,2.974215340338898e68,3.15814949640287e68,3.353458677438434e68,3.56084634818448e68,3.781059477692499e68,4.014891229759855e68,4.263183819747766e68,4.526831548073287e68,4.806784021300645e68,5.104049572435546e68,5.419698892739178e68,5.754868888144834e68,6.110766774166468e68,6.488674424048518e68,6.8899529858170985e68,7.31604778486494e68,7.768493529724655e68,8.24891983978313e68,8.759057114845978e68,9.300742767691729e68,9.87592784206786e68,1.048668403996053e69,1.1135211183452391e69,1.18238451380436e69,1.2555066225972404e69,1.3331508159843398e69,1.4155967528734065e69,1.5031413870951505e69,1.5961000369717497e69,1.6948075210306425e69,1.7996193639539335e69,1.9109130771077132e69,2.029089518262564e69,2.1545743354033935e69,2.2878194998286945e69,2.429304934060817e69,2.5795402404316073e69,2.7390665365681805e69,2.9084584043908135e69,3.0883259596425776e69,3.2793170494042848e69,3.482119585511049e69,3.697464022273258e69,3.926125987427482e69,4.168929075792971e69,4.42674781569616e69,4.7005108188468755e69,4.991204125013353e69,5.299874753540451e69,5.6276344745047494e69,5.975663813088923e69,6.345216301597467e69,6.737622994431181e69,7.15429726227915e69,7.596739882798402e69,8.066544446116101e69,8.565403094622643e69,9.09511261773257e69,9.657580923561024e69,1.0254833910828685e70,1.0889022765745138e70,1.1562431710153133e70,1.2277486228839058e70,1.3036761805647571e70,1.3842993199859793e70,1.4699084296251414e70,1.5608118564307285e70,1.6573370164262097e70,1.7598315739975523e70,1.8686646941108684e70,1.9842283719710796e70,2.1069388449105677e70,2.2372380915928426e70,2.3755954239319368e70,2.522509177460141e70,2.6785085062333183e70,2.844155288738333e70,3.0200461516674486e70,3.20681461884841e70,3.40513339307149e70,3.615716779030519e70,3.8393232561060967e70,4.076758210257242e70,4.3288768348606276e70,4.59658721094733e70,4.880853577929253e70,5.1826998065973965e70,5.503213086900512e70,5.843547843785974e70,6.204929895209239e70,6.58866086728518e70,6.996122882486045e70,7.428783537771107e70,7.888201190578596e70,8.376030571717678e70,8.894028745380305e70,9.444061437735334e70,1.0028109756902504e71,1.0648277328509296e71,1.1306797872529927e71,1.2006043248701221e71,1.274853199948743e71,1.3536938421368459e71,1.4374102197123129e71,1.5263038623798902e71,1.6206949473213176e71,1.7209234524095613e71,1.8273503807413819e71,1.9403590608985304e71,2.0603565276209497e71,2.1877749878645422e71,2.3230733775248144e71,2.466739014432268e71,2.619289353574145e71,2.7812738508642254e71,2.953275942173193e71,3.1359151447488083e71,3.32984928859324e71,3.5357768858356864e71,3.754439646633934e71,3.9866251506660804e71,4.233169683836169e71,4.494961250408909e71,4.772942771424133e71,5.068115480910427e71,5.38154253213068e71,5.714352826847618e71,6.067745081403815e71,6.442992144258435e71,6.841445580533812e71,7.264540540083817e71,7.713800926616748e71,8.190844886493931e71,8.697390636969582e71,9.235262654867051e71,9.80639824798095e71,1.0412854532872568e72,1.1056815844195298e72,1.1740601602231595e72,1.2466674666982756e72,1.3237650208899733e72,1.4056305128206209e72,1.4925588056738103e72,1.5848629978330035e72,1.6828755505993454e72,1.7869494856510393e72,1.897459656557118e72,2.0148040989250672e72,2.1394054640460558e72,2.2717125412004365e72,2.412201874107324e72,2.561379477340156e72,2.7197826588900352e72,2.8879819554424363e72,3.0665831873363436e72,3.25622964060842e72,3.457604383981089e72,3.671432729140016e72,3.8984848431618154e72,4.1395785225029514e72,4.395582138539161e72,4.667417765266156e72,4.9560645004265014e72,5.262561992023961e72,5.5880141829292e72,5.933593287061408e72,6.300544011469321e72,6.690188039518089e72,7.103928791328555e72,7.543256478617897e72,8.009753472144456e72,8.505100001091982e72,9.031080204920225e72,9.58958855947991e72,1.0182636700536057e73,1.0812360669280602e73,1.148102860592597e73,1.2191048919094244e73,1.2944978960425341e73,1.3745534235646402e73,1.459559818528428e73,1.5498232570242163e73,1.6456688499652384e73,1.7474418140723968e73,1.8555087152758848e73,1.9702587890128878e73,2.0921053421758526e73,2.2214872417615746e73,2.3588704955826436e73,2.5047499307347633e73,2.659650975865038e73,2.8241315536616383e73,2.9987840903798426e73,3.184237649643387e73,3.38116019820634e73,3.59026101183583e73,3.8122932299825356e73,4.0480565684384965e73,4.2984001997540794e73,4.564225811788369e73,4.84649085540859e73,5.14621199303804e73,5.4644687604709875e73,5.802407455145544e73,6.161245264878542e73,6.542274651933616e73,6.946868008211918e73,7.376482598335263e73,7.832665808422119e73,8.317060719464132e73,8.831412025376594e73,9.377572317037171e73,9.957508754950425e73,1.0573310154566877e74,1.1227194509780136e74,1.192151698169912e74,1.26587783814676e74,1.3441634177689396e74,1.427290406089571e74,1.5155582099508658e74,1.609284752387895e74,1.7088076177240348e74,1.81448526748222e74,1.9266983314921797e74,2.0458509788430254e74,2.1723723736197952e74,2.3067182206670065e74,2.4493724069464127e74,2.6008487444017673e74,2.7616928206067776e74,2.9324839638628525e74,3.1138373298242584e74,3.3064061171658145e74,3.5108839202748363e74,3.728007227439521e74,3.958558073533046e74,4.2033668567472964e74,4.463315329521754e74,4.739339774439528e74,5.032434376531326e74,5.343654804131277e74,5.674122011183972e74,6.025026274697292e74,6.397631481882265e74,6.793279682423867e74,7.213395922275815e74,7.659493376392205e74,8.133178798882306e74,8.636158310217671e74,9.170243542339344e74,9.737358163794118e74,1.0339544808405403e75,1.0978972432433115e75,1.1657944126722095e75,1.2378905411974977e75,1.3144453047032197e75,1.3957344381878475e75,1.4820507289068144e75,1.573705070933892e75,1.6710275849394972e75,1.774368807219805e75,1.884100952258443e75,2.0006192533689116e75,2.1243433862462554e75,2.2557189805550258e75,2.3952192249988577e75,2.5433465716516275e75,2.7006345456897254e75,2.8676496670433953e75,3.044993490888683e75,3.233304774328933e75,3.4332617770710536e75,3.645584704381455e75,3.871038301121939e75,4.110434606208373e75,4.364635877412539e75,4.6345576970434375e75,4.921172269691811e75,5.2255119239174e75,5.548672830490802e75,5.8918189505814625e75,6.256186228114713e75,6.643087041394831e75,7.053914930030238e75,7.490149614185395e75,7.953362324238112e75,8.445221460037281e75,8.967498600147891e75,9.522074882723015e75,1.0110947780988689e76,1.0736238297744628e76,1.1400198604792314e76,1.2105220154810684e76,1.2853842294890821e76,1.3648761412758303e76,1.4492840648624718e76,1.5389120207646382e76,1.6340828310139697e76,1.7351392818985694e76,1.842445358610921e76,1.9563875562500023e76,2.0773762718996476e76,2.2058472827968082e76,2.342263315914641e76,2.487115714612601e76,2.6409262083573426e76,2.8042487918883385e76,2.9776717205961914e76,3.161819629301755e76,3.35735578206595e76,3.5649844611347733e76,3.785453503623674e76,4.019556995077352e76,4.2681381296082305e76,4.532092246913165e76,4.812370057108663e76,5.109981064999218e76,5.4259972061125466e76,5.761556707597082e76,6.117868187890177e76,6.496215009920213e76,6.897959903524194e76,7.324549873729205e76,7.777521412575258e76,8.258506033254572e76,8.769236146496074e76,9.31155130036373e76,9.887404805942268e76,1.0498870772773245e77,1.1148151579385824e77,1.1837585805824154e77,1.256965665674681e77,1.3347000905434995e77,1.4172418390924702e77,1.504888210246726e77,1.5979548887646349e77,1.6967770822712186e77,1.801710728609242e77,1.9131337778564242e77,2.0314475536260706e77,2.1570781985550472e77,2.2904782091844074e77,2.4321280657617884e77,2.582537962835562e77,2.7422496468736125e77,2.911838367526552e77,3.091914949562022e77,3.283127992933813e77,3.4861662089096183e77,3.701760900671841e77,3.9306885973254733e77,4.173773850801759e77,4.431892205729489e77,4.705973352972332e77,4.997004478190151e77,5.306033817484415e77,5.634174432936516e77,5.982608221634984e77,6.352590172633335e77,6.745452887170684e77,7.16261137843502e77,7.605568168159778e77,8.075918698406884e77,8.575357078031226e77,9.105682184523061e77,9.668804143206447e77,1.0266751207128815e78,1.090167706242577e78,1.1575868585468201e78,1.2291754079735379e78,1.3051912022080434e78,1.3859080349888541e78,1.47161663225838e78,1.5626256992996746e78,1.6592630326313655e78,1.761876700665426e78,1.8708362973800148e78,1.986534273523608e78,2.109387350144175e78,2.2398380195353755e78,2.3783561390055995e78,2.525440623210408e78,2.6816212411433873e78,2.847460524258889e78,3.023555792597917e78,3.2105413062159264e78,3.409090549661207e78,3.619918657731602e78,3.843784991248065e78,4.081495872120603e78,4.333907487559162e78,4.601928973889429e78,4.886525691080136e78,5.188722699778009e78,5.50960845337139e78,5.8503387183825025e78,6.212140737308089e78,6.596317648902441e78,7.004253181822698e78,7.437416638544747e78,7.89736818749715e78,8.385764482476997e78,8.904364629586936e78,9.455036523183696e78,1.0039763573662717e79,1.066065185130607e79,1.1319937671928046e79,1.2019995651639298e79,1.276334725973939e79,1.3552669900548602e79,1.4390806556883298e79,1.528077602991365e79,1.622578381228373e79,1.7229233633657544e79,1.8294739720272878e79,1.9426139812666654e79,2.0627508988449474e79,2.190317433992336e79,2.3257730559406363e79,2.4696056488395823e79,2.6223332690186803e79,2.7845060109225894e79,2.956707988441724e79,3.139559438774143e79,3.3337189563959566e79,3.5398858651878685e79,3.7588027372600573e79,3.9912580675489855e79,4.238089113818988e79,4.5001849122979774e79,4.7784894798082203e79,5.074005213927506e79,5.387796503424925e79,5.720993561977169e79,6.074796498973082e79,6.45047964206778e79,6.84939612705786e79,7.272982771606157e79,7.722765250372726e79,8.200363590191089e79,8.707498005081052e79,9.245995092118068e79,9.817794410470914e79,1.042495546730743e80,1.1069665135728812e80,1.1754245531450946e80,1.2481162376601032e80,1.3253033880759142e80,1.4072640171225954e80,1.4942933306487455e80,1.586704790894161e80,1.6848312455181638e80,1.7890261264507876e80,1.8996647228839653e80,2.017145532988437e80,2.1418916992247875e80,2.2743525324180044e80,2.415005130085864e80,2.564356094848856e80,2.7229433591119007e80,2.8913381225896435e80,3.0701469096540584e80,3.2600137539139915e80,3.4616225178963555e80,3.6756993561823004e80,3.9030153308713553e80,4.144389188793531e80,4.400690310471737e80,4.672841841457817e80,4.961824017318366e80,5.268677694247963e80,5.594508098025861e80,5.940488804818326e80,6.307865968166971e80,6.697962807384819e80,7.112184373528653e80,7.552022610112862e80,8.019061726792807e80,8.514983905371329e80,9.041575358683624e80,9.600732764178942e80,1.0194470095374927e81,1.0824925875789077e81,1.1494370881472978e81,1.2205216319896787e81,1.296002251463675e81,1.3761508127150658e81,1.461255994885492e81,1.5516243298770184e81,1.6475813064191862e81,1.7494725424143775e81,1.8576650297846474e81,1.9725484563034747e81,2.0945366091735034e81,2.2240688654053348e81,2.361611774366282e81,2.507660738197968e81,2.662741796156146e81,2.827413519299325e81,3.0022690223500653e81,3.1879380999764492e81,3.3850894951866347e81,3.5944333080079426e81,3.816723553125722e81,4.05276087569352e81,4.303395435097961e81,4.569529967062986e81,4.852123035124087e81,5.152192483183087e81,5.470819101579152e81,5.809150519879535e81,6.168405340413436e81,6.549877527434084e81,6.954941067720205e81,7.3850549194027236e81,7.841768266840319e81,8.326726100473896e81,8.841675141753469e81,9.388470134480833e81,9.969080525227324e81,1.0585597556886683e82,1.1240241800916752e82,1.1935371155394166e82,1.2673489337693484e82,1.3457254902378111e82,1.4289490816784305e82,1.5173194628785224e82,1.6111549263363227e82,1.7107934486869654e82,1.816593908026992e82,1.928937376521774e82,2.048228492951278e82,2.1748969201386136e82,2.3093988925096674e82,2.4522188593586163e82,2.6038712297377926e82,2.7649022252562623e82,2.9358918474616136e82,3.117455966889635e82,3.310248541307297e82,3.51496397113827e82,3.7323396005549455e82,3.963158373244751e82,4.208251652417864e82,4.468502215211375e82,4.7448474322766734e82,5.0382826440018255e82,5.34986474552869e82,5.680715993479381e82,6.0320280481003745e82,6.405066265385316e82,6.80117425463528e82,7.221778717870889e82,7.668394588529727e82,8.142630487953885e82,8.646194519323551e82,9.180900419904209e82,9.748674093766995e82,1.0351560548510186e83,1.0991731260970561e83,1.1671491998449046e83,1.2393291123625204e83,1.3159728413071932e83,1.3973564421131002e83,1.4837730422881707e83,1.5755338972007973e83,1.6729695111596671e83,1.77643082782445e83,1.8862904942347115e83,2.0029442030105596e83,2.126812117558399e83,2.258340385415816e83,2.3980027451860775e83,2.546302232850224e83,2.703772993602116e83,2.870982205733372e83,3.0485321234962456e83,3.237062246303459e83,3.437251622077715e83,3.6498212930465773e83,3.8755368927934143e83,4.11521140391658e83,4.3697080862307724e83,4.6399435860569485e83,4.926891237799131e83,5.231584569701689e83,5.555121026411556e83,5.898665921755216e83,6.263456635966826e83,6.650807072485364e83,7.062112390372164e83,7.498854029396867e83,7.962605045887443e83,8.45503577856571e83,8.977919864774723e83,9.533140628765922e83,1.0122697865059181e84,1.0748715041303075e84,1.141344694658231e84,1.2119287812718904e84,1.2868779937816621e84,1.3664622843113976e84,1.450968299612033e84,1.5407004135060816e84,1.6359818231814692e84,1.7371557132834348e84,1.844586491997019e84,1.9586611035729965e84,2.07979042202375e84,2.208410731009609e84,2.3449852952456956e84,2.4900060290888254e84,2.643995268315353e84,2.8075076514702675e84,2.9811321175647387e84,3.16549402731713e84,3.361257415577301e84,3.5691273830482948e84,3.7898526359181816e84,4.024228182550592e84,4.273098196946373e84,4.537359059290199e84,4.817962584532814e84,5.115919450639509e84,5.4323028388502006e84,5.768252299064463e84,6.12497785427329e84,6.503764358820034e84,6.9059761261906475e84,7.333061842998252e84,7.786559786863711e84,8.268103366985231e84,8.779427007351777e84,9.322372393793932e84,9.898895107368254e84,1.0511071667970652e85,1.1161107013547145e85,1.1851342441841169e85,1.2584264043280021e85,1.3362511655378998e85,1.4188888370908636e85,1.5066370634076442e85,1.5998118961086094e85,1.6987489323685022e85,1.8038045236708355e85,1.915357059314729e85,2.033808329297784e85,2.1595849714836252e85,2.2931400082662058e85,2.434954478266523e85,2.5855391689376123e85,2.7454364563191957e85,2.9152222585680645e85,3.095508110300571e85,3.2869433652180704e85,3.490217534950033e85,3.7060627725371545e85,3.935256509500751e85,4.1786242559962504e85,4.4370425741357615e85,4.711442235190762e85,5.0028115720442324e85,5.3122000389688156e85,5.64072199155207e85,5.9895607003825455e85,6.359972612955515e85,6.753291879145787e85,7.170935156549775e85,7.614406713003773e85,8.085303844657087e85,8.58532262911347e85,9.116264034365913e85,9.68004040552348e85,1.0278682352697429e86,1.0914346064854377e86,1.158932107597794e86,1.230603851151558e86,1.306707984480668e86,1.3875186195035236e86,1.4733268200195199e86,1.5644416500626687e86,1.661191287088889e86,1.763924204005625e86,1.8730104243018388e86,1.9888428547988603e86,2.111838700822499e86,2.24244096889323e86,2.381120062347725e86,2.5283754756376776e86,2.684737593409307e86,2.8507696008432183e86,3.0270695121348385e86,3.214272324422821e86,3.4130523049218543e86,3.6241254194988446e86,3.848251911439363e86,4.0862390396919906e86,4.338943986454776e86,4.607276944574233e86,4.892204395878648e86,5.194752592252976e86,5.516011251993724e86,5.857137484756423e86,6.219359959234875e86,6.603983328580276e86,7.012392929501957e86,7.446059771974286e86,7.906545837520543e86,8.395509705160248e86,8.914712525279379e86,9.466024362943205e86,1.0051430933498184e87,1.0673040754721695e87,1.1333092741284451e87,1.203396426887376e87,1.2778179737027143e87,1.3568419661516276e87,1.4407530329030902e87,1.5298534048934524e87,1.6244640039022677e87,1.724925598448417e87,1.8316000311704268e87,1.9448715221115815e87,2.0651480526037162e87,2.192862834734971e87,2.328475871693172e87,2.4724756146056683e87,2.62538072184301e87,2.787741927122716e87,2.9601440231427844e87,3.143207967888136e87,3.337593121197573e87,3.5439996196464854e87,3.7631708982993467e87,3.995896368414203e87,4.243014260745297e87,4.505414644682748e87,4.78404263410518e87,5.079901791491665e87,5.394057742553168e87,5.727642014404782e87,6.081856111100298e87,6.457975841210451e87,6.8573559130312735e87,7.28143481397258e87,7.7317399917040155e87,8.209893355716351e87,8.717617119116358e87,9.256740001695126e87,9.829203816612518e87,1.0437070464419999e88,1.108252935961706e88,1.1767905316484755e88,1.2495666922603603e88,1.3268435430214357e88,1.4088994197444606e88,1.496029871341213e88,1.5885487243306148e88,1.6867892131793332e88,1.7911051805459565e88,1.9018723517515185e88,2.0194896880675084e88,2.1443808236946504e88,2.2769955916088987e88,2.4178116437701537e88,2.567336171529482e88,2.726107732430979e88,2.894698189989114e88,3.0737147734268438e88,3.263802264794301e88,3.465645321345313e88,3.679970941535971e88,3.9075510835287266e88,4.149205445631444e88,4.4058044186874084e88,4.678272221049776e88,4.967590227431339e88,5.274800503621396e88,5.6010095597984996e88,5.947392335959686e88,6.315196433820142e88,6.705746610426092e88,7.120449549664856e88,7.560798928860935e88,8.02838079870327e88,8.524879295883846e88,9.052082709022626e88,9.61188991972568e88,1.020631724197972e89,1.0837505684512194e89,1.1507728662278192e89,1.2219400184848299e89,1.2975083551188515e89,1.3777500582154217e89,1.4629541423945e89,1.553427495783553e89,1.6494959853674172e89,1.751505630696273e89,1.8598238501788963e89,1.9748407844508185e89,2.09697070158294e89,2.2266534891925898e89,2.3643562388311113e89,2.5105749283542557e89,2.6658362083359495e89,2.830699298958426e89,3.0057580042119154e89,3.1916428506583466e89,3.3890233584619814e89,3.598610452868119e89,3.8211590248137754e89,4.057470649894448e89,4.308396475479636e89,4.5748402863761354e89,4.8577617600802454e89,5.15817992334558e89,5.477176822513811e89,5.815901420830028e89,6.175573736779503e89,6.557489238350393e89,6.963023509052232e89,7.393637202492863e89,7.85088130336175e89,8.336402713767904e89,8.851950185052073e89,9.399380616441869e89,9.980665743231745e89,1.059789923858072e90,1.1253304254505774e90,1.19492414292326e90,1.268821738974261e90,1.3472893780145663e90,1.4306096848390297e90,1.51908276258458e90,1.6130272736419468e90,1.7127815874138925e90,1.8187049990546201e90,1.9311790235791258e90,2.0506087700042778e90,2.177424400470807e90,2.3120826796013497e90,2.4550686196759315e90,2.606897227549287e90,2.7681153596029497e90,2.939303691412936e90,3.121078809227511e90,3.3140954307876007e90,3.519048763490109e90,3.7366770083860426e90,3.967764019033637e90,4.213142124782746e90,4.473695128658781e90,4.7503614906457355e90,5.044137707831527e90,5.35608190359199e90,5.687317638740518e90,6.03903795836952e90,6.412509688961972e90,6.8090780012472785e90,7.23017125523825e90,7.677306144899166e90,8.15209316097533e90,8.656242391658815e90,9.191569681986595e90,9.760003174151542e90,1.0363590252286474e91,1.100450491673402e91,1.1685055614361268e91,1.2407693553127064e91,1.3175021530843286e91,1.3989803309934032e91,1.4854973571957402e91,1.5773648487741828e91,1.674913694121472e91,1.778495244734118e91,1.8884825807104976e91,2.005271854511001e91,2.1292837178202893e91,2.2609648366505772e91,2.400789500143925e91,2.5492613288669594e91,2.7069150887518215e91,2.8743186172165454e91,3.052074868401924e91,3.2408240848926165e91,3.441246103743005e91,3.6540628051148285e91,3.880040712345745e91,4.1199937528131675e91,4.374786189539076e91,4.6453357340927325e91,4.932616852004927e91,5.2376642725985794e91,5.561576715877664e91,5.905520849897036e91,6.270735492869131e91,6.658536075139631e91,7.070319377105509e91,7.507568560139815e91,7.971858508642459e91,8.464861502461147e91,8.98835324010923e91,9.544219234478009e91,1.0134461604078612e92,1.0761206284272657e92,1.1426710684469336e92,1.2133371818863037e92,1.288373494000095e92,1.3680502706275384e92,1.4526544916361003e92,1.5424908845655974e92,1.637883022196296e92,1.739174487993408e92,1.8467301136262872e92,1.960937293019436e92,2.082207377667981e92,2.2109771582440895e92,2.3477104378296915e92,2.4928997024427836e92,2.647067894873973e92,2.810770298221876e92,2.9845965359125903e92,3.1691726954054614e92,3.3651635832353805e92,3.5732751195134106e92,3.794256880510419e92,4.028904798480972e92,4.278064028453286e92,4.5426319923087644e92,4.823561611116831e92,5.121864737366824e92,5.438615799458392e92,5.774955671579279e92,6.132095782906169e92,6.511322480931258e92,6.914001664629698e92,7.341583704154668e92,7.795608664782714e92,8.277711853921132e92,8.789629711159483e92,9.33320606257885e92,9.910398761846151e92,1.052328674201167e93,1.1174077503413143e93,1.1865115064650896e93,1.2598888405275858e93,1.3378040430598158e93,1.4205377490903745e93,1.5083879489370945e93,1.601671061508626e93,1.7007230739823113e93,1.8059007519630754e93,1.917582924481818e93,2.0361718484623718e93,2.1620946575705613e93,2.2958049006645764e93,2.4377841753875533e93,2.588543862786362e93,2.7486269692039126e93,2.9186100820801936e93,3.0991054467050195e93,3.2907631714035925e93,3.4942735690972063e93,3.710369643672392e93,3.9398297301153924e93,4.183480297919251e93,4.442198927862284e93,4.716917472879245e93,5.008625414409325e93,5.318373426311841e93,5.647277159183537e93,5.99652125870977e93,6.36736363252214e93,6.761139980931234e93,7.179268607852128e93,7.623255529253515e93,8.094699897526284e93,8.595299761311858e93,9.126858181535183e93,9.691289725669761e93,1.0290627363629556e94,1.0927029790120419e94,1.1602789199828346e94,1.2320339543448205e94,1.3082265294287586e94,1.389131075702654e94,1.475038995215466e94,1.5662597111692378e94,1.6631217823997922e94,1.7659740867802166e94,1.875187077809222e94,1.991154118911096e94,2.114292900252154e94,2.245046943177511e94,2.3838871976866226e94,2.5313137387010448e94,2.687857567235014e94,2.8540825229549984e94,3.0305873150178496e94,3.2180076785019345e94,3.417018664197809e94,3.628337070007137e94,3.852724022705506e94,4.09098771936944e94,4.343986338341175e94,4.6126311302161145e94,4.8978896999853206e94,5.2007894921565786e94,5.522421491404216e94,5.863944152078555e94,6.2265875707277435e94,6.6116579166596296e94,7.020542136504281e94,7.454712949718609e94,7.91573415302846e94,8.405266252912948e94,8.925072446416867e94,9.477024971836373e94,1.0063111852147228e95,1.0685444055467497e95,1.1346263098343944e95,1.2047949119248165e95,1.2793029451359584e95,1.358418772551778e95,1.4424273536124546e95,1.531631270481522e95,1.626351817886554e95,1.72693016035855e95,1.833728561038837e95,1.9471316864785192e95,2.067547992130764e95,2.195411193525988e95,2.3311818284284988e95,2.4753489156020873e95,2.6284317161579e95,2.790981603829514e95,2.9635840509112234e95,3.146860737012626e95,3.3414717882243086e95,3.548118154760962e95,3.767544135643991e95,4.000540059518313e95,4.2479451312587224e95,4.510650454618093e95,4.7896022418061763e95,5.0858052215569106e95,5.400326257961161e95,5.73429819309868e95,6.088923927308827e95,6.465480751798765e95,6.865324949191161e95,7.289896678584003e95,7.740725162716599e95,8.2194341959253e95,8.727747992726108e95,9.267497398093031e95,9.840626481795847e95,1.0449199540552126e96,1.1095408533212838e96,1.178158097575997e96,1.2510188324556992e96,1.3283854878040826e96,1.4105367228922018e96,1.4977684300936655e96,1.5903948006298175e96,1.6887494562241368e96,1.7931866507410222e96,1.904082546137637e96,2.0218365673243e96,2.146872840813455e96,2.2796417223385866e96,2.420621418946159e96,2.570319711401844e96,2.729275783115676e96,2.898062162173307e96,3.0772867834677214e96,3.2675951783600207e96,3.4696727997543984e96,3.6842474909629455e96,3.9120921072522924e96,4.154027299513786e96,4.410924470085069e96,4.683708911367176e96,4.973363138543431e96,5.280930428403289e96,5.607518577017539e96,5.954303889798301e96,6.322535418317578e96,6.713539459141435e96,7.128724330886011e96,7.569585446700662e96,8.037710700447206e96,8.534786185978342e96,9.062602270110803e96,9.62306004116995e96,1.0218178156331276e97,1.085010011242002e97,1.152110196636116e97,1.2233600533081667e97,1.2990162090396388e97,1.3793511622229212e97,1.4646542633462401e97,1.5552327571762775e97,1.6514128893928192e97,1.7535410816605055e97,1.8619851793706527e97,1.977135776547085e97,2.0994076226877333e97,2.2292411166099783e97,2.367103892679192e97,2.513492505134563e97,2.66893421657856e97,2.8339888970714322e97,3.009251040672004e97,3.1953519066864887e97,3.3929617933387487e97,3.602792452050888e97,3.825599651030113e97,4.062185897394732e97,4.313403327645472e97,4.5801567768908776e97,4.863407037883113e97,5.164174321602092e97,5.483541931851483e97,5.8226601671039374e97,6.18275046364633e97,6.565109794949939e97,6.971115343110559e97,7.402229459183117e97,7.860004930279833e97,8.346090572399123e97,8.862237169132358e97,9.410303777637371e97,9.992264424592058e97,1.061021521624387e98,1.1266381888168358e98,1.196312782192396e98,1.2702962557481566e98,1.3488550832087638e98,1.43227221781151e98,1.5208481114477166e98,1.6149017968304122e98,1.7147720365866052e98,1.8208185434127956e98,1.9334232756882e98,2.0529918132130008e98,2.1799548180257418e98,2.3147695855621992e98,2.4579216917423856e98,2.609926741918299e98,2.771332227981334e98,2.9427195003193716e98,3.124705861724717e98,3.317946790795775e98,3.523138302840408e98,3.741019456783943e98,3.9723750171126876e98,4.218038280438796e98,4.4788940768686654e98,4.755881956984734e98,5.049999575918869e98,5.36230628670808e98,5.69392695587247e98,6.04605601496036e98,6.41996176265263e98,6.816990932921955e98,7.238573545699373e98,7.686228057522143e98,8.161566830710794e98,8.66630194077698e98,9.202251342978477e98,9.771345420230607e98,1.0375633935962249e99,1.101729341695412e99,1.1698634992754648e99,1.2422112719908272e99,1.3190332420976557e99,1.4006061070193703e99,1.4872236759554845e99,1.5791979281238093e99,1.6768601364474098e99,1.780562060733691e99,1.8906772146429103e99,2.0076022110102206e99,2.1317581903658554e99,2.2635923377994185e99,2.403579493631508e99,2.552223863693631e99,2.7100608353775065e99,2.877658905993464e99,3.055621730384508e99,3.2445902951708226e99,3.4452452274554486e99,3.6583092463079767e99,3.884549765854221e99,4.124781659349021e99,4.379870194187276e99,4.650734148424758e99,4.938349120033011e99,5.243751040809544e99,5.568039907597171e99,5.912383744253499e99,6.278022808640218e99,6.666274059783998e99,7.078535901301434e99,7.516293218169434e99,7.98112272498511e99,8.474698644977698e99,8.99879874022596e99,9.555310714804234e99,1.0146239013915313e100,1.0773712043502743e100,1.1439989836344779e100,1.2147472192242303e100,1.289870732161799e100,1.3696401023664341e100,1.4543426432091683e100,1.5442834363583433e100,1.6397864306230138e100,1.7411956087518002e100,1.8488762263904557e100,1.963216127659716e100,2.0846271420925588e100,2.2135465679621532e100,2.3504387473428254e100,2.49579673857802e100,2.6501440921779286e100,2.814036736544131e100,2.9880649803128827e100,3.1728556385292446e100,3.3690742903095804e100,3.577427676125386e100,3.798666243341249e100,4.033586849176755e100,4.2830356308274766e100,4.547911053082008e100,4.829167144413758e100,5.127816933200872e100,5.44493609645264e100,5.781666834183838e100,6.13922198339085e100,6.518889386449739e100,6.922036529667146e100,7.350115468693543e100,7.804668058538246e100,8.287331507024057e100,8.799844271682563e100,9.344052321333024e100,9.92191578489318e100,1.0535516011373142e101,1.1187063066479957e101,1.1878903692832506e101,1.2613529762462481e101,1.3393587252039535e101,1.4221885773152116e101,1.51014086919688e101,1.6035323874726854e101,1.7026995097757482e101,1.8079994163136032e101,1.919811376360149e101,2.0385381143079734e101,2.164607260201403e101,2.298472889974439e101,2.4406171609421202e101,2.5915520484348273e101,2.7518211898314293e101,2.9220018426328405e101,3.1027069636281485e101,3.29458741664327e101,3.498334316822398e101,3.714681519887069e101,3.9444082653383043e101,4.1883419831215256e101,4.447361273864938e101,4.7223990734234356e101,5.01444601312769e101,5.324553987840743e101,5.65383994467379e101,6.003489906006398e101,6.374763241303645e101,6.768997203113286e101,7.18761174358303e101,7.632114628845346e101,8.104106869689684e101,8.605288488085464e101,9.137464640321522e101,9.702552118819435e101,1.0302586256038051e102,1.0939728255334144e102,1.1616272975187815e102,1.2334657194824189e102,1.3097468391006733e102,1.3907454057612792e102,1.4767531601559303e102,1.5680798850719323e102,1.665054521168299e102,1.7680263517542763e102,1.8773662608382401e102,1.9934680689780224e102,2.1167499517438373e102,2.247655945903659e102,2.386657548754934e102,2.534255416363917e102,2.6909811668291e102,2.8573992950633365e102,3.034109205992441e102,3.221747373491959e102,3.4209896328392725e102,3.6325536149375527e102,3.8572013310793373e102,4.0957419175588844e102,4.3490345500204553e102,4.617991538037308e102,4.90358161106903e102,5.206833407632107e102,5.528839180250231e102,5.870758729531042e102,6.233823581536157e102,6.619341423492715e102,7.028700813822294e102,7.463376183450791e102,7.924933146415868e102,8.41503413889589e102,8.935444406973843e102,9.488038364701867e102,1.0074806345367322e103,1.0697861770275436e103,1.1359448760873242e103,1.206195022162661e103,1.2807896422767421e103,1.3599974113822972e103,1.4441036200750699e103,1.5334112021539009e103,1.6282418257277406e103,1.7289370518000961e103,1.835859564503733e103,1.949394477416423e103,2.069950720663592e103,2.197962513802916e103,2.3338909297966686e103,2.478225555704621e103,2.6314862560791202e103,2.794225045413285e103,2.9670280763876137e103,3.150517751074814e103,3.3453549627080775e103,3.5522414760868687e103,3.771922455193454e103,4.005189147125619e103,4.252881732010608e103,4.515892349166567e103,4.79516831041067e103,5.0917155120869245e103,5.406602058105085e103,5.740962107037512e103,6.09599995713241e103,6.472994383956055e103,6.873303246287693e103,7.298368376855418e103,7.749720775531405e103,8.228986123687526e103,8.737890639575785e103,9.278267295822639e103,9.852062421429996e103,1.0461342712065849e104,1.1108302673889111e104,1.1795272527723615e104,1.2524726602049398e104,1.3299292245039268e104,1.412175928774529e104,1.499509009251278e104,1.5922430222819313e104,1.6907119772967366e104,1.7952705398438725e104,1.9062953090238567e104,2.0241861739247343e104,2.14936775394267e104,2.28229092817642e104,2.4234344594040413e104,2.5733067184907145e104,2.7324475154396692e104,2.901430043679949e104,3.0808629445949565e104,3.271392499727485e104,3.473704958556649e104,3.688529010232258e104,3.916638408167527e104,4.158854756944729e104,4.416050471571129e104,4.689151919744072e104,4.9791427584422546e104,5.287067476862864e104,5.614035158462958e104,5.961223475657129e104,6.329882931558976e104,6.721341364043349e104,7.137008728354739e104,7.578382175484344e104,8.047051444609669e104,8.54470458901841e104,9.073134056138959e104,9.634243143580167e104,1.0230052854429014e105,1.0862709176501113e105,1.1534490811761062e105,1.2247817383753056e105,1.3005258152601206e105,1.3809541268974423e105,1.466356360033997e105,1.557040116490299e105,1.653332021081141e105,1.7555788980528832e105,1.8641490202755334e105,1.9794334356880334e105,2.1018473757750349e105,2.2318317511480003e105,2.369854739617089e105,2.5164134724746786e105,2.672035825062941e105,2.8372823180756655e105,3.012748136442069e105,3.1990652730643637e105,3.396904805129855e105,3.6069793111977364e105,3.830045437764673e105,4.0669066245547453e105,4.318415998349308e105,4.5854794457791187e105,4.869058876148127e105,5.17017568603858e105,5.489914438178031e105,5.829426767818266e105,6.189935530695268e105,6.572739207512797e105,6.979216580810417e105,7.410831701063536e105,7.869139159901379e105,8.355789689436403e105,8.87253610787139e105,9.421239632802603e105,1.0003876584953664e106,1.0622545506489088e106,1.127947471954517e106,1.197703035220089e106,1.2717724860801475e106,1.350422607932413e106,1.433936682838453e106,1.5226155118492459e106,1.6167784984304368e106,1.7167647988902052e106,1.8229345439525191e106,1.935670135876257e106,2.0553776257919215e106,2.1824881762169336e106,2.317459614016833e106,2.460778079406751e106,2.612959776931325e106,2.7745528347306315e106,2.9461392787885716e106,3.1283371292741213e106,3.321802626527275e106,3.5272325947056246e106,3.745366951606153e106,3.976991373701766e106,4.2229401259908924e106,4.4840990668543706e106,4.76140883874033e106,5.055868256170895e106,5.368537903272995e106,5.700543953791156e106,6.0530822273401985e106,6.427422496510077e106,6.824913060333025e106,7.24698560058806e106,7.695160338433601e106,8.171051509940184e106,8.676373180248305e106,9.212945417288548e106,9.782700847303686e106,1.0387691615783465e107,1.1030096778882454e107,1.171223015194767e107,1.2436548643419114e107,1.3205661104124523e107,1.4022337723840025e107,1.488952000896195e107,1.5810331377224872e107,1.678808840763217e107,1.782631278611087e107,1.892874398992279e107,2.009935275651681e107,2.1342355385331415e107,2.2662228924068188e107,2.406372729412301e107,2.555189841326388e107,2.7132102377225277e107,2.8810030765701534e107,3.059172714228688e107,3.24836088221839e107,3.449248998609444e107,3.6625606223540237e107,3.88906405940152e107,4.1295751299829916e107,4.384960107033657e107,4.656138836334918e107,4.944088049615608e107,5.249844882545142e107,5.574510610288875e107,5.919254614082598e107,6.285318593110085e107,6.674021036856195e107,7.086761974043366e107,7.525028015255225e107,7.990397707412754e107,8.484547219384874e107,9.009256379214791e107,9.566415084705836e107,1.0158030110456923e108,1.078623233586351e108,1.1453284420122115e108,1.2161588951876617e108,1.2913697102863914e108,1.3712317816726396e108,1.456032756608541e108,1.5460780713024578e108,1.641692051029167e108,1.7432190782848912e108,1.8510248331844567e108,1.9654976105679673e108,2.0870497185617274e108,2.2161189636297256e108,2.3531702274652993e108,2.49869714140233e108,2.6532238643769857e108,2.817306970843434e108,2.99153745544452e108,3.1765428616563823e108,3.372989542075032e108,3.581585058485684e108,3.803080730358868e108,4.0382743409539923e108,4.2880130107752325e108,4.553196248730828e108,4.834779191985007e108,5.133776046171121e108,5.451263738358978e108,5.788385795930956e108,6.146356465339825e108,6.526465085582432e108,6.930080732141966e108,7.358657148124166e108,7.813737980351367e108,8.2969623392699e108,8.810070702699387e108,9.354911184687177e108,9.933446192045716e108,1.0547759492552267e109,1.1200063720264065e109,1.1892708344985401e109,1.2628188134589897e109,1.340915214067568e109,1.4238413239923301e109,1.5118958265515484e109,1.6053958765115196e109,1.704678242414817e109,1.8101005195535024e109,1.922042417955887e109,2.040907130026664e109,2.167122782765387e109,2.3011439797946303e109,2.4434534387516917e109,2.594563729941028e109,2.7550191225107255e109,2.9253975448012154e109,3.106312665928025e109,3.2984161060957005e109,3.5023997836035284e109,3.7189984069978746e109,3.94899212134556e109,4.193209318160975e109,4.452529619107186e109,4.727887044217971e109,5.0202733760512705e109,5.3307417318930505e109,5.6604103568753355e109,6.0104666516724016e109,6.3821714492815006e109,6.77686355629128e109,7.195964574997306e109,7.640984023729471e109,8.113524773836297e109,8.615288822908276e109,9.148083425032962e109,9.71382760016539e109,1.0314559046054493e110,1.0952441477624448e110,1.1629772420244544e110,1.234899148495794e110,1.3112689155472979e110,1.3923616118571184e110,1.4784693171531406e110,1.5699021742259756e110,1.6669895060015178e110,1.7700810016962946e110,1.8795479763285953e110,1.9957847081209723e110,2.1192098586118518e110,2.2502679805910072e110,2.389431119289842e110,2.537200512594595e110,2.6941083964050484e110,2.8607199216422084e110,3.037635189809272e110,3.225491414437715e110,3.424965216203052e110,3.636775059978179e110,3.8616838426002755e110,4.1005016406732365e110,4.354088628302246e110,4.623358175268961e110,4.909280136808122e110,5.212884346832313e110,5.535264327188556e110,5.8775812263061976e110,6.241068001421441e110,6.627033859444522e110,7.03686897246139e110,7.47204948485662e110,7.934142830091243e110,8.42481337628588e110,8.945828420942006e110,9.499064556396667e110,1.0086514428933105e111,1.0710293915895703e111,1.1372649746658736e111,1.207596759489647e111,1.2822780671306082e111,1.3615778847726406e111,1.4457818345520424e111,1.5351932023115735e111,1.6301340299753878e111,1.7309462754803366e111,1.8379930444397183e111,1.9516598979775604e111,2.0723562414432863e111,2.2005167990074055e111,2.3366031794522382e111,2.481105538793905e111,2.6345443457269233e111,2.797472256249169e111,2.9704761042175827e111,3.1541790150079846e111,3.349242649887157e111,3.556369589186233e111,3.7763058628537365e111,4.009843637507251e111,4.2578240696603926e111,4.5211403353993186e111,4.800740847426839e111,5.097632671054211e111,5.412885151450332e111,5.747633765210847e111,6.103084210116384e111,6.480516747818157e111,6.881290815082946e111,7.306849920214252e111,7.758726842282788e111,8.238549151888273e111,8.748045073347743e111,9.289049709411937e111,9.86351165094084e111,1.0473499995341323e112,1.1121211799039662e112,1.1808979990845491e112,1.2539281774692136e112,1.3314747552033065e112,1.4138170396025986e112,1.5012516111620366e112,1.5940933917801938e112,1.6926767790446067e112,1.7973568506654545e112,1.9085106433950152e112,2.026538511038183e112,2.1518655664479147e112,2.284943212696093e112,2.4262507689383633e112,2.5762971968253257e112,2.735622933681291e112,2.9048018390522877e112,3.084443261632676e112,3.275194234018974e112,3.4777418031911227e112,3.6928155051192266e112,3.921189992407356e112,4.16368782443636e112,4.421182430060526e112,4.694601253522642e112,4.98492909492391e112,5.293211657278504e112,5.620559312925417e112,5.96815110287064e112,6.3372389834557175e112,6.729152335655777e112,7.145302753246025e112,7.587189127078488e112,8.056403043791254e112,8.554634518383416e112,9.083678081313367e112,9.64543924204143e112,1.0241941352291518e113,1.0875332893765008e113,1.154789521653968e113,1.22620507560395e113,1.302037175816634e113,1.382558954401215e113,1.4680604347538858e113,1.5588495761636883e113,1.6552533830211354e113,1.7576190826222557e113,1.866315375812332e113,1.981733764973188e113,2.1042899641359927e113,2.234425396301212e113,2.372608783355473e113,2.5193378343146802e113,2.6751410379731383e113,2.840579566413846e113,3.016249296239668e113,3.202782954801003e113,3.4008523991540084e113,3.6111710359563976e113,3.83449639101468e113,4.071632837742713e113,4.323434494352954e113,4.5908083002205794e113,4.874717282499161e113,5.1761840247506943e113,5.4962943500899184e113,5.8362012321007765e113,6.197128947618217e113,6.580377486330428e113,6.987327233080117e113,7.419443939738479e113,7.878284004548618e113,8.36550007796283e113,8.882847015161603e113,9.43218819668888e113,1.0015502239981282e114,1.0634890125949542e114,1.1292582766297386e114,1.1990949038816778e114,1.2732504319615132e114,1.351991954300093e114,1.435603082165169e114,1.5243849661732477e114,1.6186573809735394e114,1.7187598770127188e114,1.8250530035282595e114,1.9379196071742394e114,2.0577662109594838e114,2.185024478461677e114,2.3201527685938156e114,2.463637786522064e114,2.615996336679832e114,2.777777184195417e114,2.949563031433624e114,3.131972616773921e114,3.325662943183313e114,3.531331644608828e114,3.7497194987174107e114,3.981613095028078e114,4.2278476680511064e114,4.4893101056370086e114,4.766942143368113e114,5.061743756504408e114,5.374776761693295e114,5.707168641422209e114,6.06011660498683e114,6.434891900598062e114,6.832844394167375e114,7.255407431251906e114,7.704102999682461e114,8.180547211457568e114,8.686456123657832e114,9.223651919343039e114,9.794069470688885e114,1.039976330801496e115,1.1042915019789725e115,1.1725841110278771e115,1.2451001343133547e115,1.3221007600965093e115,1.4038633292830083e115,1.490682334349242e115,1.582870480045721e115,1.6807598096975383e115,1.7847029011576144e115,1.8950741367225898e115,2.012271051582555e115,2.13671576566383e115,2.2688565040211844e115,2.409169211254291e115,2.5581592657663107e115,2.716363300035252e115,2.8843511334575473e115,3.062727824724455e115,3.25213585112172e115,3.4532574226060476e115,3.666816938988148e115,3.89358359907695e115,4.134374171181082e115,4.390055934943976e115,4.661549805114095e115,4.949833648494351e115,5.2559458060254735e115,5.580988832681232e115,5.926133468652412e115,6.2926228561206945e115,6.6817770168066425e115,7.0949976064276125e115,7.533772963179723e115,7.999683468436365e115,8.494407238968329e115,9.019726171182745e115,9.577532359162526e115,1.0169834909608678e116,1.0798767178243516e116,1.1466594453734665e116,1.2175722116809039e116,1.2928704303959824e116,1.3728253106932403e116,1.4577248341140043e116,1.5478747918187586e116,1.6435998859853764e116,1.7452448993223263e116,1.85317593690664e116,1.9677817448216704e116,2.0894751103433475e116,2.218694348716887e116,2.3559048818818606e116,2.5016009148284078e116,2.6563072156254334e116,2.820581005531066e116,2.995013965991507e116,3.180234369760911e116,3.376909343813284e116,3.585747272202278e116,3.807500347518063e116,4.042967280135617e116,4.292996175011004e116,4.558487586384784e116,4.840397761400776e116,5.139742084315934e116,5.457598733712728e116,5.795112565884463e116,6.1534992383772824e116,6.534049588548902e116,6.938134282905138e116,7.367208753968363e116,7.822818442456666e116,8.30660436365035e116,8.82030901800533e116,9.365782667289307e116,9.944989998857068e116,1.0560017202064511e117,1.1213079482302932e117,1.1906529039731958e117,1.264286354143142e117,1.342473511750198e117,1.4254959913511517e117,1.5136528233684814e117,1.6072615311389622e117,1.7066592745688615e117,1.8122040645169396e117,1.9242760522785267e117,2.0432788988139961e117,2.1696412286559348e117,2.3038181737283654e117,2.4462930126421778e117,2.5975789113674794e117,2.758220771555476e117,2.9287971931660953e117,3.1099225584686256e117,3.302249244925476e117,3.506469974924583e117,3.7233203108278344e117,3.953581304320748e117,4.198082309603478e117,4.457703970561086e117,4.733381392665681e117,5.026107511040567e117,5.33693666681553e117,5.666988404651449e117,6.017451505119358e117,6.389588266448963e117,6.784739051076097e117,7.204327113362254e117,7.649863725870425e117,8.122953622670811e117,8.625300779270179e117,9.158714549993125e117,9.725116184917338e117,1.0326545749829792e118,1.0965169474141373e118,1.1643287553209512e118,1.2363342433184903e118,1.3127927608217909e118,1.3939796961702634e118,1.4801874685221802e118,1.571726581089577e118,1.6689267395095867e118,1.7721380393778282e118,1.881732227223192e118,1.9981040394650742e118,2.121672624174534e118,2.2528830507629793e118,2.3922079130326697e118,2.5401490313657047e118,2.697239260181469e118,2.864044407171034e118,3.04116527122487e118,3.22923980638961e118,3.428945419651791e118,3.6410014108234043e118,3.866171563315085e118,4.105266895133327e118,4.359148580004215e118,4.6287310491501045e118,4.914985284889448e118,5.2189423179197225e118,5.541696940886666e118,5.884411651607187e118,6.2483208401555565e118,6.634735234891528e118,7.045046623440154e118,7.480732865636315e118,7.943363216478605e118,8.434603978274082e118,8.95622450232855e118,9.510103561793948e118,1.0098236118638698e119,1.0722740509098865e119,1.138586607350749e119,1.2090001257966056e119,1.2837682217052857e119,1.363160194854855e119,1.4474619993072302e119,1.536977273358314e119,1.632028433182065e119,1.7329578341095035e119,1.840129003724685e119,1.9539279512179104e119,2.0747645577147005e119,2.2030740525851678e119,2.3393185810537473e119,2.4839888687545936e119,2.637605989226574e119,2.8007232407173903e119,2.973928139052579e119,3.157844533750798e119,3.35313485500601e119,3.560502499627748e119,3.7806943645377005e119,4.0145035369421966e119,4.262772150874769e119,4.526394420395843e119,4.806319860371857e119,5.103556706440542e119,5.419175546472905e119,5.754313176618051e119,6.110176695817353e119,6.488047853531946e119,6.889287666351507e119,7.31534132010184e119,7.767743375119205e119,8.248123293427996e119,8.758211307739245e119,9.299844653405528e119,9.874974185773026e119,1.0485671406777741e120,1.1134135926078808e120,1.1822703383615524e120,1.255385386211896e120,1.3330220819870932e120,1.415460057590136e120,1.5029962381766984e120,1.595945911620559e120,1.6946438641179622e120,1.7994455860201347e120,1.9107285522394202e120,2.028893581837989e120,2.1543662816984757e120,2.287598579475518e120,2.4290703513482365e120,2.57929115043959e120,2.738802042124235e120,2.908177552838519e120,3.088027739410702e120,3.2790003863629047e120,3.481783339103196e120,3.697106981406407e120,3.9257468661113884e120,4.1685265085084504e120,4.426320352475732e120,4.700056920053598e120,4.99072215579398e120,5.29936297793821e120,5.627091049205952e120,5.975086780783473e120,6.344603583930521e120,6.736972384515473e120,7.153606416747836e120,7.596006313363607e120,8.065765510606282e120,8.564575987468033e120,9.094234359857579e120,9.656648351656369e120,1.0253843665956286e121,1.0887971281239766e121,1.1561315198777487e121,1.2276300669141365e121,1.303550292747882e121,1.3841656468991792e121,1.4697664898045244e121,1.5606611386373925e121,1.657176977804659e121,1.759661638120667e121,1.8684842489034993e121,1.9840367675054513e121,2.106735391065641e121,2.2370220555683586e121,2.3753660276093253e121,2.522265594599582e121,2.6782498594977575e121,2.8438806465339373e121,3.019754524787495e121,3.2065049569112596e121,3.404804580736387e121,3.6153676319811696e121,3.8389525167844362e121,4.076364543333799e121,4.328458822425955e121,4.596143347403714e121,4.880382264568947e121,5.1821993458436395e121,5.502681676192975e121,5.842983569089675e121,6.204330724118866e121,6.588024641706251e121,6.995447310860868e121,7.428066186824951e121,7.887439476556541e121,8.375221751077412e121,8.89316990491158e121,9.443149484066004e121,1.0027141405356697e122,1.0647249091278033e122,1.1305706046107338e122,1.200488390054681e122,1.2747300953860276e122,1.3535631244286874e122,1.4372714180396188e122,1.5261564768066593e122,1.6205384469941806e122,1.7207572736455407e122,1.827173924997596e122,1.940171692616667e122,2.0601575719376366e122,2.1875637281812386e122,2.322849052926127e122,2.466500816945839e122,2.6190364252601168e122,2.781005280724999e122,2.952990762872894e122,3.135612329128273e122,3.3295277459711424e122,3.5354354580796065e122,3.754077103988843e122,3.986240187325951e122,4.232760913239557e122,4.494527200245848e122,4.772481878332469e122,5.067626084844843e122,5.381022870384235e122,5.713801027702123e122,6.067159157389062e122,6.442369984992937e122,6.840784945123543e122,7.263839049051897e122,7.713056053332089e122,8.190053948071878e122,8.696550784607623e122,9.234370863583891e122,9.805451305722396e122,1.0411849028941061e123,1.10557481569667e123,1.1739467886109365e123,1.246547083854674e123,1.3236371932200572e123,1.405494779914488e123,1.492414678648706e123,1.5847099575720273e123,1.6827130458820728e123,1.786776931167877e123,1.8972764308010567e123,2.0146095419536148e123,2.139198875103668e123,2.2714931761950438e123,2.4119689429299108e123,2.5611321410188412e123,2.719520026568906e123,2.8877030811720674e123,3.066287066667365e123,3.255915206973219e123,3.457270504852202e123,3.671078201951465e123,3.8981083909772256e123,4.139178789416813e123,4.3951576847925916e123,4.666967062061117e123,4.955585924420011e123,5.262053819480489e123,5.587474583512837e123,5.933020317242637e123,6.299935607524725e123,6.689542010098103e123,7.103242809563779e123,7.542528073739153e123,8.008980020582593e123,8.504278717028189e123,9.030208130253495e123,9.588662553170338e123,1.01816534272943e124,1.0811316587551861e124,1.1479919955136587e124,1.2189871706105106e124,1.294372894514885e124,1.3744206915777781e124,1.459418878008116e124,1.5496736003308765e124,1.6455099380652977e124,1.7472730745967243e124,1.8553295404586706e124,1.9700685335020493e124,2.0919033207090757e124,2.2212727266978124e124,2.358642714281269e124,2.504508062772995e124,2.659394150082614e124,2.8238588450234353e124,2.9984945166437145e124,3.183930167822286e124,3.3808337008121227e124,3.5899143228898607e124,3.811925100780541e124,4.0476656730524834e124,4.297985130256554e124,4.563785073181852e124,4.8460228602403355e124,5.145715055683013e124,5.463941091059908e124,5.801847153118063e124,6.160650312138772e124,6.541642905579842e124,6.946197192820249e124,7.375770297761977e124,7.831909457102953e124,8.316257593172424e124,8.830559231410805e124,9.376666783804164e124,9.956547220899459e124,1.0572289156444531e125,1.1226110370154725e125,1.192036579571484e125,1.2657556002782993e125,1.3440336203539382e125,1.4271525816236887e125,1.5154118620178545e125,1.6091293538715846e125,1.7086426089099887e125,1.8143100540415297e125,1.9265122823410603e125,2.0456534238695264e125,2.1721626012701642e125,2.3064954753831122e125,2.4491358864440727e125,2.6005975967814175e125,2.7614261412847594e125,2.9322007923132482e125,3.1135366461196696e125,3.306086838303379e125,3.5105448962759204e125,3.727647237207272e125,3.958175820454191e125,4.2029609640226654e125,4.4628843352062936e125,4.738882126177998e125,5.0319484259656394e125,5.343138800964651e125,5.673574096875871e125,6.0244444757691e125,6.3970137028107186e125,6.792623698091527e125,7.212699369958261e125,7.658753747246858e125,8.132393428911747e125,8.635324370676495e125,9.169358029543061e125,9.736417888302667e125,1.0338546383533924e126,1.0977912262053646e126,1.165681839231255e126,1.237771005886405e126,1.314318376979696e126,1.3955996608835377e126,1.481907616580654e126,1.5735531081238484e126,1.670866224305772e126,1.7741974675736546e126,1.8839190164686217e126,2.000426066138862e126,2.1241382517541362e126,2.255501159947222e126,2.394987933729087e126,2.5431009766548474e126,2.7003737623815673e126,2.867372756134519e126,3.044699455000941e126,3.2329925544039234e126,3.4329302485546574e126,3.6452326731742346e126,3.870664499277669e126,4.110037687366983e126,4.3642144119518256e126,4.634110166928573e126,4.9206970630087906e126,5.2250073290664925e126,5.54813703002148e126,5.891250014647701e126,6.255582107522349e126,6.642445560222266e126,7.053233777790177e126,7.489426337502844e126,7.952594318014831e126,8.444405958067702e126,8.966632665156952e126,9.521155395785516e126,1.0109971430295424e127,1.0735201566675283e127,1.1399097759247906e127,1.2104051229765644e127,1.285260108011018e127,1.36474434376331e127,1.4491441166071632e127,1.5387634177007774e127,1.63392503790303e127,1.734971730401223e127,1.8422674452399742e127,1.956198640197061e127,2.0771756727265756e127,2.2056342779855435e127,2.342037138264186e127,2.486875549476276e127,2.6406711907082076e127,2.803978003203424e127,2.9773841855488644e127,3.1615143122479215e127,3.3570315833146196e127,3.5646402129866784e127,3.785087966165294e127,4.019168851715941e127,4.2677259823285405e127,4.531654611243091e127,4.81190535677177e127,5.109487626237248e127,5.425473251657574e127,5.761000350269436e127,6.117277423801989e127,6.495587711257015e127,6.897293810880872e127,7.323842587973015e127,7.7767703862036685e127,8.257708561220737e127,8.768389356464716e127,9.310652142365448e127,9.88645004138943e127,1.0497856962793947e128,1.1147075072439202e128,1.1836442724546804e128,1.256844288398715e128,1.3345712069426196e128,1.4171049849535208e128,1.5047428926484962e128,1.597800584302016e128,1.6966132351703854e128,1.801536748725602e128,1.9129490385489597e128,2.03125138950078e128,2.1568699030677373e128,2.290257032096375e128,2.4318932104372574e128,2.5822885833722558e128,2.7419848450566285e128,2.9115571895923734e128,3.091616382763942e128,3.282810961893749e128,3.485829571744771e128,3.701403444882338e128,3.930309035426701e128,4.173370815687639e128,4.431464245747893e128,4.705518926696458e128,4.996521948867261e128,5.305521447139919e128,5.6336303761148675e128,5.9820305187519766e128,6.351976742917998e128,6.7448015211716256e128,7.161919730061547e128,7.604833746232723e128,8.075138857684883e128,8.574529009682986e128,9.10480290601194e128,9.667870487545717e128,1.0265759811477705e129,1.0900624355974175e129,1.1574750776577938e129,1.2290567142281678e129,1.3050651680950108e129,1.3857742065585156e129,1.4714745274873266e129,1.5624748063549304e129,1.6591028080266268e129,1.7617065673034592e129,1.8706556424745105e129,1.9863424463915e129,2.1091836598624832e129,2.2396217324523142e129,2.378126476098081e129,2.5251967572784808e129,2.6813622938304997e129,2.847185562888587e129,3.0232638268141644e129,3.210231284415994e129,3.408761355208455e129,3.6195691049331265e129,3.8434138210845685e129,4.081101747711155e129,4.3334889893459693e129,4.601484594525462e129,4.8860538299993656e129,5.188221657431156e129,5.509076425103812e129,5.849773787934116e129,6.211540869912359e129,6.595680683956037e129,7.003576825105404e129,7.436698453954086e129,7.896605588275805e129,8.384954721894611e129,8.903504791046568e129,9.454123509719061e129,1.0038794096780769e130,1.0659622419144898e130,1.1318844576678237e130,1.2018834956188666e130,1.2762114783495287e130,1.355136120437654e130,1.43894169271213e130,1.5279300461392358e130,1.6224216990298585e130,1.7227569914828504e130,1.8292973112215832e130,1.9424263952412558e130],"x":[-300.0,-299.9399939993999,-299.8799879987999,-299.8199819981998,-299.7599759975998,-299.6999699969997,-299.6399639963996,-299.5799579957996,-299.5199519951995,-299.4599459945995,-299.3999399939994,-299.3399339933993,-299.2799279927993,-299.2199219921992,-299.1599159915992,-299.0999099909991,-299.039903990399,-298.979897989799,-298.9198919891989,-298.8598859885989,-298.7998799879988,-298.73987398739877,-298.6798679867987,-298.6198619861986,-298.5598559855986,-298.4998499849985,-298.43984398439846,-298.3798379837984,-298.3198319831983,-298.2598259825983,-298.1998199819982,-298.13981398139816,-298.0798079807981,-298.019801980198,-297.95979597959797,-297.8997899789979,-297.83978397839786,-297.7797779777978,-297.7197719771977,-297.65976597659767,-297.5997599759976,-297.53975397539756,-297.4797479747975,-297.4197419741974,-297.35973597359737,-297.2997299729973,-297.23972397239726,-297.1797179717972,-297.1197119711971,-297.05970597059707,-296.999699969997,-296.93969396939696,-296.8796879687969,-296.81968196819685,-296.75967596759676,-296.6996699669967,-296.63966396639665,-296.57965796579657,-296.51965196519654,-296.45964596459646,-296.3996399639964,-296.33963396339635,-296.27962796279627,-296.21962196219624,-296.15961596159616,-296.0996099609961,-296.03960396039605,-295.97959795979597,-295.91959195919594,-295.85958595859586,-295.7995799579958,-295.73957395739575,-295.67956795679567,-295.61956195619564,-295.55955595559556,-295.4995499549955,-295.43954395439545,-295.37953795379536,-295.31953195319534,-295.25952595259525,-295.19951995199517,-295.13951395139514,-295.07950795079506,-295.01950195019504,-294.95949594959495,-294.8994899489949,-294.83948394839484,-294.77947794779476,-294.71947194719473,-294.65946594659465,-294.5994599459946,-294.53945394539454,-294.47944794479446,-294.41944194419443,-294.35943594359435,-294.2994299429943,-294.23942394239424,-294.17941794179416,-294.11941194119413,-294.05940594059405,-293.999399939994,-293.93939393939394,-293.87938793879385,-293.8193819381938,-293.75937593759375,-293.6993699369937,-293.63936393639364,-293.57935793579355,-293.5193519351935,-293.45934593459344,-293.3993399339934,-293.33933393339333,-293.27932793279325,-293.2193219321932,-293.15931593159314,-293.0993099309931,-293.03930393039303,-292.979297929793,-292.9192919291929,-292.85928592859284,-292.7992799279928,-292.73927392739273,-292.6792679267927,-292.6192619261926,-292.55925592559254,-292.4992499249925,-292.43924392439243,-292.3792379237924,-292.3192319231923,-292.25922592259224,-292.1992199219922,-292.1392139213921,-292.0792079207921,-292.019201920192,-291.95919591959193,-291.8991899189919,-291.8391839183918,-291.7791779177918,-291.7191719171917,-291.65916591659163,-291.5991599159916,-291.5391539153915,-291.4791479147915,-291.4191419141914,-291.35913591359133,-291.2991299129913,-291.2391239123912,-291.1791179117912,-291.1191119111911,-291.0591059105911,-290.999099909991,-290.9390939093909,-290.8790879087909,-290.8190819081908,-290.7590759075908,-290.6990699069907,-290.6390639063906,-290.5790579057906,-290.5190519051905,-290.4590459045905,-290.3990399039904,-290.3390339033903,-290.2790279027903,-290.2190219021902,-290.1590159015902,-290.0990099009901,-290.03900390039,-289.97899789979,-289.9189918991899,-289.8589858985899,-289.7989798979898,-289.7389738973897,-289.6789678967897,-289.6189618961896,-289.5589558955896,-289.4989498949895,-289.4389438943894,-289.3789378937894,-289.3189318931893,-289.2589258925893,-289.1989198919892,-289.13891389138917,-289.0789078907891,-289.018901890189,-288.958895889589,-288.8988898889889,-288.83888388838886,-288.7788778877888,-288.7188718871887,-288.65886588658867,-288.5988598859886,-288.53885388538856,-288.4788478847885,-288.4188418841884,-288.35883588358837,-288.2988298829883,-288.23882388238826,-288.1788178817882,-288.1188118811881,-288.05880588058807,-287.998799879988,-287.93879387938796,-287.8787878787879,-287.8187818781878,-287.75877587758777,-287.6987698769877,-287.63876387638766,-287.5787578757876,-287.5187518751875,-287.45874587458746,-287.3987398739874,-287.33873387338735,-287.2787278727873,-287.21872187218725,-287.15871587158716,-287.0987098709871,-287.03870387038705,-286.97869786978697,-286.91869186918694,-286.85868586858686,-286.7986798679868,-286.73867386738675,-286.67866786678667,-286.61866186618664,-286.55865586558656,-286.4986498649865,-286.43864386438645,-286.37863786378637,-286.31863186318634,-286.25862586258626,-286.1986198619862,-286.13861386138615,-286.07860786078606,-286.01860186018604,-285.95859585958596,-285.8985898589859,-285.83858385838585,-285.77857785778576,-285.71857185718574,-285.65856585658565,-285.59855985598557,-285.53855385538554,-285.47854785478546,-285.41854185418543,-285.35853585358535,-285.2985298529853,-285.23852385238524,-285.17851785178516,-285.11851185118513,-285.05850585058505,-284.998499849985,-284.93849384938494,-284.87848784878486,-284.81848184818483,-284.75847584758475,-284.6984698469847,-284.63846384638464,-284.57845784578456,-284.51845184518453,-284.45844584458445,-284.3984398439844,-284.33843384338434,-284.27842784278425,-284.2184218421842,-284.15841584158414,-284.0984098409841,-284.03840384038403,-283.97839783978395,-283.9183918391839,-283.85838583858384,-283.7983798379838,-283.73837383738373,-283.67836783678365,-283.6183618361836,-283.55835583558354,-283.4983498349835,-283.43834383438343,-283.3783378337834,-283.3183318331833,-283.25832583258324,-283.1983198319832,-283.13831383138313,-283.0783078307831,-283.018301830183,-282.95829582958294,-282.8982898289829,-282.8382838283828,-282.7782778277828,-282.7182718271827,-282.65826582658264,-282.5982598259826,-282.5382538253825,-282.4782478247825,-282.4182418241824,-282.35823582358233,-282.2982298229823,-282.2382238223822,-282.1782178217822,-282.1182118211821,-282.05820582058203,-281.998199819982,-281.9381938193819,-281.8781878187819,-281.8181818181818,-281.75817581758173,-281.6981698169817,-281.6381638163816,-281.5781578157816,-281.5181518151815,-281.4581458145815,-281.3981398139814,-281.3381338133813,-281.2781278127813,-281.2181218121812,-281.1581158115812,-281.0981098109811,-281.038103810381,-280.978097809781,-280.9180918091809,-280.8580858085809,-280.7980798079808,-280.7380738073807,-280.6780678067807,-280.6180618061806,-280.5580558055806,-280.4980498049805,-280.4380438043804,-280.3780378037804,-280.3180318031803,-280.2580258025803,-280.1980198019802,-280.1380138013801,-280.0780078007801,-280.01800180018,-279.95799579958,-279.8979897989799,-279.8379837983798,-279.7779777977798,-279.7179717971797,-279.6579657965797,-279.5979597959796,-279.53795379537956,-279.4779477947795,-279.4179417941794,-279.3579357935794,-279.2979297929793,-279.23792379237926,-279.1779177917792,-279.1179117911791,-279.05790579057907,-278.997899789979,-278.93789378937896,-278.8778877887789,-278.8178817881788,-278.75787578757877,-278.6978697869787,-278.63786378637866,-278.5778577857786,-278.5178517851785,-278.45784578457847,-278.3978397839784,-278.33783378337836,-278.2778277827783,-278.2178217821782,-278.15781578157817,-278.0978097809781,-278.03780378037806,-277.977797779778,-277.9177917791779,-277.85778577857786,-277.7977797779778,-277.73777377737775,-277.67776777677767,-277.61776177617764,-277.55775577557756,-277.4977497749775,-277.43774377437745,-277.37773777377737,-277.31773177317734,-277.25772577257726,-277.1977197719772,-277.13771377137715,-277.07770777077707,-277.01770177017704,-276.95769576957696,-276.8976897689769,-276.83768376837685,-276.77767776777677,-276.71767176717674,-276.65766576657666,-276.5976597659766,-276.53765376537655,-276.47764776477646,-276.41764176417644,-276.35763576357635,-276.29762976297627,-276.23762376237624,-276.17761776177616,-276.11761176117614,-276.05760576057605,-275.99759975997597,-275.93759375937594,-275.87758775877586,-275.81758175817583,-275.75757575757575,-275.6975697569757,-275.63756375637564,-275.57755775577556,-275.51755175517553,-275.45754575457545,-275.3975397539754,-275.33753375337534,-275.27752775277526,-275.21752175217523,-275.15751575157515,-275.0975097509751,-275.03750375037504,-274.97749774977495,-274.9174917491749,-274.85748574857485,-274.7974797479748,-274.73747374737474,-274.67746774677465,-274.6174617461746,-274.55745574557454,-274.4974497449745,-274.43744374437443,-274.37743774377435,-274.3174317431743,-274.25742574257424,-274.1974197419742,-274.13741374137413,-274.07740774077405,-274.017401740174,-273.95739573957394,-273.8973897389739,-273.83738373837383,-273.7773777377738,-273.7173717371737,-273.65736573657364,-273.5973597359736,-273.53735373537353,-273.4773477347735,-273.4173417341734,-273.35733573357334,-273.2973297329733,-273.2373237323732,-273.1773177317732,-273.1173117311731,-273.05730573057303,-272.997299729973,-272.9372937293729,-272.8772877287729,-272.8172817281728,-272.75727572757273,-272.6972697269727,-272.6372637263726,-272.5772577257726,-272.5172517251725,-272.45724572457243,-272.3972397239724,-272.3372337233723,-272.2772277227723,-272.2172217221722,-272.15721572157213,-272.0972097209721,-272.037203720372,-271.977197719772,-271.9171917191719,-271.8571857185719,-271.7971797179718,-271.7371737173717,-271.6771677167717,-271.6171617161716,-271.5571557155716,-271.4971497149715,-271.4371437143714,-271.3771377137714,-271.3171317131713,-271.2571257125713,-271.1971197119712,-271.1371137113711,-271.0771077107711,-271.017101710171,-270.957095709571,-270.8970897089709,-270.8370837083708,-270.7770777077708,-270.7170717071707,-270.6570657065707,-270.5970597059706,-270.5370537053705,-270.4770477047705,-270.4170417041704,-270.3570357035704,-270.2970297029703,-270.2370237023702,-270.1770177017702,-270.1170117011701,-270.0570057005701,-269.99699969997,-269.93699369936996,-269.8769876987699,-269.8169816981698,-269.75697569756977,-269.6969696969697,-269.63696369636966,-269.5769576957696,-269.5169516951695,-269.45694569456947,-269.3969396939694,-269.33693369336936,-269.2769276927693,-269.2169216921692,-269.15691569156917,-269.0969096909691,-269.03690369036906,-268.976897689769,-268.9168916891689,-268.85688568856887,-268.7968796879688,-268.73687368736876,-268.6768676867687,-268.6168616861686,-268.55685568556856,-268.4968496849685,-268.43684368436845,-268.3768376837684,-268.3168316831683,-268.25682568256826,-268.1968196819682,-268.13681368136815,-268.07680768076807,-268.01680168016804,-267.95679567956796,-267.8967896789679,-267.83678367836785,-267.77677767776777,-267.71677167716774,-267.65676567656766,-267.5967596759676,-267.53675367536755,-267.47674767476747,-267.41674167416744,-267.35673567356736,-267.2967296729673,-267.23672367236725,-267.17671767176716,-267.11671167116714,-267.05670567056706,-266.996699669967,-266.93669366936695,-266.87668766876686,-266.81668166816684,-266.75667566756675,-266.69666966696667,-266.63666366636664,-266.57665766576656,-266.51665166516653,-266.45664566456645,-266.39663966396637,-266.33663366336634,-266.27662766276626,-266.21662166216623,-266.15661566156615,-266.0966096609661,-266.03660366036604,-265.97659765976596,-265.91659165916593,-265.85658565856585,-265.7965796579658,-265.73657365736574,-265.67656765676566,-265.61656165616563,-265.55655565556555,-265.4965496549655,-265.43654365436544,-265.37653765376535,-265.3165316531653,-265.25652565256524,-265.1965196519652,-265.13651365136514,-265.07650765076505,-265.016501650165,-264.95649564956494,-264.8964896489649,-264.83648364836483,-264.77647764776475,-264.7164716471647,-264.65646564656464,-264.5964596459646,-264.53645364536453,-264.47644764476445,-264.4164416441644,-264.35643564356434,-264.2964296429643,-264.23642364236423,-264.1764176417642,-264.1164116411641,-264.05640564056404,-263.996399639964,-263.9363936393639,-263.8763876387639,-263.8163816381638,-263.75637563756374,-263.6963696369637,-263.6363636363636,-263.5763576357636,-263.5163516351635,-263.45634563456343,-263.3963396339634,-263.3363336333633,-263.2763276327633,-263.2163216321632,-263.15631563156313,-263.0963096309631,-263.036303630363,-262.976297629763,-262.9162916291629,-262.85628562856283,-262.7962796279628,-262.7362736273627,-262.6762676267627,-262.6162616261626,-262.5562556255625,-262.4962496249625,-262.4362436243624,-262.3762376237624,-262.3162316231623,-262.2562256225623,-262.1962196219622,-262.1362136213621,-262.0762076207621,-262.016201620162,-261.956195619562,-261.8961896189619,-261.8361836183618,-261.7761776177618,-261.7161716171617,-261.6561656165617,-261.5961596159616,-261.5361536153615,-261.4761476147615,-261.4161416141614,-261.3561356135614,-261.2961296129613,-261.2361236123612,-261.1761176117612,-261.1161116111611,-261.0561056105611,-260.996099609961,-260.9360936093609,-260.8760876087609,-260.8160816081608,-260.7560756075608,-260.6960696069607,-260.6360636063606,-260.5760576057606,-260.5160516051605,-260.4560456045605,-260.3960396039604,-260.33603360336036,-260.2760276027603,-260.2160216021602,-260.15601560156017,-260.0960096009601,-260.03600360036006,-259.97599759976,-259.9159915991599,-259.85598559855987,-259.7959795979598,-259.73597359735976,-259.6759675967597,-259.6159615961596,-259.55595559555957,-259.4959495949595,-259.43594359435946,-259.3759375937594,-259.3159315931593,-259.25592559255927,-259.1959195919592,-259.13591359135916,-259.0759075907591,-259.015901590159,-258.95589558955896,-258.8958895889589,-258.83588358835885,-258.77587758775877,-258.7158715871587,-258.65586558655866,-258.5958595859586,-258.53585358535855,-258.47584758475847,-258.41584158415844,-258.35583558355836,-258.2958295829583,-258.23582358235825,-258.17581758175817,-258.11581158115814,-258.05580558055806,-257.995799579958,-257.93579357935795,-257.87578757875787,-257.81578157815784,-257.75577557755776,-257.6957695769577,-257.63576357635765,-257.57575757575756,-257.51575157515754,-257.45574557455745,-257.39573957395737,-257.33573357335734,-257.27572757275726,-257.21572157215724,-257.15571557155715,-257.09570957095707,-257.03570357035704,-256.97569756975696,-256.91569156915693,-256.85568556855685,-256.79567956795677,-256.73567356735674,-256.67566756675666,-256.61566156615663,-256.55565556555655,-256.4956495649565,-256.43564356435644,-256.37563756375636,-256.31563156315633,-256.25562556255625,-256.1956195619562,-256.13561356135614,-256.07560756075605,-256.01560156015603,-255.95559555955595,-255.8955895589559,-255.83558355835584,-255.77557755775578,-255.71557155715573,-255.65556555655564,-255.5955595559556,-255.53555355535553,-255.47554755475548,-255.41554155415542,-255.35553555355534,-255.2955295529553,-255.23552355235523,-255.17551755175518,-255.11551155115512,-255.05550555055507,-254.99549954995499,-254.93549354935493,-254.87548754875488,-254.81548154815482,-254.75547554755477,-254.69546954695468,-254.63546354635463,-254.57545754575457,-254.51545154515452,-254.45544554455446,-254.39543954395438,-254.33543354335433,-254.27542754275427,-254.21542154215422,-254.15541554155416,-254.0954095409541,-254.03540354035403,-253.97539753975397,-253.91539153915392,-253.85538553855386,-253.7953795379538,-253.73537353735372,-253.67536753675367,-253.6153615361536,-253.55535553555356,-253.4953495349535,-253.43534353435342,-253.37533753375337,-253.3153315331533,-253.25532553255326,-253.1953195319532,-253.13531353135315,-253.07530753075307,-253.015301530153,-252.95529552955296,-252.8952895289529,-252.83528352835285,-252.77527752775276,-252.7152715271527,-252.65526552655265,-252.5952595259526,-252.53525352535254,-252.47524752475246,-252.4152415241524,-252.35523552355235,-252.2952295229523,-252.23522352235224,-252.1752175217522,-252.1152115211521,-252.05520552055205,-251.995199519952,-251.93519351935194,-251.8751875187519,-251.8151815181518,-251.75517551755175,-251.6951695169517,-251.63516351635164,-251.57515751575158,-251.5151515151515,-251.45514551455145,-251.3951395139514,-251.33513351335134,-251.27512751275128,-251.21512151215123,-251.15511551155114,-251.0951095109511,-251.03510351035104,-250.97509750975098,-250.91509150915093,-250.85508550855084,-250.7950795079508,-250.73507350735073,-250.67506750675068,-250.61506150615062,-250.55505550555054,-250.4950495049505,-250.43504350435043,-250.37503750375038,-250.31503150315032,-250.25502550255027,-250.19501950195018,-250.13501350135013,-250.07500750075008,-250.01500150015002,-249.95499549954997,-249.89498949894988,-249.83498349834983,-249.77497749774977,-249.71497149714972,-249.65496549654966,-249.59495949594958,-249.53495349534953,-249.47494749474947,-249.41494149414942,-249.35493549354936,-249.2949294929493,-249.23492349234922,-249.17491749174917,-249.11491149114912,-249.05490549054906,-248.994899489949,-248.93489348934892,-248.87488748874887,-248.8148814881488,-248.75487548754876,-248.6948694869487,-248.63486348634862,-248.57485748574857,-248.5148514851485,-248.45484548454846,-248.3948394839484,-248.33483348334835,-248.27482748274826,-248.2148214821482,-248.15481548154816,-248.0948094809481,-248.03480348034805,-247.97479747974796,-247.9147914791479,-247.85478547854785,-247.7947794779478,-247.73477347734774,-247.67476747674766,-247.6147614761476,-247.55475547554755,-247.4947494749475,-247.43474347434744,-247.3747374737474,-247.3147314731473,-247.25472547254725,-247.1947194719472,-247.13471347134714,-247.0747074707471,-247.014701470147,-246.95469546954695,-246.8946894689469,-246.83468346834684,-246.77467746774678,-246.7146714671467,-246.65466546654665,-246.5946594659466,-246.53465346534654,-246.47464746474648,-246.41464146414643,-246.35463546354634,-246.2946294629463,-246.23462346234624,-246.17461746174618,-246.11461146114613,-246.05460546054604,-245.994599459946,-245.93459345934593,-245.87458745874588,-245.81458145814582,-245.75457545754574,-245.6945694569457,-245.63456345634563,-245.57455745574558,-245.51455145514552,-245.45454545454547,-245.39453945394538,-245.33453345334533,-245.27452745274528,-245.21452145214522,-245.15451545154517,-245.09450945094508,-245.03450345034503,-244.97449744974497,-244.91449144914492,-244.85448544854486,-244.79447944794478,-244.73447344734473,-244.67446744674467,-244.61446144614462,-244.55445544554456,-244.4944494449445,-244.43444344434442,-244.37443744374437,-244.31443144314431,-244.25442544254426,-244.1944194419442,-244.13441344134412,-244.07440744074407,-244.014401440144,-243.95439543954396,-243.8943894389439,-243.83438343834382,-243.77437743774377,-243.7143714371437,-243.65436543654366,-243.5943594359436,-243.53435343534355,-243.47434743474346,-243.4143414341434,-243.35433543354335,-243.2943294329433,-243.23432343234325,-243.17431743174316,-243.1143114311431,-243.05430543054305,-242.994299429943,-242.93429342934294,-242.87428742874286,-242.8142814281428,-242.75427542754275,-242.6942694269427,-242.63426342634264,-242.5742574257426,-242.5142514251425,-242.45424542454245,-242.3942394239424,-242.33423342334234,-242.27422742274229,-242.2142214221422,-242.15421542154215,-242.0942094209421,-242.03420342034204,-241.97419741974198,-241.9141914191419,-241.85418541854185,-241.7941794179418,-241.73417341734174,-241.67416741674168,-241.61416141614163,-241.55415541554154,-241.4941494149415,-241.43414341434143,-241.37413741374138,-241.31413141314133,-241.25412541254124,-241.1941194119412,-241.13411341134113,-241.07410741074108,-241.01410141014102,-240.95409540954094,-240.89408940894089,-240.83408340834083,-240.77407740774078,-240.71407140714072,-240.65406540654067,-240.59405940594058,-240.53405340534053,-240.47404740474047,-240.41404140414042,-240.35403540354037,-240.29402940294028,-240.23402340234023,-240.17401740174017,-240.11401140114012,-240.05400540054006,-239.99399939993998,-239.93399339933993,-239.87398739873987,-239.81398139813982,-239.75397539753976,-239.6939693969397,-239.63396339633962,-239.57395739573957,-239.51395139513951,-239.45394539453946,-239.3939393939394,-239.33393339333932,-239.27392739273927,-239.2139213921392,-239.15391539153916,-239.0939093909391,-239.03390339033902,-238.97389738973897,-238.9138913891389,-238.85388538853886,-238.7938793879388,-238.73387338733875,-238.67386738673866,-238.6138613861386,-238.55385538553855,-238.4938493849385,-238.43384338433845,-238.37383738373836,-238.3138313831383,-238.25382538253825,-238.1938193819382,-238.13381338133814,-238.07380738073806,-238.013801380138,-237.95379537953795,-237.8937893789379,-237.83378337833784,-237.7737773777378,-237.7137713771377,-237.65376537653765,-237.5937593759376,-237.53375337533754,-237.47374737473748,-237.4137413741374,-237.35373537353735,-237.2937293729373,-237.23372337233724,-237.17371737173718,-237.1137113711371,-237.05370537053705,-236.993699369937,-236.93369336933694,-236.87368736873688,-236.81368136813683,-236.75367536753674,-236.6936693669367,-236.63366336633663,-236.57365736573658,-236.51365136513652,-236.45364536453644,-236.3936393639364,-236.33363336333633,-236.27362736273628,-236.21362136213622,-236.15361536153614,-236.09360936093609,-236.03360336033603,-235.97359735973598,-235.91359135913592,-235.85358535853587,-235.79357935793578,-235.73357335733573,-235.67356735673567,-235.61356135613562,-235.55355535553556,-235.49354935493548,-235.43354335433543,-235.37353735373537,-235.31353135313532,-235.25352535253526,-235.19351935193518,-235.13351335133513,-235.07350735073507,-235.01350135013502,-234.95349534953496,-234.8934893489349,-234.83348334833482,-234.77347734773477,-234.7134713471347,-234.65346534653466,-234.5934593459346,-234.53345334533452,-234.47344734473447,-234.4134413441344,-234.35343534353436,-234.2934293429343,-234.23342334233422,-234.17341734173417,-234.1134113411341,-234.05340534053406,-233.993399339934,-233.93339333933395,-233.87338733873386,-233.8133813381338,-233.75337533753375,-233.6933693369337,-233.63336333633364,-233.57335733573356,-233.5133513351335,-233.45334533453345,-233.3933393339334,-233.33333333333334,-233.27332733273326,-233.2133213321332,-233.15331533153315,-233.0933093309331,-233.03330333033304,-232.973297329733,-232.9132913291329,-232.85328532853285,-232.7932793279328,-232.73327332733274,-232.67326732673268,-232.6132613261326,-232.55325532553255,-232.4932493249325,-232.43324332433244,-232.37323732373238,-232.3132313231323,-232.25322532253224,-232.1932193219322,-232.13321332133214,-232.07320732073208,-232.01320132013203,-231.95319531953194,-231.8931893189319,-231.83318331833183,-231.77317731773178,-231.71317131713172,-231.65316531653164,-231.5931593159316,-231.53315331533153,-231.47314731473148,-231.41314131413142,-231.35313531353134,-231.29312931293128,-231.23312331233123,-231.17311731173118,-231.11311131113112,-231.05310531053107,-230.99309930993098,-230.93309330933093,-230.87308730873087,-230.81308130813082,-230.75307530753076,-230.69306930693068,-230.63306330633063,-230.57305730573057,-230.51305130513052,-230.45304530453046,-230.39303930393038,-230.33303330333032,-230.27302730273027,-230.21302130213022,-230.15301530153016,-230.0930093009301,-230.03300330033002,-229.97299729972997,-229.9129912991299,-229.85298529852986,-229.7929792979298,-229.73297329732972,-229.67296729672967,-229.6129612961296,-229.55295529552956,-229.4929492949295,-229.43294329432942,-229.37293729372936,-229.3129312931293,-229.25292529252926,-229.1929192919292,-229.13291329132915,-229.07290729072906,-229.012901290129,-228.95289528952895,-228.8928892889289,-228.83288328832884,-228.77287728772876,-228.7128712871287,-228.65286528652865,-228.5928592859286,-228.53285328532854,-228.47284728472846,-228.4128412841284,-228.35283528352835,-228.2928292829283,-228.23282328232824,-228.1728172817282,-228.1128112811281,-228.05280528052805,-227.992799279928,-227.93279327932794,-227.87278727872788,-227.8127812781278,-227.75277527752775,-227.6927692769277,-227.63276327632764,-227.57275727572758,-227.5127512751275,-227.45274527452744,-227.3927392739274,-227.33273327332734,-227.27272727272728,-227.21272127212723,-227.15271527152714,-227.0927092709271,-227.03270327032703,-226.97269726972698,-226.91269126912692,-226.85268526852684,-226.7926792679268,-226.73267326732673,-226.67266726672668,-226.61266126612662,-226.55265526552654,-226.49264926492648,-226.43264326432643,-226.37263726372638,-226.31263126312632,-226.25262526252627,-226.19261926192618,-226.13261326132613,-226.07260726072607,-226.01260126012602,-225.95259525952596,-225.89258925892588,-225.83258325832583,-225.77257725772577,-225.71257125712572,-225.65256525652566,-225.59255925592558,-225.53255325532552,-225.47254725472547,-225.41254125412541,-225.35253525352536,-225.2925292529253,-225.23252325232522,-225.17251725172517,-225.1125112511251,-225.05250525052506,-224.992499249925,-224.93249324932492,-224.87248724872487,-224.8124812481248,-224.75247524752476,-224.6924692469247,-224.63246324632462,-224.57245724572456,-224.5124512451245,-224.45244524452445,-224.3924392439244,-224.33243324332435,-224.27242724272426,-224.2124212421242,-224.15241524152415,-224.0924092409241,-224.03240324032404,-223.97239723972396,-223.9123912391239,-223.85238523852385,-223.7923792379238,-223.73237323732374,-223.67236723672366,-223.6123612361236,-223.55235523552355,-223.4923492349235,-223.43234323432344,-223.37233723372339,-223.3123312331233,-223.25232523252325,-223.1923192319232,-223.13231323132314,-223.07230723072308,-223.012301230123,-222.95229522952295,-222.8922892289229,-222.83228322832284,-222.77227722772278,-222.7122712271227,-222.65226522652264,-222.5922592259226,-222.53225322532253,-222.47224722472248,-222.41224122412243,-222.35223522352234,-222.2922292229223,-222.23222322232223,-222.17221722172218,-222.11221122112212,-222.05220522052204,-221.99219921992199,-221.93219321932193,-221.87218721872188,-221.81218121812182,-221.75217521752174,-221.69216921692168,-221.63216321632163,-221.57215721572157,-221.51215121512152,-221.45214521452147,-221.39213921392138,-221.33213321332133,-221.27212721272127,-221.21212121212122,-221.15211521152116,-221.09210921092108,-221.03210321032103,-220.97209720972097,-220.91209120912092,-220.85208520852086,-220.79207920792078,-220.73207320732072,-220.67206720672067,-220.61206120612061,-220.55205520552056,-220.4920492049205,-220.43204320432042,-220.37203720372037,-220.3120312031203,-220.25202520252026,-220.1920192019202,-220.13201320132012,-220.07200720072007,-220.01200120012,-219.95199519951996,-219.8919891989199,-219.83198319831982,-219.77197719771976,-219.7119711971197,-219.65196519651965,-219.5919591959196,-219.53195319531955,-219.47194719471946,-219.4119411941194,-219.35193519351935,-219.2919291929193,-219.23192319231924,-219.17191719171916,-219.1119111911191,-219.05190519051905,-218.991899189919,-218.93189318931894,-218.87188718871886,-218.8118811881188,-218.75187518751875,-218.6918691869187,-218.63186318631864,-218.57185718571859,-218.5118511851185,-218.45184518451845,-218.3918391839184,-218.33183318331834,-218.27182718271828,-218.2118211821182,-218.15181518151815,-218.0918091809181,-218.03180318031804,-217.97179717971798,-217.9117911791179,-217.85178517851784,-217.7917791779178,-217.73177317731773,-217.67176717671768,-217.61176117611762,-217.55175517551754,-217.4917491749175,-217.43174317431743,-217.37173717371738,-217.31173117311732,-217.25172517251724,-217.19171917191719,-217.13171317131713,-217.07170717071708,-217.01170117011702,-216.95169516951694,-216.89168916891688,-216.83168316831683,-216.77167716771677,-216.71167116711672,-216.65166516651666,-216.59165916591658,-216.53165316531653,-216.47164716471647,-216.41164116411642,-216.35163516351636,-216.29162916291628,-216.23162316231623,-216.17161716171617,-216.11161116111612,-216.05160516051606,-215.99159915991598,-215.93159315931592,-215.87158715871587,-215.8115811581158,-215.75157515751576,-215.6915691569157,-215.63156315631562,-215.57155715571557,-215.5115511551155,-215.45154515451546,-215.3915391539154,-215.33153315331532,-215.27152715271527,-215.2115211521152,-215.15151515151516,-215.0915091509151,-215.03150315031502,-214.97149714971496,-214.9114911491149,-214.85148514851485,-214.7914791479148,-214.73147314731474,-214.67146714671466,-214.6114611461146,-214.55145514551455,-214.4914491449145,-214.43144314431444,-214.37143714371436,-214.3114311431143,-214.25142514251425,-214.1914191419142,-214.13141314131414,-214.07140714071406,-214.011401140114,-213.95139513951395,-213.8913891389139,-213.83138313831384,-213.77137713771378,-213.7113711371137,-213.65136513651365,-213.5913591359136,-213.53135313531354,-213.47134713471348,-213.4113411341134,-213.35133513351334,-213.2913291329133,-213.23132313231324,-213.17131713171318,-213.1113111311131,-213.05130513051304,-212.991299129913,-212.93129312931293,-212.87128712871288,-212.81128112811282,-212.75127512751274,-212.6912691269127,-212.63126312631263,-212.57125712571258,-212.51125112511252,-212.45124512451244,-212.39123912391238,-212.33123312331233,-212.27122712271228,-212.21122112211222,-212.15121512151214,-212.09120912091208,-212.03120312031203,-211.97119711971197,-211.91119111911192,-211.85118511851186,-211.79117911791178,-211.73117311731173,-211.67116711671167,-211.61116111611162,-211.55115511551156,-211.49114911491148,-211.43114311431142,-211.37113711371137,-211.31113111311132,-211.25112511251126,-211.19111911191118,-211.13111311131112,-211.07110711071107,-211.011101110111,-210.95109510951096,-210.8910891089109,-210.83108310831082,-210.77107710771077,-210.7110711071107,-210.65106510651066,-210.5910591059106,-210.53105310531052,-210.47104710471046,-210.4110411041104,-210.35103510351036,-210.2910291029103,-210.23102310231022,-210.17101710171016,-210.1110111011101,-210.05100510051005,-209.99099909991,-209.93099309930994,-209.87098709870986,-209.8109810981098,-209.75097509750975,-209.6909690969097,-209.63096309630964,-209.57095709570956,-209.5109510951095,-209.45094509450945,-209.3909390939094,-209.33093309330934,-209.27092709270926,-209.2109210921092,-209.15091509150915,-209.0909090909091,-209.03090309030904,-208.97089708970898,-208.9108910891089,-208.85088508850885,-208.7908790879088,-208.73087308730874,-208.67086708670868,-208.6108610861086,-208.55085508550854,-208.4908490849085,-208.43084308430844,-208.37083708370838,-208.3108310831083,-208.25082508250824,-208.1908190819082,-208.13081308130813,-208.07080708070808,-208.01080108010802,-207.95079507950794,-207.8907890789079,-207.83078307830783,-207.77077707770778,-207.71077107710772,-207.65076507650764,-207.59075907590758,-207.53075307530753,-207.47074707470748,-207.41074107410742,-207.35073507350734,-207.29072907290728,-207.23072307230723,-207.17071707170717,-207.11071107110712,-207.05070507050706,-206.99069906990698,-206.93069306930693,-206.87068706870687,-206.81068106810682,-206.75067506750676,-206.69066906690668,-206.63066306630662,-206.57065706570657,-206.51065106510652,-206.45064506450646,-206.39063906390638,-206.33063306330632,-206.27062706270627,-206.2106210621062,-206.15061506150616,-206.0906090609061,-206.03060306030602,-205.97059705970597,-205.9105910591059,-205.85058505850586,-205.7905790579058,-205.73057305730572,-205.67056705670566,-205.6105610561056,-205.55055505550555,-205.4905490549055,-205.43054305430542,-205.37053705370536,-205.3105310531053,-205.25052505250525,-205.1905190519052,-205.13051305130514,-205.07050705070506,-205.010501050105,-204.95049504950495,-204.8904890489049,-204.83048304830484,-204.77047704770476,-204.7104710471047,-204.65046504650465,-204.5904590459046,-204.53045304530454,-204.47044704470446,-204.4104410441044,-204.35043504350435,-204.2904290429043,-204.23042304230424,-204.17041704170418,-204.1104110411041,-204.05040504050405,-203.990399039904,-203.93039303930394,-203.87038703870388,-203.8103810381038,-203.75037503750374,-203.6903690369037,-203.63036303630363,-203.57035703570358,-203.5103510351035,-203.45034503450344,-203.3903390339034,-203.33033303330333,-203.27032703270328,-203.21032103210322,-203.15031503150314,-203.0903090309031,-203.03030303030303,-202.97029702970298,-202.91029102910292,-202.85028502850284,-202.79027902790278,-202.73027302730273,-202.67026702670267,-202.61026102610262,-202.55025502550254,-202.49024902490248,-202.43024302430243,-202.37023702370237,-202.31023102310232,-202.25022502250226,-202.19021902190218,-202.13021302130213,-202.07020702070207,-202.01020102010202,-201.95019501950196,-201.89018901890188,-201.83018301830182,-201.77017701770177,-201.71017101710171,-201.65016501650166,-201.59015901590158,-201.53015301530152,-201.47014701470147,-201.4101410141014,-201.35013501350136,-201.2901290129013,-201.23012301230122,-201.17011701170117,-201.1101110111011,-201.05010501050106,-200.990099009901,-200.93009300930092,-200.87008700870086,-200.8100810081008,-200.75007500750075,-200.6900690069007,-200.63006300630062,-200.57005700570056,-200.5100510051005,-200.45004500450045,-200.3900390039004,-200.33003300330034,-200.27002700270026,-200.2100210021002,-200.15001500150015,-200.0900090009001,-200.03000300030004,-199.96999699969996,-199.9099909990999,-199.84998499849985,-199.7899789978998,-199.72997299729974,-199.66996699669966,-199.6099609960996,-199.54995499549955,-199.4899489948995,-199.42994299429944,-199.36993699369938,-199.3099309930993,-199.24992499249925,-199.1899189918992,-199.12991299129914,-199.06990699069908,-199.009900990099,-198.94989498949894,-198.8898889888989,-198.82988298829883,-198.76987698769878,-198.7098709870987,-198.64986498649864,-198.5898589858986,-198.52985298529853,-198.46984698469848,-198.40984098409842,-198.34983498349834,-198.28982898289829,-198.22982298229823,-198.16981698169818,-198.10981098109812,-198.04980498049804,-197.98979897989798,-197.92979297929793,-197.86978697869787,-197.80978097809782,-197.74977497749774,-197.68976897689768,-197.62976297629763,-197.56975697569757,-197.50975097509752,-197.44974497449746,-197.38973897389738,-197.32973297329733,-197.26972697269727,-197.20972097209722,-197.14971497149716,-197.08970897089708,-197.02970297029702,-196.96969696969697,-196.9096909690969,-196.84968496849686,-196.78967896789678,-196.72967296729672,-196.66966696669667,-196.6096609660966,-196.54965496549656,-196.4896489648965,-196.42964296429642,-196.36963696369637,-196.3096309630963,-196.24962496249626,-196.1896189618962,-196.12961296129612,-196.06960696069606,-196.009600960096,-195.94959495949595,-195.8895889588959,-195.82958295829582,-195.76957695769576,-195.7095709570957,-195.64956495649565,-195.5895589558956,-195.52955295529554,-195.46954695469546,-195.4095409540954,-195.34953495349535,-195.2895289528953,-195.22952295229524,-195.16951695169516,-195.1095109510951,-195.04950495049505,-194.989498949895,-194.92949294929494,-194.86948694869486,-194.8094809480948,-194.74947494749475,-194.6894689468947,-194.62946294629464,-194.56945694569458,-194.5094509450945,-194.44944494449445,-194.3894389438944,-194.32943294329434,-194.26942694269428,-194.2094209420942,-194.14941494149414,-194.0894089408941,-194.02940294029403,-193.96939693969398,-193.9093909390939,-193.84938493849384,-193.7893789378938,-193.72937293729373,-193.66936693669368,-193.60936093609362,-193.54935493549354,-193.48934893489348,-193.42934293429343,-193.36933693369338,-193.30933093309332,-193.24932493249324,-193.18931893189318,-193.12931293129313,-193.06930693069307,-193.00930093009302,-192.94929492949294,-192.88928892889288,-192.82928292829283,-192.76927692769277,-192.70927092709272,-192.64926492649266,-192.58925892589258,-192.52925292529252,-192.46924692469247,-192.40924092409242,-192.34923492349236,-192.28922892289228,-192.22922292229222,-192.16921692169217,-192.1092109210921,-192.04920492049206,-191.98919891989198,-191.92919291929192,-191.86918691869187,-191.8091809180918,-191.74917491749176,-191.6891689168917,-191.62916291629162,-191.56915691569156,-191.5091509150915,-191.44914491449146,-191.3891389138914,-191.32913291329132,-191.26912691269126,-191.2091209120912,-191.14911491149115,-191.0891089108911,-191.02910291029102,-190.96909690969096,-190.9090909090909,-190.84908490849085,-190.7890789078908,-190.72907290729074,-190.66906690669066,-190.6090609060906,-190.54905490549055,-190.4890489048905,-190.42904290429044,-190.36903690369036,-190.3090309030903,-190.24902490249025,-190.1890189018902,-190.12901290129014,-190.06900690069006,-190.00900090009,-189.94899489948995,-189.8889888988899,-189.82898289828984,-189.76897689768978,-189.7089708970897,-189.64896489648964,-189.5889588958896,-189.52895289528954,-189.46894689468948,-189.4089408940894,-189.34893489348934,-189.2889288928893,-189.22892289228923,-189.16891689168918,-189.1089108910891,-189.04890489048904,-188.988898889889,-188.92889288928893,-188.86888688868888,-188.80888088808882,-188.74887488748874,-188.68886888688868,-188.62886288628863,-188.56885688568858,-188.50885088508852,-188.44884488448844,-188.38883888388838,-188.32883288328833,-188.26882688268827,-188.20882088208822,-188.14881488148814,-188.08880888088808,-188.02880288028803,-187.96879687968797,-187.90879087908792,-187.84878487848786,-187.78877887788778,-187.72877287728772,-187.66876687668767,-187.60876087608762,-187.54875487548756,-187.48874887488748,-187.42874287428742,-187.36873687368737,-187.3087308730873,-187.24872487248726,-187.18871887188718,-187.12871287128712,-187.06870687068707,-187.008700870087,-186.94869486948696,-186.8886888688869,-186.82868286828682,-186.76867686768676,-186.7086708670867,-186.64866486648666,-186.5886588658866,-186.52865286528652,-186.46864686468646,-186.4086408640864,-186.34863486348635,-186.2886288628863,-186.22862286228622,-186.16861686168616,-186.1086108610861,-186.04860486048605,-185.988598859886,-185.92859285928594,-185.86858685868586,-185.8085808580858,-185.74857485748575,-185.6885688568857,-185.62856285628564,-185.56855685568556,-185.5085508550855,-185.44854485448545,-185.3885388538854,-185.32853285328534,-185.26852685268526,-185.2085208520852,-185.14851485148515,-185.0885088508851,-185.02850285028504,-184.96849684968498,-184.9084908490849,-184.84848484848484,-184.7884788478848,-184.72847284728473,-184.66846684668468,-184.6084608460846,-184.54845484548454,-184.4884488448845,-184.42844284428443,-184.36843684368438,-184.3084308430843,-184.24842484248424,-184.1884188418842,-184.12841284128413,-184.06840684068408,-184.00840084008402,-183.94839483948394,-183.88838883888388,-183.82838283828383,-183.76837683768377,-183.70837083708372,-183.64836483648364,-183.58835883588358,-183.52835283528353,-183.46834683468347,-183.40834083408342,-183.34833483348334,-183.28832883288328,-183.22832283228323,-183.16831683168317,-183.10831083108312,-183.04830483048306,-182.98829882988298,-182.92829282928292,-182.86828682868287,-182.80828082808281,-182.74827482748276,-182.68826882688268,-182.62826282628262,-182.56825682568257,-182.5082508250825,-182.44824482448246,-182.38823882388238,-182.32823282328232,-182.26822682268227,-182.2082208220822,-182.14821482148216,-182.0882088208821,-182.02820282028202,-181.96819681968196,-181.9081908190819,-181.84818481848185,-181.7881788178818,-181.72817281728172,-181.66816681668166,-181.6081608160816,-181.54815481548155,-181.4881488148815,-181.42814281428141,-181.36813681368136,-181.3081308130813,-181.24812481248125,-181.1881188118812,-181.12811281128114,-181.06810681068106,-181.008100810081,-180.94809480948095,-180.8880888088809,-180.82808280828084,-180.76807680768076,-180.7080708070807,-180.64806480648065,-180.5880588058806,-180.52805280528054,-180.46804680468045,-180.4080408040804,-180.34803480348035,-180.2880288028803,-180.22802280228024,-180.16801680168018,-180.1080108010801,-180.04800480048004,-179.98799879988,-179.92799279927993,-179.86798679867988,-179.8079807980798,-179.74797479747974,-179.6879687968797,-179.62796279627963,-179.56795679567958,-179.5079507950795,-179.44794479447944,-179.38793879387939,-179.32793279327933,-179.26792679267928,-179.20792079207922,-179.14791479147914,-179.08790879087908,-179.02790279027903,-178.96789678967897,-178.90789078907892,-178.84788478847884,-178.78787878787878,-178.72787278727873,-178.66786678667867,-178.60786078607862,-178.54785478547853,-178.48784878487848,-178.42784278427843,-178.36783678367837,-178.30783078307832,-178.24782478247826,-178.18781878187818,-178.12781278127812,-178.06780678067807,-178.00780078007801,-177.94779477947796,-177.88778877887788,-177.82778277827782,-177.76777677767777,-177.7077707770777,-177.64776477647766,-177.58775877587757,-177.52775277527752,-177.46774677467747,-177.4077407740774,-177.34773477347736,-177.2877287728773,-177.22772277227722,-177.16771677167716,-177.1077107710771,-177.04770477047705,-176.987698769877,-176.92769276927692,-176.86768676867686,-176.8076807680768,-176.74767476747675,-176.6876687668767,-176.62766276627661,-176.56765676567656,-176.5076507650765,-176.44764476447645,-176.3876387638764,-176.32763276327634,-176.26762676267626,-176.2076207620762,-176.14761476147615,-176.0876087608761,-176.02760276027604,-175.96759675967596,-175.9075907590759,-175.84758475847585,-175.7875787578758,-175.72757275727574,-175.66756675667565,-175.6075607560756,-175.54755475547555,-175.4875487548755,-175.42754275427544,-175.36753675367538,-175.3075307530753,-175.24752475247524,-175.1875187518752,-175.12751275127513,-175.06750675067508,-175.007500750075,-174.94749474947494,-174.8874887488749,-174.82748274827483,-174.76747674767478,-174.7074707470747,-174.64746474647464,-174.58745874587459,-174.52745274527453,-174.46744674467448,-174.40744074407442,-174.34743474347434,-174.28742874287428,-174.22742274227423,-174.16741674167417,-174.10741074107412,-174.04740474047404,-173.98739873987398,-173.92739273927393,-173.86738673867387,-173.80738073807382,-173.74737473747373,-173.68736873687368,-173.62736273627362,-173.56735673567357,-173.50735073507352,-173.44734473447346,-173.38733873387338,-173.32733273327332,-173.26732673267327,-173.2073207320732,-173.14731473147316,-173.08730873087308,-173.02730273027302,-172.96729672967297,-172.9072907290729,-172.84728472847286,-172.78727872787277,-172.72727272727272,-172.66726672667266,-172.6072607260726,-172.54725472547256,-172.4872487248725,-172.42724272427242,-172.36723672367236,-172.3072307230723,-172.24722472247225,-172.1872187218722,-172.12721272127212,-172.06720672067206,-172.007200720072,-171.94719471947195,-171.8871887188719,-171.8271827182718,-171.76717671767176,-171.7071707170717,-171.64716471647165,-171.5871587158716,-171.52715271527154,-171.46714671467146,-171.4071407140714,-171.34713471347135,-171.2871287128713,-171.22712271227124,-171.16711671167116,-171.1071107110711,-171.04710471047105,-170.987098709871,-170.92709270927094,-170.86708670867085,-170.8070807080708,-170.74707470747074,-170.6870687068707,-170.62706270627064,-170.56705670567058,-170.5070507050705,-170.44704470447044,-170.3870387038704,-170.32703270327033,-170.26702670267028,-170.2070207020702,-170.14701470147014,-170.0870087008701,-170.02700270027003,-169.96699669966998,-169.9069906990699,-169.84698469846984,-169.78697869786978,-169.72697269726973,-169.66696669666968,-169.60696069606962,-169.54695469546954,-169.48694869486948,-169.42694269426943,-169.36693669366937,-169.30693069306932,-169.24692469246924,-169.18691869186918,-169.12691269126913,-169.06690669066907,-169.00690069006902,-168.94689468946893,-168.88688868886888,-168.82688268826882,-168.76687668766877,-168.70687068706872,-168.64686468646866,-168.58685868586858,-168.52685268526852,-168.46684668466847,-168.4068406840684,-168.34683468346836,-168.28682868286828,-168.22682268226822,-168.16681668166817,-168.1068106810681,-168.04680468046806,-167.98679867986797,-167.92679267926792,-167.86678667866786,-167.8067806780678,-167.74677467746776,-167.6867686768677,-167.62676267626762,-167.56675667566756,-167.5067506750675,-167.44674467446745,-167.3867386738674,-167.32673267326732,-167.26672667266726,-167.2067206720672,-167.14671467146715,-167.0867086708671,-167.026702670267,-166.96669666966696,-166.9066906690669,-166.84668466846685,-166.7866786678668,-166.72667266726674,-166.66666666666666,-166.6066606660666,-166.54665466546655,-166.4866486648665,-166.42664266426644,-166.36663666366636,-166.3066306630663,-166.24662466246625,-166.1866186618662,-166.12661266126614,-166.06660666066605,-166.006600660066,-165.94659465946594,-165.8865886588659,-165.82658265826583,-165.76657665766578,-165.7065706570657,-165.64656465646564,-165.5865586558656,-165.52655265526553,-165.46654665466548,-165.4065406540654,-165.34653465346534,-165.2865286528653,-165.22652265226523,-165.16651665166518,-165.1065106510651,-165.04650465046504,-164.98649864986498,-164.92649264926493,-164.86648664866487,-164.80648064806482,-164.74647464746474,-164.68646864686468,-164.62646264626463,-164.56645664566457,-164.50645064506452,-164.44644464446444,-164.38643864386438,-164.32643264326433,-164.26642664266427,-164.20642064206422,-164.14641464146413,-164.08640864086408,-164.02640264026402,-163.96639663966397,-163.90639063906391,-163.84638463846386,-163.78637863786378,-163.72637263726372,-163.66636663666367,-163.6063606360636,-163.54635463546356,-163.48634863486348,-163.42634263426342,-163.36633663366337,-163.3063306330633,-163.24632463246326,-163.18631863186317,-163.12631263126312,-163.06630663066306,-163.006300630063,-162.94629462946295,-162.8862886288629,-162.82628262826282,-162.76627662766276,-162.7062706270627,-162.64626462646265,-162.5862586258626,-162.52625262526252,-162.46624662466246,-162.4062406240624,-162.34623462346235,-162.2862286228623,-162.2262226222622,-162.16621662166216,-162.1062106210621,-162.04620462046205,-161.986198619862,-161.92619261926194,-161.86618661866186,-161.8061806180618,-161.74617461746175,-161.6861686168617,-161.62616261626164,-161.56615661566155,-161.5061506150615,-161.44614461446145,-161.3861386138614,-161.32613261326134,-161.26612661266125,-161.2061206120612,-161.14611461146114,-161.0861086108611,-161.02610261026103,-160.96609660966098,-160.9060906090609,-160.84608460846084,-160.7860786078608,-160.72607260726073,-160.66606660666068,-160.6060606060606,-160.54605460546054,-160.48604860486049,-160.42604260426043,-160.36603660366038,-160.3060306030603,-160.24602460246024,-160.18601860186018,-160.12601260126013,-160.06600660066007,-160.00600060006002,-159.94599459945994,-159.88598859885988,-159.82598259825983,-159.76597659765977,-159.70597059705972,-159.64596459645963,-159.58595859585958,-159.52595259525953,-159.46594659465947,-159.40594059405942,-159.34593459345933,-159.28592859285928,-159.22592259225922,-159.16591659165917,-159.10591059105911,-159.04590459045906,-158.98589858985898,-158.92589258925892,-158.86588658865887,-158.8058805880588,-158.74587458745876,-158.68586858685867,-158.62586258625862,-158.56585658565857,-158.5058505850585,-158.44584458445846,-158.38583858385837,-158.32583258325832,-158.26582658265826,-158.2058205820582,-158.14581458145815,-158.0858085808581,-158.02580258025802,-157.96579657965796,-157.9057905790579,-157.84578457845785,-157.7857785778578,-157.72577257725771,-157.66576657665766,-157.6057605760576,-157.54575457545755,-157.4857485748575,-157.4257425742574,-157.36573657365736,-157.3057305730573,-157.24572457245725,-157.1857185718572,-157.12571257125714,-157.06570657065706,-157.005700570057,-156.94569456945695,-156.8856885688569,-156.82568256825684,-156.76567656765675,-156.7056705670567,-156.64566456645665,-156.5856585658566,-156.52565256525654,-156.46564656465645,-156.4056405640564,-156.34563456345634,-156.2856285628563,-156.22562256225623,-156.16561656165618,-156.1056105610561,-156.04560456045604,-155.985598559856,-155.92559255925593,-155.86558655865588,-155.8055805580558,-155.74557455745574,-155.68556855685569,-155.62556255625563,-155.56555655565558,-155.5055505550555,-155.44554455445544,-155.38553855385538,-155.32553255325533,-155.26552655265527,-155.20552055205522,-155.14551455145514,-155.08550855085508,-155.02550255025503,-154.96549654965497,-154.90549054905492,-154.84548454845483,-154.78547854785478,-154.72547254725472,-154.66546654665467,-154.60546054605462,-154.54545454545453,-154.48544854485448,-154.42544254425442,-154.36543654365437,-154.3054305430543,-154.24542454245426,-154.18541854185418,-154.12541254125412,-154.06540654065407,-154.005400540054,-153.94539453945396,-153.88538853885387,-153.82538253825382,-153.76537653765376,-153.7053705370537,-153.64536453645366,-153.58535853585357,-153.52535253525352,-153.46534653465346,-153.4053405340534,-153.34533453345335,-153.2853285328533,-153.22532253225322,-153.16531653165316,-153.1053105310531,-153.04530453045305,-152.985298529853,-152.9252925292529,-152.86528652865286,-152.8052805280528,-152.74527452745275,-152.6852685268527,-152.6252625262526,-152.56525652565256,-152.5052505250525,-152.44524452445245,-152.3852385238524,-152.32523252325234,-152.26522652265226,-152.2052205220522,-152.14521452145215,-152.0852085208521,-152.02520252025204,-151.96519651965195,-151.9051905190519,-151.84518451845184,-151.7851785178518,-151.72517251725174,-151.66516651665165,-151.6051605160516,-151.54515451545154,-151.4851485148515,-151.42514251425143,-151.36513651365138,-151.3051305130513,-151.24512451245124,-151.1851185118512,-151.12511251125113,-151.06510651065108,-151.005100510051,-150.94509450945094,-150.88508850885088,-150.82508250825083,-150.76507650765078,-150.7050705070507,-150.64506450645064,-150.58505850585058,-150.52505250525053,-150.46504650465047,-150.40504050405042,-150.34503450345034,-150.28502850285028,-150.22502250225023,-150.16501650165017,-150.10501050105012,-150.04500450045003,-149.98499849984998,-149.92499249924992,-149.86498649864987,-149.80498049804982,-149.74497449744973,-149.68496849684968,-149.62496249624962,-149.56495649564957,-149.5049504950495,-149.44494449444946,-149.38493849384938,-149.32493249324932,-149.26492649264927,-149.2049204920492,-149.14491449144916,-149.08490849084907,-149.02490249024902,-148.96489648964896,-148.9048904890489,-148.84488448844886,-148.78487848784877,-148.72487248724872,-148.66486648664866,-148.6048604860486,-148.54485448544855,-148.4848484848485,-148.42484248424842,-148.36483648364836,-148.3048304830483,-148.24482448244825,-148.1848184818482,-148.1248124812481,-148.06480648064806,-148.004800480048,-147.94479447944795,-147.8847884788479,-147.8247824782478,-147.76477647764776,-147.7047704770477,-147.64476447644765,-147.5847584758476,-147.52475247524754,-147.46474647464746,-147.4047404740474,-147.34473447344735,-147.2847284728473,-147.22472247224724,-147.16471647164715,-147.1047104710471,-147.04470447044704,-146.984698469847,-146.92469246924693,-146.86468646864685,-146.8046804680468,-146.74467446744674,-146.6846684668467,-146.62466246624663,-146.56465646564658,-146.5046504650465,-146.44464446444644,-146.3846384638464,-146.32463246324633,-146.26462646264628,-146.2046204620462,-146.14461446144614,-146.08460846084608,-146.02460246024603,-145.96459645964597,-145.9045904590459,-145.84458445844584,-145.78457845784578,-145.72457245724573,-145.66456645664567,-145.60456045604562,-145.54455445544554,-145.48454845484548,-145.42454245424543,-145.36453645364537,-145.30453045304532,-145.24452445244523,-145.18451845184518,-145.12451245124512,-145.06450645064507,-145.00450045004501,-144.94449444944493,-144.88448844884488,-144.82448244824482,-144.76447644764477,-144.7044704470447,-144.64446444644466,-144.58445844584458,-144.52445244524452,-144.46444644464447,-144.4044404440444,-144.34443444344436,-144.28442844284427,-144.22442244224422,-144.16441644164416,-144.1044104410441,-144.04440444044405,-143.98439843984397,-143.92439243924392,-143.86438643864386,-143.8043804380438,-143.74437443744375,-143.6843684368437,-143.62436243624362,-143.56435643564356,-143.5043504350435,-143.44434443444345,-143.3843384338434,-143.3243324332433,-143.26432643264326,-143.2043204320432,-143.14431443144315,-143.0843084308431,-143.024302430243,-142.96429642964296,-142.9042904290429,-142.84428442844285,-142.7842784278428,-142.72427242724274,-142.66426642664266,-142.6042604260426,-142.54425442544255,-142.4842484248425,-142.42424242424244,-142.36423642364235,-142.3042304230423,-142.24422442244224,-142.1842184218422,-142.12421242124213,-142.06420642064205,-142.004200420042,-141.94419441944194,-141.8841884188419,-141.82418241824183,-141.76417641764178,-141.7041704170417,-141.64416441644164,-141.58415841584159,-141.52415241524153,-141.46414641464148,-141.4041404140414,-141.34413441344134,-141.28412841284128,-141.22412241224123,-141.16411641164117,-141.1041104110411,-141.04410441044104,-140.98409840984098,-140.92409240924093,-140.86408640864087,-140.80408040804082,-140.74407440744073,-140.68406840684068,-140.62406240624063,-140.56405640564057,-140.50405040504052,-140.44404440444043,-140.38403840384038,-140.32403240324032,-140.26402640264027,-140.20402040204021,-140.14401440144013,-140.08400840084008,-140.02400240024002,-139.96399639963997,-139.9039903990399,-139.84398439843986,-139.78397839783977,-139.72397239723972,-139.66396639663967,-139.6039603960396,-139.54395439543956,-139.48394839483947,-139.42394239423942,-139.36393639363936,-139.3039303930393,-139.24392439243925,-139.18391839183917,-139.12391239123912,-139.06390639063906,-139.003900390039,-138.94389438943895,-138.8838883888389,-138.82388238823881,-138.76387638763876,-138.7038703870387,-138.64386438643865,-138.5838583858386,-138.5238523852385,-138.46384638463846,-138.4038403840384,-138.34383438343835,-138.2838283828383,-138.2238223822382,-138.16381638163816,-138.1038103810381,-138.04380438043805,-137.983798379838,-137.92379237923794,-137.86378637863785,-137.8037803780378,-137.74377437743775,-137.6837683768377,-137.62376237623764,-137.56375637563755,-137.5037503750375,-137.44374437443744,-137.3837383738374,-137.32373237323733,-137.26372637263725,-137.2037203720372,-137.14371437143714,-137.0837083708371,-137.02370237023703,-136.96369636963698,-136.9036903690369,-136.84368436843684,-136.78367836783679,-136.72367236723673,-136.66366636663668,-136.6036603660366,-136.54365436543654,-136.48364836483648,-136.42364236423643,-136.36363636363637,-136.3036303630363,-136.24362436243624,-136.18361836183618,-136.12361236123613,-136.06360636063607,-136.00360036003602,-135.94359435943593,-135.88358835883588,-135.82358235823583,-135.76357635763577,-135.70357035703572,-135.64356435643563,-135.58355835583558,-135.52355235523552,-135.46354635463547,-135.4035403540354,-135.34353435343533,-135.28352835283528,-135.22352235223522,-135.16351635163517,-135.1035103510351,-135.04350435043506,-134.98349834983497,-134.92349234923492,-134.86348634863486,-134.8034803480348,-134.74347434743476,-134.68346834683467,-134.62346234623462,-134.56345634563456,-134.5034503450345,-134.44344434443445,-134.38343834383437,-134.32343234323432,-134.26342634263426,-134.2034203420342,-134.14341434143415,-134.0834083408341,-134.02340234023401,-133.96339633963396,-133.9033903390339,-133.84338433843385,-133.7833783378338,-133.7233723372337,-133.66336633663366,-133.6033603360336,-133.54335433543355,-133.4833483348335,-133.4233423342334,-133.36333633363336,-133.3033303330333,-133.24332433243325,-133.1833183318332,-133.12331233123314,-133.06330633063305,-133.003300330033,-132.94329432943294,-132.8832883288329,-132.82328232823284,-132.76327632763275,-132.7032703270327,-132.64326432643264,-132.5832583258326,-132.52325232523253,-132.46324632463245,-132.4032403240324,-132.34323432343234,-132.2832283228323,-132.22322232223223,-132.16321632163218,-132.1032103210321,-132.04320432043204,-131.98319831983198,-131.92319231923193,-131.86318631863188,-131.8031803180318,-131.74317431743174,-131.68316831683168,-131.62316231623163,-131.56315631563157,-131.5031503150315,-131.44314431443144,-131.38313831383138,-131.32313231323133,-131.26312631263127,-131.20312031203122,-131.14311431143113,-131.08310831083108,-131.02310231023102,-130.96309630963097,-130.90309030903092,-130.84308430843083,-130.78307830783078,-130.72307230723072,-130.66306630663067,-130.6030603060306,-130.54305430543053,-130.48304830483048,-130.42304230423042,-130.36303630363037,-130.3030303030303,-130.24302430243026,-130.18301830183017,-130.12301230123012,-130.06300630063006,-130.00300030003,-129.94299429942996,-129.88298829882987,-129.82298229822982,-129.76297629762976,-129.7029702970297,-129.64296429642965,-129.58295829582957,-129.52295229522952,-129.46294629462946,-129.4029402940294,-129.34293429342935,-129.2829282928293,-129.2229222922292,-129.16291629162916,-129.1029102910291,-129.04290429042905,-128.982898289829,-128.9228922892289,-128.86288628862886,-128.8028802880288,-128.74287428742875,-128.6828682868287,-128.6228622862286,-128.56285628562856,-128.5028502850285,-128.44284428442845,-128.3828382838284,-128.32283228322834,-128.26282628262825,-128.2028202820282,-128.14281428142814,-128.0828082808281,-128.02280228022803,-127.96279627962797,-127.9027902790279,-127.84278427842784,-127.78277827782779,-127.72277227722772,-127.66276627662766,-127.60276027602761,-127.54275427542754,-127.48274827482749,-127.42274227422742,-127.36273627362736,-127.30273027302731,-127.24272427242724,-127.18271827182718,-127.12271227122713,-127.06270627062706,-127.002700270027,-126.94269426942694,-126.88268826882688,-126.82268226822683,-126.76267626762676,-126.7026702670267,-126.64266426642665,-126.58265826582658,-126.52265226522653,-126.46264626462646,-126.4026402640264,-126.34263426342635,-126.28262826282628,-126.22262226222622,-126.16261626162617,-126.1026102610261,-126.04260426042605,-125.98259825982598,-125.92259225922592,-125.86258625862587,-125.8025802580258,-125.74257425742574,-125.68256825682569,-125.62256225622562,-125.56255625562557,-125.5025502550255,-125.44254425442544,-125.38253825382539,-125.32253225322532,-125.26252625262526,-125.20252025202521,-125.14251425142514,-125.08250825082509,-125.02250225022502,-124.96249624962496,-124.90249024902491,-124.84248424842484,-124.78247824782478,-124.72247224722473,-124.66246624662466,-124.6024602460246,-124.54245424542454,-124.48244824482448,-124.42244224422443,-124.36243624362436,-124.3024302430243,-124.24242424242425,-124.18241824182418,-124.12241224122413,-124.06240624062406,-124.002400240024,-123.94239423942395,-123.88238823882388,-123.82238223822382,-123.76237623762377,-123.7023702370237,-123.64236423642365,-123.58235823582358,-123.52235223522352,-123.46234623462347,-123.4023402340234,-123.34233423342334,-123.28232823282329,-123.22232223222322,-123.16231623162317,-123.1023102310231,-123.04230423042304,-122.98229822982299,-122.92229222922292,-122.86228622862286,-122.80228022802281,-122.74227422742274,-122.68226822682269,-122.62226222622262,-122.56225622562256,-122.50225022502251,-122.44224422442244,-122.38223822382238,-122.32223222322233,-122.26222622262226,-122.2022202220222,-122.14221422142214,-122.08220822082208,-122.02220222022203,-121.96219621962196,-121.9021902190219,-121.84218421842185,-121.78217821782178,-121.72217221722173,-121.66216621662166,-121.6021602160216,-121.54215421542155,-121.48214821482148,-121.42214221422142,-121.36213621362137,-121.3021302130213,-121.24212421242125,-121.18211821182118,-121.12211221122112,-121.06210621062107,-121.002100210021,-120.94209420942094,-120.88208820882089,-120.82208220822082,-120.76207620762077,-120.7020702070207,-120.64206420642064,-120.58205820582059,-120.52205220522052,-120.46204620462046,-120.40204020402041,-120.34203420342034,-120.28202820282029,-120.22202220222022,-120.16201620162016,-120.10201020102011,-120.04200420042004,-119.98199819981998,-119.92199219921993,-119.86198619861986,-119.8019801980198,-119.74197419741974,-119.68196819681968,-119.62196219621963,-119.56195619561956,-119.5019501950195,-119.44194419441945,-119.38193819381938,-119.32193219321933,-119.26192619261926,-119.2019201920192,-119.14191419141915,-119.08190819081908,-119.02190219021902,-118.96189618961897,-118.9018901890189,-118.84188418841885,-118.78187818781878,-118.72187218721872,-118.66186618661867,-118.6018601860186,-118.54185418541854,-118.48184818481849,-118.42184218421842,-118.36183618361837,-118.3018301830183,-118.24182418241824,-118.18181818181819,-118.12181218121812,-118.06180618061806,-118.00180018001801,-117.94179417941794,-117.88178817881789,-117.82178217821782,-117.76177617761776,-117.7017701770177,-117.64176417641764,-117.58175817581758,-117.52175217521753,-117.46174617461746,-117.4017401740174,-117.34173417341734,-117.28172817281728,-117.22172217221723,-117.16171617161716,-117.1017101710171,-117.04170417041705,-116.98169816981698,-116.92169216921693,-116.86168616861686,-116.8016801680168,-116.74167416741675,-116.68166816681668,-116.62166216621662,-116.56165616561657,-116.5016501650165,-116.44164416441645,-116.38163816381638,-116.32163216321632,-116.26162616261627,-116.2016201620162,-116.14161416141614,-116.08160816081609,-116.02160216021602,-115.96159615961597,-115.9015901590159,-115.84158415841584,-115.78157815781579,-115.72157215721572,-115.66156615661566,-115.60156015601561,-115.54155415541554,-115.48154815481548,-115.42154215421542,-115.36153615361536,-115.3015301530153,-115.24152415241524,-115.18151815181518,-115.12151215121513,-115.06150615061506,-115.001500150015,-114.94149414941494,-114.88148814881488,-114.82148214821483,-114.76147614761476,-114.7014701470147,-114.64146414641465,-114.58145814581458,-114.52145214521452,-114.46144614461446,-114.4014401440144,-114.34143414341435,-114.28142814281428,-114.22142214221422,-114.16141614161417,-114.1014101410141,-114.04140414041404,-113.98139813981398,-113.92139213921392,-113.86138613861387,-113.8013801380138,-113.74137413741374,-113.68136813681369,-113.62136213621362,-113.56135613561356,-113.5013501350135,-113.44134413441344,-113.38133813381339,-113.32133213321332,-113.26132613261326,-113.20132013201321,-113.14131413141314,-113.08130813081308,-113.02130213021302,-112.96129612961296,-112.9012901290129,-112.84128412841284,-112.78127812781278,-112.72127212721273,-112.66126612661266,-112.6012601260126,-112.54125412541254,-112.48124812481248,-112.42124212421243,-112.36123612361236,-112.3012301230123,-112.24122412241225,-112.18121812181218,-112.12121212121212,-112.06120612061206,-112.001200120012,-111.94119411941195,-111.88118811881188,-111.82118211821182,-111.76117611761177,-111.7011701170117,-111.64116411641164,-111.58115811581158,-111.52115211521152,-111.46114611461147,-111.4011401140114,-111.34113411341134,-111.28112811281129,-111.22112211221122,-111.16111611161116,-111.1011101110111,-111.04110411041104,-110.98109810981099,-110.92109210921092,-110.86108610861086,-110.80108010801081,-110.74107410741074,-110.68106810681068,-110.62106210621062,-110.56105610561056,-110.5010501050105,-110.44104410441044,-110.38103810381038,-110.32103210321033,-110.26102610261026,-110.2010201020102,-110.14101410141014,-110.08100810081008,-110.02100210021003,-109.96099609960996,-109.9009900990099,-109.84098409840985,-109.78097809780978,-109.72097209720972,-109.66096609660966,-109.6009600960096,-109.54095409540955,-109.48094809480948,-109.42094209420942,-109.36093609360937,-109.3009300930093,-109.24092409240924,-109.18091809180918,-109.12091209120912,-109.06090609060907,-109.000900090009,-108.94089408940894,-108.88088808880889,-108.82088208820882,-108.76087608760876,-108.7008700870087,-108.64086408640864,-108.58085808580859,-108.52085208520852,-108.46084608460846,-108.40084008400841,-108.34083408340834,-108.28082808280828,-108.22082208220822,-108.16081608160816,-108.1008100810081,-108.04080408040804,-107.98079807980798,-107.92079207920793,-107.86078607860786,-107.8007800780078,-107.74077407740774,-107.68076807680768,-107.62076207620763,-107.56075607560756,-107.5007500750075,-107.44074407440745,-107.38073807380738,-107.32073207320732,-107.26072607260726,-107.2007200720072,-107.14071407140715,-107.08070807080708,-107.02070207020702,-106.96069606960697,-106.9006900690069,-106.84068406840684,-106.78067806780678,-106.72067206720672,-106.66066606660667,-106.6006600660066,-106.54065406540654,-106.48064806480649,-106.42064206420642,-106.36063606360636,-106.3006300630063,-106.24062406240624,-106.18061806180619,-106.12061206120612,-106.06060606060606,-106.00060006000601,-105.94059405940594,-105.88058805880588,-105.82058205820582,-105.76057605760576,-105.7005700570057,-105.64056405640564,-105.58055805580558,-105.52055205520553,-105.46054605460546,-105.4005400540054,-105.34053405340534,-105.28052805280528,-105.22052205220523,-105.16051605160516,-105.1005100510051,-105.04050405040505,-104.98049804980498,-104.92049204920492,-104.86048604860486,-104.8004800480048,-104.74047404740475,-104.68046804680468,-104.62046204620462,-104.56045604560457,-104.5004500450045,-104.44044404440444,-104.38043804380438,-104.32043204320432,-104.26042604260427,-104.2004200420042,-104.14041404140414,-104.08040804080409,-104.02040204020402,-103.96039603960396,-103.9003900390039,-103.84038403840384,-103.78037803780379,-103.72037203720372,-103.66036603660366,-103.60036003600361,-103.54035403540354,-103.48034803480348,-103.42034203420341,-103.36033603360336,-103.3003300330033,-103.24032403240324,-103.18031803180318,-103.12031203120313,-103.06030603060306,-103.000300030003,-102.94029402940293,-102.88028802880288,-102.82028202820283,-102.76027602760276,-102.7002700270027,-102.64026402640265,-102.58025802580258,-102.52025202520252,-102.46024602460245,-102.4002400240024,-102.34023402340235,-102.28022802280228,-102.22022202220222,-102.16021602160217,-102.1002100210021,-102.04020402040204,-101.98019801980197,-101.92019201920192,-101.86018601860187,-101.8001800180018,-101.74017401740174,-101.68016801680169,-101.62016201620162,-101.56015601560156,-101.5001500150015,-101.44014401440144,-101.38013801380139,-101.32013201320132,-101.26012601260126,-101.20012001200121,-101.14011401140114,-101.08010801080108,-101.02010201020101,-100.96009600960096,-100.9000900090009,-100.84008400840084,-100.78007800780078,-100.72007200720073,-100.66006600660066,-100.6000600060006,-100.54005400540053,-100.48004800480048,-100.42004200420043,-100.36003600360036,-100.3000300030003,-100.24002400240025,-100.18001800180018,-100.12001200120012,-100.06000600060005,-100.0,-99.93999399939995,-99.87998799879988,-99.81998199819982,-99.75997599759975,-99.6999699969997,-99.63996399639964,-99.57995799579957,-99.51995199519952,-99.45994599459947,-99.3999399939994,-99.33993399339934,-99.27992799279927,-99.21992199219922,-99.15991599159916,-99.0999099909991,-99.03990399039904,-98.97989798979899,-98.91989198919892,-98.85988598859886,-98.79987998799879,-98.73987398739874,-98.67986798679868,-98.61986198619861,-98.55985598559856,-98.4998499849985,-98.43984398439844,-98.37983798379838,-98.31983198319831,-98.25982598259826,-98.1998199819982,-98.13981398139813,-98.07980798079808,-98.01980198019803,-97.95979597959796,-97.8997899789979,-97.83978397839783,-97.77977797779778,-97.71977197719772,-97.65976597659765,-97.5997599759976,-97.53975397539755,-97.47974797479748,-97.41974197419742,-97.35973597359735,-97.2997299729973,-97.23972397239724,-97.17971797179717,-97.11971197119712,-97.05970597059707,-96.999699969997,-96.93969396939694,-96.87968796879687,-96.81968196819682,-96.75967596759676,-96.6996699669967,-96.63966396639664,-96.57965796579659,-96.51965196519652,-96.45964596459646,-96.39963996399639,-96.33963396339634,-96.27962796279628,-96.21962196219621,-96.15961596159616,-96.0996099609961,-96.03960396039604,-95.97959795979598,-95.91959195919591,-95.85958595859586,-95.7995799579958,-95.73957395739573,-95.67956795679568,-95.61956195619562,-95.55955595559556,-95.4995499549955,-95.43954395439543,-95.37953795379538,-95.31953195319532,-95.25952595259525,-95.1995199519952,-95.13951395139514,-95.07950795079508,-95.01950195019502,-94.95949594959495,-94.8994899489949,-94.83948394839484,-94.77947794779477,-94.71947194719472,-94.65946594659466,-94.5994599459946,-94.53945394539454,-94.47944794479447,-94.41944194419442,-94.35943594359436,-94.2994299429943,-94.23942394239424,-94.17941794179418,-94.11941194119412,-94.05940594059406,-93.99939993999399,-93.93939393939394,-93.87938793879388,-93.81938193819381,-93.75937593759376,-93.6993699369937,-93.63936393639364,-93.57935793579358,-93.51935193519351,-93.45934593459346,-93.3993399339934,-93.33933393339333,-93.27932793279328,-93.21932193219322,-93.15931593159316,-93.0993099309931,-93.03930393039303,-92.97929792979298,-92.91929192919292,-92.85928592859285,-92.7992799279928,-92.73927392739274,-92.67926792679268,-92.61926192619262,-92.55925592559255,-92.4992499249925,-92.43924392439244,-92.37923792379237,-92.31923192319232,-92.25922592259226,-92.1992199219922,-92.13921392139214,-92.07920792079207,-92.01920192019202,-91.95919591959196,-91.8991899189919,-91.83918391839184,-91.77917791779178,-91.71917191719172,-91.65916591659166,-91.59915991599159,-91.53915391539154,-91.47914791479148,-91.41914191419141,-91.35913591359136,-91.2991299129913,-91.23912391239124,-91.17911791179118,-91.11911191119111,-91.05910591059106,-90.999099909991,-90.93909390939093,-90.87908790879088,-90.81908190819082,-90.75907590759076,-90.6990699069907,-90.63906390639063,-90.57905790579058,-90.51905190519052,-90.45904590459045,-90.3990399039904,-90.33903390339034,-90.27902790279028,-90.21902190219022,-90.15901590159015,-90.0990099009901,-90.03900390039004,-89.97899789978997,-89.91899189918992,-89.85898589858986,-89.7989798979898,-89.73897389738974,-89.67896789678967,-89.61896189618962,-89.55895589558956,-89.4989498949895,-89.43894389438944,-89.37893789378938,-89.31893189318932,-89.25892589258926,-89.19891989198919,-89.13891389138914,-89.07890789078908,-89.01890189018901,-88.95889588958896,-88.8988898889889,-88.83888388838884,-88.77887788778878,-88.71887188718871,-88.65886588658866,-88.5988598859886,-88.53885388538853,-88.47884788478848,-88.41884188418842,-88.35883588358836,-88.2988298829883,-88.23882388238823,-88.17881788178818,-88.11881188118812,-88.05880588058805,-87.998799879988,-87.93879387938794,-87.87878787878788,-87.81878187818782,-87.75877587758775,-87.6987698769877,-87.63876387638764,-87.57875787578757,-87.51875187518752,-87.45874587458746,-87.3987398739874,-87.33873387338734,-87.27872787278727,-87.21872187218722,-87.15871587158716,-87.0987098709871,-87.03870387038704,-86.97869786978698,-86.91869186918692,-86.85868586858686,-86.79867986798679,-86.73867386738674,-86.67866786678668,-86.61866186618661,-86.55865586558656,-86.4986498649865,-86.43864386438644,-86.37863786378638,-86.31863186318631,-86.25862586258626,-86.1986198619862,-86.13861386138613,-86.07860786078608,-86.01860186018602,-85.95859585958596,-85.8985898589859,-85.83858385838583,-85.77857785778578,-85.71857185718572,-85.65856585658565,-85.5985598559856,-85.53855385538554,-85.47854785478548,-85.41854185418542,-85.35853585358535,-85.2985298529853,-85.23852385238524,-85.17851785178517,-85.11851185118512,-85.05850585058506,-84.998499849985,-84.93849384938494,-84.87848784878487,-84.81848184818482,-84.75847584758476,-84.6984698469847,-84.63846384638464,-84.57845784578458,-84.51845184518452,-84.45844584458446,-84.39843984398439,-84.33843384338434,-84.27842784278428,-84.21842184218421,-84.15841584158416,-84.0984098409841,-84.03840384038403,-83.97839783978398,-83.91839183918391,-83.85838583858386,-83.7983798379838,-83.73837383738373,-83.67836783678368,-83.61836183618362,-83.55835583558355,-83.4983498349835,-83.43834383438343,-83.37833783378338,-83.31833183318332,-83.25832583258325,-83.1983198319832,-83.13831383138314,-83.07830783078307,-83.01830183018302,-82.95829582958295,-82.8982898289829,-82.83828382838284,-82.77827782778277,-82.71827182718272,-82.65826582658266,-82.5982598259826,-82.53825382538254,-82.47824782478247,-82.41824182418242,-82.35823582358236,-82.2982298229823,-82.23822382238224,-82.17821782178218,-82.11821182118211,-82.05820582058206,-81.99819981998199,-81.93819381938194,-81.87818781878188,-81.81818181818181,-81.75817581758176,-81.6981698169817,-81.63816381638163,-81.57815781578158,-81.51815181518151,-81.45814581458146,-81.3981398139814,-81.33813381338133,-81.27812781278128,-81.21812181218122,-81.15811581158115,-81.0981098109811,-81.03810381038103,-80.97809780978098,-80.91809180918092,-80.85808580858085,-80.7980798079808,-80.73807380738074,-80.67806780678067,-80.61806180618062,-80.55805580558055,-80.4980498049805,-80.43804380438044,-80.37803780378037,-80.31803180318032,-80.25802580258026,-80.1980198019802,-80.13801380138014,-80.07800780078007,-80.01800180018002,-79.95799579957996,-79.89798979897989,-79.83798379837984,-79.77797779777978,-79.71797179717971,-79.65796579657966,-79.59795979597959,-79.53795379537954,-79.47794779477948,-79.41794179417941,-79.35793579357936,-79.2979297929793,-79.23792379237923,-79.17791779177918,-79.11791179117911,-79.05790579057906,-78.997899789979,-78.93789378937893,-78.87788778877888,-78.81788178817882,-78.75787578757875,-78.6978697869787,-78.63786378637863,-78.57785778577858,-78.51785178517852,-78.45784578457845,-78.3978397839784,-78.33783378337834,-78.27782778277827,-78.21782178217822,-78.15781578157815,-78.0978097809781,-78.03780378037804,-77.97779777977797,-77.91779177917792,-77.85778577857786,-77.7977797779778,-77.73777377737774,-77.67776777677767,-77.61776177617762,-77.55775577557756,-77.49774977497749,-77.43774377437744,-77.37773777377738,-77.31773177317731,-77.25772577257726,-77.19771977197719,-77.13771377137714,-77.07770777077708,-77.01770177017701,-76.95769576957696,-76.8976897689769,-76.83768376837683,-76.77767776777678,-76.71767176717671,-76.65766576657666,-76.5976597659766,-76.53765376537653,-76.47764776477648,-76.41764176417642,-76.35763576357635,-76.2976297629763,-76.23762376237623,-76.17761776177618,-76.11761176117612,-76.05760576057605,-75.997599759976,-75.93759375937594,-75.87758775877587,-75.81758175817582,-75.75757575757575,-75.6975697569757,-75.63756375637564,-75.57755775577557,-75.51755175517552,-75.45754575457546,-75.3975397539754,-75.33753375337534,-75.27752775277527,-75.21752175217522,-75.15751575157516,-75.09750975097509,-75.03750375037504,-74.97749774977498,-74.91749174917491,-74.85748574857486,-74.79747974797479,-74.73747374737474,-74.67746774677468,-74.61746174617461,-74.55745574557456,-74.4974497449745,-74.43744374437443,-74.37743774377438,-74.31743174317431,-74.25742574257426,-74.1974197419742,-74.13741374137413,-74.07740774077408,-74.01740174017402,-73.95739573957395,-73.8973897389739,-73.83738373837383,-73.77737773777378,-73.71737173717372,-73.65736573657365,-73.5973597359736,-73.53735373537354,-73.47734773477347,-73.41734173417342,-73.35733573357335,-73.2973297329733,-73.23732373237324,-73.17731773177317,-73.11731173117312,-73.05730573057306,-72.997299729973,-72.93729372937294,-72.87728772877287,-72.81728172817282,-72.75727572757276,-72.69726972697269,-72.63726372637264,-72.57725772577258,-72.51725172517251,-72.45724572457246,-72.39723972397239,-72.33723372337234,-72.27722772277228,-72.21722172217221,-72.15721572157216,-72.0972097209721,-72.03720372037203,-71.97719771977198,-71.91719171917191,-71.85718571857186,-71.7971797179718,-71.73717371737173,-71.67716771677168,-71.61716171617162,-71.55715571557155,-71.4971497149715,-71.43714371437143,-71.37713771377138,-71.31713171317132,-71.25712571257125,-71.1971197119712,-71.13711371137114,-71.07710771077107,-71.01710171017102,-70.95709570957095,-70.8970897089709,-70.83708370837084,-70.77707770777077,-70.71707170717072,-70.65706570657066,-70.5970597059706,-70.53705370537054,-70.47704770477047,-70.41704170417042,-70.35703570357036,-70.29702970297029,-70.23702370237024,-70.17701770177018,-70.11701170117011,-70.05700570057006,-69.99699969996999,-69.93699369936994,-69.87698769876988,-69.81698169816981,-69.75697569756976,-69.6969696969697,-69.63696369636963,-69.57695769576958,-69.51695169516951,-69.45694569456946,-69.3969396939694,-69.33693369336933,-69.27692769276928,-69.21692169216922,-69.15691569156915,-69.0969096909691,-69.03690369036903,-68.97689768976898,-68.91689168916892,-68.85688568856885,-68.7968796879688,-68.73687368736874,-68.67686768676867,-68.61686168616862,-68.55685568556855,-68.4968496849685,-68.43684368436844,-68.37683768376837,-68.31683168316832,-68.25682568256826,-68.1968196819682,-68.13681368136814,-68.07680768076807,-68.01680168016802,-67.95679567956796,-67.89678967896789,-67.83678367836784,-67.77677767776778,-67.71677167716771,-67.65676567656766,-67.59675967596759,-67.53675367536754,-67.47674767476748,-67.41674167416741,-67.35673567356736,-67.2967296729673,-67.23672367236723,-67.17671767176718,-67.11671167116711,-67.05670567056706,-66.996699669967,-66.93669366936693,-66.87668766876688,-66.81668166816682,-66.75667566756675,-66.6966696669667,-66.63666366636663,-66.57665766576658,-66.51665166516652,-66.45664566456645,-66.3966396639664,-66.33663366336634,-66.27662766276627,-66.21662166216622,-66.15661566156615,-66.0966096609661,-66.03660366036604,-65.97659765976597,-65.91659165916592,-65.85658565856586,-65.7965796579658,-65.73657365736574,-65.67656765676567,-65.61656165616562,-65.55655565556556,-65.49654965496549,-65.43654365436544,-65.37653765376538,-65.31653165316531,-65.25652565256526,-65.19651965196519,-65.13651365136514,-65.07650765076508,-65.01650165016501,-64.95649564956496,-64.8964896489649,-64.83648364836483,-64.77647764776478,-64.71647164716471,-64.65646564656466,-64.5964596459646,-64.53645364536453,-64.47644764476448,-64.41644164416442,-64.35643564356435,-64.2964296429643,-64.23642364236423,-64.17641764176417,-64.11641164116412,-64.05640564056405,-63.996399639964,-63.936393639363935,-63.87638763876387,-63.81638163816382,-63.75637563756376,-63.696369636963695,-63.63636363636363,-63.57635763576358,-63.51635163516352,-63.456345634563455,-63.39633963396339,-63.33633363336334,-63.27632763276328,-63.216321632163215,-63.15631563156315,-63.0963096309631,-63.03630363036304,-62.976297629762975,-62.91629162916291,-62.85628562856286,-62.7962796279628,-62.736273627362735,-62.67626762676267,-62.61626162616262,-62.55625562556256,-62.496249624962495,-62.43624362436243,-62.37623762376238,-62.31623162316232,-62.256225622562255,-62.19621962196219,-62.13621362136214,-62.07620762076208,-62.016201620162015,-61.95619561956195,-61.8961896189619,-61.83618361836184,-61.776177617761775,-61.71617161716171,-61.65616561656166,-61.5961596159616,-61.536153615361535,-61.47614761476147,-61.41614161416142,-61.35613561356136,-61.296129612961295,-61.23612361236123,-61.17611761176118,-61.11611161116112,-61.056105610561055,-60.99609960996099,-60.93609360936094,-60.876087608760876,-60.816081608160815,-60.75607560756075,-60.6960696069607,-60.636063606360636,-60.576057605760575,-60.51605160516051,-60.45604560456046,-60.396039603960396,-60.336033603360335,-60.27602760276027,-60.21602160216022,-60.156015601560156,-60.096009600960095,-60.03600360036003,-59.97599759975998,-59.915991599159916,-59.855985598559855,-59.79597959795979,-59.73597359735974,-59.675967596759676,-59.615961596159615,-59.55595559555955,-59.4959495949595,-59.435943594359436,-59.375937593759375,-59.31593159315931,-59.25592559255926,-59.195919591959196,-59.135913591359135,-59.07590759075907,-59.01590159015902,-58.955895589558956,-58.895889588958894,-58.83588358835883,-58.77587758775878,-58.715871587158716,-58.655865586558654,-58.59585958595859,-58.53585358535854,-58.475847584758476,-58.415841584158414,-58.35583558355835,-58.2958295829583,-58.235823582358236,-58.175817581758174,-58.11581158115811,-58.05580558055806,-57.995799579957996,-57.935793579357934,-57.87578757875787,-57.81578157815782,-57.755775577557756,-57.695769576957694,-57.63576357635763,-57.57575757575758,-57.515751575157516,-57.455745574557454,-57.39573957395739,-57.33573357335734,-57.275727572757276,-57.215721572157214,-57.15571557155715,-57.0957095709571,-57.035703570357036,-56.975697569756974,-56.91569156915691,-56.85568556855686,-56.795679567956796,-56.735673567356734,-56.67566756675667,-56.61566156615662,-56.555655565556556,-56.495649564956494,-56.43564356435643,-56.37563756375638,-56.315631563156316,-56.255625562556254,-56.19561956195619,-56.13561356135614,-56.075607560756076,-56.015601560156014,-55.95559555955595,-55.8955895589559,-55.835583558355836,-55.775577557755774,-55.71557155715571,-55.65556555655566,-55.595559555955596,-55.535553555355534,-55.47554755475547,-55.41554155415542,-55.355535553555356,-55.295529552955294,-55.23552355235523,-55.17551755175518,-55.115511551155116,-55.055505550555054,-54.99549954995499,-54.93549354935494,-54.875487548754876,-54.815481548154814,-54.75547554755475,-54.6954695469547,-54.635463546354636,-54.575457545754574,-54.51545154515451,-54.45544554455446,-54.395439543954396,-54.335433543354334,-54.27542754275427,-54.21542154215422,-54.155415541554156,-54.095409540954094,-54.03540354035403,-53.97539753975398,-53.915391539153916,-53.855385538553854,-53.79537953795379,-53.73537353735374,-53.675367536753676,-53.615361536153614,-53.55535553555355,-53.4953495349535,-53.435343534353436,-53.375337533753374,-53.31533153315331,-53.25532553255326,-53.195319531953196,-53.135313531353134,-53.07530753075307,-53.01530153015302,-52.955295529552956,-52.895289528952894,-52.83528352835283,-52.77527752775278,-52.715271527152716,-52.655265526552654,-52.59525952595259,-52.53525352535254,-52.475247524752476,-52.415241524152414,-52.35523552355235,-52.2952295229523,-52.235223522352236,-52.175217521752174,-52.11521152115211,-52.05520552055206,-51.995199519951996,-51.935193519351934,-51.87518751875187,-51.81518151815182,-51.755175517551756,-51.695169516951694,-51.63516351635163,-51.57515751575158,-51.515151515151516,-51.455145514551454,-51.39513951395139,-51.33513351335134,-51.275127512751276,-51.215121512151214,-51.15511551155115,-51.0951095109511,-51.035103510351036,-50.975097509750974,-50.91509150915091,-50.85508550855086,-50.795079507950796,-50.735073507350734,-50.67506750675067,-50.61506150615062,-50.555055505550555,-50.495049504950494,-50.43504350435043,-50.37503750375038,-50.315031503150315,-50.255025502550254,-50.19501950195019,-50.13501350135014,-50.075007500750075,-50.015001500150014,-49.95499549954995,-49.8949894989499,-49.834983498349835,-49.774977497749774,-49.71497149714971,-49.65496549654966,-49.594959495949595,-49.534953495349534,-49.47494749474947,-49.41494149414942,-49.354935493549355,-49.294929492949294,-49.23492349234923,-49.17491749174918,-49.114911491149115,-49.054905490549054,-48.99489948994899,-48.93489348934894,-48.874887488748875,-48.814881488148814,-48.75487548754875,-48.6948694869487,-48.634863486348635,-48.57485748574857,-48.51485148514851,-48.45484548454846,-48.394839483948395,-48.33483348334833,-48.27482748274827,-48.21482148214822,-48.154815481548155,-48.09480948094809,-48.03480348034803,-47.97479747974798,-47.914791479147915,-47.85478547854785,-47.79477947794779,-47.73477347734774,-47.674767476747675,-47.61476147614761,-47.55475547554755,-47.4947494749475,-47.434743474347435,-47.37473747374737,-47.31473147314731,-47.25472547254726,-47.194719471947195,-47.13471347134713,-47.07470747074707,-47.01470147014702,-46.954695469546955,-46.89468946894689,-46.83468346834683,-46.77467746774678,-46.714671467146715,-46.65466546654665,-46.59465946594659,-46.53465346534654,-46.474647464746475,-46.41464146414641,-46.35463546354635,-46.2946294629463,-46.234623462346235,-46.17461746174617,-46.11461146114611,-46.05460546054606,-45.994599459945995,-45.93459345934593,-45.87458745874587,-45.81458145814582,-45.754575457545755,-45.69456945694569,-45.63456345634563,-45.57455745574558,-45.514551455145515,-45.45454545454545,-45.39453945394539,-45.33453345334534,-45.274527452745275,-45.21452145214521,-45.15451545154515,-45.0945094509451,-45.034503450345035,-44.97449744974497,-44.91449144914491,-44.85448544854486,-44.794479447944795,-44.73447344734473,-44.67446744674467,-44.61446144614462,-44.554455445544555,-44.49444944494449,-44.43444344434443,-44.37443744374438,-44.314431443144315,-44.25442544254425,-44.19441944194419,-44.13441344134414,-44.074407440744075,-44.01440144014401,-43.95439543954395,-43.8943894389439,-43.834383438343835,-43.77437743774377,-43.71437143714371,-43.65436543654366,-43.594359435943595,-43.53435343534353,-43.47434743474347,-43.41434143414342,-43.354335433543355,-43.29432943294329,-43.23432343234323,-43.17431743174318,-43.114311431143115,-43.05430543054305,-42.99429942994299,-42.93429342934294,-42.874287428742875,-42.81428142814281,-42.75427542754275,-42.6942694269427,-42.634263426342635,-42.57425742574257,-42.51425142514251,-42.45424542454246,-42.394239423942395,-42.33423342334233,-42.27422742274227,-42.21422142214222,-42.154215421542155,-42.09420942094209,-42.03420342034203,-41.97419741974198,-41.914191419141915,-41.85418541854185,-41.79417941794179,-41.73417341734174,-41.674167416741675,-41.61416141614161,-41.55415541554155,-41.494149414941496,-41.434143414341435,-41.37413741374137,-41.31413141314131,-41.254125412541256,-41.194119411941195,-41.13411341134113,-41.07410741074107,-41.014101410141016,-40.954095409540955,-40.89408940894089,-40.83408340834083,-40.774077407740776,-40.714071407140715,-40.65406540654065,-40.59405940594059,-40.534053405340536,-40.474047404740475,-40.41404140414041,-40.35403540354035,-40.294029402940296,-40.234023402340235,-40.17401740174017,-40.11401140114011,-40.054005400540056,-39.993999399939995,-39.93399339933993,-39.87398739873987,-39.813981398139816,-39.753975397539755,-39.69396939693969,-39.63396339633963,-39.573957395739576,-39.513951395139514,-39.45394539453945,-39.39393939393939,-39.333933393339336,-39.273927392739274,-39.21392139213921,-39.15391539153915,-39.093909390939096,-39.033903390339034,-38.97389738973897,-38.91389138913891,-38.853885388538856,-38.793879387938794,-38.73387338733873,-38.67386738673867,-38.613861386138616,-38.553855385538554,-38.49384938493849,-38.43384338433843,-38.373837383738376,-38.313831383138314,-38.25382538253825,-38.19381938193819,-38.133813381338136,-38.073807380738074,-38.01380138013801,-37.95379537953795,-37.893789378937896,-37.833783378337834,-37.77377737773777,-37.71377137713771,-37.653765376537656,-37.593759375937594,-37.53375337533753,-37.47374737473747,-37.413741374137416,-37.353735373537354,-37.29372937293729,-37.23372337233723,-37.173717371737176,-37.113711371137114,-37.05370537053705,-36.99369936993699,-36.933693369336936,-36.873687368736874,-36.81368136813681,-36.75367536753675,-36.693669366936696,-36.633663366336634,-36.57365736573657,-36.51365136513651,-36.453645364536456,-36.393639363936394,-36.33363336333633,-36.27362736273627,-36.213621362136216,-36.153615361536154,-36.09360936093609,-36.03360336033603,-35.973597359735976,-35.913591359135914,-35.85358535853585,-35.79357935793579,-35.733573357335736,-35.673567356735674,-35.61356135613561,-35.55355535553555,-35.493549354935496,-35.433543354335434,-35.37353735373537,-35.31353135313531,-35.253525352535256,-35.193519351935194,-35.13351335133513,-35.07350735073507,-35.013501350135016,-34.953495349534954,-34.89348934893489,-34.83348334833483,-34.773477347734776,-34.713471347134714,-34.65346534653465,-34.59345934593459,-34.533453345334536,-34.473447344734474,-34.41344134413441,-34.35343534353435,-34.293429342934296,-34.233423342334234,-34.17341734173417,-34.11341134113411,-34.053405340534056,-33.993399339933994,-33.93339333933393,-33.87338733873387,-33.813381338133816,-33.753375337533754,-33.69336933693369,-33.63336333633363,-33.573357335733576,-33.513351335133514,-33.45334533453345,-33.39333933393339,-33.333333333333336,-33.273327332733274,-33.21332133213321,-33.15331533153315,-33.093309330933096,-33.033303330333034,-32.97329732973297,-32.91329132913291,-32.853285328532856,-32.793279327932794,-32.73327332733273,-32.67326732673267,-32.613261326132616,-32.553255325532554,-32.49324932493249,-32.43324332433243,-32.373237323732376,-32.313231323132314,-32.25322532253225,-32.19321932193219,-32.133213321332136,-32.073207320732074,-32.01320132013201,-31.953195319531954,-31.893189318931892,-31.833183318331834,-31.773177317731772,-31.713171317131714,-31.653165316531652,-31.593159315931594,-31.533153315331532,-31.473147314731474,-31.413141314131412,-31.353135313531354,-31.293129312931292,-31.233123312331234,-31.173117311731172,-31.113111311131114,-31.053105310531052,-30.993099309930994,-30.933093309330932,-30.873087308730874,-30.813081308130812,-30.753075307530754,-30.693069306930692,-30.633063306330634,-30.573057305730572,-30.513051305130514,-30.453045304530452,-30.393039303930394,-30.333033303330332,-30.273027302730274,-30.213021302130212,-30.153015301530154,-30.093009300930092,-30.033003300330034,-29.972997299729972,-29.912991299129914,-29.852985298529852,-29.792979297929794,-29.732973297329732,-29.672967296729674,-29.612961296129612,-29.552955295529554,-29.492949294929492,-29.432943294329434,-29.372937293729372,-29.312931293129314,-29.252925292529252,-29.192919291929194,-29.13291329132913,-29.072907290729074,-29.01290129012901,-28.952895289528954,-28.89288928892889,-28.832883288328834,-28.77287728772877,-28.712871287128714,-28.65286528652865,-28.592859285928593,-28.53285328532853,-28.472847284728473,-28.41284128412841,-28.352835283528353,-28.29282928292829,-28.232823282328233,-28.17281728172817,-28.112811281128113,-28.05280528052805,-27.992799279927993,-27.93279327932793,-27.872787278727873,-27.81278127812781,-27.752775277527753,-27.69276927692769,-27.632763276327633,-27.57275727572757,-27.512751275127513,-27.45274527452745,-27.392739273927393,-27.33273327332733,-27.272727272727273,-27.21272127212721,-27.152715271527153,-27.09270927092709,-27.032703270327033,-26.97269726972697,-26.912691269126913,-26.85268526852685,-26.792679267926793,-26.73267326732673,-26.672667266726673,-26.61266126612661,-26.552655265526553,-26.49264926492649,-26.432643264326433,-26.37263726372637,-26.312631263126313,-26.25262526252625,-26.192619261926193,-26.13261326132613,-26.072607260726073,-26.01260126012601,-25.952595259525953,-25.89258925892589,-25.832583258325833,-25.77257725772577,-25.712571257125713,-25.65256525652565,-25.592559255925593,-25.53255325532553,-25.472547254725473,-25.41254125412541,-25.352535253525353,-25.29252925292529,-25.232523252325233,-25.17251725172517,-25.112511251125113,-25.05250525052505,-24.992499249924993,-24.93249324932493,-24.872487248724873,-24.81248124812481,-24.752475247524753,-24.69246924692469,-24.632463246324633,-24.57245724572457,-24.512451245124513,-24.45244524452445,-24.392439243924393,-24.33243324332433,-24.272427242724273,-24.21242124212421,-24.152415241524153,-24.09240924092409,-24.032403240324033,-23.97239723972397,-23.912391239123913,-23.85238523852385,-23.792379237923793,-23.73237323732373,-23.672367236723673,-23.61236123612361,-23.552355235523553,-23.49234923492349,-23.432343234323433,-23.37233723372337,-23.312331233123313,-23.25232523252325,-23.192319231923193,-23.13231323132313,-23.072307230723073,-23.01230123012301,-22.952295229522953,-22.89228922892289,-22.832283228322833,-22.77227722772277,-22.712271227122713,-22.65226522652265,-22.592259225922593,-22.53225322532253,-22.472247224722473,-22.41224122412241,-22.352235223522353,-22.29222922292229,-22.232223222322233,-22.17221722172217,-22.112211221122113,-22.05220522052205,-21.992199219921993,-21.93219321932193,-21.872187218721873,-21.81218121812181,-21.752175217521753,-21.69216921692169,-21.632163216321633,-21.57215721572157,-21.512151215121513,-21.45214521452145,-21.392139213921393,-21.33213321332133,-21.272127212721273,-21.21212121212121,-21.152115211521153,-21.09210921092109,-21.032103210321033,-20.97209720972097,-20.912091209120913,-20.85208520852085,-20.792079207920793,-20.73207320732073,-20.672067206720673,-20.61206120612061,-20.552055205520553,-20.49204920492049,-20.432043204320433,-20.37203720372037,-20.312031203120313,-20.25202520252025,-20.192019201920193,-20.13201320132013,-20.072007200720073,-20.01200120012001,-19.951995199519953,-19.89198919891989,-19.831983198319833,-19.77197719771977,-19.711971197119713,-19.65196519651965,-19.591959195919593,-19.53195319531953,-19.471947194719473,-19.41194119411941,-19.351935193519353,-19.29192919291929,-19.231923192319233,-19.17191719171917,-19.111911191119113,-19.05190519051905,-18.991899189918993,-18.93189318931893,-18.871887188718873,-18.81188118811881,-18.751875187518753,-18.69186918691869,-18.631863186318633,-18.57185718571857,-18.511851185118513,-18.45184518451845,-18.391839183918393,-18.33183318331833,-18.271827182718273,-18.21182118211821,-18.151815181518153,-18.09180918091809,-18.031803180318033,-17.97179717971797,-17.911791179117913,-17.85178517851785,-17.791779177917793,-17.73177317731773,-17.671767176717672,-17.61176117611761,-17.551755175517552,-17.49174917491749,-17.431743174317432,-17.37173717371737,-17.311731173117312,-17.25172517251725,-17.191719171917192,-17.13171317131713,-17.071707170717072,-17.01170117011701,-16.951695169516952,-16.89168916891689,-16.831683168316832,-16.77167716771677,-16.711671167116712,-16.65166516651665,-16.591659165916592,-16.53165316531653,-16.471647164716472,-16.41164116411641,-16.351635163516352,-16.29162916291629,-16.231623162316232,-16.17161716171617,-16.111611161116112,-16.05160516051605,-15.991599159915992,-15.931593159315932,-15.871587158715872,-15.811581158115812,-15.751575157515752,-15.691569156915692,-15.631563156315632,-15.571557155715572,-15.511551155115512,-15.451545154515452,-15.391539153915392,-15.331533153315332,-15.271527152715272,-15.211521152115212,-15.151515151515152,-15.091509150915092,-15.031503150315032,-14.971497149714972,-14.911491149114912,-14.851485148514852,-14.791479147914792,-14.731473147314732,-14.671467146714672,-14.611461146114612,-14.551455145514552,-14.491449144914492,-14.431443144314432,-14.371437143714372,-14.311431143114312,-14.251425142514252,-14.191419141914192,-14.131413141314132,-14.071407140714072,-14.011401140114012,-13.951395139513952,-13.891389138913892,-13.831383138313832,-13.771377137713772,-13.711371137113712,-13.651365136513652,-13.591359135913592,-13.531353135313532,-13.471347134713472,-13.411341134113412,-13.351335133513352,-13.291329132913292,-13.231323132313232,-13.171317131713172,-13.111311131113112,-13.051305130513052,-12.991299129912992,-12.931293129312932,-12.871287128712872,-12.811281128112812,-12.751275127512752,-12.691269126912692,-12.631263126312632,-12.571257125712572,-12.511251125112512,-12.451245124512452,-12.391239123912392,-12.331233123312332,-12.271227122712272,-12.211221122112212,-12.151215121512152,-12.091209120912092,-12.031203120312032,-11.971197119711972,-11.911191119111912,-11.851185118511852,-11.791179117911792,-11.731173117311732,-11.671167116711672,-11.611161116111612,-11.551155115511552,-11.491149114911492,-11.431143114311432,-11.371137113711372,-11.311131113111312,-11.251125112511252,-11.191119111911192,-11.131113111311132,-11.071107110711072,-11.011101110111012,-10.951095109510952,-10.891089108910892,-10.831083108310832,-10.771077107710772,-10.711071107110712,-10.651065106510652,-10.591059105910592,-10.531053105310532,-10.471047104710472,-10.411041104110412,-10.351035103510352,-10.291029102910292,-10.231023102310232,-10.171017101710172,-10.111011101110112,-10.051005100510052,-9.990999099909992,-9.930993099309932,-9.870987098709872,-9.810981098109812,-9.750975097509752,-9.690969096909692,-9.630963096309632,-9.570957095709572,-9.510951095109512,-9.450945094509452,-9.390939093909392,-9.330933093309332,-9.270927092709272,-9.210921092109212,-9.150915091509152,-9.090909090909092,-9.030903090309032,-8.970897089708972,-8.910891089108912,-8.850885088508852,-8.790879087908792,-8.730873087308732,-8.670867086708672,-8.610861086108612,-8.550855085508552,-8.490849084908492,-8.430843084308432,-8.370837083708372,-8.310831083108312,-8.250825082508252,-8.190819081908192,-8.130813081308132,-8.070807080708072,-8.010801080108012,-7.950795079507951,-7.890789078907891,-7.830783078307831,-7.770777077707771,-7.710771077107711,-7.650765076507651,-7.590759075907591,-7.530753075307531,-7.470747074707471,-7.410741074107411,-7.350735073507351,-7.290729072907291,-7.230723072307231,-7.170717071707171,-7.110711071107111,-7.050705070507051,-6.990699069906991,-6.930693069306931,-6.870687068706871,-6.810681068106811,-6.750675067506751,-6.690669066906691,-6.630663066306631,-6.570657065706571,-6.510651065106511,-6.450645064506451,-6.390639063906391,-6.330633063306331,-6.270627062706271,-6.210621062106211,-6.150615061506151,-6.0906090609060906,-6.0306030603060305,-5.9705970597059705,-5.9105910591059105,-5.8505850585058505,-5.7905790579057905,-5.7305730573057305,-5.6705670567056705,-5.6105610561056105,-5.5505550555055505,-5.4905490549054905,-5.4305430543054305,-5.3705370537053705,-5.3105310531053105,-5.2505250525052505,-5.1905190519051905,-5.1305130513051305,-5.0705070507050705,-5.0105010501050105,-4.9504950495049505,-4.8904890489048904,-4.83048304830483,-4.77047704770477,-4.71047104710471,-4.65046504650465,-4.59045904590459,-4.53045304530453,-4.47044704470447,-4.41044104410441,-4.35043504350435,-4.29042904290429,-4.23042304230423,-4.17041704170417,-4.11041104110411,-4.05040504050405,-3.9903990399039904,-3.9303930393039304,-3.8703870387038704,-3.8103810381038103,-3.7503750375037503,-3.6903690369036903,-3.6303630363036303,-3.5703570357035703,-3.5103510351035103,-3.4503450345034503,-3.3903390339033903,-3.3303330333033303,-3.2703270327032703,-3.2103210321032103,-3.1503150315031503,-3.0903090309030903,-3.0303030303030303,-2.9702970297029703,-2.9102910291029103,-2.8502850285028503,-2.7902790279027903,-2.7302730273027302,-2.6702670267026702,-2.6102610261026102,-2.5502550255025502,-2.4902490249024902,-2.43024302430243,-2.37023702370237,-2.31023102310231,-2.25022502250225,-2.19021902190219,-2.13021302130213,-2.07020702070207,-2.01020102010201,-1.9501950195019502,-1.8901890189018902,-1.8301830183018302,-1.7701770177017702,-1.7101710171017102,-1.6501650165016502,-1.5901590159015901,-1.5301530153015301,-1.4701470147014701,-1.4101410141014101,-1.3501350135013501,-1.2901290129012901,-1.2301230123012301,-1.17011701170117,-1.11011101110111,-1.05010501050105,-0.9900990099009901,-0.9300930093009301,-0.8700870087008701,-0.8100810081008101,-0.7500750075007501,-0.6900690069006901,-0.6300630063006301,-0.57005700570057,-0.51005100510051,-0.45004500450045004,-0.39003900390039004,-0.33003300330033003,-0.27002700270027,-0.21002100210021002,-0.15001500150015,-0.09000900090009001,-0.030003000300030003,0.030003000300030003,0.09000900090009001,0.15001500150015,0.21002100210021002,0.27002700270027,0.33003300330033003,0.39003900390039004,0.45004500450045004,0.51005100510051,0.57005700570057,0.6300630063006301,0.6900690069006901,0.7500750075007501,0.8100810081008101,0.8700870087008701,0.9300930093009301,0.9900990099009901,1.05010501050105,1.11011101110111,1.17011701170117,1.2301230123012301,1.2901290129012901,1.3501350135013501,1.4101410141014101,1.4701470147014701,1.5301530153015301,1.5901590159015901,1.6501650165016502,1.7101710171017102,1.7701770177017702,1.8301830183018302,1.8901890189018902,1.9501950195019502,2.01020102010201,2.07020702070207,2.13021302130213,2.19021902190219,2.25022502250225,2.31023102310231,2.37023702370237,2.43024302430243,2.4902490249024902,2.5502550255025502,2.6102610261026102,2.6702670267026702,2.7302730273027302,2.7902790279027903,2.8502850285028503,2.9102910291029103,2.9702970297029703,3.0303030303030303,3.0903090309030903,3.1503150315031503,3.2103210321032103,3.2703270327032703,3.3303330333033303,3.3903390339033903,3.4503450345034503,3.5103510351035103,3.5703570357035703,3.6303630363036303,3.6903690369036903,3.7503750375037503,3.8103810381038103,3.8703870387038704,3.9303930393039304,3.9903990399039904,4.05040504050405,4.11041104110411,4.17041704170417,4.23042304230423,4.29042904290429,4.35043504350435,4.41044104410441,4.47044704470447,4.53045304530453,4.59045904590459,4.65046504650465,4.71047104710471,4.77047704770477,4.83048304830483,4.8904890489048904,4.9504950495049505,5.0105010501050105,5.0705070507050705,5.1305130513051305,5.1905190519051905,5.2505250525052505,5.3105310531053105,5.3705370537053705,5.4305430543054305,5.4905490549054905,5.5505550555055505,5.6105610561056105,5.6705670567056705,5.7305730573057305,5.7905790579057905,5.8505850585058505,5.9105910591059105,5.9705970597059705,6.0306030603060305,6.0906090609060906,6.150615061506151,6.210621062106211,6.270627062706271,6.330633063306331,6.390639063906391,6.450645064506451,6.510651065106511,6.570657065706571,6.630663066306631,6.690669066906691,6.750675067506751,6.810681068106811,6.870687068706871,6.930693069306931,6.990699069906991,7.050705070507051,7.110711071107111,7.170717071707171,7.230723072307231,7.290729072907291,7.350735073507351,7.410741074107411,7.470747074707471,7.530753075307531,7.590759075907591,7.650765076507651,7.710771077107711,7.770777077707771,7.830783078307831,7.890789078907891,7.950795079507951,8.010801080108012,8.070807080708072,8.130813081308132,8.190819081908192,8.250825082508252,8.310831083108312,8.370837083708372,8.430843084308432,8.490849084908492,8.550855085508552,8.610861086108612,8.670867086708672,8.730873087308732,8.790879087908792,8.850885088508852,8.910891089108912,8.970897089708972,9.030903090309032,9.090909090909092,9.150915091509152,9.210921092109212,9.270927092709272,9.330933093309332,9.390939093909392,9.450945094509452,9.510951095109512,9.570957095709572,9.630963096309632,9.690969096909692,9.750975097509752,9.810981098109812,9.870987098709872,9.930993099309932,9.990999099909992,10.051005100510052,10.111011101110112,10.171017101710172,10.231023102310232,10.291029102910292,10.351035103510352,10.411041104110412,10.471047104710472,10.531053105310532,10.591059105910592,10.651065106510652,10.711071107110712,10.771077107710772,10.831083108310832,10.891089108910892,10.951095109510952,11.011101110111012,11.071107110711072,11.131113111311132,11.191119111911192,11.251125112511252,11.311131113111312,11.371137113711372,11.431143114311432,11.491149114911492,11.551155115511552,11.611161116111612,11.671167116711672,11.731173117311732,11.791179117911792,11.851185118511852,11.911191119111912,11.971197119711972,12.031203120312032,12.091209120912092,12.151215121512152,12.211221122112212,12.271227122712272,12.331233123312332,12.391239123912392,12.451245124512452,12.511251125112512,12.571257125712572,12.631263126312632,12.691269126912692,12.751275127512752,12.811281128112812,12.871287128712872,12.931293129312932,12.991299129912992,13.051305130513052,13.111311131113112,13.171317131713172,13.231323132313232,13.291329132913292,13.351335133513352,13.411341134113412,13.471347134713472,13.531353135313532,13.591359135913592,13.651365136513652,13.711371137113712,13.771377137713772,13.831383138313832,13.891389138913892,13.951395139513952,14.011401140114012,14.071407140714072,14.131413141314132,14.191419141914192,14.251425142514252,14.311431143114312,14.371437143714372,14.431443144314432,14.491449144914492,14.551455145514552,14.611461146114612,14.671467146714672,14.731473147314732,14.791479147914792,14.851485148514852,14.911491149114912,14.971497149714972,15.031503150315032,15.091509150915092,15.151515151515152,15.211521152115212,15.271527152715272,15.331533153315332,15.391539153915392,15.451545154515452,15.511551155115512,15.571557155715572,15.631563156315632,15.691569156915692,15.751575157515752,15.811581158115812,15.871587158715872,15.931593159315932,15.991599159915992,16.05160516051605,16.111611161116112,16.17161716171617,16.231623162316232,16.29162916291629,16.351635163516352,16.41164116411641,16.471647164716472,16.53165316531653,16.591659165916592,16.65166516651665,16.711671167116712,16.77167716771677,16.831683168316832,16.89168916891689,16.951695169516952,17.01170117011701,17.071707170717072,17.13171317131713,17.191719171917192,17.25172517251725,17.311731173117312,17.37173717371737,17.431743174317432,17.49174917491749,17.551755175517552,17.61176117611761,17.671767176717672,17.73177317731773,17.791779177917793,17.85178517851785,17.911791179117913,17.97179717971797,18.031803180318033,18.09180918091809,18.151815181518153,18.21182118211821,18.271827182718273,18.33183318331833,18.391839183918393,18.45184518451845,18.511851185118513,18.57185718571857,18.631863186318633,18.69186918691869,18.751875187518753,18.81188118811881,18.871887188718873,18.93189318931893,18.991899189918993,19.05190519051905,19.111911191119113,19.17191719171917,19.231923192319233,19.29192919291929,19.351935193519353,19.41194119411941,19.471947194719473,19.53195319531953,19.591959195919593,19.65196519651965,19.711971197119713,19.77197719771977,19.831983198319833,19.89198919891989,19.951995199519953,20.01200120012001,20.072007200720073,20.13201320132013,20.192019201920193,20.25202520252025,20.312031203120313,20.37203720372037,20.432043204320433,20.49204920492049,20.552055205520553,20.61206120612061,20.672067206720673,20.73207320732073,20.792079207920793,20.85208520852085,20.912091209120913,20.97209720972097,21.032103210321033,21.09210921092109,21.152115211521153,21.21212121212121,21.272127212721273,21.33213321332133,21.392139213921393,21.45214521452145,21.512151215121513,21.57215721572157,21.632163216321633,21.69216921692169,21.752175217521753,21.81218121812181,21.872187218721873,21.93219321932193,21.992199219921993,22.05220522052205,22.112211221122113,22.17221722172217,22.232223222322233,22.29222922292229,22.352235223522353,22.41224122412241,22.472247224722473,22.53225322532253,22.592259225922593,22.65226522652265,22.712271227122713,22.77227722772277,22.832283228322833,22.89228922892289,22.952295229522953,23.01230123012301,23.072307230723073,23.13231323132313,23.192319231923193,23.25232523252325,23.312331233123313,23.37233723372337,23.432343234323433,23.49234923492349,23.552355235523553,23.61236123612361,23.672367236723673,23.73237323732373,23.792379237923793,23.85238523852385,23.912391239123913,23.97239723972397,24.032403240324033,24.09240924092409,24.152415241524153,24.21242124212421,24.272427242724273,24.33243324332433,24.392439243924393,24.45244524452445,24.512451245124513,24.57245724572457,24.632463246324633,24.69246924692469,24.752475247524753,24.81248124812481,24.872487248724873,24.93249324932493,24.992499249924993,25.05250525052505,25.112511251125113,25.17251725172517,25.232523252325233,25.29252925292529,25.352535253525353,25.41254125412541,25.472547254725473,25.53255325532553,25.592559255925593,25.65256525652565,25.712571257125713,25.77257725772577,25.832583258325833,25.89258925892589,25.952595259525953,26.01260126012601,26.072607260726073,26.13261326132613,26.192619261926193,26.25262526252625,26.312631263126313,26.37263726372637,26.432643264326433,26.49264926492649,26.552655265526553,26.61266126612661,26.672667266726673,26.73267326732673,26.792679267926793,26.85268526852685,26.912691269126913,26.97269726972697,27.032703270327033,27.09270927092709,27.152715271527153,27.21272127212721,27.272727272727273,27.33273327332733,27.392739273927393,27.45274527452745,27.512751275127513,27.57275727572757,27.632763276327633,27.69276927692769,27.752775277527753,27.81278127812781,27.872787278727873,27.93279327932793,27.992799279927993,28.05280528052805,28.112811281128113,28.17281728172817,28.232823282328233,28.29282928292829,28.352835283528353,28.41284128412841,28.472847284728473,28.53285328532853,28.592859285928593,28.65286528652865,28.712871287128714,28.77287728772877,28.832883288328834,28.89288928892889,28.952895289528954,29.01290129012901,29.072907290729074,29.13291329132913,29.192919291929194,29.252925292529252,29.312931293129314,29.372937293729372,29.432943294329434,29.492949294929492,29.552955295529554,29.612961296129612,29.672967296729674,29.732973297329732,29.792979297929794,29.852985298529852,29.912991299129914,29.972997299729972,30.033003300330034,30.093009300930092,30.153015301530154,30.213021302130212,30.273027302730274,30.333033303330332,30.393039303930394,30.453045304530452,30.513051305130514,30.573057305730572,30.633063306330634,30.693069306930692,30.753075307530754,30.813081308130812,30.873087308730874,30.933093309330932,30.993099309930994,31.053105310531052,31.113111311131114,31.173117311731172,31.233123312331234,31.293129312931292,31.353135313531354,31.413141314131412,31.473147314731474,31.533153315331532,31.593159315931594,31.653165316531652,31.713171317131714,31.773177317731772,31.833183318331834,31.893189318931892,31.953195319531954,32.01320132013201,32.073207320732074,32.133213321332136,32.19321932193219,32.25322532253225,32.313231323132314,32.373237323732376,32.43324332433243,32.49324932493249,32.553255325532554,32.613261326132616,32.67326732673267,32.73327332733273,32.793279327932794,32.853285328532856,32.91329132913291,32.97329732973297,33.033303330333034,33.093309330933096,33.15331533153315,33.21332133213321,33.273327332733274,33.333333333333336,33.39333933393339,33.45334533453345,33.513351335133514,33.573357335733576,33.63336333633363,33.69336933693369,33.753375337533754,33.813381338133816,33.87338733873387,33.93339333933393,33.993399339933994,34.053405340534056,34.11341134113411,34.17341734173417,34.233423342334234,34.293429342934296,34.35343534353435,34.41344134413441,34.473447344734474,34.533453345334536,34.59345934593459,34.65346534653465,34.713471347134714,34.773477347734776,34.83348334833483,34.89348934893489,34.953495349534954,35.013501350135016,35.07350735073507,35.13351335133513,35.193519351935194,35.253525352535256,35.31353135313531,35.37353735373537,35.433543354335434,35.493549354935496,35.55355535553555,35.61356135613561,35.673567356735674,35.733573357335736,35.79357935793579,35.85358535853585,35.913591359135914,35.973597359735976,36.03360336033603,36.09360936093609,36.153615361536154,36.213621362136216,36.27362736273627,36.33363336333633,36.393639363936394,36.453645364536456,36.51365136513651,36.57365736573657,36.633663366336634,36.693669366936696,36.75367536753675,36.81368136813681,36.873687368736874,36.933693369336936,36.99369936993699,37.05370537053705,37.113711371137114,37.173717371737176,37.23372337233723,37.29372937293729,37.353735373537354,37.413741374137416,37.47374737473747,37.53375337533753,37.593759375937594,37.653765376537656,37.71377137713771,37.77377737773777,37.833783378337834,37.893789378937896,37.95379537953795,38.01380138013801,38.073807380738074,38.133813381338136,38.19381938193819,38.25382538253825,38.313831383138314,38.373837383738376,38.43384338433843,38.49384938493849,38.553855385538554,38.613861386138616,38.67386738673867,38.73387338733873,38.793879387938794,38.853885388538856,38.91389138913891,38.97389738973897,39.033903390339034,39.093909390939096,39.15391539153915,39.21392139213921,39.273927392739274,39.333933393339336,39.39393939393939,39.45394539453945,39.513951395139514,39.573957395739576,39.63396339633963,39.69396939693969,39.753975397539755,39.813981398139816,39.87398739873987,39.93399339933993,39.993999399939995,40.054005400540056,40.11401140114011,40.17401740174017,40.234023402340235,40.294029402940296,40.35403540354035,40.41404140414041,40.474047404740475,40.534053405340536,40.59405940594059,40.65406540654065,40.714071407140715,40.774077407740776,40.83408340834083,40.89408940894089,40.954095409540955,41.014101410141016,41.07410741074107,41.13411341134113,41.194119411941195,41.254125412541256,41.31413141314131,41.37413741374137,41.434143414341435,41.494149414941496,41.55415541554155,41.61416141614161,41.674167416741675,41.73417341734174,41.79417941794179,41.85418541854185,41.914191419141915,41.97419741974198,42.03420342034203,42.09420942094209,42.154215421542155,42.21422142214222,42.27422742274227,42.33423342334233,42.394239423942395,42.45424542454246,42.51425142514251,42.57425742574257,42.634263426342635,42.6942694269427,42.75427542754275,42.81428142814281,42.874287428742875,42.93429342934294,42.99429942994299,43.05430543054305,43.114311431143115,43.17431743174318,43.23432343234323,43.29432943294329,43.354335433543355,43.41434143414342,43.47434743474347,43.53435343534353,43.594359435943595,43.65436543654366,43.71437143714371,43.77437743774377,43.834383438343835,43.8943894389439,43.95439543954395,44.01440144014401,44.074407440744075,44.13441344134414,44.19441944194419,44.25442544254425,44.314431443144315,44.37443744374438,44.43444344434443,44.49444944494449,44.554455445544555,44.61446144614462,44.67446744674467,44.73447344734473,44.794479447944795,44.85448544854486,44.91449144914491,44.97449744974497,45.034503450345035,45.0945094509451,45.15451545154515,45.21452145214521,45.274527452745275,45.33453345334534,45.39453945394539,45.45454545454545,45.514551455145515,45.57455745574558,45.63456345634563,45.69456945694569,45.754575457545755,45.81458145814582,45.87458745874587,45.93459345934593,45.994599459945995,46.05460546054606,46.11461146114611,46.17461746174617,46.234623462346235,46.2946294629463,46.35463546354635,46.41464146414641,46.474647464746475,46.53465346534654,46.59465946594659,46.65466546654665,46.714671467146715,46.77467746774678,46.83468346834683,46.89468946894689,46.954695469546955,47.01470147014702,47.07470747074707,47.13471347134713,47.194719471947195,47.25472547254726,47.31473147314731,47.37473747374737,47.434743474347435,47.4947494749475,47.55475547554755,47.61476147614761,47.674767476747675,47.73477347734774,47.79477947794779,47.85478547854785,47.914791479147915,47.97479747974798,48.03480348034803,48.09480948094809,48.154815481548155,48.21482148214822,48.27482748274827,48.33483348334833,48.394839483948395,48.45484548454846,48.51485148514851,48.57485748574857,48.634863486348635,48.6948694869487,48.75487548754875,48.814881488148814,48.874887488748875,48.93489348934894,48.99489948994899,49.054905490549054,49.114911491149115,49.17491749174918,49.23492349234923,49.294929492949294,49.354935493549355,49.41494149414942,49.47494749474947,49.534953495349534,49.594959495949595,49.65496549654966,49.71497149714971,49.774977497749774,49.834983498349835,49.8949894989499,49.95499549954995,50.015001500150014,50.075007500750075,50.13501350135014,50.19501950195019,50.255025502550254,50.315031503150315,50.37503750375038,50.43504350435043,50.495049504950494,50.555055505550555,50.61506150615062,50.67506750675067,50.735073507350734,50.795079507950796,50.85508550855086,50.91509150915091,50.975097509750974,51.035103510351036,51.0951095109511,51.15511551155115,51.215121512151214,51.275127512751276,51.33513351335134,51.39513951395139,51.455145514551454,51.515151515151516,51.57515751575158,51.63516351635163,51.695169516951694,51.755175517551756,51.81518151815182,51.87518751875187,51.935193519351934,51.995199519951996,52.05520552055206,52.11521152115211,52.175217521752174,52.235223522352236,52.2952295229523,52.35523552355235,52.415241524152414,52.475247524752476,52.53525352535254,52.59525952595259,52.655265526552654,52.715271527152716,52.77527752775278,52.83528352835283,52.895289528952894,52.955295529552956,53.01530153015302,53.07530753075307,53.135313531353134,53.195319531953196,53.25532553255326,53.31533153315331,53.375337533753374,53.435343534353436,53.4953495349535,53.55535553555355,53.615361536153614,53.675367536753676,53.73537353735374,53.79537953795379,53.855385538553854,53.915391539153916,53.97539753975398,54.03540354035403,54.095409540954094,54.155415541554156,54.21542154215422,54.27542754275427,54.335433543354334,54.395439543954396,54.45544554455446,54.51545154515451,54.575457545754574,54.635463546354636,54.6954695469547,54.75547554755475,54.815481548154814,54.875487548754876,54.93549354935494,54.99549954995499,55.055505550555054,55.115511551155116,55.17551755175518,55.23552355235523,55.295529552955294,55.355535553555356,55.41554155415542,55.47554755475547,55.535553555355534,55.595559555955596,55.65556555655566,55.71557155715571,55.775577557755774,55.835583558355836,55.8955895589559,55.95559555955595,56.015601560156014,56.075607560756076,56.13561356135614,56.19561956195619,56.255625562556254,56.315631563156316,56.37563756375638,56.43564356435643,56.495649564956494,56.555655565556556,56.61566156615662,56.67566756675667,56.735673567356734,56.795679567956796,56.85568556855686,56.91569156915691,56.975697569756974,57.035703570357036,57.0957095709571,57.15571557155715,57.215721572157214,57.275727572757276,57.33573357335734,57.39573957395739,57.455745574557454,57.515751575157516,57.57575757575758,57.63576357635763,57.695769576957694,57.755775577557756,57.81578157815782,57.87578757875787,57.935793579357934,57.995799579957996,58.05580558055806,58.11581158115811,58.175817581758174,58.235823582358236,58.2958295829583,58.35583558355835,58.415841584158414,58.475847584758476,58.53585358535854,58.59585958595859,58.655865586558654,58.715871587158716,58.77587758775878,58.83588358835883,58.895889588958894,58.955895589558956,59.01590159015902,59.07590759075907,59.135913591359135,59.195919591959196,59.25592559255926,59.31593159315931,59.375937593759375,59.435943594359436,59.4959495949595,59.55595559555955,59.615961596159615,59.675967596759676,59.73597359735974,59.79597959795979,59.855985598559855,59.915991599159916,59.97599759975998,60.03600360036003,60.096009600960095,60.156015601560156,60.21602160216022,60.27602760276027,60.336033603360335,60.396039603960396,60.45604560456046,60.51605160516051,60.576057605760575,60.636063606360636,60.6960696069607,60.75607560756075,60.816081608160815,60.876087608760876,60.93609360936094,60.99609960996099,61.056105610561055,61.11611161116112,61.17611761176118,61.23612361236123,61.296129612961295,61.35613561356136,61.41614161416142,61.47614761476147,61.536153615361535,61.5961596159616,61.65616561656166,61.71617161716171,61.776177617761775,61.83618361836184,61.8961896189619,61.95619561956195,62.016201620162015,62.07620762076208,62.13621362136214,62.19621962196219,62.256225622562255,62.31623162316232,62.37623762376238,62.43624362436243,62.496249624962495,62.55625562556256,62.61626162616262,62.67626762676267,62.736273627362735,62.7962796279628,62.85628562856286,62.91629162916291,62.976297629762975,63.03630363036304,63.0963096309631,63.15631563156315,63.216321632163215,63.27632763276328,63.33633363336334,63.39633963396339,63.456345634563455,63.51635163516352,63.57635763576358,63.63636363636363,63.696369636963695,63.75637563756376,63.81638163816382,63.87638763876387,63.936393639363935,63.996399639964,64.05640564056405,64.11641164116412,64.17641764176417,64.23642364236423,64.2964296429643,64.35643564356435,64.41644164416442,64.47644764476448,64.53645364536453,64.5964596459646,64.65646564656466,64.71647164716471,64.77647764776478,64.83648364836483,64.8964896489649,64.95649564956496,65.01650165016501,65.07650765076508,65.13651365136514,65.19651965196519,65.25652565256526,65.31653165316531,65.37653765376538,65.43654365436544,65.49654965496549,65.55655565556556,65.61656165616562,65.67656765676567,65.73657365736574,65.7965796579658,65.85658565856586,65.91659165916592,65.97659765976597,66.03660366036604,66.0966096609661,66.15661566156615,66.21662166216622,66.27662766276627,66.33663366336634,66.3966396639664,66.45664566456645,66.51665166516652,66.57665766576658,66.63666366636663,66.6966696669667,66.75667566756675,66.81668166816682,66.87668766876688,66.93669366936693,66.996699669967,67.05670567056706,67.11671167116711,67.17671767176718,67.23672367236723,67.2967296729673,67.35673567356736,67.41674167416741,67.47674767476748,67.53675367536754,67.59675967596759,67.65676567656766,67.71677167716771,67.77677767776778,67.83678367836784,67.89678967896789,67.95679567956796,68.01680168016802,68.07680768076807,68.13681368136814,68.1968196819682,68.25682568256826,68.31683168316832,68.37683768376837,68.43684368436844,68.4968496849685,68.55685568556855,68.61686168616862,68.67686768676867,68.73687368736874,68.7968796879688,68.85688568856885,68.91689168916892,68.97689768976898,69.03690369036903,69.0969096909691,69.15691569156915,69.21692169216922,69.27692769276928,69.33693369336933,69.3969396939694,69.45694569456946,69.51695169516951,69.57695769576958,69.63696369636963,69.6969696969697,69.75697569756976,69.81698169816981,69.87698769876988,69.93699369936994,69.99699969996999,70.05700570057006,70.11701170117011,70.17701770177018,70.23702370237024,70.29702970297029,70.35703570357036,70.41704170417042,70.47704770477047,70.53705370537054,70.5970597059706,70.65706570657066,70.71707170717072,70.77707770777077,70.83708370837084,70.8970897089709,70.95709570957095,71.01710171017102,71.07710771077107,71.13711371137114,71.1971197119712,71.25712571257125,71.31713171317132,71.37713771377138,71.43714371437143,71.4971497149715,71.55715571557155,71.61716171617162,71.67716771677168,71.73717371737173,71.7971797179718,71.85718571857186,71.91719171917191,71.97719771977198,72.03720372037203,72.0972097209721,72.15721572157216,72.21722172217221,72.27722772277228,72.33723372337234,72.39723972397239,72.45724572457246,72.51725172517251,72.57725772577258,72.63726372637264,72.69726972697269,72.75727572757276,72.81728172817282,72.87728772877287,72.93729372937294,72.997299729973,73.05730573057306,73.11731173117312,73.17731773177317,73.23732373237324,73.2973297329733,73.35733573357335,73.41734173417342,73.47734773477347,73.53735373537354,73.5973597359736,73.65736573657365,73.71737173717372,73.77737773777378,73.83738373837383,73.8973897389739,73.95739573957395,74.01740174017402,74.07740774077408,74.13741374137413,74.1974197419742,74.25742574257426,74.31743174317431,74.37743774377438,74.43744374437443,74.4974497449745,74.55745574557456,74.61746174617461,74.67746774677468,74.73747374737474,74.79747974797479,74.85748574857486,74.91749174917491,74.97749774977498,75.03750375037504,75.09750975097509,75.15751575157516,75.21752175217522,75.27752775277527,75.33753375337534,75.3975397539754,75.45754575457546,75.51755175517552,75.57755775577557,75.63756375637564,75.6975697569757,75.75757575757575,75.81758175817582,75.87758775877587,75.93759375937594,75.997599759976,76.05760576057605,76.11761176117612,76.17761776177618,76.23762376237623,76.2976297629763,76.35763576357635,76.41764176417642,76.47764776477648,76.53765376537653,76.5976597659766,76.65766576657666,76.71767176717671,76.77767776777678,76.83768376837683,76.8976897689769,76.95769576957696,77.01770177017701,77.07770777077708,77.13771377137714,77.19771977197719,77.25772577257726,77.31773177317731,77.37773777377738,77.43774377437744,77.49774977497749,77.55775577557756,77.61776177617762,77.67776777677767,77.73777377737774,77.7977797779778,77.85778577857786,77.91779177917792,77.97779777977797,78.03780378037804,78.0978097809781,78.15781578157815,78.21782178217822,78.27782778277827,78.33783378337834,78.3978397839784,78.45784578457845,78.51785178517852,78.57785778577858,78.63786378637863,78.6978697869787,78.75787578757875,78.81788178817882,78.87788778877888,78.93789378937893,78.997899789979,79.05790579057906,79.11791179117911,79.17791779177918,79.23792379237923,79.2979297929793,79.35793579357936,79.41794179417941,79.47794779477948,79.53795379537954,79.59795979597959,79.65796579657966,79.71797179717971,79.77797779777978,79.83798379837984,79.89798979897989,79.95799579957996,80.01800180018002,80.07800780078007,80.13801380138014,80.1980198019802,80.25802580258026,80.31803180318032,80.37803780378037,80.43804380438044,80.4980498049805,80.55805580558055,80.61806180618062,80.67806780678067,80.73807380738074,80.7980798079808,80.85808580858085,80.91809180918092,80.97809780978098,81.03810381038103,81.0981098109811,81.15811581158115,81.21812181218122,81.27812781278128,81.33813381338133,81.3981398139814,81.45814581458146,81.51815181518151,81.57815781578158,81.63816381638163,81.6981698169817,81.75817581758176,81.81818181818181,81.87818781878188,81.93819381938194,81.99819981998199,82.05820582058206,82.11821182118211,82.17821782178218,82.23822382238224,82.2982298229823,82.35823582358236,82.41824182418242,82.47824782478247,82.53825382538254,82.5982598259826,82.65826582658266,82.71827182718272,82.77827782778277,82.83828382838284,82.8982898289829,82.95829582958295,83.01830183018302,83.07830783078307,83.13831383138314,83.1983198319832,83.25832583258325,83.31833183318332,83.37833783378338,83.43834383438343,83.4983498349835,83.55835583558355,83.61836183618362,83.67836783678368,83.73837383738373,83.7983798379838,83.85838583858386,83.91839183918391,83.97839783978398,84.03840384038403,84.0984098409841,84.15841584158416,84.21842184218421,84.27842784278428,84.33843384338434,84.39843984398439,84.45844584458446,84.51845184518452,84.57845784578458,84.63846384638464,84.6984698469847,84.75847584758476,84.81848184818482,84.87848784878487,84.93849384938494,84.998499849985,85.05850585058506,85.11851185118512,85.17851785178517,85.23852385238524,85.2985298529853,85.35853585358535,85.41854185418542,85.47854785478548,85.53855385538554,85.5985598559856,85.65856585658565,85.71857185718572,85.77857785778578,85.83858385838583,85.8985898589859,85.95859585958596,86.01860186018602,86.07860786078608,86.13861386138613,86.1986198619862,86.25862586258626,86.31863186318631,86.37863786378638,86.43864386438644,86.4986498649865,86.55865586558656,86.61866186618661,86.67866786678668,86.73867386738674,86.79867986798679,86.85868586858686,86.91869186918692,86.97869786978698,87.03870387038704,87.0987098709871,87.15871587158716,87.21872187218722,87.27872787278727,87.33873387338734,87.3987398739874,87.45874587458746,87.51875187518752,87.57875787578757,87.63876387638764,87.6987698769877,87.75877587758775,87.81878187818782,87.87878787878788,87.93879387938794,87.998799879988,88.05880588058805,88.11881188118812,88.17881788178818,88.23882388238823,88.2988298829883,88.35883588358836,88.41884188418842,88.47884788478848,88.53885388538853,88.5988598859886,88.65886588658866,88.71887188718871,88.77887788778878,88.83888388838884,88.8988898889889,88.95889588958896,89.01890189018901,89.07890789078908,89.13891389138914,89.19891989198919,89.25892589258926,89.31893189318932,89.37893789378938,89.43894389438944,89.4989498949895,89.55895589558956,89.61896189618962,89.67896789678967,89.73897389738974,89.7989798979898,89.85898589858986,89.91899189918992,89.97899789978997,90.03900390039004,90.0990099009901,90.15901590159015,90.21902190219022,90.27902790279028,90.33903390339034,90.3990399039904,90.45904590459045,90.51905190519052,90.57905790579058,90.63906390639063,90.6990699069907,90.75907590759076,90.81908190819082,90.87908790879088,90.93909390939093,90.999099909991,91.05910591059106,91.11911191119111,91.17911791179118,91.23912391239124,91.2991299129913,91.35913591359136,91.41914191419141,91.47914791479148,91.53915391539154,91.59915991599159,91.65916591659166,91.71917191719172,91.77917791779178,91.83918391839184,91.8991899189919,91.95919591959196,92.01920192019202,92.07920792079207,92.13921392139214,92.1992199219922,92.25922592259226,92.31923192319232,92.37923792379237,92.43924392439244,92.4992499249925,92.55925592559255,92.61926192619262,92.67926792679268,92.73927392739274,92.7992799279928,92.85928592859285,92.91929192919292,92.97929792979298,93.03930393039303,93.0993099309931,93.15931593159316,93.21932193219322,93.27932793279328,93.33933393339333,93.3993399339934,93.45934593459346,93.51935193519351,93.57935793579358,93.63936393639364,93.6993699369937,93.75937593759376,93.81938193819381,93.87938793879388,93.93939393939394,93.99939993999399,94.05940594059406,94.11941194119412,94.17941794179418,94.23942394239424,94.2994299429943,94.35943594359436,94.41944194419442,94.47944794479447,94.53945394539454,94.5994599459946,94.65946594659466,94.71947194719472,94.77947794779477,94.83948394839484,94.8994899489949,94.95949594959495,95.01950195019502,95.07950795079508,95.13951395139514,95.1995199519952,95.25952595259525,95.31953195319532,95.37953795379538,95.43954395439543,95.4995499549955,95.55955595559556,95.61956195619562,95.67956795679568,95.73957395739573,95.7995799579958,95.85958595859586,95.91959195919591,95.97959795979598,96.03960396039604,96.0996099609961,96.15961596159616,96.21962196219621,96.27962796279628,96.33963396339634,96.39963996399639,96.45964596459646,96.51965196519652,96.57965796579659,96.63966396639664,96.6996699669967,96.75967596759676,96.81968196819682,96.87968796879687,96.93969396939694,96.999699969997,97.05970597059707,97.11971197119712,97.17971797179717,97.23972397239724,97.2997299729973,97.35973597359735,97.41974197419742,97.47974797479748,97.53975397539755,97.5997599759976,97.65976597659765,97.71977197719772,97.77977797779778,97.83978397839783,97.8997899789979,97.95979597959796,98.01980198019803,98.07980798079808,98.13981398139813,98.1998199819982,98.25982598259826,98.31983198319831,98.37983798379838,98.43984398439844,98.4998499849985,98.55985598559856,98.61986198619861,98.67986798679868,98.73987398739874,98.79987998799879,98.85988598859886,98.91989198919892,98.97989798979899,99.03990399039904,99.0999099909991,99.15991599159916,99.21992199219922,99.27992799279927,99.33993399339934,99.3999399939994,99.45994599459947,99.51995199519952,99.57995799579957,99.63996399639964,99.6999699969997,99.75997599759975,99.81998199819982,99.87998799879988,99.93999399939995,100.0,100.06000600060005,100.12001200120012,100.18001800180018,100.24002400240025,100.3000300030003,100.36003600360036,100.42004200420043,100.48004800480048,100.54005400540053,100.6000600060006,100.66006600660066,100.72007200720073,100.78007800780078,100.84008400840084,100.9000900090009,100.96009600960096,101.02010201020101,101.08010801080108,101.14011401140114,101.20012001200121,101.26012601260126,101.32013201320132,101.38013801380139,101.44014401440144,101.5001500150015,101.56015601560156,101.62016201620162,101.68016801680169,101.74017401740174,101.8001800180018,101.86018601860187,101.92019201920192,101.98019801980197,102.04020402040204,102.1002100210021,102.16021602160217,102.22022202220222,102.28022802280228,102.34023402340235,102.4002400240024,102.46024602460245,102.52025202520252,102.58025802580258,102.64026402640265,102.7002700270027,102.76027602760276,102.82028202820283,102.88028802880288,102.94029402940293,103.000300030003,103.06030603060306,103.12031203120313,103.18031803180318,103.24032403240324,103.3003300330033,103.36033603360336,103.42034203420341,103.48034803480348,103.54035403540354,103.60036003600361,103.66036603660366,103.72037203720372,103.78037803780379,103.84038403840384,103.9003900390039,103.96039603960396,104.02040204020402,104.08040804080409,104.14041404140414,104.2004200420042,104.26042604260427,104.32043204320432,104.38043804380438,104.44044404440444,104.5004500450045,104.56045604560457,104.62046204620462,104.68046804680468,104.74047404740475,104.8004800480048,104.86048604860486,104.92049204920492,104.98049804980498,105.04050405040505,105.1005100510051,105.16051605160516,105.22052205220523,105.28052805280528,105.34053405340534,105.4005400540054,105.46054605460546,105.52055205520553,105.58055805580558,105.64056405640564,105.7005700570057,105.76057605760576,105.82058205820582,105.88058805880588,105.94059405940594,106.00060006000601,106.06060606060606,106.12061206120612,106.18061806180619,106.24062406240624,106.3006300630063,106.36063606360636,106.42064206420642,106.48064806480649,106.54065406540654,106.6006600660066,106.66066606660667,106.72067206720672,106.78067806780678,106.84068406840684,106.9006900690069,106.96069606960697,107.02070207020702,107.08070807080708,107.14071407140715,107.2007200720072,107.26072607260726,107.32073207320732,107.38073807380738,107.44074407440745,107.5007500750075,107.56075607560756,107.62076207620763,107.68076807680768,107.74077407740774,107.8007800780078,107.86078607860786,107.92079207920793,107.98079807980798,108.04080408040804,108.1008100810081,108.16081608160816,108.22082208220822,108.28082808280828,108.34083408340834,108.40084008400841,108.46084608460846,108.52085208520852,108.58085808580859,108.64086408640864,108.7008700870087,108.76087608760876,108.82088208820882,108.88088808880889,108.94089408940894,109.000900090009,109.06090609060907,109.12091209120912,109.18091809180918,109.24092409240924,109.3009300930093,109.36093609360937,109.42094209420942,109.48094809480948,109.54095409540955,109.6009600960096,109.66096609660966,109.72097209720972,109.78097809780978,109.84098409840985,109.9009900990099,109.96099609960996,110.02100210021003,110.08100810081008,110.14101410141014,110.2010201020102,110.26102610261026,110.32103210321033,110.38103810381038,110.44104410441044,110.5010501050105,110.56105610561056,110.62106210621062,110.68106810681068,110.74107410741074,110.80108010801081,110.86108610861086,110.92109210921092,110.98109810981099,111.04110411041104,111.1011101110111,111.16111611161116,111.22112211221122,111.28112811281129,111.34113411341134,111.4011401140114,111.46114611461147,111.52115211521152,111.58115811581158,111.64116411641164,111.7011701170117,111.76117611761177,111.82118211821182,111.88118811881188,111.94119411941195,112.001200120012,112.06120612061206,112.12121212121212,112.18121812181218,112.24122412241225,112.3012301230123,112.36123612361236,112.42124212421243,112.48124812481248,112.54125412541254,112.6012601260126,112.66126612661266,112.72127212721273,112.78127812781278,112.84128412841284,112.9012901290129,112.96129612961296,113.02130213021302,113.08130813081308,113.14131413141314,113.20132013201321,113.26132613261326,113.32133213321332,113.38133813381339,113.44134413441344,113.5013501350135,113.56135613561356,113.62136213621362,113.68136813681369,113.74137413741374,113.8013801380138,113.86138613861387,113.92139213921392,113.98139813981398,114.04140414041404,114.1014101410141,114.16141614161417,114.22142214221422,114.28142814281428,114.34143414341435,114.4014401440144,114.46144614461446,114.52145214521452,114.58145814581458,114.64146414641465,114.7014701470147,114.76147614761476,114.82148214821483,114.88148814881488,114.94149414941494,115.001500150015,115.06150615061506,115.12151215121513,115.18151815181518,115.24152415241524,115.3015301530153,115.36153615361536,115.42154215421542,115.48154815481548,115.54155415541554,115.60156015601561,115.66156615661566,115.72157215721572,115.78157815781579,115.84158415841584,115.9015901590159,115.96159615961597,116.02160216021602,116.08160816081609,116.14161416141614,116.2016201620162,116.26162616261627,116.32163216321632,116.38163816381638,116.44164416441645,116.5016501650165,116.56165616561657,116.62166216621662,116.68166816681668,116.74167416741675,116.8016801680168,116.86168616861686,116.92169216921693,116.98169816981698,117.04170417041705,117.1017101710171,117.16171617161716,117.22172217221723,117.28172817281728,117.34173417341734,117.4017401740174,117.46174617461746,117.52175217521753,117.58175817581758,117.64176417641764,117.7017701770177,117.76177617761776,117.82178217821782,117.88178817881789,117.94179417941794,118.00180018001801,118.06180618061806,118.12181218121812,118.18181818181819,118.24182418241824,118.3018301830183,118.36183618361837,118.42184218421842,118.48184818481849,118.54185418541854,118.6018601860186,118.66186618661867,118.72187218721872,118.78187818781878,118.84188418841885,118.9018901890189,118.96189618961897,119.02190219021902,119.08190819081908,119.14191419141915,119.2019201920192,119.26192619261926,119.32193219321933,119.38193819381938,119.44194419441945,119.5019501950195,119.56195619561956,119.62196219621963,119.68196819681968,119.74197419741974,119.8019801980198,119.86198619861986,119.92199219921993,119.98199819981998,120.04200420042004,120.10201020102011,120.16201620162016,120.22202220222022,120.28202820282029,120.34203420342034,120.40204020402041,120.46204620462046,120.52205220522052,120.58205820582059,120.64206420642064,120.7020702070207,120.76207620762077,120.82208220822082,120.88208820882089,120.94209420942094,121.002100210021,121.06210621062107,121.12211221122112,121.18211821182118,121.24212421242125,121.3021302130213,121.36213621362137,121.42214221422142,121.48214821482148,121.54215421542155,121.6021602160216,121.66216621662166,121.72217221722173,121.78217821782178,121.84218421842185,121.9021902190219,121.96219621962196,122.02220222022203,122.08220822082208,122.14221422142214,122.2022202220222,122.26222622262226,122.32223222322233,122.38223822382238,122.44224422442244,122.50225022502251,122.56225622562256,122.62226222622262,122.68226822682269,122.74227422742274,122.80228022802281,122.86228622862286,122.92229222922292,122.98229822982299,123.04230423042304,123.1023102310231,123.16231623162317,123.22232223222322,123.28232823282329,123.34233423342334,123.4023402340234,123.46234623462347,123.52235223522352,123.58235823582358,123.64236423642365,123.7023702370237,123.76237623762377,123.82238223822382,123.88238823882388,123.94239423942395,124.002400240024,124.06240624062406,124.12241224122413,124.18241824182418,124.24242424242425,124.3024302430243,124.36243624362436,124.42244224422443,124.48244824482448,124.54245424542454,124.6024602460246,124.66246624662466,124.72247224722473,124.78247824782478,124.84248424842484,124.90249024902491,124.96249624962496,125.02250225022502,125.08250825082509,125.14251425142514,125.20252025202521,125.26252625262526,125.32253225322532,125.38253825382539,125.44254425442544,125.5025502550255,125.56255625562557,125.62256225622562,125.68256825682569,125.74257425742574,125.8025802580258,125.86258625862587,125.92259225922592,125.98259825982598,126.04260426042605,126.1026102610261,126.16261626162617,126.22262226222622,126.28262826282628,126.34263426342635,126.4026402640264,126.46264626462646,126.52265226522653,126.58265826582658,126.64266426642665,126.7026702670267,126.76267626762676,126.82268226822683,126.88268826882688,126.94269426942694,127.002700270027,127.06270627062706,127.12271227122713,127.18271827182718,127.24272427242724,127.30273027302731,127.36273627362736,127.42274227422742,127.48274827482749,127.54275427542754,127.60276027602761,127.66276627662766,127.72277227722772,127.78277827782779,127.84278427842784,127.9027902790279,127.96279627962797,128.02280228022803,128.0828082808281,128.14281428142814,128.2028202820282,128.26282628262825,128.32283228322834,128.3828382838284,128.44284428442845,128.5028502850285,128.56285628562856,128.6228622862286,128.6828682868287,128.74287428742875,128.8028802880288,128.86288628862886,128.9228922892289,128.982898289829,129.04290429042905,129.1029102910291,129.16291629162916,129.2229222922292,129.2829282928293,129.34293429342935,129.4029402940294,129.46294629462946,129.52295229522952,129.58295829582957,129.64296429642965,129.7029702970297,129.76297629762976,129.82298229822982,129.88298829882987,129.94299429942996,130.00300030003,130.06300630063006,130.12301230123012,130.18301830183017,130.24302430243026,130.3030303030303,130.36303630363037,130.42304230423042,130.48304830483048,130.54305430543053,130.6030603060306,130.66306630663067,130.72307230723072,130.78307830783078,130.84308430843083,130.90309030903092,130.96309630963097,131.02310231023102,131.08310831083108,131.14311431143113,131.20312031203122,131.26312631263127,131.32313231323133,131.38313831383138,131.44314431443144,131.5031503150315,131.56315631563157,131.62316231623163,131.68316831683168,131.74317431743174,131.8031803180318,131.86318631863188,131.92319231923193,131.98319831983198,132.04320432043204,132.1032103210321,132.16321632163218,132.22322232223223,132.2832283228323,132.34323432343234,132.4032403240324,132.46324632463245,132.52325232523253,132.5832583258326,132.64326432643264,132.7032703270327,132.76327632763275,132.82328232823284,132.8832883288329,132.94329432943294,133.003300330033,133.06330633063305,133.12331233123314,133.1833183318332,133.24332433243325,133.3033303330333,133.36333633363336,133.4233423342334,133.4833483348335,133.54335433543355,133.6033603360336,133.66336633663366,133.7233723372337,133.7833783378338,133.84338433843385,133.9033903390339,133.96339633963396,134.02340234023401,134.0834083408341,134.14341434143415,134.2034203420342,134.26342634263426,134.32343234323432,134.38343834383437,134.44344434443445,134.5034503450345,134.56345634563456,134.62346234623462,134.68346834683467,134.74347434743476,134.8034803480348,134.86348634863486,134.92349234923492,134.98349834983497,135.04350435043506,135.1035103510351,135.16351635163517,135.22352235223522,135.28352835283528,135.34353435343533,135.4035403540354,135.46354635463547,135.52355235523552,135.58355835583558,135.64356435643563,135.70357035703572,135.76357635763577,135.82358235823583,135.88358835883588,135.94359435943593,136.00360036003602,136.06360636063607,136.12361236123613,136.18361836183618,136.24362436243624,136.3036303630363,136.36363636363637,136.42364236423643,136.48364836483648,136.54365436543654,136.6036603660366,136.66366636663668,136.72367236723673,136.78367836783679,136.84368436843684,136.9036903690369,136.96369636963698,137.02370237023703,137.0837083708371,137.14371437143714,137.2037203720372,137.26372637263725,137.32373237323733,137.3837383738374,137.44374437443744,137.5037503750375,137.56375637563755,137.62376237623764,137.6837683768377,137.74377437743775,137.8037803780378,137.86378637863785,137.92379237923794,137.983798379838,138.04380438043805,138.1038103810381,138.16381638163816,138.2238223822382,138.2838283828383,138.34383438343835,138.4038403840384,138.46384638463846,138.5238523852385,138.5838583858386,138.64386438643865,138.7038703870387,138.76387638763876,138.82388238823881,138.8838883888389,138.94389438943895,139.003900390039,139.06390639063906,139.12391239123912,139.18391839183917,139.24392439243925,139.3039303930393,139.36393639363936,139.42394239423942,139.48394839483947,139.54395439543956,139.6039603960396,139.66396639663967,139.72397239723972,139.78397839783977,139.84398439843986,139.9039903990399,139.96399639963997,140.02400240024002,140.08400840084008,140.14401440144013,140.20402040204021,140.26402640264027,140.32403240324032,140.38403840384038,140.44404440444043,140.50405040504052,140.56405640564057,140.62406240624063,140.68406840684068,140.74407440744073,140.80408040804082,140.86408640864087,140.92409240924093,140.98409840984098,141.04410441044104,141.1041104110411,141.16411641164117,141.22412241224123,141.28412841284128,141.34413441344134,141.4041404140414,141.46414641464148,141.52415241524153,141.58415841584159,141.64416441644164,141.7041704170417,141.76417641764178,141.82418241824183,141.8841884188419,141.94419441944194,142.004200420042,142.06420642064205,142.12421242124213,142.1842184218422,142.24422442244224,142.3042304230423,142.36423642364235,142.42424242424244,142.4842484248425,142.54425442544255,142.6042604260426,142.66426642664266,142.72427242724274,142.7842784278428,142.84428442844285,142.9042904290429,142.96429642964296,143.024302430243,143.0843084308431,143.14431443144315,143.2043204320432,143.26432643264326,143.3243324332433,143.3843384338434,143.44434443444345,143.5043504350435,143.56435643564356,143.62436243624362,143.6843684368437,143.74437443744375,143.8043804380438,143.86438643864386,143.92439243924392,143.98439843984397,144.04440444044405,144.1044104410441,144.16441644164416,144.22442244224422,144.28442844284427,144.34443444344436,144.4044404440444,144.46444644464447,144.52445244524452,144.58445844584458,144.64446444644466,144.7044704470447,144.76447644764477,144.82448244824482,144.88448844884488,144.94449444944493,145.00450045004501,145.06450645064507,145.12451245124512,145.18451845184518,145.24452445244523,145.30453045304532,145.36453645364537,145.42454245424543,145.48454845484548,145.54455445544554,145.60456045604562,145.66456645664567,145.72457245724573,145.78457845784578,145.84458445844584,145.9045904590459,145.96459645964597,146.02460246024603,146.08460846084608,146.14461446144614,146.2046204620462,146.26462646264628,146.32463246324633,146.3846384638464,146.44464446444644,146.5046504650465,146.56465646564658,146.62466246624663,146.6846684668467,146.74467446744674,146.8046804680468,146.86468646864685,146.92469246924693,146.984698469847,147.04470447044704,147.1047104710471,147.16471647164715,147.22472247224724,147.2847284728473,147.34473447344735,147.4047404740474,147.46474647464746,147.52475247524754,147.5847584758476,147.64476447644765,147.7047704770477,147.76477647764776,147.8247824782478,147.8847884788479,147.94479447944795,148.004800480048,148.06480648064806,148.1248124812481,148.1848184818482,148.24482448244825,148.3048304830483,148.36483648364836,148.42484248424842,148.4848484848485,148.54485448544855,148.6048604860486,148.66486648664866,148.72487248724872,148.78487848784877,148.84488448844886,148.9048904890489,148.96489648964896,149.02490249024902,149.08490849084907,149.14491449144916,149.2049204920492,149.26492649264927,149.32493249324932,149.38493849384938,149.44494449444946,149.5049504950495,149.56495649564957,149.62496249624962,149.68496849684968,149.74497449744973,149.80498049804982,149.86498649864987,149.92499249924992,149.98499849984998,150.04500450045003,150.10501050105012,150.16501650165017,150.22502250225023,150.28502850285028,150.34503450345034,150.40504050405042,150.46504650465047,150.52505250525053,150.58505850585058,150.64506450645064,150.7050705070507,150.76507650765078,150.82508250825083,150.88508850885088,150.94509450945094,151.005100510051,151.06510651065108,151.12511251125113,151.1851185118512,151.24512451245124,151.3051305130513,151.36513651365138,151.42514251425143,151.4851485148515,151.54515451545154,151.6051605160516,151.66516651665165,151.72517251725174,151.7851785178518,151.84518451845184,151.9051905190519,151.96519651965195,152.02520252025204,152.0852085208521,152.14521452145215,152.2052205220522,152.26522652265226,152.32523252325234,152.3852385238524,152.44524452445245,152.5052505250525,152.56525652565256,152.6252625262526,152.6852685268527,152.74527452745275,152.8052805280528,152.86528652865286,152.9252925292529,152.985298529853,153.04530453045305,153.1053105310531,153.16531653165316,153.22532253225322,153.2853285328533,153.34533453345335,153.4053405340534,153.46534653465346,153.52535253525352,153.58535853585357,153.64536453645366,153.7053705370537,153.76537653765376,153.82538253825382,153.88538853885387,153.94539453945396,154.005400540054,154.06540654065407,154.12541254125412,154.18541854185418,154.24542454245426,154.3054305430543,154.36543654365437,154.42544254425442,154.48544854485448,154.54545454545453,154.60546054605462,154.66546654665467,154.72547254725472,154.78547854785478,154.84548454845483,154.90549054905492,154.96549654965497,155.02550255025503,155.08550855085508,155.14551455145514,155.20552055205522,155.26552655265527,155.32553255325533,155.38553855385538,155.44554455445544,155.5055505550555,155.56555655565558,155.62556255625563,155.68556855685569,155.74557455745574,155.8055805580558,155.86558655865588,155.92559255925593,155.985598559856,156.04560456045604,156.1056105610561,156.16561656165618,156.22562256225623,156.2856285628563,156.34563456345634,156.4056405640564,156.46564656465645,156.52565256525654,156.5856585658566,156.64566456645665,156.7056705670567,156.76567656765675,156.82568256825684,156.8856885688569,156.94569456945695,157.005700570057,157.06570657065706,157.12571257125714,157.1857185718572,157.24572457245725,157.3057305730573,157.36573657365736,157.4257425742574,157.4857485748575,157.54575457545755,157.6057605760576,157.66576657665766,157.72577257725771,157.7857785778578,157.84578457845785,157.9057905790579,157.96579657965796,158.02580258025802,158.0858085808581,158.14581458145815,158.2058205820582,158.26582658265826,158.32583258325832,158.38583858385837,158.44584458445846,158.5058505850585,158.56585658565857,158.62586258625862,158.68586858685867,158.74587458745876,158.8058805880588,158.86588658865887,158.92589258925892,158.98589858985898,159.04590459045906,159.10591059105911,159.16591659165917,159.22592259225922,159.28592859285928,159.34593459345933,159.40594059405942,159.46594659465947,159.52595259525953,159.58595859585958,159.64596459645963,159.70597059705972,159.76597659765977,159.82598259825983,159.88598859885988,159.94599459945994,160.00600060006002,160.06600660066007,160.12601260126013,160.18601860186018,160.24602460246024,160.3060306030603,160.36603660366038,160.42604260426043,160.48604860486049,160.54605460546054,160.6060606060606,160.66606660666068,160.72607260726073,160.7860786078608,160.84608460846084,160.9060906090609,160.96609660966098,161.02610261026103,161.0861086108611,161.14611461146114,161.2061206120612,161.26612661266125,161.32613261326134,161.3861386138614,161.44614461446145,161.5061506150615,161.56615661566155,161.62616261626164,161.6861686168617,161.74617461746175,161.8061806180618,161.86618661866186,161.92619261926194,161.986198619862,162.04620462046205,162.1062106210621,162.16621662166216,162.2262226222622,162.2862286228623,162.34623462346235,162.4062406240624,162.46624662466246,162.52625262526252,162.5862586258626,162.64626462646265,162.7062706270627,162.76627662766276,162.82628262826282,162.8862886288629,162.94629462946295,163.006300630063,163.06630663066306,163.12631263126312,163.18631863186317,163.24632463246326,163.3063306330633,163.36633663366337,163.42634263426342,163.48634863486348,163.54635463546356,163.6063606360636,163.66636663666367,163.72637263726372,163.78637863786378,163.84638463846386,163.90639063906391,163.96639663966397,164.02640264026402,164.08640864086408,164.14641464146413,164.20642064206422,164.26642664266427,164.32643264326433,164.38643864386438,164.44644464446444,164.50645064506452,164.56645664566457,164.62646264626463,164.68646864686468,164.74647464746474,164.80648064806482,164.86648664866487,164.92649264926493,164.98649864986498,165.04650465046504,165.1065106510651,165.16651665166518,165.22652265226523,165.2865286528653,165.34653465346534,165.4065406540654,165.46654665466548,165.52655265526553,165.5865586558656,165.64656465646564,165.7065706570657,165.76657665766578,165.82658265826583,165.8865886588659,165.94659465946594,166.006600660066,166.06660666066605,166.12661266126614,166.1866186618662,166.24662466246625,166.3066306630663,166.36663666366636,166.42664266426644,166.4866486648665,166.54665466546655,166.6066606660666,166.66666666666666,166.72667266726674,166.7866786678668,166.84668466846685,166.9066906690669,166.96669666966696,167.026702670267,167.0867086708671,167.14671467146715,167.2067206720672,167.26672667266726,167.32673267326732,167.3867386738674,167.44674467446745,167.5067506750675,167.56675667566756,167.62676267626762,167.6867686768677,167.74677467746776,167.8067806780678,167.86678667866786,167.92679267926792,167.98679867986797,168.04680468046806,168.1068106810681,168.16681668166817,168.22682268226822,168.28682868286828,168.34683468346836,168.4068406840684,168.46684668466847,168.52685268526852,168.58685868586858,168.64686468646866,168.70687068706872,168.76687668766877,168.82688268826882,168.88688868886888,168.94689468946893,169.00690069006902,169.06690669066907,169.12691269126913,169.18691869186918,169.24692469246924,169.30693069306932,169.36693669366937,169.42694269426943,169.48694869486948,169.54695469546954,169.60696069606962,169.66696669666968,169.72697269726973,169.78697869786978,169.84698469846984,169.9069906990699,169.96699669966998,170.02700270027003,170.0870087008701,170.14701470147014,170.2070207020702,170.26702670267028,170.32703270327033,170.3870387038704,170.44704470447044,170.5070507050705,170.56705670567058,170.62706270627064,170.6870687068707,170.74707470747074,170.8070807080708,170.86708670867085,170.92709270927094,170.987098709871,171.04710471047105,171.1071107110711,171.16711671167116,171.22712271227124,171.2871287128713,171.34713471347135,171.4071407140714,171.46714671467146,171.52715271527154,171.5871587158716,171.64716471647165,171.7071707170717,171.76717671767176,171.8271827182718,171.8871887188719,171.94719471947195,172.007200720072,172.06720672067206,172.12721272127212,172.1872187218722,172.24722472247225,172.3072307230723,172.36723672367236,172.42724272427242,172.4872487248725,172.54725472547256,172.6072607260726,172.66726672667266,172.72727272727272,172.78727872787277,172.84728472847286,172.9072907290729,172.96729672967297,173.02730273027302,173.08730873087308,173.14731473147316,173.2073207320732,173.26732673267327,173.32733273327332,173.38733873387338,173.44734473447346,173.50735073507352,173.56735673567357,173.62736273627362,173.68736873687368,173.74737473747373,173.80738073807382,173.86738673867387,173.92739273927393,173.98739873987398,174.04740474047404,174.10741074107412,174.16741674167417,174.22742274227423,174.28742874287428,174.34743474347434,174.40744074407442,174.46744674467448,174.52745274527453,174.58745874587459,174.64746474647464,174.7074707470747,174.76747674767478,174.82748274827483,174.8874887488749,174.94749474947494,175.007500750075,175.06750675067508,175.12751275127513,175.1875187518752,175.24752475247524,175.3075307530753,175.36753675367538,175.42754275427544,175.4875487548755,175.54755475547555,175.6075607560756,175.66756675667565,175.72757275727574,175.7875787578758,175.84758475847585,175.9075907590759,175.96759675967596,176.02760276027604,176.0876087608761,176.14761476147615,176.2076207620762,176.26762676267626,176.32763276327634,176.3876387638764,176.44764476447645,176.5076507650765,176.56765676567656,176.62766276627661,176.6876687668767,176.74767476747675,176.8076807680768,176.86768676867686,176.92769276927692,176.987698769877,177.04770477047705,177.1077107710771,177.16771677167716,177.22772277227722,177.2877287728773,177.34773477347736,177.4077407740774,177.46774677467747,177.52775277527752,177.58775877587757,177.64776477647766,177.7077707770777,177.76777677767777,177.82778277827782,177.88778877887788,177.94779477947796,178.00780078007801,178.06780678067807,178.12781278127812,178.18781878187818,178.24782478247826,178.30783078307832,178.36783678367837,178.42784278427843,178.48784878487848,178.54785478547853,178.60786078607862,178.66786678667867,178.72787278727873,178.78787878787878,178.84788478847884,178.90789078907892,178.96789678967897,179.02790279027903,179.08790879087908,179.14791479147914,179.20792079207922,179.26792679267928,179.32793279327933,179.38793879387939,179.44794479447944,179.5079507950795,179.56795679567958,179.62796279627963,179.6879687968797,179.74797479747974,179.8079807980798,179.86798679867988,179.92799279927993,179.98799879988,180.04800480048004,180.1080108010801,180.16801680168018,180.22802280228024,180.2880288028803,180.34803480348035,180.4080408040804,180.46804680468045,180.52805280528054,180.5880588058806,180.64806480648065,180.7080708070807,180.76807680768076,180.82808280828084,180.8880888088809,180.94809480948095,181.008100810081,181.06810681068106,181.12811281128114,181.1881188118812,181.24812481248125,181.3081308130813,181.36813681368136,181.42814281428141,181.4881488148815,181.54815481548155,181.6081608160816,181.66816681668166,181.72817281728172,181.7881788178818,181.84818481848185,181.9081908190819,181.96819681968196,182.02820282028202,182.0882088208821,182.14821482148216,182.2082208220822,182.26822682268227,182.32823282328232,182.38823882388238,182.44824482448246,182.5082508250825,182.56825682568257,182.62826282628262,182.68826882688268,182.74827482748276,182.80828082808281,182.86828682868287,182.92829282928292,182.98829882988298,183.04830483048306,183.10831083108312,183.16831683168317,183.22832283228323,183.28832883288328,183.34833483348334,183.40834083408342,183.46834683468347,183.52835283528353,183.58835883588358,183.64836483648364,183.70837083708372,183.76837683768377,183.82838283828383,183.88838883888388,183.94839483948394,184.00840084008402,184.06840684068408,184.12841284128413,184.1884188418842,184.24842484248424,184.3084308430843,184.36843684368438,184.42844284428443,184.4884488448845,184.54845484548454,184.6084608460846,184.66846684668468,184.72847284728473,184.7884788478848,184.84848484848484,184.9084908490849,184.96849684968498,185.02850285028504,185.0885088508851,185.14851485148515,185.2085208520852,185.26852685268526,185.32853285328534,185.3885388538854,185.44854485448545,185.5085508550855,185.56855685568556,185.62856285628564,185.6885688568857,185.74857485748575,185.8085808580858,185.86858685868586,185.92859285928594,185.988598859886,186.04860486048605,186.1086108610861,186.16861686168616,186.22862286228622,186.2886288628863,186.34863486348635,186.4086408640864,186.46864686468646,186.52865286528652,186.5886588658866,186.64866486648666,186.7086708670867,186.76867686768676,186.82868286828682,186.8886888688869,186.94869486948696,187.008700870087,187.06870687068707,187.12871287128712,187.18871887188718,187.24872487248726,187.3087308730873,187.36873687368737,187.42874287428742,187.48874887488748,187.54875487548756,187.60876087608762,187.66876687668767,187.72877287728772,187.78877887788778,187.84878487848786,187.90879087908792,187.96879687968797,188.02880288028803,188.08880888088808,188.14881488148814,188.20882088208822,188.26882688268827,188.32883288328833,188.38883888388838,188.44884488448844,188.50885088508852,188.56885688568858,188.62886288628863,188.68886888688868,188.74887488748874,188.80888088808882,188.86888688868888,188.92889288928893,188.988898889889,189.04890489048904,189.1089108910891,189.16891689168918,189.22892289228923,189.2889288928893,189.34893489348934,189.4089408940894,189.46894689468948,189.52895289528954,189.5889588958896,189.64896489648964,189.7089708970897,189.76897689768978,189.82898289828984,189.8889888988899,189.94899489948995,190.00900090009,190.06900690069006,190.12901290129014,190.1890189018902,190.24902490249025,190.3090309030903,190.36903690369036,190.42904290429044,190.4890489048905,190.54905490549055,190.6090609060906,190.66906690669066,190.72907290729074,190.7890789078908,190.84908490849085,190.9090909090909,190.96909690969096,191.02910291029102,191.0891089108911,191.14911491149115,191.2091209120912,191.26912691269126,191.32913291329132,191.3891389138914,191.44914491449146,191.5091509150915,191.56915691569156,191.62916291629162,191.6891689168917,191.74917491749176,191.8091809180918,191.86918691869187,191.92919291929192,191.98919891989198,192.04920492049206,192.1092109210921,192.16921692169217,192.22922292229222,192.28922892289228,192.34923492349236,192.40924092409242,192.46924692469247,192.52925292529252,192.58925892589258,192.64926492649266,192.70927092709272,192.76927692769277,192.82928292829283,192.88928892889288,192.94929492949294,193.00930093009302,193.06930693069307,193.12931293129313,193.18931893189318,193.24932493249324,193.30933093309332,193.36933693369338,193.42934293429343,193.48934893489348,193.54935493549354,193.60936093609362,193.66936693669368,193.72937293729373,193.7893789378938,193.84938493849384,193.9093909390939,193.96939693969398,194.02940294029403,194.0894089408941,194.14941494149414,194.2094209420942,194.26942694269428,194.32943294329434,194.3894389438944,194.44944494449445,194.5094509450945,194.56945694569458,194.62946294629464,194.6894689468947,194.74947494749475,194.8094809480948,194.86948694869486,194.92949294929494,194.989498949895,195.04950495049505,195.1095109510951,195.16951695169516,195.22952295229524,195.2895289528953,195.34953495349535,195.4095409540954,195.46954695469546,195.52955295529554,195.5895589558956,195.64956495649565,195.7095709570957,195.76957695769576,195.82958295829582,195.8895889588959,195.94959495949595,196.009600960096,196.06960696069606,196.12961296129612,196.1896189618962,196.24962496249626,196.3096309630963,196.36963696369637,196.42964296429642,196.4896489648965,196.54965496549656,196.6096609660966,196.66966696669667,196.72967296729672,196.78967896789678,196.84968496849686,196.9096909690969,196.96969696969697,197.02970297029702,197.08970897089708,197.14971497149716,197.20972097209722,197.26972697269727,197.32973297329733,197.38973897389738,197.44974497449746,197.50975097509752,197.56975697569757,197.62976297629763,197.68976897689768,197.74977497749774,197.80978097809782,197.86978697869787,197.92979297929793,197.98979897989798,198.04980498049804,198.10981098109812,198.16981698169818,198.22982298229823,198.28982898289829,198.34983498349834,198.40984098409842,198.46984698469848,198.52985298529853,198.5898589858986,198.64986498649864,198.7098709870987,198.76987698769878,198.82988298829883,198.8898889888989,198.94989498949894,199.009900990099,199.06990699069908,199.12991299129914,199.1899189918992,199.24992499249925,199.3099309930993,199.36993699369938,199.42994299429944,199.4899489948995,199.54995499549955,199.6099609960996,199.66996699669966,199.72997299729974,199.7899789978998,199.84998499849985,199.9099909990999,199.96999699969996,200.03000300030004,200.0900090009001,200.15001500150015,200.2100210021002,200.27002700270026,200.33003300330034,200.3900390039004,200.45004500450045,200.5100510051005,200.57005700570056,200.63006300630062,200.6900690069007,200.75007500750075,200.8100810081008,200.87008700870086,200.93009300930092,200.990099009901,201.05010501050106,201.1101110111011,201.17011701170117,201.23012301230122,201.2901290129013,201.35013501350136,201.4101410141014,201.47014701470147,201.53015301530152,201.59015901590158,201.65016501650166,201.71017101710171,201.77017701770177,201.83018301830182,201.89018901890188,201.95019501950196,202.01020102010202,202.07020702070207,202.13021302130213,202.19021902190218,202.25022502250226,202.31023102310232,202.37023702370237,202.43024302430243,202.49024902490248,202.55025502550254,202.61026102610262,202.67026702670267,202.73027302730273,202.79027902790278,202.85028502850284,202.91029102910292,202.97029702970298,203.03030303030303,203.0903090309031,203.15031503150314,203.21032103210322,203.27032703270328,203.33033303330333,203.3903390339034,203.45034503450344,203.5103510351035,203.57035703570358,203.63036303630363,203.6903690369037,203.75037503750374,203.8103810381038,203.87038703870388,203.93039303930394,203.990399039904,204.05040504050405,204.1104110411041,204.17041704170418,204.23042304230424,204.2904290429043,204.35043504350435,204.4104410441044,204.47044704470446,204.53045304530454,204.5904590459046,204.65046504650465,204.7104710471047,204.77047704770476,204.83048304830484,204.8904890489049,204.95049504950495,205.010501050105,205.07050705070506,205.13051305130514,205.1905190519052,205.25052505250525,205.3105310531053,205.37053705370536,205.43054305430542,205.4905490549055,205.55055505550555,205.6105610561056,205.67056705670566,205.73057305730572,205.7905790579058,205.85058505850586,205.9105910591059,205.97059705970597,206.03060306030602,206.0906090609061,206.15061506150616,206.2106210621062,206.27062706270627,206.33063306330632,206.39063906390638,206.45064506450646,206.51065106510652,206.57065706570657,206.63066306630662,206.69066906690668,206.75067506750676,206.81068106810682,206.87068706870687,206.93069306930693,206.99069906990698,207.05070507050706,207.11071107110712,207.17071707170717,207.23072307230723,207.29072907290728,207.35073507350734,207.41074107410742,207.47074707470748,207.53075307530753,207.59075907590758,207.65076507650764,207.71077107710772,207.77077707770778,207.83078307830783,207.8907890789079,207.95079507950794,208.01080108010802,208.07080708070808,208.13081308130813,208.1908190819082,208.25082508250824,208.3108310831083,208.37083708370838,208.43084308430844,208.4908490849085,208.55085508550854,208.6108610861086,208.67086708670868,208.73087308730874,208.7908790879088,208.85088508850885,208.9108910891089,208.97089708970898,209.03090309030904,209.0909090909091,209.15091509150915,209.2109210921092,209.27092709270926,209.33093309330934,209.3909390939094,209.45094509450945,209.5109510951095,209.57095709570956,209.63096309630964,209.6909690969097,209.75097509750975,209.8109810981098,209.87098709870986,209.93099309930994,209.99099909991,210.05100510051005,210.1110111011101,210.17101710171016,210.23102310231022,210.2910291029103,210.35103510351036,210.4110411041104,210.47104710471046,210.53105310531052,210.5910591059106,210.65106510651066,210.7110711071107,210.77107710771077,210.83108310831082,210.8910891089109,210.95109510951096,211.011101110111,211.07110711071107,211.13111311131112,211.19111911191118,211.25112511251126,211.31113111311132,211.37113711371137,211.43114311431142,211.49114911491148,211.55115511551156,211.61116111611162,211.67116711671167,211.73117311731173,211.79117911791178,211.85118511851186,211.91119111911192,211.97119711971197,212.03120312031203,212.09120912091208,212.15121512151214,212.21122112211222,212.27122712271228,212.33123312331233,212.39123912391238,212.45124512451244,212.51125112511252,212.57125712571258,212.63126312631263,212.6912691269127,212.75127512751274,212.81128112811282,212.87128712871288,212.93129312931293,212.991299129913,213.05130513051304,213.1113111311131,213.17131713171318,213.23132313231324,213.2913291329133,213.35133513351334,213.4113411341134,213.47134713471348,213.53135313531354,213.5913591359136,213.65136513651365,213.7113711371137,213.77137713771378,213.83138313831384,213.8913891389139,213.95139513951395,214.011401140114,214.07140714071406,214.13141314131414,214.1914191419142,214.25142514251425,214.3114311431143,214.37143714371436,214.43144314431444,214.4914491449145,214.55145514551455,214.6114611461146,214.67146714671466,214.73147314731474,214.7914791479148,214.85148514851485,214.9114911491149,214.97149714971496,215.03150315031502,215.0915091509151,215.15151515151516,215.2115211521152,215.27152715271527,215.33153315331532,215.3915391539154,215.45154515451546,215.5115511551155,215.57155715571557,215.63156315631562,215.6915691569157,215.75157515751576,215.8115811581158,215.87158715871587,215.93159315931592,215.99159915991598,216.05160516051606,216.11161116111612,216.17161716171617,216.23162316231623,216.29162916291628,216.35163516351636,216.41164116411642,216.47164716471647,216.53165316531653,216.59165916591658,216.65166516651666,216.71167116711672,216.77167716771677,216.83168316831683,216.89168916891688,216.95169516951694,217.01170117011702,217.07170717071708,217.13171317131713,217.19171917191719,217.25172517251724,217.31173117311732,217.37173717371738,217.43174317431743,217.4917491749175,217.55175517551754,217.61176117611762,217.67176717671768,217.73177317731773,217.7917791779178,217.85178517851784,217.9117911791179,217.97179717971798,218.03180318031804,218.0918091809181,218.15181518151815,218.2118211821182,218.27182718271828,218.33183318331834,218.3918391839184,218.45184518451845,218.5118511851185,218.57185718571859,218.63186318631864,218.6918691869187,218.75187518751875,218.8118811881188,218.87188718871886,218.93189318931894,218.991899189919,219.05190519051905,219.1119111911191,219.17191719171916,219.23192319231924,219.2919291929193,219.35193519351935,219.4119411941194,219.47194719471946,219.53195319531955,219.5919591959196,219.65196519651965,219.7119711971197,219.77197719771976,219.83198319831982,219.8919891989199,219.95199519951996,220.01200120012,220.07200720072007,220.13201320132012,220.1920192019202,220.25202520252026,220.3120312031203,220.37203720372037,220.43204320432042,220.4920492049205,220.55205520552056,220.61206120612061,220.67206720672067,220.73207320732072,220.79207920792078,220.85208520852086,220.91209120912092,220.97209720972097,221.03210321032103,221.09210921092108,221.15211521152116,221.21212121212122,221.27212721272127,221.33213321332133,221.39213921392138,221.45214521452147,221.51215121512152,221.57215721572157,221.63216321632163,221.69216921692168,221.75217521752174,221.81218121812182,221.87218721872188,221.93219321932193,221.99219921992199,222.05220522052204,222.11221122112212,222.17221722172218,222.23222322232223,222.2922292229223,222.35223522352234,222.41224122412243,222.47224722472248,222.53225322532253,222.5922592259226,222.65226522652264,222.7122712271227,222.77227722772278,222.83228322832284,222.8922892289229,222.95229522952295,223.012301230123,223.07230723072308,223.13231323132314,223.1923192319232,223.25232523252325,223.3123312331233,223.37233723372339,223.43234323432344,223.4923492349235,223.55235523552355,223.6123612361236,223.67236723672366,223.73237323732374,223.7923792379238,223.85238523852385,223.9123912391239,223.97239723972396,224.03240324032404,224.0924092409241,224.15241524152415,224.2124212421242,224.27242724272426,224.33243324332435,224.3924392439244,224.45244524452445,224.5124512451245,224.57245724572456,224.63246324632462,224.6924692469247,224.75247524752476,224.8124812481248,224.87248724872487,224.93249324932492,224.992499249925,225.05250525052506,225.1125112511251,225.17251725172517,225.23252325232522,225.2925292529253,225.35253525352536,225.41254125412541,225.47254725472547,225.53255325532552,225.59255925592558,225.65256525652566,225.71257125712572,225.77257725772577,225.83258325832583,225.89258925892588,225.95259525952596,226.01260126012602,226.07260726072607,226.13261326132613,226.19261926192618,226.25262526252627,226.31263126312632,226.37263726372638,226.43264326432643,226.49264926492648,226.55265526552654,226.61266126612662,226.67266726672668,226.73267326732673,226.7926792679268,226.85268526852684,226.91269126912692,226.97269726972698,227.03270327032703,227.0927092709271,227.15271527152714,227.21272127212723,227.27272727272728,227.33273327332734,227.3927392739274,227.45274527452744,227.5127512751275,227.57275727572758,227.63276327632764,227.6927692769277,227.75277527752775,227.8127812781278,227.87278727872788,227.93279327932794,227.992799279928,228.05280528052805,228.1128112811281,228.1728172817282,228.23282328232824,228.2928292829283,228.35283528352835,228.4128412841284,228.47284728472846,228.53285328532854,228.5928592859286,228.65286528652865,228.7128712871287,228.77287728772876,228.83288328832884,228.8928892889289,228.95289528952895,229.012901290129,229.07290729072906,229.13291329132915,229.1929192919292,229.25292529252926,229.3129312931293,229.37293729372936,229.43294329432942,229.4929492949295,229.55295529552956,229.6129612961296,229.67296729672967,229.73297329732972,229.7929792979298,229.85298529852986,229.9129912991299,229.97299729972997,230.03300330033002,230.0930093009301,230.15301530153016,230.21302130213022,230.27302730273027,230.33303330333032,230.39303930393038,230.45304530453046,230.51305130513052,230.57305730573057,230.63306330633063,230.69306930693068,230.75307530753076,230.81308130813082,230.87308730873087,230.93309330933093,230.99309930993098,231.05310531053107,231.11311131113112,231.17311731173118,231.23312331233123,231.29312931293128,231.35313531353134,231.41314131413142,231.47314731473148,231.53315331533153,231.5931593159316,231.65316531653164,231.71317131713172,231.77317731773178,231.83318331833183,231.8931893189319,231.95319531953194,232.01320132013203,232.07320732073208,232.13321332133214,232.1932193219322,232.25322532253224,232.3132313231323,232.37323732373238,232.43324332433244,232.4932493249325,232.55325532553255,232.6132613261326,232.67326732673268,232.73327332733274,232.7932793279328,232.85328532853285,232.9132913291329,232.973297329733,233.03330333033304,233.0933093309331,233.15331533153315,233.2133213321332,233.27332733273326,233.33333333333334,233.3933393339334,233.45334533453345,233.5133513351335,233.57335733573356,233.63336333633364,233.6933693369337,233.75337533753375,233.8133813381338,233.87338733873386,233.93339333933395,233.993399339934,234.05340534053406,234.1134113411341,234.17341734173417,234.23342334233422,234.2934293429343,234.35343534353436,234.4134413441344,234.47344734473447,234.53345334533452,234.5934593459346,234.65346534653466,234.7134713471347,234.77347734773477,234.83348334833482,234.8934893489349,234.95349534953496,235.01350135013502,235.07350735073507,235.13351335133513,235.19351935193518,235.25352535253526,235.31353135313532,235.37353735373537,235.43354335433543,235.49354935493548,235.55355535553556,235.61356135613562,235.67356735673567,235.73357335733573,235.79357935793578,235.85358535853587,235.91359135913592,235.97359735973598,236.03360336033603,236.09360936093609,236.15361536153614,236.21362136213622,236.27362736273628,236.33363336333633,236.3936393639364,236.45364536453644,236.51365136513652,236.57365736573658,236.63366336633663,236.6936693669367,236.75367536753674,236.81368136813683,236.87368736873688,236.93369336933694,236.993699369937,237.05370537053705,237.1137113711371,237.17371737173718,237.23372337233724,237.2937293729373,237.35373537353735,237.4137413741374,237.47374737473748,237.53375337533754,237.5937593759376,237.65376537653765,237.7137713771377,237.7737773777378,237.83378337833784,237.8937893789379,237.95379537953795,238.013801380138,238.07380738073806,238.13381338133814,238.1938193819382,238.25382538253825,238.3138313831383,238.37383738373836,238.43384338433845,238.4938493849385,238.55385538553855,238.6138613861386,238.67386738673866,238.73387338733875,238.7938793879388,238.85388538853886,238.9138913891389,238.97389738973897,239.03390339033902,239.0939093909391,239.15391539153916,239.2139213921392,239.27392739273927,239.33393339333932,239.3939393939394,239.45394539453946,239.51395139513951,239.57395739573957,239.63396339633962,239.6939693969397,239.75397539753976,239.81398139813982,239.87398739873987,239.93399339933993,239.99399939993998,240.05400540054006,240.11401140114012,240.17401740174017,240.23402340234023,240.29402940294028,240.35403540354037,240.41404140414042,240.47404740474047,240.53405340534053,240.59405940594058,240.65406540654067,240.71407140714072,240.77407740774078,240.83408340834083,240.89408940894089,240.95409540954094,241.01410141014102,241.07410741074108,241.13411341134113,241.1941194119412,241.25412541254124,241.31413141314133,241.37413741374138,241.43414341434143,241.4941494149415,241.55415541554154,241.61416141614163,241.67416741674168,241.73417341734174,241.7941794179418,241.85418541854185,241.9141914191419,241.97419741974198,242.03420342034204,242.0942094209421,242.15421542154215,242.2142214221422,242.27422742274229,242.33423342334234,242.3942394239424,242.45424542454245,242.5142514251425,242.5742574257426,242.63426342634264,242.6942694269427,242.75427542754275,242.8142814281428,242.87428742874286,242.93429342934294,242.994299429943,243.05430543054305,243.1143114311431,243.17431743174316,243.23432343234325,243.2943294329433,243.35433543354335,243.4143414341434,243.47434743474346,243.53435343534355,243.5943594359436,243.65436543654366,243.7143714371437,243.77437743774377,243.83438343834382,243.8943894389439,243.95439543954396,244.014401440144,244.07440744074407,244.13441344134412,244.1944194419442,244.25442544254426,244.31443144314431,244.37443744374437,244.43444344434442,244.4944494449445,244.55445544554456,244.61446144614462,244.67446744674467,244.73447344734473,244.79447944794478,244.85448544854486,244.91449144914492,244.97449744974497,245.03450345034503,245.09450945094508,245.15451545154517,245.21452145214522,245.27452745274528,245.33453345334533,245.39453945394538,245.45454545454547,245.51455145514552,245.57455745574558,245.63456345634563,245.6945694569457,245.75457545754574,245.81458145814582,245.87458745874588,245.93459345934593,245.994599459946,246.05460546054604,246.11461146114613,246.17461746174618,246.23462346234624,246.2946294629463,246.35463546354634,246.41464146414643,246.47464746474648,246.53465346534654,246.5946594659466,246.65466546654665,246.7146714671467,246.77467746774678,246.83468346834684,246.8946894689469,246.95469546954695,247.014701470147,247.0747074707471,247.13471347134714,247.1947194719472,247.25472547254725,247.3147314731473,247.3747374737474,247.43474347434744,247.4947494749475,247.55475547554755,247.6147614761476,247.67476747674766,247.73477347734774,247.7947794779478,247.85478547854785,247.9147914791479,247.97479747974796,248.03480348034805,248.0948094809481,248.15481548154816,248.2148214821482,248.27482748274826,248.33483348334835,248.3948394839484,248.45484548454846,248.5148514851485,248.57485748574857,248.63486348634862,248.6948694869487,248.75487548754876,248.8148814881488,248.87488748874887,248.93489348934892,248.994899489949,249.05490549054906,249.11491149114912,249.17491749174917,249.23492349234922,249.2949294929493,249.35493549354936,249.41494149414942,249.47494749474947,249.53495349534953,249.59495949594958,249.65496549654966,249.71497149714972,249.77497749774977,249.83498349834983,249.89498949894988,249.95499549954997,250.01500150015002,250.07500750075008,250.13501350135013,250.19501950195018,250.25502550255027,250.31503150315032,250.37503750375038,250.43504350435043,250.4950495049505,250.55505550555054,250.61506150615062,250.67506750675068,250.73507350735073,250.7950795079508,250.85508550855084,250.91509150915093,250.97509750975098,251.03510351035104,251.0951095109511,251.15511551155114,251.21512151215123,251.27512751275128,251.33513351335134,251.3951395139514,251.45514551455145,251.5151515151515,251.57515751575158,251.63516351635164,251.6951695169517,251.75517551755175,251.8151815181518,251.8751875187519,251.93519351935194,251.995199519952,252.05520552055205,252.1152115211521,252.1752175217522,252.23522352235224,252.2952295229523,252.35523552355235,252.4152415241524,252.47524752475246,252.53525352535254,252.5952595259526,252.65526552655265,252.7152715271527,252.77527752775276,252.83528352835285,252.8952895289529,252.95529552955296,253.015301530153,253.07530753075307,253.13531353135315,253.1953195319532,253.25532553255326,253.3153315331533,253.37533753375337,253.43534353435342,253.4953495349535,253.55535553555356,253.6153615361536,253.67536753675367,253.73537353735372,253.7953795379538,253.85538553855386,253.91539153915392,253.97539753975397,254.03540354035403,254.0954095409541,254.15541554155416,254.21542154215422,254.27542754275427,254.33543354335433,254.39543954395438,254.45544554455446,254.51545154515452,254.57545754575457,254.63546354635463,254.69546954695468,254.75547554755477,254.81548154815482,254.87548754875488,254.93549354935493,254.99549954995499,255.05550555055507,255.11551155115512,255.17551755175518,255.23552355235523,255.2955295529553,255.35553555355534,255.41554155415542,255.47554755475548,255.53555355535553,255.5955595559556,255.65556555655564,255.71557155715573,255.77557755775578,255.83558355835584,255.8955895589559,255.95559555955595,256.01560156015603,256.07560756075605,256.13561356135614,256.1956195619562,256.25562556255625,256.31563156315633,256.37563756375636,256.43564356435644,256.4956495649565,256.55565556555655,256.61566156615663,256.67566756675666,256.73567356735674,256.79567956795677,256.85568556855685,256.91569156915693,256.97569756975696,257.03570357035704,257.09570957095707,257.15571557155715,257.21572157215724,257.27572757275726,257.33573357335734,257.39573957395737,257.45574557455745,257.51575157515754,257.57575757575756,257.63576357635765,257.6957695769577,257.75577557755776,257.81578157815784,257.87578757875787,257.93579357935795,257.995799579958,258.05580558055806,258.11581158115814,258.17581758175817,258.23582358235825,258.2958295829583,258.35583558355836,258.41584158415844,258.47584758475847,258.53585358535855,258.5958595859586,258.65586558655866,258.7158715871587,258.77587758775877,258.83588358835885,258.8958895889589,258.95589558955896,259.015901590159,259.0759075907591,259.13591359135916,259.1959195919592,259.25592559255927,259.3159315931593,259.3759375937594,259.43594359435946,259.4959495949595,259.55595559555957,259.6159615961596,259.6759675967597,259.73597359735976,259.7959795979598,259.85598559855987,259.9159915991599,259.97599759976,260.03600360036006,260.0960096009601,260.15601560156017,260.2160216021602,260.2760276027603,260.33603360336036,260.3960396039604,260.4560456045605,260.5160516051605,260.5760576057606,260.6360636063606,260.6960696069607,260.7560756075608,260.8160816081608,260.8760876087609,260.9360936093609,260.996099609961,261.0561056105611,261.1161116111611,261.1761176117612,261.2361236123612,261.2961296129613,261.3561356135614,261.4161416141614,261.4761476147615,261.5361536153615,261.5961596159616,261.6561656165617,261.7161716171617,261.7761776177618,261.8361836183618,261.8961896189619,261.956195619562,262.016201620162,262.0762076207621,262.1362136213621,262.1962196219622,262.2562256225623,262.3162316231623,262.3762376237624,262.4362436243624,262.4962496249625,262.5562556255625,262.6162616261626,262.6762676267627,262.7362736273627,262.7962796279628,262.85628562856283,262.9162916291629,262.976297629763,263.036303630363,263.0963096309631,263.15631563156313,263.2163216321632,263.2763276327633,263.3363336333633,263.3963396339634,263.45634563456343,263.5163516351635,263.5763576357636,263.6363636363636,263.6963696369637,263.75637563756374,263.8163816381638,263.8763876387639,263.9363936393639,263.996399639964,264.05640564056404,264.1164116411641,264.1764176417642,264.23642364236423,264.2964296429643,264.35643564356434,264.4164416441644,264.47644764476445,264.53645364536453,264.5964596459646,264.65646564656464,264.7164716471647,264.77647764776475,264.83648364836483,264.8964896489649,264.95649564956494,265.016501650165,265.07650765076505,265.13651365136514,265.1965196519652,265.25652565256524,265.3165316531653,265.37653765376535,265.43654365436544,265.4965496549655,265.55655565556555,265.61656165616563,265.67656765676566,265.73657365736574,265.7965796579658,265.85658565856585,265.91659165916593,265.97659765976596,266.03660366036604,266.0966096609661,266.15661566156615,266.21662166216623,266.27662766276626,266.33663366336634,266.39663966396637,266.45664566456645,266.51665166516653,266.57665766576656,266.63666366636664,266.69666966696667,266.75667566756675,266.81668166816684,266.87668766876686,266.93669366936695,266.996699669967,267.05670567056706,267.11671167116714,267.17671767176716,267.23672367236725,267.2967296729673,267.35673567356736,267.41674167416744,267.47674767476747,267.53675367536755,267.5967596759676,267.65676567656766,267.71677167716774,267.77677767776777,267.83678367836785,267.8967896789679,267.95679567956796,268.01680168016804,268.07680768076807,268.13681368136815,268.1968196819682,268.25682568256826,268.3168316831683,268.3768376837684,268.43684368436845,268.4968496849685,268.55685568556856,268.6168616861686,268.6768676867687,268.73687368736876,268.7968796879688,268.85688568856887,268.9168916891689,268.976897689769,269.03690369036906,269.0969096909691,269.15691569156917,269.2169216921692,269.2769276927693,269.33693369336936,269.3969396939694,269.45694569456947,269.5169516951695,269.5769576957696,269.63696369636966,269.6969696969697,269.75697569756977,269.8169816981698,269.8769876987699,269.93699369936996,269.99699969997,270.0570057005701,270.1170117011701,270.1770177017702,270.2370237023702,270.2970297029703,270.3570357035704,270.4170417041704,270.4770477047705,270.5370537053705,270.5970597059706,270.6570657065707,270.7170717071707,270.7770777077708,270.8370837083708,270.8970897089709,270.957095709571,271.017101710171,271.0771077107711,271.1371137113711,271.1971197119712,271.2571257125713,271.3171317131713,271.3771377137714,271.4371437143714,271.4971497149715,271.5571557155716,271.6171617161716,271.6771677167717,271.7371737173717,271.7971797179718,271.8571857185719,271.9171917191719,271.977197719772,272.037203720372,272.0972097209721,272.15721572157213,272.2172217221722,272.2772277227723,272.3372337233723,272.3972397239724,272.45724572457243,272.5172517251725,272.5772577257726,272.6372637263726,272.6972697269727,272.75727572757273,272.8172817281728,272.8772877287729,272.9372937293729,272.997299729973,273.05730573057303,273.1173117311731,273.1773177317732,273.2373237323732,273.2973297329733,273.35733573357334,273.4173417341734,273.4773477347735,273.53735373537353,273.5973597359736,273.65736573657364,273.7173717371737,273.7773777377738,273.83738373837383,273.8973897389739,273.95739573957394,274.017401740174,274.07740774077405,274.13741374137413,274.1974197419742,274.25742574257424,274.3174317431743,274.37743774377435,274.43744374437443,274.4974497449745,274.55745574557454,274.6174617461746,274.67746774677465,274.73747374737474,274.7974797479748,274.85748574857485,274.9174917491749,274.97749774977495,275.03750375037504,275.0975097509751,275.15751575157515,275.21752175217523,275.27752775277526,275.33753375337534,275.3975397539754,275.45754575457545,275.51755175517553,275.57755775577556,275.63756375637564,275.6975697569757,275.75757575757575,275.81758175817583,275.87758775877586,275.93759375937594,275.99759975997597,276.05760576057605,276.11761176117614,276.17761776177616,276.23762376237624,276.29762976297627,276.35763576357635,276.41764176417644,276.47764776477646,276.53765376537655,276.5976597659766,276.65766576657666,276.71767176717674,276.77767776777677,276.83768376837685,276.8976897689769,276.95769576957696,277.01770177017704,277.07770777077707,277.13771377137715,277.1977197719772,277.25772577257726,277.31773177317734,277.37773777377737,277.43774377437745,277.4977497749775,277.55775577557756,277.61776177617764,277.67776777677767,277.73777377737775,277.7977797779778,277.85778577857786,277.9177917791779,277.977797779778,278.03780378037806,278.0978097809781,278.15781578157817,278.2178217821782,278.2778277827783,278.33783378337836,278.3978397839784,278.45784578457847,278.5178517851785,278.5778577857786,278.63786378637866,278.6978697869787,278.75787578757877,278.8178817881788,278.8778877887789,278.93789378937896,278.997899789979,279.05790579057907,279.1179117911791,279.1779177917792,279.23792379237926,279.2979297929793,279.3579357935794,279.4179417941794,279.4779477947795,279.53795379537956,279.5979597959796,279.6579657965797,279.7179717971797,279.7779777977798,279.8379837983798,279.8979897989799,279.95799579958,280.01800180018,280.0780078007801,280.1380138013801,280.1980198019802,280.2580258025803,280.3180318031803,280.3780378037804,280.4380438043804,280.4980498049805,280.5580558055806,280.6180618061806,280.6780678067807,280.7380738073807,280.7980798079808,280.8580858085809,280.9180918091809,280.978097809781,281.038103810381,281.0981098109811,281.1581158115812,281.2181218121812,281.2781278127813,281.3381338133813,281.3981398139814,281.4581458145815,281.5181518151815,281.5781578157816,281.6381638163816,281.6981698169817,281.75817581758173,281.8181818181818,281.8781878187819,281.9381938193819,281.998199819982,282.05820582058203,282.1182118211821,282.1782178217822,282.2382238223822,282.2982298229823,282.35823582358233,282.4182418241824,282.4782478247825,282.5382538253825,282.5982598259826,282.65826582658264,282.7182718271827,282.7782778277828,282.8382838283828,282.8982898289829,282.95829582958294,283.018301830183,283.0783078307831,283.13831383138313,283.1983198319832,283.25832583258324,283.3183318331833,283.3783378337834,283.43834383438343,283.4983498349835,283.55835583558354,283.6183618361836,283.67836783678365,283.73837383738373,283.7983798379838,283.85838583858384,283.9183918391839,283.97839783978395,284.03840384038403,284.0984098409841,284.15841584158414,284.2184218421842,284.27842784278425,284.33843384338434,284.3984398439844,284.45844584458445,284.51845184518453,284.57845784578456,284.63846384638464,284.6984698469847,284.75847584758475,284.81848184818483,284.87848784878486,284.93849384938494,284.998499849985,285.05850585058505,285.11851185118513,285.17851785178516,285.23852385238524,285.2985298529853,285.35853585358535,285.41854185418543,285.47854785478546,285.53855385538554,285.59855985598557,285.65856585658565,285.71857185718574,285.77857785778576,285.83858385838585,285.8985898589859,285.95859585958596,286.01860186018604,286.07860786078606,286.13861386138615,286.1986198619862,286.25862586258626,286.31863186318634,286.37863786378637,286.43864386438645,286.4986498649865,286.55865586558656,286.61866186618664,286.67866786678667,286.73867386738675,286.7986798679868,286.85868586858686,286.91869186918694,286.97869786978697,287.03870387038705,287.0987098709871,287.15871587158716,287.21872187218725,287.2787278727873,287.33873387338735,287.3987398739874,287.45874587458746,287.5187518751875,287.5787578757876,287.63876387638766,287.6987698769877,287.75877587758777,287.8187818781878,287.8787878787879,287.93879387938796,287.998799879988,288.05880588058807,288.1188118811881,288.1788178817882,288.23882388238826,288.2988298829883,288.35883588358837,288.4188418841884,288.4788478847885,288.53885388538856,288.5988598859886,288.65886588658867,288.7188718871887,288.7788778877888,288.83888388838886,288.8988898889889,288.958895889589,289.018901890189,289.0789078907891,289.13891389138917,289.1989198919892,289.2589258925893,289.3189318931893,289.3789378937894,289.4389438943894,289.4989498949895,289.5589558955896,289.6189618961896,289.6789678967897,289.7389738973897,289.7989798979898,289.8589858985899,289.9189918991899,289.97899789979,290.03900390039,290.0990099009901,290.1590159015902,290.2190219021902,290.2790279027903,290.3390339033903,290.3990399039904,290.4590459045905,290.5190519051905,290.5790579057906,290.6390639063906,290.6990699069907,290.7590759075908,290.8190819081908,290.8790879087909,290.9390939093909,290.999099909991,291.0591059105911,291.1191119111911,291.1791179117912,291.2391239123912,291.2991299129913,291.35913591359133,291.4191419141914,291.4791479147915,291.5391539153915,291.5991599159916,291.65916591659163,291.7191719171917,291.7791779177918,291.8391839183918,291.8991899189919,291.95919591959193,292.019201920192,292.0792079207921,292.1392139213921,292.1992199219922,292.25922592259224,292.3192319231923,292.3792379237924,292.43924392439243,292.4992499249925,292.55925592559254,292.6192619261926,292.6792679267927,292.73927392739273,292.7992799279928,292.85928592859284,292.9192919291929,292.979297929793,293.03930393039303,293.0993099309931,293.15931593159314,293.2193219321932,293.27932793279325,293.33933393339333,293.3993399339934,293.45934593459344,293.5193519351935,293.57935793579355,293.63936393639364,293.6993699369937,293.75937593759375,293.8193819381938,293.87938793879385,293.93939393939394,293.999399939994,294.05940594059405,294.11941194119413,294.17941794179416,294.23942394239424,294.2994299429943,294.35943594359435,294.41944194419443,294.47944794479446,294.53945394539454,294.5994599459946,294.65946594659465,294.71947194719473,294.77947794779476,294.83948394839484,294.8994899489949,294.95949594959495,295.01950195019504,295.07950795079506,295.13951395139514,295.19951995199517,295.25952595259525,295.31953195319534,295.37953795379536,295.43954395439545,295.4995499549955,295.55955595559556,295.61956195619564,295.67956795679567,295.73957395739575,295.7995799579958,295.85958595859586,295.91959195919594,295.97959795979597,296.03960396039605,296.0996099609961,296.15961596159616,296.21962196219624,296.27962796279627,296.33963396339635,296.3996399639964,296.45964596459646,296.51965196519654,296.57965796579657,296.63966396639665,296.6996699669967,296.75967596759676,296.81968196819685,296.8796879687969,296.93969396939696,296.999699969997,297.05970597059707,297.1197119711971,297.1797179717972,297.23972397239726,297.2997299729973,297.35973597359737,297.4197419741974,297.4797479747975,297.53975397539756,297.5997599759976,297.65976597659767,297.7197719771977,297.7797779777978,297.83978397839786,297.8997899789979,297.95979597959797,298.019801980198,298.0798079807981,298.13981398139816,298.1998199819982,298.2598259825983,298.3198319831983,298.3798379837984,298.43984398439846,298.4998499849985,298.5598559855986,298.6198619861986,298.6798679867987,298.73987398739877,298.7998799879988,298.8598859885989,298.9198919891989,298.979897989799,299.039903990399,299.0999099909991,299.1599159915992,299.2199219921992,299.2799279927993,299.3399339933993,299.3999399939994,299.4599459945995,299.5199519951995,299.5799579957996,299.6399639963996,299.6999699969997,299.7599759975998,299.8199819981998,299.8799879987999,299.9399939993999,300.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl deleted file mode 100644 index 1fad51e6b9fb..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env julia -# -# @license Apache-2.0 -# -# Copyright (c) 2018 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, filepath ) - -Generate fixture data and write to file. - -# Arguments - -* `x`: domain -* `filepath::AbstractString`: filepath of the output file - -# Examples - -``` julia -julia> x = range( -1000, stop = 1000, length = 2001 ); -julia> gen( x, \"./data.json\" ); -``` -""" -function gen( x, filepath ) - y = Array{Float64}( undef, length(x) ); - for i in eachindex(x) - y[i] = exp( x[i] ); - end - - data = Dict([ - ("x", x), - ("expected", y) - ]); - - 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 ); - -x = range( -300, stop = 300, length = 10000 ); -out = joinpath( dir, "data.json" ); -gen( x, out ); From 7ece9c1873d1a9c90c5eaa5df07fb28e37d2c5ed Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 15:17:20 +0530 Subject: [PATCH 04/18] added fixtures --- .../math/base/special/expf/lib/expmulti.js | 12 ++- .../math/base/special/expf/lib/main.js | 36 ++++----- .../math/base/special/expf/lib/polyval_p.js | 6 +- .../special/expf/test/fixtures/julia/REQUIRE | 2 + .../julia/medium_negative_float32.json | 1 + .../julia/medium_positive_float32.json | 1 + .../expf/test/fixtures/julia/runner.jl | 80 +++++++++++++++++++ .../julia/small_negative_float32.json | 1 + .../julia/small_positive_float32.json | 1 + .../test/fixtures/julia/tiny_float32.json | 1 + .../math/base/special/expf/test/test.js | 10 +-- .../base/special/expf/test/test.native.js | 10 +-- 12 files changed, 126 insertions(+), 35 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js index 028e582c13a8..51e907f1c231 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js @@ -77,6 +77,7 @@ var polyvalP = require( './polyval_p.js' ); * @param {number} hi - upper bound * @param {number} lo - lower bound * @param {integer} k - power of 2 +* @param {integer} x - power of e * @returns {number} function value */ function expmulti( hi, lo, k ) { @@ -84,13 +85,18 @@ function expmulti( hi, lo, k ) { var t; var c; var y; + var twom100; + twom100 = 7.8886090522e-31; r = hi - lo; t = r * r; - c = r - ( t*polyvalP( t ) ); + c = r - ( t*polyvalP( t ) ); y = 1.0 - ( lo - ( (r*c)/(2.0-c) ) - hi ); - - return ldexpf( y, k ); + if (k >= -125) { + return ldexpf( y , k ); + } else { + return ldexpf( y, k+100 ) * twom100 * twom100; + } } diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js index d7f12baafcee..fd84aabd60de 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js @@ -68,20 +68,23 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' ); var truncf = require( '@stdlib/math/base/special/truncf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var PINF = require( '@stdlib/constants/float32/pinf' ); +var absf = require( '@stdlib/math/base/special/absf' ); var expmulti = require( './expmulti.js' ); // VARIABLES // -var LN2_HI = 0.69314718; -var LN2_LO = 1.90821484e-10; -var LOG2_E = 1.44269504; -var OVERFLOW = 88.3762626647949; -var UNDERFLOW = -103.972084045410; +var LN2_HI = [6.9314575195e-01, -6.9314575195e-01]; +var LN2_LO = [1.4286067653e-06, -1.4286067653e-06]; +var halF = [0.5, -0.5]; +var INVLN2 = 1.4426950216e+00; +var OVERFLOW = 8.8721679688e+01; +var UNDERFLOW = -1.0397208405e+02; var NEARZERO = 1.0 / (1 << 14); var NEG_NEARZERO = -NEARZERO; + // MAIN // /** @@ -165,13 +168,6 @@ var NEG_NEARZERO = -NEARZERO; * * ## Notes * -* - According to an error analysis, the error is always less than \\(1\\) ulp (unit in the last place). -* -* - For an IEEE double, -* -* - if \\(x > 7.09782712893383973096\mbox{e+}02\\), then \\(e^{x}\\) overflows -* - if \\(x < -7.45133219101941108420\mbox{e+}02\\), then \\(e^{x}\\) underflows -* * - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values. * * @param {number} x - input value @@ -197,6 +193,9 @@ function expf( x ) { var hi; var lo; var k; + var xsb; + + xsb = ( x < 0.0 ) ? 1 : 0; if ( isnan( x ) || x === PINF ) { return x; @@ -216,14 +215,11 @@ function expf( x ) { ) { return 1.0 + x; } - // Reduce and compute `r = hi - lo` for extra precision... - if ( x < 0.0 ) { - k = truncf( (LOG2_E*x) - 0.5 ); - } else { - k = truncf( (LOG2_E*x) + 0.5 ); - } - hi = x - (k*LN2_HI); - lo = k * LN2_LO; + // Argument reduction + + k = truncf(INVLN2 * x + halF[xsb]); + hi = x - k * LN2_HI[0]; + lo = k * LN2_LO[0]; return expmulti( hi, lo, k ); } diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js index 358e74384904..a8ba0a88798f 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js @@ -35,10 +35,12 @@ * @returns {number} evaluated polynomial */ function evalpoly( x ) { + var P1 = 1.6666625440e-1; + var P2 = -2.7667332906e-3; if ( x === 0.0 ) { - return 0.16666667; + return P1; } - return 0.16666667 + (x * (-0.0027777778 + (x * (0.00006613757 + (x * (-0.00000165339 + (x * 4.1381368e-8))))))); // eslint-disable-line max-len + return P1 + x*P2 // eslint-disable-line max-len } // EXPORTS // diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json new file mode 100644 index 000000000000..4b21dc1f9bd5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json @@ -0,0 +1 @@ +{"expected":[2.944143e-39,3.216434e-39,3.513907e-39,3.838891e-39,4.193932e-39,4.581844e-39,5.005598e-39,5.468542e-39,5.974301e-39,6.526836e-39,7.130474e-39,7.789937e-39,8.510391e-39,9.297478e-39,1.0157358e-38,1.1096849e-38,1.2123144e-38,1.3244357e-38,1.4469266e-38,1.5807461e-38,1.7269419e-38,1.8866586e-38,2.0611468e-38,2.2517726e-38,2.4600285e-38,2.6875655e-38,2.9361258e-38,3.2076742e-38,3.504337e-38,3.8284368e-38,4.1825107e-38,4.5693316e-38,4.991928e-38,5.4536076e-38,5.9579864e-38,6.509062e-38,7.111055e-38,7.768723e-38,8.487216e-38,9.272158e-38,1.0129697e-37,1.1066545e-37,1.2090038e-37,1.3208189e-37,1.4429752e-37,1.5764413e-37,1.7222389e-37,1.8815208e-37,2.0555338e-37,2.2456404e-37,2.4533292e-37,2.680226e-37,2.9281075e-37,3.1989144e-37,3.494767e-37,3.818011e-37,4.1711207e-37,4.556888e-37,4.978333e-37,5.438756e-37,5.941761e-37,6.4912867e-37,7.091635e-37,7.747507e-37,8.464038e-37,9.246908e-37,1.0102111e-36,1.1036407e-36,1.2057113e-36,1.3172219e-36,1.4390455e-36,1.5721362e-36,1.7175356e-36,1.8763825e-36,2.0499202e-36,2.2395248e-36,2.446648e-36,2.672927e-36,2.9201334e-36,3.190203e-36,3.4852496e-36,3.8075843e-36,4.1597297e-36,4.5444437e-36,4.964738e-36,5.4239447e-36,5.92558e-36,6.473609e-36,7.0723226e-36,7.726409e-36,8.440988e-36,9.2216556e-36,1.0074523e-35,1.1006268e-35,1.20241865e-35,1.3136247e-35,1.4351266e-35,1.5678548e-35,1.7128583e-35,1.8712725e-35,2.0443378e-35,2.233409e-35,2.4399664e-35,2.6656274e-35,2.912159e-35,3.181491e-35,3.4757586e-35,3.797215e-35,4.1484016e-35,4.532068e-35,4.951218e-35,5.4091325e-35,5.909398e-35,6.4559303e-35,7.053009e-35,7.7053086e-35,8.418001e-35,9.196542e-35,1.0047087e-34,1.0976296e-34,1.1991442e-34,1.3100474e-34,1.4312074e-34,1.5635731e-34,1.7081806e-34,1.8661623e-34,2.0387705e-34,2.2273267e-34,2.4333217e-34,2.6583683e-34,2.9042282e-34,3.1728269e-34,3.4662665e-34,3.7868454e-34,4.137073e-34,4.5196913e-34,4.937734e-34,5.394402e-34,5.8933047e-34,6.438349e-34,7.0338014e-34,7.684325e-34,8.395012e-34,9.171427e-34,1.0019649e-33,1.094632e-33,1.1958785e-33,1.3064797e-33,1.42730985e-33,1.5593151e-33,1.7035288e-33,1.8610801e-33,2.0332028e-33,2.2212442e-33,2.4266766e-33,2.6511086e-33,2.8963193e-33,3.164186e-33,3.456827e-33,3.7765327e-33,4.1258063e-33,4.5073828e-33,4.9242494e-33,5.3796705e-33,5.877211e-33,6.420766e-33,7.0146465e-33,7.663398e-33,8.37215e-33,9.146451e-33,9.992363e-33,1.09165104e-32,1.1926127e-32,1.3029119e-32,1.423412e-32,1.5550568e-32,1.6988895e-32,1.856012e-32,2.0276657e-32,2.215195e-32,2.4200681e-32,2.6438887e-32,2.8884097e-32,3.1555452e-32,3.4473867e-32,3.7662192e-32,4.1145708e-32,4.495108e-32,4.9108395e-32,5.3650197e-32,5.861206e-32,6.403281e-32,6.9954903e-32,7.64247e-32,8.3492866e-32,9.121473e-32,9.965151e-32,1.0886781e-31,1.1893648e-31,1.2993636e-31,1.4195357e-31,1.5508218e-31,1.6942501e-31,1.8509434e-31,2.0221284e-31,2.2091456e-31,2.4134592e-31,2.6366888e-31,2.8805437e-31,3.1469517e-31,3.4379984e-31,3.7559628e-31,4.1033343e-31,4.4828323e-31,4.8974287e-31,5.350369e-31,5.8451993e-31,6.385843e-31,6.9764395e-31,7.6216576e-31,8.326549e-31,9.096633e-31,9.937938e-31,1.0857051e-30,1.1861169e-30,1.2958152e-30,1.4156591e-30,1.5465986e-30,1.6896362e-30,1.8459027e-30,2.0166215e-30,2.2031296e-30,2.4068866e-30,2.6294881e-30,2.8726772e-30,3.1383578e-30,3.4286097e-30,3.7457344e-30,4.09216e-30,4.4706243e-30,4.8840914e-30,5.3357983e-30,5.829281e-30,6.368404e-30,6.957387e-30,7.6008435e-30,8.30381e-30,9.07186e-30,9.910874e-30,1.0827484e-29,1.1828867e-29,1.2922864e-29,1.4118038e-29,1.542375e-29,1.685022e-29,1.8408618e-29,2.0111144e-29,2.1971298e-29,2.400332e-29,2.6223273e-29,2.8648542e-29,3.129811e-29,3.4192726e-29,3.735505e-29,4.0809845e-29,4.4584156e-29,4.8707536e-29,5.3212674e-29,5.813406e-29,6.351061e-29,6.9384407e-29,7.580144e-29,8.2811966e-29,9.0470854e-29,9.883808e-29,1.0797915e-28,1.1796564e-28,1.2887671e-28,1.4079592e-28,1.5381746e-28,1.6804332e-28,1.8358485e-28,2.0056376e-28,2.1911295e-28,2.3937768e-28,2.615176e-28,2.8570415e-28,3.1212757e-28,3.409948e-28,3.725318e-28,4.069871e-28,4.446274e-28,4.857489e-28,5.3067353e-28,5.79753e-28,6.333741e-28,6.919519e-28,7.559473e-28,8.258613e-28,9.022414e-28,9.856891e-28,1.0768509e-27,1.1764438e-27,1.2852476e-27,1.4041142e-27,1.5339799e-27,1.6758504e-27,1.830842e-27,2.000168e-27,2.1851541e-27,2.387258e-27,2.6080443e-27,2.84925e-27,3.1127639e-27,3.4006488e-27,3.7151728e-27,4.0587718e-27,4.4341486e-27,4.8442423e-27,5.2922633e-27,5.7817422e-27,6.3164682e-27,6.9006486e-27,7.538858e-27,8.236091e-27,8.997842e-27,9.830011e-27,1.07391425e-26,1.1732355e-26,1.2817426e-26,1.4002904e-26,1.5297967e-26,1.6712804e-26,1.8258492e-26,1.9947134e-26,2.1792034e-26,2.3807477e-26,2.600932e-26,2.8414798e-26,3.104275e-26,3.391388e-26,3.7050415e-26,4.0477032e-26,4.4220563e-26,4.8310316e-26,5.277851e-26,5.765975e-26,6.299243e-26,6.88183e-26,7.5182986e-26,8.2136617e-26,8.973305e-26,9.803204e-26,1.0709857e-25,1.170036e-25,1.2782521e-25,1.3964716e-25,1.5256247e-25,1.6667226e-25,1.82087e-25,1.9892736e-25,2.1732605e-25,2.3742551e-25,2.593839e-25,2.8337309e-25,3.0958094e-25,3.382139e-25,3.6949375e-25,4.0366649e-25,4.4099967e-25,4.817857e-25,5.263458e-25,5.75025e-25,6.282064e-25,6.863063e-25,7.4977955e-25,8.1912624e-25,8.948834e-25,9.77647e-25,1.0680649e-24,1.1668453e-24,1.2747662e-24,1.3926633e-24,1.5214642e-24,1.6621773e-24,1.8159042e-24,1.9838562e-24,2.1673338e-24,2.3677804e-24,2.5867652e-24,2.826003e-24,3.0873785e-24,3.3729156e-24,3.6848608e-24,4.0256566e-24,4.3979705e-24,4.8047364e-24,5.249104e-24,5.734569e-24,6.2649325e-24,6.8443465e-24,7.477377e-24,8.1689245e-24,8.92443e-24,9.749808e-24,1.06515226e-23,1.1636676e-23,1.2712897e-23,1.3888654e-23,1.517315e-23,1.6576443e-23,1.8109591e-23,1.9784461e-23,2.1614233e-23,2.3613232e-23,2.579711e-23,2.8183072e-23,3.078959e-23,3.3637174e-23,3.674812e-23,4.0146782e-23,4.3859937e-23,4.7916336e-23,5.234789e-23,5.7189304e-23,6.247847e-23,6.8257073e-23,7.456985e-23,8.146647e-23,8.900092e-23,9.723219e-23,1.0622516e-22,1.1604942e-22,1.2678228e-22,1.3850778e-22,1.5131772e-22,1.6531301e-22,1.8060204e-22,1.9730507e-22,2.155529e-22,2.3548836e-22,2.5726857e-22,2.8106213e-22,3.0705624e-22,3.3545443e-22,3.6647905e-22,4.003745e-22,4.3740325e-22,4.7785665e-22,5.2205133e-22,5.703334e-22,6.230833e-22,6.807093e-22,7.4366496e-22,8.12443e-22,8.875821e-22,9.696741e-22,1.0593546e-21,1.1573294e-21,1.2643654e-21,1.3813005e-21,1.5090563e-21,1.6486219e-21,1.8010951e-21,1.96767e-21,2.1496506e-21,2.3484617e-21,2.5656697e-21,2.8029564e-21,3.0621887e-21,3.3453963e-21,3.654796e-21,3.9928263e-21,4.3621042e-21,4.765535e-21,5.2062768e-21,5.6877807e-21,6.2138405e-21,6.78853e-21,7.416369e-21,8.102274e-21,8.851615e-21,9.670297e-21,1.0564657e-20,1.1541733e-20,1.2609173e-20,1.3775336e-20,1.504941e-20,1.644126e-20,1.7961834e-20,1.9623041e-20,2.1437883e-20,2.3420663e-20,2.5586729e-20,2.7953124e-20,3.0538377e-20,3.336273e-20,3.644843e-20,3.9819376e-20,4.3502084e-20,4.7525387e-20,5.1920786e-20,5.6722915e-20,6.196895e-20,6.770017e-20,7.396144e-20,8.080178e-20,8.82751e-20,9.643925e-20,1.0535846e-19,1.1510257e-19,1.2574787e-19,1.3737822e-19,1.5008369e-19,1.6396423e-19,1.7912851e-19,1.9569527e-19,2.1379501e-19,2.3356791e-19,2.5516953e-19,2.7876894e-19,3.0455097e-19,3.3271874e-19,3.6349033e-19,3.9710785e-19,4.338345e-19,4.739578e-19,5.177939e-19,5.6568225e-19,6.1799956e-19,6.751554e-19,7.3759737e-19,8.058174e-19,8.803436e-19,9.617625e-19,1.0507114e-18,1.1478868e-18,1.2540542e-18,1.3700358e-18,1.496744e-18,1.6351708e-18,1.7864001e-18,1.9516233e-18,2.1321199e-18,2.3293096e-18,2.5447364e-18,2.7800872e-18,3.037216e-18,3.3181138e-18,3.624991e-18,3.960249e-18,4.326514e-18,4.726671e-18,5.1638185e-18,5.6413958e-18,6.163142e-18,6.7331422e-18,7.355887e-18,8.036199e-18,8.779429e-18,9.591397e-18,1.047846e-17,1.1447607e-17,1.2506343e-17,1.3662996e-17,1.4926623e-17,1.6307116e-17,1.7815353e-17,1.946301e-17,2.1263053e-17,2.3229573e-17,2.5377967e-17,2.7725056e-17,3.0289332e-17,3.3090652e-17,3.615105e-17,3.949449e-17,4.314715e-17,4.7137807e-17,5.1497363e-17,5.6260114e-17,6.1463344e-17,6.71478e-17,7.335827e-17,8.014283e-17,8.7554864e-17,9.56524e-17,1.04498845e-16,1.141639e-16,1.2472237e-16,1.3625736e-16,1.4885916e-16,1.6262645e-16,1.7766768e-16,1.9409933e-16,2.1205067e-16,2.3166224e-16,2.530876e-16,2.7649554e-16,3.020673e-16,3.300041e-16,3.6052462e-16,3.9386786e-16,4.302965e-16,4.700926e-16,5.1356926e-16,5.6106684e-16,6.129573e-16,6.696494e-16,7.3158214e-16,7.992427e-16,8.7316095e-16,9.539155e-16,1.0421426e-15,1.1385256e-15,1.2438225e-15,1.3588577e-15,1.4845321e-15,1.6218357e-15,1.7718317e-15,1.9357e-15,2.1147238e-15,2.3103048e-15,2.5239837e-15,2.757415e-15,3.0124354e-15,3.2910415e-15,3.5954143e-15,3.9279527e-15,4.2912303e-15,4.6881063e-15,5.121687e-15,5.595368e-15,6.1128805e-15,6.6782322e-15,7.295871e-15,7.970632e-15,8.707798e-15,9.513177e-15,1.0393006e-14,1.13542065e-14,1.2404304e-14,1.35515454e-14,1.4804865e-14,1.6174128e-14,1.7669997e-14,1.9304213e-14,2.108961e-14,2.3040087e-14,2.5171005e-14,2.7498953e-14,3.0042202e-14,3.2820728e-14,3.585616e-14,3.917233e-14,4.279528e-14,4.6753213e-14,5.1077296e-14,5.5801196e-14,6.0961984e-14,6.66002e-14,7.275974e-14,7.9489095e-14,8.684067e-14,9.487216e-14,1.0364664e-13,1.1323243e-13,1.23705e-13,1.351459e-13,1.476449e-13,1.613002e-13,1.7621809e-13,1.9251605e-13,2.1032095e-13,2.2977255e-13,2.5102362e-13,2.7423962e-13,2.996033e-13,3.273122e-13,3.575838e-13,3.906558e-13,4.2678572e-13,4.66258e-13,5.0938003e-13,5.564902e-13,6.079585e-13,6.641858e-13,7.2561456e-13,7.9272325e-13,8.660385e-13,9.461362e-13,1.0336399e-12,1.1292385e-12,1.2336765e-12,1.3477735e-12,1.4724255e-12,1.6086031e-12,1.7573786e-12,1.9199104e-12,2.0974739e-12,2.2914637e-12,2.5033905e-12,2.7349225e-12,2.9878628e-12,3.2641962e-12,3.5660932e-12,3.8959044e-12,4.256218e-12,4.6498647e-12,5.079909e-12,5.5497365e-12,6.0630056e-12,6.6237445e-12,7.2363573e-12,7.9056145e-12,8.636784e-12,9.435559e-12,1.030821e-11,1.126159e-11,1.2303121e-11,1.3441004e-11,1.46841e-11,1.6042164e-11,1.7525861e-11,1.9146747e-11,2.0917578e-11,2.2852147e-11,2.4965635e-11,2.7274643e-11,2.9797147e-11,3.2553005e-11,3.556368e-11,3.88528e-11,4.2446192e-11,4.6371844e-11,5.0660653e-11,5.534602e-11,6.046471e-11,6.605694e-11,7.216623e-11,7.88407e-11,8.61323e-11,9.409828e-11,1.02801184e-10,1.1230878e-10,1.2269592e-10,1.340435e-10,1.4644055e-10,1.5998446e-10,1.7478068e-10,1.9094568e-10,2.0860534e-10,2.2789828e-10,2.48976e-10,2.7200261e-10,2.9715944e-10,3.246423e-10,3.5466696e-10,3.8746917e-10,4.233044e-10,4.6245383e-10,5.05225e-10,5.519509e-10,6.029994e-10,6.5876793e-10,7.196943e-10,7.8625695e-10,8.5897417e-10,9.384185e-10,1.0252084e-9,1.1200251e-9,1.2236132e-9,1.3367795e-9,1.4604148e-9,1.5954816e-9,1.7430403e-9,1.9042494e-9,2.0803645e-9,2.2727722e-9,2.48297e-9,2.7126084e-9,2.9634906e-9,3.2375698e-9,3.5370042e-9,3.864125e-9,4.2215e-9,4.6119353e-9,5.038472e-9,5.5044667e-9,6.013549e-9,6.569714e-9,7.17733e-9,7.841128e-9,8.5663325e-9,9.358593e-9,1.02241255e-8,1.1169727e-8,1.2202763e-8,1.3331365e-8,1.456432e-8,1.5911306e-8,1.7382902e-8,1.8990566e-8,2.0746953e-8,2.2665741e-8,2.4761988e-8,2.7052161e-8,2.9554087e-8,3.2287467e-8,3.5273583e-8,3.8535873e-8,4.2099956e-8,4.5993584e-8,5.0247312e-8,5.4894556e-8,5.99715e-8,6.55181e-8,7.157757e-8,7.819744e-8,8.542972e-8,9.333071e-8,1.0196263e-7,1.1139267e-7,1.2169497e-7,1.3295009e-7,1.4524602e-7,1.586793e-7,1.7335498e-7,1.8938793e-7,2.0690374e-7,2.2603929e-7,2.4694484e-7,2.6978387e-7,2.947352e-7,3.2199418e-7,3.517739e-7,3.8430818e-7,4.1985146e-7,4.58682e-7,5.011038e-7,5.4744856e-7,5.980801e-7,6.533943e-7,7.1382436e-7,7.798434e-7,8.519674e-7,9.307628e-7,1.0168457e-6,1.11089e-6,1.2136321e-6,1.3258754e-6,1.4485007e-6,1.5824672e-6,1.7288238e-6,1.8887146e-6,2.063395e-6,2.2542308e-6,2.4627163e-6,2.690484e-6,2.9393143e-6,3.2111607e-6,3.5081491e-6,3.832605e-6,4.187069e-6,4.5743113e-6,4.9973723e-6,5.459561e-6,5.9644963e-6,6.5161307e-6,7.118777e-6,7.7771665e-6,8.496449e-6,9.282254e-6,1.0140736e-5,1.1078605e-5,1.2103224e-5,1.3222608e-5,1.4445518e-5,1.5781516e-5,1.7241091e-5,1.8835657e-5,2.0577698e-5,2.2480854e-5,2.4560002e-5,2.6831469e-5,2.9313012e-5,3.2024065e-5,3.4985856e-5,3.8221533e-5,4.1756502e-5,4.561841e-5,4.983749e-5,5.4446777e-5,5.9482303e-5,6.498361e-5,7.09937e-5,7.755965e-5,8.4732856e-5,9.2569404e-5,0.00010113081,0.000110484034,0.000120702294,0.00013186561,0.00014406124,0.00015738494,0.00017194089,0.00018784308,0.00020521581,0.00022419546,0.0002449305,0.0002675832,0.000292331,0.00031936733,0.00034890446,0.00038117336,0.0004164267,0.00045494025,0.000497016,0.00054298295,0.0005932015,0.0006480645,0.0007080013,0.00077348173,0.00084501784,0.0009231705,0.0010085506,0.0011018278,0.0012037319,0.00131506,0.0014366851,0.0015695582,0.0017147209,0.0018733091,0.0020465637,0.0022358429,0.0024426265,0.0026685363,0.0029153393,0.003184967,0.003479533,0.0038013405,0.0041529126,0.004536998,0.0049566086,0.005415027,0.0059158406,0.006462975,0.0070607085,0.0077137277,0.008427142,0.009206533,0.010058012,0.0109882355,0.012004497,0.013114743,0.014327678,0.015652793,0.017100455,0.018682012,0.02040984,0.022297466,0.024359671,0.026612602,0.029073898,0.031762835,0.034700457,0.037909765,0.041415893,0.045246284,0.049430937,0.054002624,0.058997117,0.06445353,0.07041458,0.076926954,0.084041625,0.09181433,0.10030588,0.109582774,0.11971766,0.13078988,0.14288613,0.15610112,0.17053832,0.18631074,0.20354189,0.22236672,0.24293254,0.26540044,0.28994632,0.3167623,0.3460584,0.37806404,0.4130297,0.45122924,0.49296167,0.5385538,0.5883626,0.642778,0.702226],"x":[-88.721,-88.632545,-88.54409,-88.455635,-88.36718,-88.27872,-88.19026,-88.10181,-88.01335,-87.9249,-87.83644,-87.747986,-87.65953,-87.571075,-87.48262,-87.39416,-87.3057,-87.21725,-87.12879,-87.04034,-86.95188,-86.86343,-86.77497,-86.686516,-86.59806,-86.5096,-86.42114,-86.33269,-86.24423,-86.15578,-86.06732,-85.97887,-85.89041,-85.801956,-85.7135,-85.62504,-85.53658,-85.44813,-85.35967,-85.27122,-85.18276,-85.09431,-85.00585,-84.9174,-84.82894,-84.74048,-84.65202,-84.56357,-84.47511,-84.38666,-84.2982,-84.20975,-84.12129,-84.03284,-83.94438,-83.85592,-83.76746,-83.67901,-83.59055,-83.5021,-83.41364,-83.32519,-83.23673,-83.14828,-83.05982,-82.97136,-82.882904,-82.79445,-82.70599,-82.61754,-82.52908,-82.44063,-82.35217,-82.26372,-82.17526,-82.0868,-81.998344,-81.90989,-81.821434,-81.73298,-81.64452,-81.55607,-81.46761,-81.37916,-81.2907,-81.20224,-81.113785,-81.02533,-80.936874,-80.84842,-80.759964,-80.67151,-80.58305,-80.4946,-80.40614,-80.31769,-80.229225,-80.14077,-80.052315,-79.96386,-79.875404,-79.78695,-79.698494,-79.61004,-79.52158,-79.43313,-79.344666,-79.25621,-79.167755,-79.0793,-78.990845,-78.90239,-78.813934,-78.72548,-78.637024,-78.54857,-78.460106,-78.37165,-78.283195,-78.19474,-78.106285,-78.01783,-77.929375,-77.84092,-77.752464,-77.66401,-77.57555,-77.48709,-77.398636,-77.31018,-77.221725,-77.13327,-77.044815,-76.95636,-76.867905,-76.77945,-76.69099,-76.60253,-76.51408,-76.42562,-76.337166,-76.24871,-76.160255,-76.0718,-75.983345,-75.89489,-75.80643,-75.71797,-75.62952,-75.54106,-75.45261,-75.36415,-75.275696,-75.18724,-75.098785,-75.01033,-74.92187,-74.83341,-74.74496,-74.6565,-74.56805,-74.47959,-74.391136,-74.30268,-74.214226,-74.12577,-74.03731,-73.94885,-73.8604,-73.77194,-73.68349,-73.59503,-73.50658,-73.41812,-73.329666,-73.24121,-73.15275,-73.06429,-72.97584,-72.88738,-72.79893,-72.71047,-72.62202,-72.53356,-72.44511,-72.35665,-72.26819,-72.17973,-72.09128,-72.00282,-71.91437,-71.82591,-71.73746,-71.649,-71.56055,-71.47209,-71.38363,-71.29517,-71.20672,-71.11826,-71.02981,-70.94135,-70.8529,-70.76444,-70.67599,-70.58753,-70.49908,-70.410614,-70.32216,-70.2337,-70.14525,-70.05679,-69.96834,-69.87988,-69.79143,-69.70297,-69.61452,-69.526054,-69.4376,-69.349144,-69.26069,-69.17223,-69.08378,-68.99532,-68.90687,-68.81841,-68.72996,-68.641495,-68.55304,-68.464584,-68.37613,-68.287674,-68.19922,-68.11076,-68.02231,-67.93385,-67.8454,-67.756935,-67.66848,-67.580025,-67.49157,-67.403114,-67.31466,-67.226204,-67.13775,-67.04929,-66.96084,-66.872375,-66.78392,-66.695465,-66.60701,-66.518555,-66.4301,-66.341644,-66.25319,-66.164734,-66.07628,-65.987816,-65.89936,-65.810905,-65.72245,-65.633995,-65.54554,-65.457085,-65.36863,-65.280174,-65.19172,-65.10326,-65.0148,-64.926346,-64.83789,-64.749435,-64.66098,-64.572525,-64.48407,-64.395615,-64.30716,-64.2187,-64.13024,-64.04179,-63.95333,-63.864876,-63.77642,-63.687965,-63.59951,-63.51105,-63.422596,-63.33414,-63.245686,-63.15723,-63.06877,-62.980316,-62.89186,-62.803406,-62.71495,-62.62649,-62.538036,-62.44958,-62.361126,-62.27267,-62.18421,-62.095757,-62.0073,-61.918846,-61.83039,-61.741932,-61.653477,-61.56502,-61.476566,-61.38811,-61.299652,-61.211197,-61.12274,-61.034286,-60.94583,-60.857372,-60.768917,-60.68046,-60.592007,-60.50355,-60.415092,-60.326637,-60.238182,-60.149727,-60.06127,-59.972813,-59.884357,-59.795902,-59.707447,-59.61899,-59.530533,-59.442078,-59.353622,-59.265167,-59.176712,-59.088253,-58.999798,-58.911343,-58.822887,-58.734432,-58.645973,-58.557518,-58.469063,-58.380608,-58.292152,-58.203693,-58.11524,-58.026783,-57.938328,-57.849873,-57.761414,-57.67296,-57.584503,-57.496048,-57.407593,-57.319134,-57.23068,-57.142223,-57.05377,-56.965313,-56.876858,-56.7884,-56.699944,-56.61149,-56.523033,-56.434578,-56.34612,-56.257664,-56.16921,-56.080753,-55.9923,-55.90384,-55.815384,-55.72693,-55.638474,-55.55002,-55.46156,-55.373104,-55.28465,-55.196194,-55.10774,-55.01928,-54.930824,-54.84237,-54.753914,-54.66546,-54.577,-54.488544,-54.40009,-54.311634,-54.22318,-54.13472,-54.046265,-53.95781,-53.869354,-53.7809,-53.69244,-53.603985,-53.51553,-53.427074,-53.33862,-53.25016,-53.161705,-53.07325,-52.984795,-52.89634,-52.80788,-52.719425,-52.63097,-52.542515,-52.45406,-52.3656,-52.277145,-52.18869,-52.100235,-52.01178,-51.92332,-51.834866,-51.74641,-51.657955,-51.5695,-51.48104,-51.392586,-51.30413,-51.215675,-51.12722,-51.03876,-50.950306,-50.86185,-50.773396,-50.68494,-50.59648,-50.508026,-50.41957,-50.331116,-50.24266,-50.1542,-50.065746,-49.97729,-49.888836,-49.80038,-49.71192,-49.623466,-49.53501,-49.446556,-49.3581,-49.26964,-49.181187,-49.09273,-49.004276,-48.91582,-48.827362,-48.738907,-48.65045,-48.561996,-48.47354,-48.385082,-48.296627,-48.20817,-48.119717,-48.03126,-47.942802,-47.854347,-47.765892,-47.677437,-47.58898,-47.500526,-47.412067,-47.323612,-47.235157,-47.1467,-47.058247,-46.969788,-46.881332,-46.792877,-46.704422,-46.615967,-46.527508,-46.439053,-46.350597,-46.262142,-46.173687,-46.085228,-45.996773,-45.908318,-45.819862,-45.731407,-45.64295,-45.554493,-45.466038,-45.377583,-45.289127,-45.20067,-45.112213,-45.023758,-44.935303,-44.846848,-44.75839,-44.669933,-44.58148,-44.493023,-44.404568,-44.31611,-44.227654,-44.1392,-44.050743,-43.962288,-43.87383,-43.785374,-43.69692,-43.608463,-43.520008,-43.43155,-43.343094,-43.25464,-43.166183,-43.07773,-42.98927,-42.900814,-42.81236,-42.723904,-42.63545,-42.54699,-42.458534,-42.37008,-42.281624,-42.19317,-42.10471,-42.016254,-41.9278,-41.839344,-41.75089,-41.66243,-41.573975,-41.48552,-41.397064,-41.30861,-41.22015,-41.131695,-41.04324,-40.954784,-40.86633,-40.77787,-40.689415,-40.60096,-40.512505,-40.42405,-40.33559,-40.247135,-40.15868,-40.070225,-39.98177,-39.89331,-39.804855,-39.7164,-39.627945,-39.53949,-39.45103,-39.362576,-39.27412,-39.185665,-39.09721,-39.00875,-38.920296,-38.83184,-38.743385,-38.65493,-38.56647,-38.478016,-38.38956,-38.301105,-38.21265,-38.124195,-38.035736,-37.94728,-37.858826,-37.77037,-37.681915,-37.593456,-37.505,-37.416546,-37.32809,-37.239635,-37.151176,-37.06272,-36.974266,-36.88581,-36.797356,-36.708897,-36.62044,-36.531986,-36.44353,-36.355076,-36.266617,-36.17816,-36.089706,-36.00125,-35.912796,-35.824337,-35.73588,-35.647427,-35.55897,-35.470516,-35.382057,-35.293602,-35.205147,-35.11669,-35.028236,-34.939777,-34.851322,-34.762867,-34.67441,-34.585957,-34.497498,-34.409042,-34.320587,-34.232132,-34.143677,-34.055218,-33.966763,-33.878307,-33.789852,-33.701397,-33.612938,-33.524483,-33.436028,-33.347572,-33.259117,-33.17066,-33.082203,-32.993748,-32.905293,-32.816837,-32.72838,-32.639923,-32.551468,-32.463013,-32.374557,-32.2861,-32.197643,-32.109188,-32.020733,-31.932276,-31.84382,-31.755363,-31.666908,-31.578453,-31.489996,-31.40154,-31.313084,-31.224628,-31.136173,-31.047716,-30.95926,-30.870806,-30.782349,-30.693893,-30.605436,-30.516981,-30.428526,-30.340069,-30.251614,-30.163157,-30.074701,-29.986246,-29.897789,-29.809334,-29.720877,-29.632421,-29.543966,-29.45551,-29.367054,-29.278597,-29.190142,-29.101686,-29.01323,-28.924774,-28.836317,-28.747862,-28.659407,-28.57095,-28.482494,-28.394037,-28.305582,-28.217127,-28.12867,-28.040215,-27.951757,-27.863302,-27.774847,-27.68639,-27.597935,-27.509478,-27.421022,-27.332567,-27.24411,-27.155655,-27.067198,-26.978743,-26.890287,-26.80183,-26.713375,-26.624918,-26.536463,-26.448008,-26.35955,-26.271095,-26.18264,-26.094183,-26.005728,-25.91727,-25.828815,-25.74036,-25.651903,-25.563448,-25.47499,-25.386536,-25.29808,-25.209623,-25.121168,-25.032711,-24.944256,-24.8558,-24.767344,-24.678888,-24.590431,-24.501976,-24.41352,-24.325064,-24.236609,-24.148151,-24.059696,-23.971241,-23.882784,-23.794329,-23.705872,-23.617416,-23.528961,-23.440504,-23.352049,-23.263592,-23.175137,-23.086681,-22.998224,-22.90977,-22.821312,-22.732857,-22.644402,-22.555944,-22.46749,-22.379032,-22.290577,-22.202122,-22.113665,-22.02521,-21.936752,-21.848297,-21.759842,-21.671385,-21.58293,-21.494474,-21.406017,-21.317562,-21.229105,-21.14065,-21.052195,-20.963737,-20.875282,-20.786825,-20.69837,-20.609915,-20.521458,-20.433002,-20.344545,-20.25609,-20.167635,-20.079178,-19.990723,-19.902266,-19.81381,-19.725355,-19.636898,-19.548443,-19.459986,-19.37153,-19.283075,-19.194618,-19.106163,-19.017706,-18.92925,-18.840796,-18.752338,-18.663883,-18.575426,-18.48697,-18.398516,-18.310059,-18.221603,-18.133146,-18.044691,-17.956236,-17.867779,-17.779324,-17.690866,-17.602411,-17.513956,-17.425499,-17.337044,-17.248587,-17.160131,-17.071676,-16.98322,-16.894764,-16.806309,-16.717852,-16.629396,-16.54094,-16.452484,-16.364029,-16.275572,-16.187117,-16.09866,-16.010204,-15.921748,-15.833292,-15.744837,-15.656381,-15.5679245,-15.479468,-15.391012,-15.302557,-15.214101,-15.125645,-15.037189,-14.948732,-14.860277,-14.771821,-14.683365,-14.594909,-14.506453,-14.417997,-14.329541,-14.241085,-14.152629,-14.064173,-13.975718,-13.887261,-13.798805,-13.710349,-13.621893,-13.533438,-13.444982,-13.356525,-13.268069,-13.179614,-13.091158,-13.002702,-12.914246,-12.825789,-12.737334,-12.648878,-12.560422,-12.471966,-12.38351,-12.295054,-12.206598,-12.118142,-12.029686,-11.94123,-11.852775,-11.764318,-11.675862,-11.587406,-11.49895,-11.410495,-11.322039,-11.2335825,-11.145126,-11.056671,-10.968215,-10.879759,-10.791303,-10.702847,-10.614391,-10.525935,-10.437479,-10.349023,-10.260567,-10.1721115,-10.083655,-9.995199,-9.906743,-9.818287,-9.729832,-9.641376,-9.552919,-9.464463,-9.376007,-9.287552,-9.199096,-9.11064,-9.022183,-8.933727,-8.845272,-8.756816,-8.66836,-8.579904,-8.491448,-8.402992,-8.314536,-8.22608,-8.137624,-8.049169,-7.9607124,-7.8722563,-7.7838,-7.6953444,-7.6068883,-7.5184326,-7.4299765,-7.3415203,-7.2530646,-7.1646085,-7.076153,-6.9876966,-6.899241,-6.810785,-6.7223287,-6.633873,-6.545417,-6.456961,-6.368505,-6.280049,-6.191593,-6.103137,-6.0146813,-5.926225,-5.837769,-5.7493134,-5.660857,-5.5724015,-5.4839454,-5.3954897,-5.3070335,-5.2185774,-5.1301217,-5.0416656,-4.95321,-4.8647537,-4.7762976,-4.687842,-4.5993857,-4.51093,-4.422474,-4.334018,-4.245562,-4.157106,-4.0686502,-3.980194,-3.8917382,-3.8032823,-3.7148263,-3.6263704,-3.5379145,-3.4494584,-3.3610024,-3.2725465,-3.1840906,-3.0956347,-3.0071788,-2.9187226,-2.8302667,-2.7418108,-2.653355,-2.564899,-2.476443,-2.387987,-2.299531,-2.211075,-2.1226192,-2.0341632,-1.9457072,-1.8572513,-1.7687953,-1.6803393,-1.5918834,-1.5034274,-1.4149715,-1.3265156,-1.2380595,-1.1496036,-1.0611477,-0.9726917,-0.88423574,-0.79577976,-0.70732385,-0.6188679,-0.5304119,-0.44195595,-0.3535]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json new file mode 100644 index 000000000000..b663a3be8fc3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json @@ -0,0 +1 @@ +{"expected":[1.4240429,1.5557472,1.6996323,1.8568246,2.0285552,2.2161684,2.4211333,2.6450546,2.8896856,3.1569412,3.4489145,3.7678914,4.1163692,4.497076,4.9129934,5.367377,5.863785,6.406104,6.9985795,7.6458516,8.352986,9.125522,9.969505,10.891546,11.898865,12.999345,14.201604,15.515055,16.949982,18.517618,20.230246,22.101261,24.14532,26.378428,28.818066,31.483335,34.395115,37.576183,41.051456,44.848145,48.995975,53.527424,58.477978,63.886364,69.79498,76.25006,83.30211,91.006424,99.423225,108.618515,118.66419,129.639,141.62885,154.72751,169.03769,184.67128,201.75085,220.41005,240.79486,263.0651,287.3949,313.975,343.01324,374.73727,409.39536,447.25864,488.62396,533.81476,583.1853,637.122,696.04675,760.4216,830.7498,907.5828,991.52185,1083.2235,1183.407,1292.8553,1412.4268,1543.0563,1685.7678,1841.6785,2012.0076,2198.0908,2401.383,2623.4783,2866.1143,3131.1907,3420.7798,3737.155,4082.791,4460.3936,4872.919,5323.5923,5815.952,6353.848,6941.492,7583.4785,8284.847,9051.082,9888.184,10802.705,11801.797,12893.302,14085.757,15388.497,16811.723,18366.56,20065.217,21920.975,23948.365,26163.262,28582.98,31226.516,34114.543,37269.67,40716.61,44482.297,48596.3,53090.793,58000.97,63365.266,69225.625,75628.05,82622.61,90264.08,98612.17,107732.45,117696.234,128581.53,140473.56,153465.31,167658.75,183164.9,200105.16,218612.16,238830.56,260919.12,285050.6,311413.88,340215.4,371680.34,406055.7,443610.3,484638.2,529460.6,578427.94,631924.6,690369.06,754218.75,823972.9,900179.2,983433.44,1.0743876e6,1.1737538e6,1.2823088e6,1.4009049e6,1.5304694e6,1.672017e6,1.8266558e6,1.9955945e6,2.1801598e6,2.3817948e6,2.6020782e6,2.842735e6,3.1056462e6,3.3928762e6,3.7066708e6,4.0494872e6,4.4240095e6,4.8331655e6,5.2801675e6,5.7685105e6,6.302019e6,6.88487e6,7.5216195e6,8.2172665e6,8.977251e6,9.807515e6,1.0714587e7,1.1705528e7,1.2788143e7,1.3970858e7,1.5262957e7,1.6674588e7,1.8216742e7,1.9901562e7,2.1742164e7,2.3752994e7,2.5949846e7,2.8349826e7,3.0971768e7,3.3836268e7,3.6965624e7,4.0384476e7,4.4119452e7,4.8199852e7,5.265773e7,5.7527796e7,6.284839e7,6.866094e7,7.501107e7,8.194865e7,8.95277e7,9.780788e7,1.0685367e8,1.1673606e8,1.2753268e8,1.3932758e8,1.5221363e8,1.6629115e8,1.8167064e8,1.9847288e8,2.168287e8,2.3688262e8,2.5879078e8,2.8272512e8,3.0887366e8,3.3743994e8,3.6864886e8,4.0274346e8,4.3999133e8,4.8068496e8,5.2514125e8,5.737102e8,6.2677e8,6.84737e8,7.4806656e8,8.172517e8,8.928372e8,9.754115e8,1.0656227e9,1.1641793e9,1.2718488e9,1.3894789e9,1.5179853e9,1.6583766e9,1.8117555e9,1.9793162e9,2.162378e9,2.3623662e9,2.5808504e9,2.8195466e9,3.080313e9,3.365197e9,3.6764352e9,4.0164513e9,4.3879224e9,4.793741e9,5.2370913e9,5.7214566e9,6.250607e9,6.8287094e9,7.460265e9,8.1502295e9,8.904023e9,9.727515e9,1.0627187e10,1.1610045e10,1.2683805e10,1.3856896e10,1.5138456e10,1.6538572e10,1.8068146e10,1.9739185e10,2.1564811e10,2.355924e10,2.573817e10,2.8118573e10,3.071913e10,3.356026e10,3.666409e10,4.005506e10,4.3759563e10,4.780668e10,5.2228194e10,5.7058537e10,6.233573e10,6.810087e10,7.43992e10,8.128019e10,8.879741e10,9.701005e10,1.0598206e11,1.1578384e11,1.26492385e11,1.3819108e11,1.50972e11,1.649347e11,1.8018873e11,1.9685392e11,2.1506002e11,2.3495036e11,2.566798e11,2.804189e11,3.0635413e11,3.346874e11,3.6564104e11,3.9945824e11,4.3640226e11,4.7676398e11,5.2085765e11,5.690293e11,6.216573e11,6.7915153e11,7.4196445e11,8.105853e11,8.855525e11,9.6745495e11,1.0569303e12,1.1546831e12,1.2614743e12,1.3781421e12,1.505603e12,1.6448491e12,1.7969768e12,1.9631709e12,2.1447353e12,2.3430963e12,2.5597981e12,2.7965472e12,3.055187e12,3.3377466e12,3.646446e12,3.9836889e12,4.35213e12,4.754638e12,5.1943723e12,5.6747864e12,6.1996207e12,6.773007e12,7.399411e12,8.0837476e12,8.831392e12,9.648166e12,1.05405e13,1.1515342e13,1.2580342e13,1.3743865e13,1.501497e13,1.6403665e13,1.7920764e13,1.957817e13,2.1388906e13,2.3367063e13,2.5528222e13,2.7889209e13,3.046855e13,3.3286508e13,3.636502e13,3.972825e13,4.340261e13,4.7416716e13,5.1802167e13,5.6593102e13,6.1827136e13,6.7545365e13,7.379232e13,8.061718e13,8.807309e13,9.621855e13,1.0511735e14,1.148396e14,1.25460575e14,1.3706384e14,1.4974023e14,1.63589e14,1.7871926e14,1.9524816e14,2.1330576e14,2.330334e14,2.5458556e14,2.7813205e14,3.0385518e14,3.3195732e14,3.6265848e14,3.961991e14,4.328433e14,4.7287496e14,5.1660897e14,5.643877e14,6.165853e14,6.7361294e14,7.3591225e14,8.0397325e14,8.78329e14,9.595615e14,1.04831085e15,1.1452642e15,1.2511844e15,1.3669005e15,1.4933188e15,1.631435e15,1.7823188e15,1.9471571e15,2.1272405e15,2.323979e15,2.5389227e15,2.7737355e15,3.0302653e15,3.3105203e15,3.616695e15,3.951201e15,4.3166292e15,4.715854e15,5.152001e15,5.6284854e15,6.149061e15,6.717759e15,7.3390533e15,8.017808e15,8.759337e15,9.569483e15,1.0454521e16,1.142141e16,1.2477722e16,1.3631729e16,1.489252e16,1.6269859e16,1.7774583e16,1.941847e16,2.1214394e16,2.31765e16,2.5319988e16,2.7661715e16,3.0220017e16,3.3014924e16,3.6068457e16,3.940426e16,4.3048573e16,4.7029935e16,5.1379513e16,5.613136e16,6.1322925e16,6.699439e16,7.319039e16,7.995942e16,8.73545e16,9.543387e16,1.042601e17,1.1390263e17,1.24436945e17,1.3594553e17,1.4851908e17,1.622549e17,1.772611e17,1.9365514e17,2.115654e17,2.3113296e17,2.5250937e17,2.7586278e17,3.0137603e17,3.292489e17,3.5970093e17,3.92968e17,4.2931177e17,4.690168e17,5.1239396e17,5.59785e17,6.115569e17,6.6811693e17,7.299079e17,7.974137e17,8.711661e17,9.517361e17,1.0397577e18,1.13592e18,1.2409759e18,1.3557532e18,1.4811404e18,1.6181242e18,1.7677768e18,1.9312703e18,2.1098924e18,2.3050265e18,2.5182076e18,2.7511048e18,3.0055417e18,3.2835224e18,3.5872e18,3.9189635e18,4.28141e18,4.6773774e18,5.109986e18,5.5825845e18,6.0988915e18,6.662949e18,7.2791743e18,7.9524207e18,8.6879033e18,9.491407e18,1.0369223e19,1.1328223e19,1.2375964e19,1.3520559e19,1.4771012e19,1.6137114e19,1.762956e19,1.9260108e19,2.1041385e19,2.2987404e19,2.5113402e19,2.7436023e19,2.9973567e19,3.274568e19,3.5774174e19,3.908276e19,4.2697344e19,4.66464e19,5.0960504e19,5.56736e19,6.082259e19,6.6447785e19,7.259351e19,7.930734e19,8.664211e19,9.465522e19,1.0340944e20,1.1297373e20,1.2342214e20,1.3483688e20,1.4730731e20,1.6093107e20,1.758155e20,1.9207585e20,2.0984003e20,2.2924715e20,2.5044915e20,2.7361306e20,2.9891826e20,3.265638e20,3.5676616e20,3.8976178e20,4.2581063e20,4.6519186e20,5.0821528e20,5.5521773e20,6.0656725e20,6.626658e20,7.239554e20,7.909106e20,8.640582e20,9.4397095e20,1.03127435e21,1.1266564e21,1.2308556e21,1.3446917e21,1.4690559e21,1.6049219e21,1.7533604e21,1.9155204e21,2.0926779e21,2.2862198e21,2.4976615e21,2.728669e21,2.9810308e21,3.2567325e21,3.557932e21,3.8869887e21,4.2464942e21,4.6392326e21,5.0682936e21,5.537036e21,6.0491303e21,6.608612e21,7.219811e21,7.8875374e21,8.6170186e21,9.4139666e21,1.0284659e22,1.1235839e22,1.227499e22,1.3410245e22,1.4650497e22,1.6005513e22,1.7485787e22,1.9102966e22,2.086971e22,2.2799851e22,2.4908597e22,2.7212276e22,2.9729013e22,3.247851e22,3.5482294e22,3.876403e22,4.2349135e22,4.6265808e22,5.054472e22,5.521936e22,6.0326573e22,6.5905893e22,7.200122e22,7.866028e22,8.593519e22,9.38833e22,1.0256612e23,1.1205198e23,1.2241514e23,1.3373674e23,1.4610599e23,1.5961865e23,1.7438102e23,1.9050871e23,2.0812797e23,2.2737761e23,2.4840668e23,2.7138066e23,2.9647939e23,3.238994e23,3.5385665e23,3.865832e23,4.2233648e23,4.6139638e23,5.0406878e23,5.5068982e23,6.0162056e23,6.572616e23,7.180487e23,7.844576e23,8.5701166e23,9.3627264e23,1.0228641e24,1.11746405e24,1.220813e24,1.3337254e24,1.4570755e24,1.5918335e24,1.7390547e24,1.8998917e24,2.0756116e24,2.2675752e24,2.4772925e24,2.7064057e24,2.9567087e24,3.230173e24,3.5289166e24,3.8552894e24,4.211847e24,4.6013812e24,5.02696e24,5.4918805e24,5.999799e24,6.554692e24,7.1609044e24,7.8231835e24,8.5467455e24,9.3371936e24,1.0200747e25,1.1144166e25,1.2174837e25,1.3300882e25,1.4531018e25,1.5874924e25,1.7343121e25,1.8947105e25,2.0699513e25,2.2613914e25,2.470537e25,2.6990252e25,2.9486454e25,3.2213641e25,3.519293e25,3.8447758e25,4.200361e25,4.588833e25,5.0132513e25,5.4769033e25,5.9834366e25,6.536817e25,7.141376e25,7.801879e25,8.523438e25,9.31173e25,1.0172928e26,1.1113775e26,1.2141682e26,1.3264609e26,1.449139e26,1.5831632e26,1.7295826e26,1.8895507e26,2.0643063e26,2.2552244e26,2.4637995e26,2.6916648e26,2.9406154e26,3.212579e26,3.5096956e26,3.8342908e26,4.1889062e26,4.576336e26,4.99958e26,5.4619677e26,5.9671196e26,6.51899e26,7.1219285e26,7.780602e26,8.500193e26,9.286337e26,1.0145186e27,1.1083509e27,1.21085705e27,1.3228436e27,1.4451871e27,1.5788458e27,1.7248724e27,1.8843978e27,2.0586769e27,2.2490741e27,2.4570805e27,2.6843345e27,2.932596e27,3.203818e27,3.5001242e27,3.8238344e27,4.1774987e27,4.563856e27,4.9859454e27,5.4470726e27,5.9508464e27,6.501212e27,7.1024793e27,7.759354e27,8.477045e27,9.261047e27,1.0117558e28,1.1053283e28,1.2075549e28,1.319236e28,1.4412461e28,1.57454e28,1.7201619e28,1.8792516e28,2.0530706e28,2.2429494e28,2.4503892e28,2.6770142e28,2.9245986e28,3.195081e28,3.490579e28,3.8134063e28,4.1660906e28,4.5513927e28,4.9723676e28,5.4322383e28,5.9346405e28,6.483508e28,7.083137e28,7.738223e28,8.4538955e28,9.235756e28,1.0089928e29,1.1023098e29,1.20426645e29,1.3156434e29,1.4373211e29,1.5702521e29,1.7154774e29,1.8741339e29,2.0474638e29,2.236824e29,2.4436973e29,2.6697036e29,2.916634e29,3.1863798e29,3.481073e29,3.8030215e29,4.154745e29,4.5389977e29,4.9587885e29,5.4174036e29,5.918434e29,6.465802e29,7.063847e29,7.71715e29,8.4308726e29,9.210604e29,1.006245e30,1.0993079e30,1.2009777e30,1.3120505e30,1.433396e30,1.565964e30,1.7108056e30,1.86903e30,2.041888e30,2.2307326e30,2.4370426e30,2.662433e30,2.9086692e30,3.177678e30,3.4715668e30,3.7926357e30,4.1434303e30,4.526637e30,4.9452842e30,5.40265e30,5.902316e30,6.448194e30,7.044557e30,7.696075e30,8.407849e30,9.185451e30,1.00349704e31,1.0963141e31,1.1977071e31,1.3084775e31,1.4294924e31,1.5616994e31,1.7061337e31,1.8639259e31,2.0363117e31,2.2246406e31,2.4303872e31,2.6551826e31,2.9007479e31,3.1690245e31,3.4621128e31,3.7823072e31,4.132115e31,4.514275e31,4.931779e31,5.3878966e31,5.886198e31,6.4306333e31,7.0253726e31,7.6751165e31,8.384952e31,9.160437e31,1.0007643e32,1.0933202e32,1.1944363e32,1.3049041e32,1.4255885e32,1.5574465e32,1.7014875e32,1.85885e32,2.0307664e32,2.2185824e32,2.4237686e32,2.6479315e32,2.8928264e32,3.1603702e32,3.452658e32,3.772007e32,4.120862e32,4.5019813e32,4.9183485e32,5.3732234e32,5.8701678e32,6.413072e32,7.0061874e32,7.654156e32,8.362054e32,9.13549e32,9.980389e32,1.09034285e33,1.1911835e33,1.3013504e33,1.4217064e33,1.5531932e33,1.6968409e33,1.8537736e33,2.0252204e33,2.2125405e33,2.417168e33,2.6407205e33,2.8849484e33,3.1517638e33,3.4432556e33,3.761706e33,4.1096087e33,4.489687e33,4.904917e33,5.3585906e33,5.854182e33,6.3956074e33,6.987107e33,7.6333116e33,8.339281e33,9.1105423e33,9.953133e33,1.0873652e34,1.1879305e34,1.2978066e34,1.4178346e34,1.5489634e34,1.6922198e34,1.8487253e34,2.0197052e34,2.2064984e34,2.4105669e34,2.633509e34,2.87707e34,3.1431805e34,3.4338785e34,3.751462e34,4.098417e34,4.4774603e34,4.8915596e34,5.343957e34,5.8381945e34,6.378142e34,6.9680263e34,7.612524e34,8.316571e34,9.085731e34,9.926028e34,1.084404e35,1.1846954e35,1.29426235e35,1.4139626e35,1.5447334e35,1.6875985e35,1.8436766e35,2.0142049e35,2.2004893e35,2.4040023e35,2.6263371e35,2.8692348e35,3.1345969e35,3.424501e35,3.7412172e35,4.087225e35,4.465233e35,4.8782384e35,5.329404e35,5.8222954e35,6.3607724e35,6.949051e35,7.591735e35,8.293859e35,9.060919e35,9.898922e35,1.0814426e36,1.1814692e36,1.2907377e36,1.410112e36,1.5405267e36,1.6830027e36,1.8386557e36,2.0087044e36,2.19448e36,2.3974372e36,2.619165e36,2.861421e36,3.1260603e36,3.4151753e36,3.7310288e36,4.076094e36,4.4530727e36,4.8649166e36,5.3148498e36,5.8063956e36,6.3434016e36,6.930126e36,7.571061e36,8.2712725e36,9.036244e36,9.871964e36,1.0784975e37,1.1782427e37,1.2872129e37,1.4062611e37,1.5363196e37,1.6784195e37,1.8336486e37,2.0032341e37,2.188504e37,2.3909082e37,2.612032e37,2.8536067e37,3.1175235e37,3.4058486e37,3.7208395e37,4.0649937e37,4.4409456e37,4.851668e37,5.300376e37,5.790583e37,6.3261267e37,6.9112006e37,7.550385e37,8.2486846e37,9.011567e37,9.84508e37,1.0755605e38,1.175034e38,1.2837074e38,1.4024315e38,1.5321358e38,1.6738359e38,1.8286412e38,1.9977636e38,2.1825272e38,2.3843972e38,2.604919e38,2.8458356e38,3.1090336e38,3.3965734e38],"x":[0.3535,0.44195595,0.5304119,0.6188679,0.70732385,0.79577976,0.88423574,0.9726917,1.0611477,1.1496036,1.2380595,1.3265156,1.4149715,1.5034274,1.5918834,1.6803393,1.7687953,1.8572513,1.9457072,2.0341632,2.1226192,2.211075,2.299531,2.387987,2.476443,2.564899,2.653355,2.7418108,2.8302667,2.9187226,3.0071788,3.0956347,3.1840906,3.2725465,3.3610024,3.4494584,3.5379145,3.6263704,3.7148263,3.8032823,3.8917382,3.980194,4.0686502,4.157106,4.245562,4.334018,4.422474,4.51093,4.5993857,4.687842,4.7762976,4.8647537,4.95321,5.0416656,5.1301217,5.2185774,5.3070335,5.3954897,5.4839454,5.5724015,5.660857,5.7493134,5.837769,5.926225,6.0146813,6.103137,6.191593,6.280049,6.368505,6.456961,6.545417,6.633873,6.7223287,6.810785,6.899241,6.9876966,7.076153,7.1646085,7.2530646,7.3415203,7.4299765,7.5184326,7.6068883,7.6953444,7.7838,7.8722563,7.9607124,8.049169,8.137624,8.22608,8.314536,8.402992,8.491448,8.579904,8.66836,8.756816,8.845272,8.933727,9.022183,9.11064,9.199096,9.287552,9.376007,9.464463,9.552919,9.641376,9.729832,9.818287,9.906743,9.995199,10.083655,10.1721115,10.260567,10.349023,10.437479,10.525935,10.614391,10.702847,10.791303,10.879759,10.968215,11.056671,11.145126,11.2335825,11.322039,11.410495,11.49895,11.587406,11.675862,11.764318,11.852775,11.94123,12.029686,12.118142,12.206598,12.295054,12.38351,12.471966,12.560422,12.648878,12.737334,12.825789,12.914246,13.002702,13.091158,13.179614,13.268069,13.356525,13.444982,13.533438,13.621893,13.710349,13.798805,13.887261,13.975718,14.064173,14.152629,14.241085,14.329541,14.417997,14.506453,14.594909,14.683365,14.771821,14.860277,14.948732,15.037189,15.125645,15.214101,15.302557,15.391012,15.479468,15.5679245,15.656381,15.744837,15.833292,15.921748,16.010204,16.09866,16.187117,16.275572,16.364029,16.452484,16.54094,16.629396,16.717852,16.806309,16.894764,16.98322,17.071676,17.160131,17.248587,17.337044,17.425499,17.513956,17.602411,17.690866,17.779324,17.867779,17.956236,18.044691,18.133146,18.221603,18.310059,18.398516,18.48697,18.575426,18.663883,18.752338,18.840796,18.92925,19.017706,19.106163,19.194618,19.283075,19.37153,19.459986,19.548443,19.636898,19.725355,19.81381,19.902266,19.990723,20.079178,20.167635,20.25609,20.344545,20.433002,20.521458,20.609915,20.69837,20.786825,20.875282,20.963737,21.052195,21.14065,21.229105,21.317562,21.406017,21.494474,21.58293,21.671385,21.759842,21.848297,21.936752,22.02521,22.113665,22.202122,22.290577,22.379032,22.46749,22.555944,22.644402,22.732857,22.821312,22.90977,22.998224,23.086681,23.175137,23.263592,23.352049,23.440504,23.528961,23.617416,23.705872,23.794329,23.882784,23.971241,24.059696,24.148151,24.236609,24.325064,24.41352,24.501976,24.590431,24.678888,24.767344,24.8558,24.944256,25.032711,25.121168,25.209623,25.29808,25.386536,25.47499,25.563448,25.651903,25.74036,25.828815,25.91727,26.005728,26.094183,26.18264,26.271095,26.35955,26.448008,26.536463,26.624918,26.713375,26.80183,26.890287,26.978743,27.067198,27.155655,27.24411,27.332567,27.421022,27.509478,27.597935,27.68639,27.774847,27.863302,27.951757,28.040215,28.12867,28.217127,28.305582,28.394037,28.482494,28.57095,28.659407,28.747862,28.836317,28.924774,29.01323,29.101686,29.190142,29.278597,29.367054,29.45551,29.543966,29.632421,29.720877,29.809334,29.897789,29.986246,30.074701,30.163157,30.251614,30.340069,30.428526,30.516981,30.605436,30.693893,30.782349,30.870806,30.95926,31.047716,31.136173,31.224628,31.313084,31.40154,31.489996,31.578453,31.666908,31.755363,31.84382,31.932276,32.020733,32.109188,32.197643,32.2861,32.374557,32.463013,32.551468,32.639923,32.72838,32.816837,32.905293,32.993748,33.082203,33.17066,33.259117,33.347572,33.436028,33.524483,33.612938,33.701397,33.789852,33.878307,33.966763,34.055218,34.143677,34.232132,34.320587,34.409042,34.497498,34.585957,34.67441,34.762867,34.851322,34.939777,35.028236,35.11669,35.205147,35.293602,35.382057,35.470516,35.55897,35.647427,35.73588,35.824337,35.912796,36.00125,36.089706,36.17816,36.266617,36.355076,36.44353,36.531986,36.62044,36.708897,36.797356,36.88581,36.974266,37.06272,37.151176,37.239635,37.32809,37.416546,37.505,37.593456,37.681915,37.77037,37.858826,37.94728,38.035736,38.124195,38.21265,38.301105,38.38956,38.478016,38.56647,38.65493,38.743385,38.83184,38.920296,39.00875,39.09721,39.185665,39.27412,39.362576,39.45103,39.53949,39.627945,39.7164,39.804855,39.89331,39.98177,40.070225,40.15868,40.247135,40.33559,40.42405,40.512505,40.60096,40.689415,40.77787,40.86633,40.954784,41.04324,41.131695,41.22015,41.30861,41.397064,41.48552,41.573975,41.66243,41.75089,41.839344,41.9278,42.016254,42.10471,42.19317,42.281624,42.37008,42.458534,42.54699,42.63545,42.723904,42.81236,42.900814,42.98927,43.07773,43.166183,43.25464,43.343094,43.43155,43.520008,43.608463,43.69692,43.785374,43.87383,43.962288,44.050743,44.1392,44.227654,44.31611,44.404568,44.493023,44.58148,44.669933,44.75839,44.846848,44.935303,45.023758,45.112213,45.20067,45.289127,45.377583,45.466038,45.554493,45.64295,45.731407,45.819862,45.908318,45.996773,46.085228,46.173687,46.262142,46.350597,46.439053,46.527508,46.615967,46.704422,46.792877,46.881332,46.969788,47.058247,47.1467,47.235157,47.323612,47.412067,47.500526,47.58898,47.677437,47.765892,47.854347,47.942802,48.03126,48.119717,48.20817,48.296627,48.385082,48.47354,48.561996,48.65045,48.738907,48.827362,48.91582,49.004276,49.09273,49.181187,49.26964,49.3581,49.446556,49.53501,49.623466,49.71192,49.80038,49.888836,49.97729,50.065746,50.1542,50.24266,50.331116,50.41957,50.508026,50.59648,50.68494,50.773396,50.86185,50.950306,51.03876,51.12722,51.215675,51.30413,51.392586,51.48104,51.5695,51.657955,51.74641,51.834866,51.92332,52.01178,52.100235,52.18869,52.277145,52.3656,52.45406,52.542515,52.63097,52.719425,52.80788,52.89634,52.984795,53.07325,53.161705,53.25016,53.33862,53.427074,53.51553,53.603985,53.69244,53.7809,53.869354,53.95781,54.046265,54.13472,54.22318,54.311634,54.40009,54.488544,54.577,54.66546,54.753914,54.84237,54.930824,55.01928,55.10774,55.196194,55.28465,55.373104,55.46156,55.55002,55.638474,55.72693,55.815384,55.90384,55.9923,56.080753,56.16921,56.257664,56.34612,56.434578,56.523033,56.61149,56.699944,56.7884,56.876858,56.965313,57.05377,57.142223,57.23068,57.319134,57.407593,57.496048,57.584503,57.67296,57.761414,57.849873,57.938328,58.026783,58.11524,58.203693,58.292152,58.380608,58.469063,58.557518,58.645973,58.734432,58.822887,58.911343,58.999798,59.088253,59.176712,59.265167,59.353622,59.442078,59.530533,59.61899,59.707447,59.795902,59.884357,59.972813,60.06127,60.149727,60.238182,60.326637,60.415092,60.50355,60.592007,60.68046,60.768917,60.857372,60.94583,61.034286,61.12274,61.211197,61.299652,61.38811,61.476566,61.56502,61.653477,61.741932,61.83039,61.918846,62.0073,62.095757,62.18421,62.27267,62.361126,62.44958,62.538036,62.62649,62.71495,62.803406,62.89186,62.980316,63.06877,63.15723,63.245686,63.33414,63.422596,63.51105,63.59951,63.687965,63.77642,63.864876,63.95333,64.04179,64.13024,64.2187,64.30716,64.395615,64.48407,64.572525,64.66098,64.749435,64.83789,64.926346,65.0148,65.10326,65.19172,65.280174,65.36863,65.457085,65.54554,65.633995,65.72245,65.810905,65.89936,65.987816,66.07628,66.164734,66.25319,66.341644,66.4301,66.518555,66.60701,66.695465,66.78392,66.872375,66.96084,67.04929,67.13775,67.226204,67.31466,67.403114,67.49157,67.580025,67.66848,67.756935,67.8454,67.93385,68.02231,68.11076,68.19922,68.287674,68.37613,68.464584,68.55304,68.641495,68.72996,68.81841,68.90687,68.99532,69.08378,69.17223,69.26069,69.349144,69.4376,69.526054,69.61452,69.70297,69.79143,69.87988,69.96834,70.05679,70.14525,70.2337,70.32216,70.410614,70.49908,70.58753,70.67599,70.76444,70.8529,70.94135,71.02981,71.11826,71.20672,71.29517,71.38363,71.47209,71.56055,71.649,71.73746,71.82591,71.91437,72.00282,72.09128,72.17973,72.26819,72.35665,72.44511,72.53356,72.62202,72.71047,72.79893,72.88738,72.97584,73.06429,73.15275,73.24121,73.329666,73.41812,73.50658,73.59503,73.68349,73.77194,73.8604,73.94885,74.03731,74.12577,74.214226,74.30268,74.391136,74.47959,74.56805,74.6565,74.74496,74.83341,74.92187,75.01033,75.098785,75.18724,75.275696,75.36415,75.45261,75.54106,75.62952,75.71797,75.80643,75.89489,75.983345,76.0718,76.160255,76.24871,76.337166,76.42562,76.51408,76.60253,76.69099,76.77945,76.867905,76.95636,77.044815,77.13327,77.221725,77.31018,77.398636,77.48709,77.57555,77.66401,77.752464,77.84092,77.929375,78.01783,78.106285,78.19474,78.283195,78.37165,78.460106,78.54857,78.637024,78.72548,78.813934,78.90239,78.990845,79.0793,79.167755,79.25621,79.344666,79.43313,79.52158,79.61004,79.698494,79.78695,79.875404,79.96386,80.052315,80.14077,80.229225,80.31769,80.40614,80.4946,80.58305,80.67151,80.759964,80.84842,80.936874,81.02533,81.113785,81.20224,81.2907,81.37916,81.46761,81.55607,81.64452,81.73298,81.821434,81.90989,81.998344,82.0868,82.17526,82.26372,82.35217,82.44063,82.52908,82.61754,82.70599,82.79445,82.882904,82.97136,83.05982,83.14828,83.23673,83.32519,83.41364,83.5021,83.59055,83.67901,83.76746,83.85592,83.94438,84.03284,84.12129,84.20975,84.2982,84.38666,84.47511,84.56357,84.65202,84.74048,84.82894,84.9174,85.00585,85.09431,85.18276,85.27122,85.35967,85.44813,85.53658,85.62504,85.7135,85.801956,85.89041,85.97887,86.06732,86.15578,86.24423,86.33269,86.42114,86.5096,86.59806,86.686516,86.77497,86.86343,86.95188,87.04034,87.12879,87.21725,87.3057,87.39416,87.48262,87.571075,87.65953,87.747986,87.83644,87.9249,88.01335,88.10181,88.19026,88.27872,88.36718,88.455635,88.54409,88.632545,88.721]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..f654b0bf8aad --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl @@ -0,0 +1,80 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, filepath ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `filepath::AbstractString`: filepath of the output file + +# Examples + +``` julia +julia> x = range( -100, stop = 100, length = 2001 ); +julia> gen( x, \"./data.json\" ); +``` +""" +function gen( domain, filepath ) + x = collect( domain ); + y = exp.( x ); + data = Dict([ + ("x", x), + ("expected", y) + ]); + 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 ); + +# Medium negative values: +x = Float32.(range( -88.721, stop = -0.3535, length = 1000 )); +out = joinpath( dir, "./medium_negative_float32.json" ); +gen( x, out ); + +# Medium positive_float32 values: +x = Float32.(range( 0.3535, stop = 88.721, length = 1000 )); +out = joinpath( dir, "./medium_positive_float32.json" ); +gen( x, out ); + +# Small negative_float32 values: +x = Float32.(range( -0.3535, stop = -2.0^-14, length = 1000 )); +out = joinpath( dir, "./small_negative_float32.json" ); +gen( x, out ); + +# Small positive_float32 values: +x = Float32.(range( 2.0^-14, stop = 0.3535, length = 1000 )); +out = joinpath( dir, "./small_positive_float32.json" ); +gen( x, out ); + +# Tiny values: +x = Float32.(range( -2.0^-14, stop = 2.0^-14, length = 1000 )); +out = joinpath( dir, "./tiny_float32.json" ); +gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json new file mode 100644 index 000000000000..e6482626928e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json @@ -0,0 +1 @@ +{"expected":[0.702226,0.7024745,0.702723,0.7029717,0.7032205,0.7034693,0.70371825,0.7039673,0.70421636,0.70446557,0.70471483,0.7049642,0.70521367,0.7054632,0.7057128,0.70596254,0.70621234,0.70646226,0.70671225,0.7069623,0.70721245,0.7074627,0.70771307,0.7079635,0.708214,0.7084646,0.70871526,0.7089661,0.70921695,0.7094679,0.709719,0.7099701,0.7102213,0.71047264,0.71072406,0.7109755,0.7112271,0.71147877,0.71173054,0.7119824,0.7122343,0.7124864,0.7127385,0.7129907,0.713243,0.7134954,0.71374786,0.7140004,0.71425307,0.7145058,0.71475863,0.71501154,0.71526456,0.71551764,0.71577084,0.71602416,0.7162775,0.716531,0.71678454,0.71703815,0.7172919,0.7175457,0.7177996,0.7180536,0.7183077,0.7185619,0.71881616,0.7190705,0.71932495,0.71957946,0.7198341,0.72008884,0.72034365,0.7205985,0.7208535,0.7211086,0.7213637,0.721619,0.72187436,0.7221298,0.7223853,0.722641,0.72289664,0.72315246,0.72340834,0.72366434,0.7239204,0.7241766,0.7244328,0.7246892,0.7249456,0.72520214,0.72545874,0.72571546,0.72597224,0.72622913,0.72648615,0.7267432,0.72700036,0.7272576,0.727515,0.72777236,0.7280299,0.7282875,0.72854525,0.72880304,0.72906095,0.7293189,0.729577,0.72983515,0.7300934,0.73035175,0.7306102,0.7308687,0.7311273,0.73138607,0.73164487,0.73190373,0.7321627,0.7324218,0.732681,0.73294026,0.7331996,0.73345906,0.7337186,0.7339783,0.73423797,0.7344978,0.73475766,0.73501766,0.7352778,0.73553795,0.73579824,0.7360586,0.73631907,0.7365796,0.73684025,0.73710096,0.7373618,0.73762274,0.73788375,0.7381448,0.738406,0.7386673,0.73892874,0.73919016,0.7394517,0.73971343,0.73997515,0.740237,0.74049896,0.740761,0.74102306,0.74128526,0.7415476,0.74181,0.74207246,0.7423351,0.74259776,0.74286056,0.7431234,0.7433863,0.7436494,0.7439126,0.7441758,0.7444391,0.7447026,0.7449661,0.74522966,0.74549335,0.74575716,0.7460211,0.746285,0.7465491,0.7468133,0.7470776,0.74734193,0.7476064,0.7478709,0.74813557,0.7484003,0.7486651,0.74893004,0.74919504,0.74946016,0.74972534,0.74999064,0.750256,0.75052154,0.7507871,0.75105274,0.7513185,0.7515844,0.7518503,0.7521164,0.7523825,0.7526488,0.7529151,0.7531815,0.753448,0.7537146,0.75398135,0.75424814,0.75451505,0.754782,0.7550491,0.7553163,0.7555835,0.7558509,0.75611836,0.7563859,0.7566536,0.75692135,0.75718915,0.75745714,0.7577251,0.7579933,0.7582615,0.75852984,0.75879824,0.75906676,0.75933534,0.75960404,0.7598728,0.7601417,0.76041067,0.7606797,0.7609489,0.7612182,0.76148754,0.761757,0.76202655,0.7622962,0.762566,0.7628358,0.7631057,0.76337576,0.7636459,0.7639161,0.7641864,0.7644568,0.7647273,0.76499796,0.7652686,0.7655394,0.7658103,0.7660813,0.76635236,0.76662356,0.7668948,0.7671662,0.76743764,0.76770926,0.7679809,0.7682526,0.7685245,0.76879644,0.7690685,0.76934063,0.76961285,0.7698852,0.77015764,0.77043015,0.7707027,0.7709755,0.7712483,0.7715212,0.7717942,0.7720673,0.77234054,0.7726138,0.77288723,0.7731607,0.7734343,0.773708,0.77398175,0.77425563,0.7745296,0.7748037,0.7750778,0.77535206,0.7756265,0.7759009,0.77617544,0.77645016,0.7767249,0.7769997,0.77727467,0.77754974,0.7778248,0.7781001,0.77837545,0.7786509,0.7789264,0.77920204,0.7794778,0.77975357,0.7800295,0.7803055,0.78058165,0.78085786,0.7811341,0.7814106,0.7816871,0.78196365,0.7822404,0.7825172,0.78279406,0.7830711,0.78334814,0.78362536,0.78390265,0.78418005,0.7844575,0.7847351,0.7850128,0.78529054,0.7855684,0.7858464,0.78612447,0.78640264,0.78668094,0.7869593,0.78723776,0.78751636,0.787795,0.7880738,0.78835267,0.7886316,0.7889107,0.7891898,0.78946906,0.78974843,0.7900279,0.79030746,0.7905871,0.79086685,0.79114676,0.79142666,0.79170674,0.7919869,0.79226714,0.79254746,0.7928279,0.79310846,0.7933891,0.7936699,0.7939507,0.79423165,0.7945127,0.79479384,0.79507506,0.7953564,0.79563785,0.7959194,0.79620105,0.7964828,0.7967646,0.79704654,0.7973286,0.7976107,0.797893,0.79817533,0.79845774,0.79874027,0.7990229,0.7993057,0.7995885,0.79987144,0.80015445,0.8004376,0.8007209,0.8010042,0.80128765,0.8015712,0.8018548,0.80213857,0.8024224,0.80270636,0.8029904,0.8032745,0.80355877,0.8038431,0.8041276,0.8044121,0.80469674,0.80498147,0.8052663,0.8055513,0.8058363,0.80612147,0.80640674,0.80669206,0.8069775,0.8072631,0.80754876,0.8078345,0.80812037,0.8084063,0.8086924,0.80897856,0.8092648,0.8095512,0.80983764,0.81012416,0.81041086,0.8106976,0.8109845,0.8112715,0.81155854,0.8118457,0.812133,0.81242037,0.81270784,0.81299543,0.8132831,0.8135709,0.81385875,0.81414676,0.8144348,0.8147231,0.8150113,0.81529975,0.81558824,0.81587684,0.81616557,0.81645435,0.81674325,0.8170323,0.81732136,0.81761056,0.8178999,0.8181893,0.8184788,0.81876844,0.8190582,0.81934804,0.81963795,0.819928,0.82021815,0.82050836,0.8207987,0.82108915,0.82137966,0.82167035,0.8219611,0.822252,0.8225429,0.82283396,0.8231251,0.8234164,0.82370776,0.8239992,0.8242908,0.8245825,0.8248743,0.82516617,0.82545817,0.82575023,0.8260424,0.8263347,0.82662714,0.8269197,0.8272123,0.827505,0.8277978,0.8280907,0.82838374,0.8286769,0.8289701,0.82926345,0.8295569,0.82985044,0.83014405,0.83043784,0.8307317,0.8310256,0.8313197,0.83161384,0.8319081,0.8322025,0.832497,0.83279157,0.83308625,0.83338106,0.8336759,0.83397096,0.83426607,0.8345612,0.83485657,0.835152,0.8354475,0.8357431,0.8360389,0.8363347,0.83663064,0.8369267,0.8372229,0.8375191,0.83781546,0.83811194,0.83840847,0.8387052,0.83900195,0.83929884,0.83959585,0.8398929,0.8401901,0.8404874,0.84078485,0.84108233,0.84138,0.8416777,0.84197557,0.8422735,0.8425715,0.8428697,0.8431679,0.8434663,0.8437647,0.84406334,0.844362,0.84466076,0.8449597,0.84525865,0.84555775,0.84585696,0.8461563,0.8464557,0.8467552,0.84705484,0.8473546,0.8476544,0.84795433,0.84825444,0.84855455,0.84885484,0.84915525,0.8494557,0.8497563,0.85005695,0.8503578,0.85065866,0.85095966,0.8512608,0.851562,0.8518634,0.8521648,0.85246634,0.85276794,0.8530697,0.8533716,0.8536736,0.85397565,0.85427785,0.8545801,0.85488254,0.85518503,0.85548764,0.8557904,0.85609317,0.85639614,0.85669917,0.8570023,0.8573055,0.8576089,0.85791236,0.858216,0.8585197,0.8588234,0.85912734,0.8594313,0.8597354,0.8600397,0.860344,0.86064845,0.860953,0.8612577,0.86156243,0.86186725,0.86217225,0.86247736,0.86278254,0.86308783,0.86339325,0.8636987,0.8640044,0.8643101,0.864616,0.8649219,0.86522794,0.8655341,0.8658404,0.8661468,0.8664533,0.86675984,0.86706656,0.8673734,0.8676803,0.86798733,0.8682945,0.86860174,0.8689091,0.86921656,0.8695241,0.86983186,0.8701396,0.8704475,0.87075555,0.87106365,0.8713719,0.87168026,0.8719887,0.8722972,0.8726059,0.8729147,0.87322354,0.8735326,0.87384164,0.8741509,0.8744602,0.8747696,0.87507915,0.87538886,0.87569857,0.87600845,0.87631845,0.8766285,0.87693876,0.87724906,0.8775595,0.87786996,0.8781806,0.8784914,0.87880224,0.8791132,0.8794243,0.87973547,0.8800468,0.88035816,0.8806697,0.8809813,0.88129306,0.8816049,0.8819169,0.882229,0.8825411,0.88285345,0.88316584,0.88347834,0.88379097,0.8841037,0.8844165,0.8847295,0.88504255,0.8853558,0.88566905,0.88598245,0.8862959,0.88660955,0.8869233,0.88723713,0.88755107,0.8878651,0.8881793,0.8884936,0.888808,0.88912255,0.88943714,0.88975185,0.89006674,0.8903817,0.89069676,0.8910119,0.8913272,0.89164263,0.8919581,0.8922737,0.8925895,0.89290535,0.8932213,0.89353734,0.89385355,0.89416987,0.89448625,0.89480275,0.8951194,0.89543617,0.89575297,0.89606994,0.89638704,0.89670426,0.89702153,0.8973389,0.8976565,0.89797413,0.8982919,0.89860976,0.8989277,0.8992458,0.899564,0.8998823,0.9002007,0.9005193,0.90083796,0.9011567,0.9014756,0.9017946,0.9021137,0.9024329,0.9027522,0.9030717,0.90339124,0.9037109,0.9040307,0.9043506,0.9046706,0.90499073,0.9053109,0.9056313,0.90595174,0.90627235,0.906593,0.9069138,0.9072347,0.90755576,0.9078769,0.9081982,0.90851957,0.908841,0.90916264,0.9094843,0.9098062,0.9101281,0.91045016,0.9107723,0.9110946,0.911417,0.9117395,0.9120621,0.91238487,0.91270775,0.9130307,0.9133538,0.913677,0.9140003,0.9143237,0.9146472,0.9149709,0.91529465,0.91561854,0.91594255,0.9162667,0.91659087,0.91691524,0.91723967,0.9175643,0.91788894,0.9182137,0.91853863,0.91886365,0.9191888,0.91951406,0.91983944,0.92016494,0.92049056,0.92081624,0.9211421,0.9214681,0.9217941,0.92212033,0.9224466,0.922773,0.9230995,0.9234262,0.92375296,0.92407984,0.9244068,0.92473394,0.92506117,0.92538846,0.9257159,0.9260435,0.9263712,0.926699,0.9270269,0.92735493,0.9276831,0.92801136,0.9283397,0.92866826,0.92899686,0.9293256,0.9296544,0.9299834,0.93031245,0.93064165,0.93097097,0.9313004,0.93162996,0.9319596,0.93228936,0.9326193,0.9329493,0.93327945,0.93360966,0.93394005,0.9342705,0.9346011,0.9349318,0.9352627,0.9355936,0.93592465,0.9362559,0.93658715,0.93691856,0.9372501,0.9375818,0.93791354,0.9382454,0.9385774,0.93890953,0.93924177,0.9395741,0.9399066,0.9402392,0.9405719,0.94090474,0.9412377,0.94157076,0.9419039,0.9422372,0.9425706,0.9429042,0.94323784,0.94357157,0.9439055,0.9442395,0.9445736,0.94490784,0.9452422,0.94557667,0.9459113,0.94624597,0.9465808,0.9469158,0.94725084,0.94758606,0.94792134,0.9482568,0.9485923,0.948928,0.94926375,0.9495997,0.9499357,0.95027184,0.9506081,0.9509445,0.95128095,0.9516176,0.9519543,0.9522912,0.95262814,0.95296526,0.95330244,0.9536398,0.9539772,0.9543148,0.9546525,0.9549903,0.9553282,0.9556663,0.95600444,0.95634276,0.95668113,0.9570197,0.9573583,0.9576971,0.95803595,0.958375,0.9587141,0.95905334,0.9593927,0.9597322,0.9600718,0.96041155,0.96075135,0.96109134,0.96143144,0.96177167,0.96211195,0.9624524,0.962793,0.9631337,0.96347445,0.9638154,0.96415645,0.9644976,0.9648389,0.96518034,0.9655219,0.9658635,0.9662053,0.9665472,0.9668892,0.96723133,0.96757364,0.967916,0.9682585,0.9686011,0.9689439,0.96928674,0.9696297,0.96997285,0.97031605,0.97065943,0.9710029,0.9713465,0.9716902,0.97203404,0.972378,0.97272205,0.9730663,0.9734106,0.97375506,0.97409964,0.9744443,0.97478914,0.9751341,0.9754791,0.9758243,0.9761696,0.976515,0.9768606,0.97720623,0.977552,0.97789794,0.97824395,0.97859013,0.9789364,0.9792828,0.97962934,0.979976,0.9803227,0.9806696,0.98101664,0.9813638,0.98171103,0.98205847,0.98240596,0.9827536,0.9831013,0.9834492,0.9837972,0.98414534,0.98449355,0.98484194,0.98519045,0.985539,0.98588777,0.98623663,0.9865856,0.9869347,0.98728395,0.98763335,0.9879828,0.9883324,0.98868215,0.989032,0.98938197,0.989732,0.99008226,0.9904326,0.9907831,0.9911337,0.9914844,0.99183524,0.9921862,0.9925373,0.9928885,0.9932399,0.9935913,0.9939429,0.99429464,0.99464643,0.9949984,0.9953505,0.9957027,0.99605507,0.9964075,0.9967601,0.9971128,0.9974656,0.9978186,0.9981717,0.9985249,0.99887824,0.9992317,0.9995853,0.99993896],"x":[-0.3535,-0.3531462,-0.3527924,-0.35243863,-0.35208482,-0.35173103,-0.35137725,-0.35102347,-0.35066965,-0.35031587,-0.3499621,-0.34960827,-0.3492545,-0.3489007,-0.3485469,-0.3481931,-0.34783933,-0.3474855,-0.34713173,-0.34677795,-0.34642413,-0.34607035,-0.34571657,-0.34536275,-0.34500897,-0.3446552,-0.3443014,-0.3439476,-0.3435938,-0.34324002,-0.3428862,-0.34253243,-0.34217864,-0.34182483,-0.34147105,-0.34111726,-0.34076345,-0.34040967,-0.34005588,-0.33970207,-0.3393483,-0.3389945,-0.3386407,-0.3382869,-0.33793312,-0.33757934,-0.33722553,-0.33687174,-0.33651796,-0.33616415,-0.33581036,-0.33545658,-0.33510277,-0.33474898,-0.3343952,-0.3340414,-0.3336876,-0.33333382,-0.33298,-0.33262622,-0.33227244,-0.33191863,-0.33156484,-0.33121106,-0.33085728,-0.33050346,-0.33014968,-0.3297959,-0.32944208,-0.3290883,-0.32873452,-0.3283807,-0.32802692,-0.32767314,-0.32731932,-0.32696554,-0.32661176,-0.32625794,-0.32590416,-0.32555038,-0.3251966,-0.32484278,-0.324489,-0.3241352,-0.3237814,-0.32342762,-0.32307383,-0.32272002,-0.32236624,-0.32201245,-0.32165864,-0.32130486,-0.32095107,-0.32059726,-0.32024348,-0.3198897,-0.31953588,-0.3191821,-0.3188283,-0.31847453,-0.31812072,-0.31776693,-0.31741315,-0.31705934,-0.31670555,-0.31635177,-0.31599796,-0.31564417,-0.3152904,-0.31493658,-0.3145828,-0.314229,-0.3138752,-0.31352141,-0.31316763,-0.31281382,-0.31246004,-0.31210625,-0.31175247,-0.31139866,-0.31104487,-0.3106911,-0.31033728,-0.3099835,-0.3096297,-0.3092759,-0.3089221,-0.30856833,-0.30821452,-0.30786073,-0.30750695,-0.30715314,-0.30679935,-0.30644557,-0.30609176,-0.30573797,-0.3053842,-0.3050304,-0.3046766,-0.3043228,-0.30396903,-0.3036152,-0.30326143,-0.30290765,-0.30255383,-0.30220005,-0.30184627,-0.30149245,-0.30113867,-0.3007849,-0.30043107,-0.3000773,-0.2997235,-0.29936972,-0.2990159,-0.29866213,-0.29830834,-0.29795453,-0.29760075,-0.29724696,-0.29689315,-0.29653937,-0.29618558,-0.29583177,-0.295478,-0.2951242,-0.2947704,-0.2944166,-0.29406282,-0.293709,-0.29335523,-0.29300144,-0.29264766,-0.29229385,-0.29194006,-0.29158628,-0.29123247,-0.29087868,-0.2905249,-0.2901711,-0.2898173,-0.28946352,-0.2891097,-0.28875592,-0.28840214,-0.28804833,-0.28769454,-0.28734076,-0.28698695,-0.28663316,-0.28627938,-0.2859256,-0.28557178,-0.285218,-0.28486422,-0.2845104,-0.28415662,-0.28380284,-0.28344902,-0.28309524,-0.28274146,-0.28238764,-0.28203386,-0.28168008,-0.28132626,-0.28097248,-0.2806187,-0.2802649,-0.2799111,-0.27955732,-0.27920353,-0.27884972,-0.27849594,-0.27814215,-0.27778834,-0.27743456,-0.27708077,-0.27672696,-0.27637318,-0.2760194,-0.27566558,-0.2753118,-0.274958,-0.2746042,-0.27425042,-0.27389663,-0.27354285,-0.27318904,-0.27283525,-0.27248147,-0.27212766,-0.27177387,-0.2714201,-0.27106628,-0.2707125,-0.2703587,-0.2700049,-0.26965111,-0.26929733,-0.26894352,-0.26858974,-0.26823595,-0.26788214,-0.26752836,-0.26717457,-0.2668208,-0.26646698,-0.2661132,-0.2657594,-0.2654056,-0.2650518,-0.26469803,-0.26434422,-0.26399043,-0.26363665,-0.26328284,-0.26292905,-0.26257527,-0.26222146,-0.26186767,-0.2615139,-0.26116008,-0.2608063,-0.2604525,-0.26009873,-0.2597449,-0.25939113,-0.25903735,-0.25868353,-0.25832975,-0.25797597,-0.25762215,-0.25726837,-0.2569146,-0.25656077,-0.256207,-0.2558532,-0.2554994,-0.2551456,-0.25479183,-0.25443804,-0.25408423,-0.25373045,-0.25337666,-0.25302285,-0.25266907,-0.25231528,-0.25196147,-0.2516077,-0.2512539,-0.2509001,-0.2505463,-0.25019252,-0.24983872,-0.24948493,-0.24913114,-0.24877734,-0.24842355,-0.24806976,-0.24771596,-0.24736217,-0.24700838,-0.24665459,-0.2463008,-0.245947,-0.2455932,-0.24523942,-0.24488562,-0.24453183,-0.24417804,-0.24382424,-0.24347045,-0.24311666,-0.24276286,-0.24240908,-0.24205528,-0.24170148,-0.2413477,-0.2409939,-0.2406401,-0.24028632,-0.23993252,-0.23957874,-0.23922494,-0.23887114,-0.23851736,-0.23816356,-0.23780976,-0.23745598,-0.23710218,-0.2367484,-0.2363946,-0.2360408,-0.23568702,-0.23533322,-0.23497942,-0.23462564,-0.23427184,-0.23391804,-0.23356426,-0.23321046,-0.23285668,-0.23250288,-0.23214908,-0.2317953,-0.2314415,-0.2310877,-0.23073392,-0.23038012,-0.23002633,-0.22967254,-0.22931874,-0.22896495,-0.22861116,-0.22825736,-0.22790357,-0.22754978,-0.22719598,-0.2268422,-0.2264884,-0.22613461,-0.22578081,-0.22542702,-0.22507323,-0.22471943,-0.22436564,-0.22401185,-0.22365806,-0.22330427,-0.22295047,-0.22259668,-0.22224289,-0.2218891,-0.2215353,-0.22118151,-0.22082771,-0.22047393,-0.22012013,-0.21976633,-0.21941255,-0.21905875,-0.21870495,-0.21835117,-0.21799737,-0.21764357,-0.21728979,-0.21693599,-0.21658221,-0.21622841,-0.21587461,-0.21552083,-0.21516703,-0.21481323,-0.21445945,-0.21410565,-0.21375187,-0.21339807,-0.21304427,-0.21269049,-0.21233669,-0.21198289,-0.21162911,-0.21127531,-0.21092153,-0.21056773,-0.21021393,-0.20986015,-0.20950635,-0.20915255,-0.20879877,-0.20844497,-0.20809117,-0.20773739,-0.20738359,-0.2070298,-0.206676,-0.20632221,-0.20596842,-0.20561463,-0.20526083,-0.20490704,-0.20455325,-0.20419946,-0.20384566,-0.20349187,-0.20313808,-0.20278428,-0.20243049,-0.2020767,-0.2017229,-0.20136912,-0.20101532,-0.20066153,-0.20030774,-0.19995394,-0.19960015,-0.19924636,-0.19889256,-0.19853877,-0.19818498,-0.19783118,-0.1974774,-0.1971236,-0.1967698,-0.19641602,-0.19606222,-0.19570842,-0.19535464,-0.19500084,-0.19464706,-0.19429326,-0.19393946,-0.19358568,-0.19323188,-0.19287808,-0.1925243,-0.1921705,-0.1918167,-0.19146292,-0.19110912,-0.19075534,-0.19040154,-0.19004774,-0.18969396,-0.18934016,-0.18898636,-0.18863258,-0.18827878,-0.187925,-0.1875712,-0.1872174,-0.18686362,-0.18650982,-0.18615602,-0.18580224,-0.18544844,-0.18509465,-0.18474086,-0.18438706,-0.18403327,-0.18367948,-0.18332568,-0.1829719,-0.1826181,-0.1822643,-0.18191051,-0.18155672,-0.18120293,-0.18084913,-0.18049534,-0.18014155,-0.17978776,-0.17943396,-0.17908017,-0.17872638,-0.17837259,-0.1780188,-0.177665,-0.17731121,-0.17695741,-0.17660362,-0.17624983,-0.17589603,-0.17554225,-0.17518845,-0.17483465,-0.17448087,-0.17412707,-0.17377327,-0.17341949,-0.17306569,-0.1727119,-0.17235811,-0.17200431,-0.17165053,-0.17129673,-0.17094293,-0.17058915,-0.17023535,-0.16988155,-0.16952777,-0.16917397,-0.16882019,-0.16846639,-0.16811259,-0.16775881,-0.16740501,-0.16705121,-0.16669743,-0.16634363,-0.16598983,-0.16563605,-0.16528225,-0.16492847,-0.16457467,-0.16422087,-0.16386709,-0.16351329,-0.16315949,-0.1628057,-0.16245191,-0.16209812,-0.16174433,-0.16139053,-0.16103674,-0.16068295,-0.16032915,-0.15997536,-0.15962157,-0.15926778,-0.15891398,-0.15856019,-0.1582064,-0.1578526,-0.1574988,-0.15714502,-0.15679123,-0.15643743,-0.15608364,-0.15572985,-0.15537606,-0.15502226,-0.15466847,-0.15431468,-0.15396088,-0.15360709,-0.1532533,-0.1528995,-0.15254572,-0.15219192,-0.15183812,-0.15148434,-0.15113054,-0.15077674,-0.15042296,-0.15006916,-0.14971538,-0.14936158,-0.14900778,-0.148654,-0.1483002,-0.1479464,-0.14759262,-0.14723882,-0.14688502,-0.14653124,-0.14617744,-0.14582366,-0.14546986,-0.14511606,-0.14476228,-0.14440848,-0.14405468,-0.1437009,-0.1433471,-0.14299332,-0.14263952,-0.14228572,-0.14193194,-0.14157814,-0.14122434,-0.14087056,-0.14051676,-0.14016297,-0.13980918,-0.13945538,-0.1391016,-0.1387478,-0.138394,-0.13804021,-0.13768642,-0.13733262,-0.13697883,-0.13662504,-0.13627125,-0.13591745,-0.13556366,-0.13520987,-0.13485608,-0.13450228,-0.1341485,-0.1337947,-0.13344091,-0.13308711,-0.13273332,-0.13237953,-0.13202573,-0.13167194,-0.13131815,-0.13096435,-0.13061056,-0.13025677,-0.12990297,-0.12954919,-0.12919539,-0.1288416,-0.12848781,-0.12813401,-0.12778021,-0.12742643,-0.12707263,-0.12671885,-0.12636505,-0.12601125,-0.12565747,-0.12530367,-0.12494988,-0.12459609,-0.12424229,-0.1238885,-0.12353471,-0.12318092,-0.12282712,-0.12247333,-0.12211954,-0.12176574,-0.12141195,-0.12105816,-0.12070437,-0.12035057,-0.11999678,-0.11964299,-0.1192892,-0.1189354,-0.11858161,-0.11822782,-0.11787403,-0.11752023,-0.11716644,-0.11681265,-0.116458856,-0.11610506,-0.11575127,-0.115397476,-0.115043685,-0.11468989,-0.114336096,-0.113982305,-0.11362851,-0.113274716,-0.112920925,-0.112567134,-0.112213336,-0.111859545,-0.111505754,-0.11115196,-0.110798165,-0.110444374,-0.11009058,-0.10973679,-0.109382994,-0.1090292,-0.10867541,-0.10832162,-0.107967824,-0.10761403,-0.10726024,-0.10690645,-0.10655265,-0.10619886,-0.10584507,-0.10549128,-0.10513748,-0.10478369,-0.1044299,-0.1040761,-0.10372231,-0.10336852,-0.10301473,-0.10266093,-0.10230714,-0.10195335,-0.10159956,-0.10124576,-0.10089197,-0.10053818,-0.10018439,-0.09983059,-0.0994768,-0.09912301,-0.09876922,-0.09841542,-0.09806163,-0.09770784,-0.09735405,-0.09700025,-0.09664646,-0.09629267,-0.09593887,-0.09558508,-0.09523129,-0.0948775,-0.0945237,-0.09416991,-0.09381612,-0.093462326,-0.09310853,-0.09275474,-0.092400946,-0.092047155,-0.09169336,-0.091339566,-0.090985775,-0.090631984,-0.090278186,-0.089924395,-0.089570604,-0.08921681,-0.088863015,-0.088509224,-0.08815543,-0.08780164,-0.087447844,-0.08709405,-0.08674026,-0.086386465,-0.08603267,-0.08567888,-0.08532509,-0.084971294,-0.0846175,-0.08426371,-0.08390992,-0.08355612,-0.08320233,-0.08284854,-0.08249475,-0.08214095,-0.08178716,-0.08143337,-0.08107958,-0.08072578,-0.08037199,-0.0800182,-0.07966441,-0.07931061,-0.07895682,-0.07860303,-0.07824923,-0.07789544,-0.07754165,-0.07718786,-0.07683406,-0.07648027,-0.07612648,-0.07577269,-0.07541889,-0.0750651,-0.07471131,-0.07435752,-0.07400372,-0.07364993,-0.07329614,-0.07294235,-0.07258855,-0.07223476,-0.07188097,-0.071527176,-0.07117338,-0.07081959,-0.070465796,-0.070112005,-0.06975821,-0.069404416,-0.069050625,-0.06869683,-0.068343036,-0.067989245,-0.067635454,-0.067281656,-0.066927865,-0.066574074,-0.06622028,-0.065866485,-0.065512694,-0.0651589,-0.06480511,-0.064451315,-0.06409752,-0.06374373,-0.06338994,-0.063036144,-0.06268235,-0.062328562,-0.061974768,-0.061620977,-0.061267182,-0.060913388,-0.060559597,-0.060205802,-0.05985201,-0.059498217,-0.059144426,-0.05879063,-0.05843684,-0.058083046,-0.057729255,-0.05737546,-0.05702167,-0.056667875,-0.056314085,-0.05596029,-0.0556065,-0.055252705,-0.054898914,-0.05454512,-0.05419133,-0.053837534,-0.053483743,-0.05312995,-0.052776158,-0.052422363,-0.05206857,-0.051714778,-0.051360983,-0.051007193,-0.050653398,-0.050299607,-0.049945813,-0.04959202,-0.049238227,-0.048884436,-0.048530642,-0.04817685,-0.047823057,-0.047469266,-0.04711547,-0.04676168,-0.046407886,-0.046054095,-0.0457003,-0.04534651,-0.044992715,-0.044638924,-0.04428513,-0.04393134,-0.043577544,-0.04322375,-0.04286996,-0.042516164,-0.042162374,-0.04180858,-0.04145479,-0.041100994,-0.040747203,-0.04039341,-0.040039618,-0.039685823,-0.039332032,-0.038978238,-0.038624447,-0.038270652,-0.03791686,-0.037563067,-0.037209276,-0.03685548,-0.03650169,-0.036147896,-0.035794105,-0.03544031,-0.03508652,-0.034732725,-0.03437893,-0.03402514,-0.033671346,-0.033317555,-0.03296376,-0.03260997,-0.032256175,-0.031902384,-0.03154859,-0.031194799,-0.030841006,-0.030487211,-0.030133419,-0.029779626,-0.029425833,-0.02907204,-0.028718248,-0.028364455,-0.028010663,-0.02765687,-0.027303077,-0.026949285,-0.026595492,-0.0262417,-0.025887907,-0.025534114,-0.025180321,-0.024826529,-0.024472736,-0.024118943,-0.02376515,-0.023411358,-0.023057565,-0.022703772,-0.02234998,-0.021996187,-0.021642393,-0.0212886,-0.020934807,-0.020581014,-0.020227222,-0.01987343,-0.019519636,-0.019165844,-0.018812051,-0.018458258,-0.018104466,-0.017750673,-0.01739688,-0.017043088,-0.016689295,-0.016335502,-0.01598171,-0.015627917,-0.015274123,-0.014920331,-0.014566538,-0.014212745,-0.013858953,-0.01350516,-0.013151367,-0.0127975745,-0.012443782,-0.012089989,-0.0117361965,-0.011382404,-0.011028611,-0.0106748175,-0.010321025,-0.009967232,-0.009613439,-0.009259647,-0.008905854,-0.008552061,-0.008198269,-0.007844476,-0.007490683,-0.00713689,-0.0067830975,-0.006429305,-0.006075512,-0.0057217195,-0.0053679263,-0.0050141336,-0.004660341,-0.0043065483,-0.0039527556,-0.0035989627,-0.00324517,-0.0028913773,-0.0025375844,-0.0021837917,-0.0018299989,-0.0014762062,-0.0011224134,-0.0007686207,-0.00041482793,-6.1035156e-5]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json new file mode 100644 index 000000000000..bfd029639739 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json @@ -0,0 +1 @@ +{"expected":[1.000061,1.000415,1.0007689,1.0011231,1.0014772,1.0018317,1.0021862,1.0025408,1.0028956,1.0032505,1.0036055,1.0039606,1.0043159,1.0046712,1.0050267,1.0053824,1.0057381,1.006094,1.00645,1.0068061,1.0071625,1.0075188,1.0078753,1.008232,1.0085888,1.0089456,1.0093026,1.0096598,1.010017,1.0103744,1.010732,1.0110897,1.0114474,1.0118053,1.0121634,1.0125215,1.0128798,1.0132382,1.0135968,1.0139555,1.0143142,1.0146731,1.0150322,1.0153913,1.0157506,1.0161101,1.0164696,1.0168294,1.0171891,1.017549,1.0179092,1.0182693,1.0186297,1.0189902,1.0193506,1.0197114,1.0200722,1.0204332,1.0207943,1.0211555,1.0215168,1.0218782,1.0222399,1.0226016,1.0229634,1.0233254,1.0236876,1.0240498,1.0244122,1.0247747,1.0251373,1.0255,1.0258629,1.0262259,1.026589,1.0269523,1.0273157,1.0276792,1.0280429,1.0284066,1.0287706,1.0291346,1.0294988,1.029863,1.0302274,1.0305921,1.0309567,1.0313215,1.0316864,1.0320516,1.0324167,1.0327821,1.0331475,1.0335131,1.0338788,1.0342447,1.0346106,1.0349767,1.0353429,1.0357093,1.0360758,1.0364424,1.0368092,1.037176,1.037543,1.0379102,1.0382775,1.0386449,1.0390124,1.0393801,1.0397478,1.0401158,1.0404838,1.040852,1.0412203,1.0415888,1.0419574,1.0423261,1.0426948,1.0430639,1.043433,1.0438021,1.0441715,1.044541,1.0449107,1.0452803,1.0456502,1.0460203,1.0463904,1.0467607,1.0471311,1.0475016,1.0478723,1.048243,1.048614,1.048985,1.0493562,1.0497276,1.050099,1.0504706,1.0508423,1.0512141,1.0515862,1.0519582,1.0523305,1.0527028,1.0530753,1.053448,1.0538207,1.0541936,1.0545666,1.0549399,1.0553131,1.0556866,1.0560601,1.0564338,1.0568076,1.0571816,1.0575557,1.0579299,1.0583043,1.0586787,1.0590534,1.0594281,1.059803,1.060178,1.0605532,1.0609285,1.0613039,1.0616794,1.0620551,1.0624309,1.0628068,1.063183,1.0635592,1.0639355,1.064312,1.0646886,1.0650654,1.0654422,1.0658193,1.0661963,1.0665736,1.066951,1.0673286,1.0677063,1.0680841,1.068462,1.0688401,1.0692184,1.0695966,1.0699751,1.0703537,1.0707326,1.0711114,1.0714904,1.0718696,1.0722489,1.0726283,1.0730078,1.0733875,1.0737674,1.0741473,1.0745274,1.0749077,1.075288,1.0756686,1.0760491,1.07643,1.0768108,1.0771918,1.0775731,1.0779543,1.0783358,1.0787174,1.079099,1.0794809,1.0798628,1.080245,1.0806272,1.0810096,1.0813922,1.0817748,1.0821576,1.0825405,1.0829235,1.0833068,1.0836902,1.0840735,1.0844572,1.0848409,1.0852249,1.0856088,1.0859929,1.0863773,1.0867617,1.0871463,1.087531,1.0879158,1.0883007,1.0886859,1.089071,1.0894564,1.089842,1.0902276,1.0906134,1.0909992,1.0913854,1.0917715,1.0921578,1.0925443,1.0929309,1.0933176,1.0937046,1.0940915,1.0944787,1.094866,1.0952535,1.095641,1.0960287,1.0964165,1.0968045,1.0971926,1.0975808,1.0979693,1.0983578,1.0987464,1.0991352,1.0995241,1.0999132,1.1003025,1.1006918,1.1010813,1.1014708,1.1018606,1.1022506,1.1026406,1.1030308,1.1034211,1.1038115,1.1042022,1.1045928,1.1049837,1.1053747,1.1057658,1.1061572,1.1065485,1.1069402,1.1073319,1.1077236,1.1081157,1.1085078,1.1089,1.1092924,1.109685,1.1100776,1.1104704,1.1108633,1.1112564,1.1116496,1.112043,1.1124365,1.1128302,1.1132239,1.1136179,1.1140119,1.1144061,1.1148005,1.1151949,1.1155895,1.1159843,1.1163791,1.1167742,1.1171694,1.1175647,1.1179602,1.1183558,1.1187515,1.1191474,1.1195434,1.1199396,1.1203358,1.1207323,1.1211289,1.1215255,1.1219225,1.1223195,1.1227165,1.1231139,1.1235113,1.1239089,1.1243066,1.1247044,1.1251024,1.1255004,1.1258987,1.1262971,1.1266958,1.1270944,1.1274933,1.1278921,1.1282912,1.1286906,1.12909,1.1294894,1.1298891,1.130289,1.1306889,1.1310891,1.1314893,1.1318897,1.1322902,1.1326909,1.1330917,1.1334926,1.1338937,1.134295,1.1346964,1.1350979,1.1354995,1.1359013,1.1363032,1.1367053,1.1371076,1.13751,1.1379124,1.1383151,1.1387179,1.1391208,1.1395239,1.1399271,1.1403306,1.1407341,1.1411377,1.1415415,1.1419454,1.1423495,1.1427537,1.1431581,1.1435626,1.1439673,1.1443721,1.144777,1.1451821,1.1455873,1.1459928,1.1463982,1.1468039,1.1472096,1.1476157,1.1480217,1.148428,1.1488343,1.1492409,1.1496475,1.1500543,1.1504613,1.1508684,1.1512756,1.151683,1.1520905,1.1524982,1.1529061,1.153314,1.153722,1.1541303,1.1545388,1.1549473,1.1553559,1.1557648,1.1561737,1.1565828,1.1569922,1.1574016,1.157811,1.1582208,1.1586306,1.1590407,1.1594508,1.1598611,1.1602714,1.160682,1.1610928,1.1615036,1.1619146,1.1623257,1.162737,1.1631485,1.16356,1.1639718,1.1643836,1.1647958,1.1652079,1.1656202,1.1660327,1.1664453,1.1668581,1.1672709,1.167684,1.1680971,1.1685104,1.168924,1.1693376,1.1697514,1.1701653,1.1705793,1.1709936,1.1714079,1.1718224,1.1722372,1.1726519,1.1730669,1.173482,1.1738971,1.1743126,1.1747282,1.1751438,1.1755596,1.1759757,1.1763917,1.176808,1.1772244,1.177641,1.1780578,1.1784745,1.1788915,1.1793088,1.179726,1.1801435,1.1805611,1.1809789,1.1813967,1.1818148,1.182233,1.1826513,1.1830698,1.1834885,1.1839073,1.1843262,1.1847452,1.1851645,1.1855838,1.1860033,1.1864231,1.1868429,1.1872629,1.187683,1.1881032,1.1885237,1.1889442,1.1893649,1.1897857,1.1902068,1.1906279,1.1910492,1.1914707,1.1918924,1.1923141,1.192736,1.193158,1.1935803,1.1940026,1.1944251,1.1948478,1.1952705,1.1956935,1.1961167,1.1965399,1.1969633,1.1973869,1.1978105,1.1982344,1.1986583,1.1990825,1.1995069,1.1999313,1.2003559,1.2007806,1.2012055,1.2016306,1.2020558,1.2024812,1.2029067,1.2033323,1.2037581,1.204184,1.2046102,1.2050364,1.2054628,1.2058895,1.2063161,1.206743,1.20717,1.2075971,1.2080245,1.208452,1.2088796,1.2093073,1.2097353,1.2101634,1.2105916,1.21102,1.2114484,1.2118771,1.2123059,1.2127349,1.2131641,1.2135934,1.2140228,1.2144524,1.2148821,1.215312,1.2157421,1.2161722,1.2166026,1.2170331,1.2174637,1.2178946,1.2183255,1.2187567,1.2191879,1.2196193,1.2200508,1.2204826,1.2209145,1.2213465,1.2217786,1.222211,1.2226435,1.2230761,1.223509,1.2239419,1.224375,1.2248082,1.2252417,1.2256752,1.2261089,1.2265428,1.2269768,1.2274109,1.2278453,1.2282797,1.2287143,1.2291492,1.2295841,1.2300192,1.2304544,1.2308899,1.2313254,1.2317611,1.232197,1.232633,1.2330692,1.2335055,1.233942,1.2343787,1.2348155,1.2352524,1.2356895,1.2361268,1.2365642,1.2370018,1.2374394,1.2378774,1.2383153,1.2387536,1.2391919,1.2396303,1.240069,1.2405078,1.2409468,1.2413859,1.2418252,1.2422646,1.2427042,1.2431439,1.2435838,1.2440238,1.244464,1.2449044,1.2453449,1.2457856,1.2462264,1.2466674,1.2471086,1.2475499,1.2479913,1.2484329,1.2488747,1.2493166,1.2497587,1.2502009,1.2506433,1.2510859,1.2515285,1.2519714,1.2524145,1.2528576,1.2533009,1.2537445,1.2541881,1.2546319,1.2550758,1.25552,1.2559643,1.2564087,1.2568532,1.257298,1.2577429,1.2581879,1.2586331,1.2590785,1.2595241,1.2599697,1.2604156,1.2608616,1.2613077,1.261754,1.2622006,1.2626472,1.263094,1.263541,1.263988,1.2644353,1.2648827,1.2653303,1.2657781,1.2662259,1.266674,1.2671223,1.2675706,1.2680192,1.2684679,1.2689167,1.2693658,1.2698148,1.2702643,1.2707138,1.2711633,1.2716132,1.2720631,1.2725133,1.2729635,1.273414,1.2738646,1.2743154,1.2747663,1.2752174,1.2756686,1.2761201,1.2765716,1.2770233,1.2774752,1.2779273,1.2783794,1.2788318,1.2792844,1.279737,1.2801899,1.2806429,1.281096,1.2815493,1.2820028,1.2824564,1.2829102,1.2833642,1.2838184,1.2842727,1.2847271,1.2851816,1.2856364,1.2860914,1.2865465,1.2870017,1.2874571,1.2879127,1.2883685,1.2888243,1.2892804,1.2897366,1.290193,1.2906495,1.2911062,1.2915632,1.2920201,1.2924774,1.2929347,1.2933922,1.2938498,1.2943077,1.2947657,1.2952238,1.2956822,1.2961407,1.2965993,1.2970581,1.2975171,1.2979763,1.2984354,1.298895,1.2993546,1.2998143,1.3002744,1.3007344,1.3011947,1.3016552,1.3021158,1.3025765,1.3030374,1.3034985,1.3039597,1.3044212,1.3048828,1.3053445,1.3058064,1.3062685,1.3067306,1.307193,1.3076557,1.3081183,1.3085812,1.3090444,1.3095075,1.3099709,1.3104345,1.3108981,1.311362,1.311826,1.3122902,1.3127545,1.3132191,1.3136839,1.3141487,1.3146137,1.3150789,1.3155441,1.3160096,1.3164754,1.3169413,1.3174073,1.3178734,1.3183397,1.3188063,1.319273,1.3197397,1.3202068,1.320674,1.3211412,1.3216088,1.3220764,1.3225442,1.3230122,1.3234804,1.3239487,1.3244171,1.3248857,1.3253547,1.3258237,1.3262928,1.3267621,1.3272315,1.3277012,1.328171,1.328641,1.3291111,1.3295815,1.3300519,1.3305225,1.3309934,1.3314644,1.3319355,1.3324069,1.3328784,1.33335,1.3338218,1.3342937,1.3347659,1.3352382,1.3357108,1.3361833,1.3366561,1.3371291,1.3376023,1.3380756,1.3385491,1.3390228,1.3394966,1.3399706,1.3404447,1.340919,1.3413935,1.3418682,1.342343,1.342818,1.3432932,1.3437685,1.344244,1.3447196,1.3451955,1.3456715,1.3461477,1.346624,1.3471005,1.3475772,1.348054,1.3485311,1.3490083,1.3494856,1.3499632,1.3504409,1.3509187,1.3513967,1.351875,1.3523533,1.3528318,1.3533105,1.3537894,1.3542684,1.3547477,1.3552271,1.3557066,1.3561864,1.3566662,1.3571463,1.3576266,1.3581069,1.3585875,1.3590683,1.3595492,1.3600303,1.3605115,1.3609929,1.3614745,1.3619562,1.3624382,1.3629204,1.3634026,1.363885,1.3643677,1.3648505,1.3653334,1.3658166,1.3662999,1.3667833,1.367267,1.3677508,1.3682348,1.3687189,1.3692032,1.3696878,1.3701724,1.3706573,1.3711423,1.3716274,1.3721129,1.3725984,1.3730841,1.37357,1.374056,1.3745421,1.3750286,1.3755151,1.3760018,1.3764888,1.3769759,1.3774631,1.3779505,1.3784381,1.3789259,1.3794138,1.379902,1.3803902,1.3808787,1.3813673,1.3818561,1.3823451,1.3828343,1.3833236,1.383813,1.3843027,1.3847926,1.3852826,1.3857727,1.3862631,1.3867537,1.3872443,1.3877354,1.3882263,1.3887175,1.389209,1.3897005,1.3901923,1.3906842,1.3911763,1.3916686,1.392161,1.3926537,1.3931465,1.3936394,1.3941326,1.3946259,1.3951194,1.3956131,1.396107,1.396601,1.3970952,1.3975896,1.398084,1.3985788,1.3990737,1.3995687,1.400064,1.4005594,1.401055,1.4015508,1.4020467,1.4025428,1.4030391,1.4035356,1.4040322,1.4045291,1.4050261,1.4055233,1.4060206,1.4065182,1.4070159,1.4075137,1.4080118,1.40851,1.4090084,1.409507,1.4100058,1.4105047,1.4110038,1.4115031,1.4120026,1.4125022,1.413002,1.4135021,1.4140022,1.4145026,1.4150032,1.4155037,1.4160048,1.4165058,1.417007,1.4175085,1.41801,1.4185117,1.4190137,1.4195158,1.4200181,1.4205207,1.4210234,1.4215261,1.4220291,1.4225323,1.4230357,1.4235393,1.4240429],"x":[6.1035156e-5,0.00041482793,0.0007686207,0.0011224134,0.0014762062,0.0018299989,0.0021837917,0.0025375844,0.0028913773,0.00324517,0.0035989627,0.0039527556,0.0043065483,0.004660341,0.0050141336,0.0053679263,0.0057217195,0.006075512,0.006429305,0.0067830975,0.00713689,0.007490683,0.007844476,0.008198269,0.008552061,0.008905854,0.009259647,0.009613439,0.009967232,0.010321025,0.0106748175,0.011028611,0.011382404,0.0117361965,0.012089989,0.012443782,0.0127975745,0.013151367,0.01350516,0.013858953,0.014212745,0.014566538,0.014920331,0.015274123,0.015627917,0.01598171,0.016335502,0.016689295,0.017043088,0.01739688,0.017750673,0.018104466,0.018458258,0.018812051,0.019165844,0.019519636,0.01987343,0.020227222,0.020581014,0.020934807,0.0212886,0.021642393,0.021996187,0.02234998,0.022703772,0.023057565,0.023411358,0.02376515,0.024118943,0.024472736,0.024826529,0.025180321,0.025534114,0.025887907,0.0262417,0.026595492,0.026949285,0.027303077,0.02765687,0.028010663,0.028364455,0.028718248,0.02907204,0.029425833,0.029779626,0.030133419,0.030487211,0.030841006,0.031194799,0.03154859,0.031902384,0.032256175,0.03260997,0.03296376,0.033317555,0.033671346,0.03402514,0.03437893,0.034732725,0.03508652,0.03544031,0.035794105,0.036147896,0.03650169,0.03685548,0.037209276,0.037563067,0.03791686,0.038270652,0.038624447,0.038978238,0.039332032,0.039685823,0.040039618,0.04039341,0.040747203,0.041100994,0.04145479,0.04180858,0.042162374,0.042516164,0.04286996,0.04322375,0.043577544,0.04393134,0.04428513,0.044638924,0.044992715,0.04534651,0.0457003,0.046054095,0.046407886,0.04676168,0.04711547,0.047469266,0.047823057,0.04817685,0.048530642,0.048884436,0.049238227,0.04959202,0.049945813,0.050299607,0.050653398,0.051007193,0.051360983,0.051714778,0.05206857,0.052422363,0.052776158,0.05312995,0.053483743,0.053837534,0.05419133,0.05454512,0.054898914,0.055252705,0.0556065,0.05596029,0.056314085,0.056667875,0.05702167,0.05737546,0.057729255,0.058083046,0.05843684,0.05879063,0.059144426,0.059498217,0.05985201,0.060205802,0.060559597,0.060913388,0.061267182,0.061620977,0.061974768,0.062328562,0.06268235,0.063036144,0.06338994,0.06374373,0.06409752,0.064451315,0.06480511,0.0651589,0.065512694,0.065866485,0.06622028,0.066574074,0.066927865,0.067281656,0.067635454,0.067989245,0.068343036,0.06869683,0.069050625,0.069404416,0.06975821,0.070112005,0.070465796,0.07081959,0.07117338,0.071527176,0.07188097,0.07223476,0.07258855,0.07294235,0.07329614,0.07364993,0.07400372,0.07435752,0.07471131,0.0750651,0.07541889,0.07577269,0.07612648,0.07648027,0.07683406,0.07718786,0.07754165,0.07789544,0.07824923,0.07860303,0.07895682,0.07931061,0.07966441,0.0800182,0.08037199,0.08072578,0.08107958,0.08143337,0.08178716,0.08214095,0.08249475,0.08284854,0.08320233,0.08355612,0.08390992,0.08426371,0.0846175,0.084971294,0.08532509,0.08567888,0.08603267,0.086386465,0.08674026,0.08709405,0.087447844,0.08780164,0.08815543,0.088509224,0.088863015,0.08921681,0.089570604,0.089924395,0.090278186,0.090631984,0.090985775,0.091339566,0.09169336,0.092047155,0.092400946,0.09275474,0.09310853,0.093462326,0.09381612,0.09416991,0.0945237,0.0948775,0.09523129,0.09558508,0.09593887,0.09629267,0.09664646,0.09700025,0.09735405,0.09770784,0.09806163,0.09841542,0.09876922,0.09912301,0.0994768,0.09983059,0.10018439,0.10053818,0.10089197,0.10124576,0.10159956,0.10195335,0.10230714,0.10266093,0.10301473,0.10336852,0.10372231,0.1040761,0.1044299,0.10478369,0.10513748,0.10549128,0.10584507,0.10619886,0.10655265,0.10690645,0.10726024,0.10761403,0.107967824,0.10832162,0.10867541,0.1090292,0.109382994,0.10973679,0.11009058,0.110444374,0.110798165,0.11115196,0.111505754,0.111859545,0.112213336,0.112567134,0.112920925,0.113274716,0.11362851,0.113982305,0.114336096,0.11468989,0.115043685,0.115397476,0.11575127,0.11610506,0.116458856,0.11681265,0.11716644,0.11752023,0.11787403,0.11822782,0.11858161,0.1189354,0.1192892,0.11964299,0.11999678,0.12035057,0.12070437,0.12105816,0.12141195,0.12176574,0.12211954,0.12247333,0.12282712,0.12318092,0.12353471,0.1238885,0.12424229,0.12459609,0.12494988,0.12530367,0.12565747,0.12601125,0.12636505,0.12671885,0.12707263,0.12742643,0.12778021,0.12813401,0.12848781,0.1288416,0.12919539,0.12954919,0.12990297,0.13025677,0.13061056,0.13096435,0.13131815,0.13167194,0.13202573,0.13237953,0.13273332,0.13308711,0.13344091,0.1337947,0.1341485,0.13450228,0.13485608,0.13520987,0.13556366,0.13591745,0.13627125,0.13662504,0.13697883,0.13733262,0.13768642,0.13804021,0.138394,0.1387478,0.1391016,0.13945538,0.13980918,0.14016297,0.14051676,0.14087056,0.14122434,0.14157814,0.14193194,0.14228572,0.14263952,0.14299332,0.1433471,0.1437009,0.14405468,0.14440848,0.14476228,0.14511606,0.14546986,0.14582366,0.14617744,0.14653124,0.14688502,0.14723882,0.14759262,0.1479464,0.1483002,0.148654,0.14900778,0.14936158,0.14971538,0.15006916,0.15042296,0.15077674,0.15113054,0.15148434,0.15183812,0.15219192,0.15254572,0.1528995,0.1532533,0.15360709,0.15396088,0.15431468,0.15466847,0.15502226,0.15537606,0.15572985,0.15608364,0.15643743,0.15679123,0.15714502,0.1574988,0.1578526,0.1582064,0.15856019,0.15891398,0.15926778,0.15962157,0.15997536,0.16032915,0.16068295,0.16103674,0.16139053,0.16174433,0.16209812,0.16245191,0.1628057,0.16315949,0.16351329,0.16386709,0.16422087,0.16457467,0.16492847,0.16528225,0.16563605,0.16598983,0.16634363,0.16669743,0.16705121,0.16740501,0.16775881,0.16811259,0.16846639,0.16882019,0.16917397,0.16952777,0.16988155,0.17023535,0.17058915,0.17094293,0.17129673,0.17165053,0.17200431,0.17235811,0.1727119,0.17306569,0.17341949,0.17377327,0.17412707,0.17448087,0.17483465,0.17518845,0.17554225,0.17589603,0.17624983,0.17660362,0.17695741,0.17731121,0.177665,0.1780188,0.17837259,0.17872638,0.17908017,0.17943396,0.17978776,0.18014155,0.18049534,0.18084913,0.18120293,0.18155672,0.18191051,0.1822643,0.1826181,0.1829719,0.18332568,0.18367948,0.18403327,0.18438706,0.18474086,0.18509465,0.18544844,0.18580224,0.18615602,0.18650982,0.18686362,0.1872174,0.1875712,0.187925,0.18827878,0.18863258,0.18898636,0.18934016,0.18969396,0.19004774,0.19040154,0.19075534,0.19110912,0.19146292,0.1918167,0.1921705,0.1925243,0.19287808,0.19323188,0.19358568,0.19393946,0.19429326,0.19464706,0.19500084,0.19535464,0.19570842,0.19606222,0.19641602,0.1967698,0.1971236,0.1974774,0.19783118,0.19818498,0.19853877,0.19889256,0.19924636,0.19960015,0.19995394,0.20030774,0.20066153,0.20101532,0.20136912,0.2017229,0.2020767,0.20243049,0.20278428,0.20313808,0.20349187,0.20384566,0.20419946,0.20455325,0.20490704,0.20526083,0.20561463,0.20596842,0.20632221,0.206676,0.2070298,0.20738359,0.20773739,0.20809117,0.20844497,0.20879877,0.20915255,0.20950635,0.20986015,0.21021393,0.21056773,0.21092153,0.21127531,0.21162911,0.21198289,0.21233669,0.21269049,0.21304427,0.21339807,0.21375187,0.21410565,0.21445945,0.21481323,0.21516703,0.21552083,0.21587461,0.21622841,0.21658221,0.21693599,0.21728979,0.21764357,0.21799737,0.21835117,0.21870495,0.21905875,0.21941255,0.21976633,0.22012013,0.22047393,0.22082771,0.22118151,0.2215353,0.2218891,0.22224289,0.22259668,0.22295047,0.22330427,0.22365806,0.22401185,0.22436564,0.22471943,0.22507323,0.22542702,0.22578081,0.22613461,0.2264884,0.2268422,0.22719598,0.22754978,0.22790357,0.22825736,0.22861116,0.22896495,0.22931874,0.22967254,0.23002633,0.23038012,0.23073392,0.2310877,0.2314415,0.2317953,0.23214908,0.23250288,0.23285668,0.23321046,0.23356426,0.23391804,0.23427184,0.23462564,0.23497942,0.23533322,0.23568702,0.2360408,0.2363946,0.2367484,0.23710218,0.23745598,0.23780976,0.23816356,0.23851736,0.23887114,0.23922494,0.23957874,0.23993252,0.24028632,0.2406401,0.2409939,0.2413477,0.24170148,0.24205528,0.24240908,0.24276286,0.24311666,0.24347045,0.24382424,0.24417804,0.24453183,0.24488562,0.24523942,0.2455932,0.245947,0.2463008,0.24665459,0.24700838,0.24736217,0.24771596,0.24806976,0.24842355,0.24877734,0.24913114,0.24948493,0.24983872,0.25019252,0.2505463,0.2509001,0.2512539,0.2516077,0.25196147,0.25231528,0.25266907,0.25302285,0.25337666,0.25373045,0.25408423,0.25443804,0.25479183,0.2551456,0.2554994,0.2558532,0.256207,0.25656077,0.2569146,0.25726837,0.25762215,0.25797597,0.25832975,0.25868353,0.25903735,0.25939113,0.2597449,0.26009873,0.2604525,0.2608063,0.26116008,0.2615139,0.26186767,0.26222146,0.26257527,0.26292905,0.26328284,0.26363665,0.26399043,0.26434422,0.26469803,0.2650518,0.2654056,0.2657594,0.2661132,0.26646698,0.2668208,0.26717457,0.26752836,0.26788214,0.26823595,0.26858974,0.26894352,0.26929733,0.26965111,0.2700049,0.2703587,0.2707125,0.27106628,0.2714201,0.27177387,0.27212766,0.27248147,0.27283525,0.27318904,0.27354285,0.27389663,0.27425042,0.2746042,0.274958,0.2753118,0.27566558,0.2760194,0.27637318,0.27672696,0.27708077,0.27743456,0.27778834,0.27814215,0.27849594,0.27884972,0.27920353,0.27955732,0.2799111,0.2802649,0.2806187,0.28097248,0.28132626,0.28168008,0.28203386,0.28238764,0.28274146,0.28309524,0.28344902,0.28380284,0.28415662,0.2845104,0.28486422,0.285218,0.28557178,0.2859256,0.28627938,0.28663316,0.28698695,0.28734076,0.28769454,0.28804833,0.28840214,0.28875592,0.2891097,0.28946352,0.2898173,0.2901711,0.2905249,0.29087868,0.29123247,0.29158628,0.29194006,0.29229385,0.29264766,0.29300144,0.29335523,0.293709,0.29406282,0.2944166,0.2947704,0.2951242,0.295478,0.29583177,0.29618558,0.29653937,0.29689315,0.29724696,0.29760075,0.29795453,0.29830834,0.29866213,0.2990159,0.29936972,0.2997235,0.3000773,0.30043107,0.3007849,0.30113867,0.30149245,0.30184627,0.30220005,0.30255383,0.30290765,0.30326143,0.3036152,0.30396903,0.3043228,0.3046766,0.3050304,0.3053842,0.30573797,0.30609176,0.30644557,0.30679935,0.30715314,0.30750695,0.30786073,0.30821452,0.30856833,0.3089221,0.3092759,0.3096297,0.3099835,0.31033728,0.3106911,0.31104487,0.31139866,0.31175247,0.31210625,0.31246004,0.31281382,0.31316763,0.31352141,0.3138752,0.314229,0.3145828,0.31493658,0.3152904,0.31564417,0.31599796,0.31635177,0.31670555,0.31705934,0.31741315,0.31776693,0.31812072,0.31847453,0.3188283,0.3191821,0.31953588,0.3198897,0.32024348,0.32059726,0.32095107,0.32130486,0.32165864,0.32201245,0.32236624,0.32272002,0.32307383,0.32342762,0.3237814,0.3241352,0.324489,0.32484278,0.3251966,0.32555038,0.32590416,0.32625794,0.32661176,0.32696554,0.32731932,0.32767314,0.32802692,0.3283807,0.32873452,0.3290883,0.32944208,0.3297959,0.33014968,0.33050346,0.33085728,0.33121106,0.33156484,0.33191863,0.33227244,0.33262622,0.33298,0.33333382,0.3336876,0.3340414,0.3343952,0.33474898,0.33510277,0.33545658,0.33581036,0.33616415,0.33651796,0.33687174,0.33722553,0.33757934,0.33793312,0.3382869,0.3386407,0.3389945,0.3393483,0.33970207,0.34005588,0.34040967,0.34076345,0.34111726,0.34147105,0.34182483,0.34217864,0.34253243,0.3428862,0.34324002,0.3435938,0.3439476,0.3443014,0.3446552,0.34500897,0.34536275,0.34571657,0.34607035,0.34642413,0.34677795,0.34713173,0.3474855,0.34783933,0.3481931,0.3485469,0.3489007,0.3492545,0.34960827,0.3499621,0.35031587,0.35066965,0.35102347,0.35137725,0.35173103,0.35208482,0.35243863,0.3527924,0.3531462,0.3535]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json new file mode 100644 index 000000000000..f01cc4a6f7ed --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json @@ -0,0 +1 @@ +{"expected":[0.99993896,0.9999391,0.9999392,0.9999393,0.99993944,0.99993956,0.9999397,0.9999398,0.9999399,0.99994004,0.9999402,0.99994034,0.99994045,0.9999406,0.9999407,0.9999408,0.99994093,0.99994105,0.9999412,0.9999413,0.9999414,0.9999415,0.99994165,0.99994177,0.9999419,0.999942,0.9999421,0.99994224,0.99994236,0.9999425,0.99994266,0.9999428,0.9999429,0.999943,0.99994314,0.99994326,0.9999434,0.9999435,0.9999436,0.99994373,0.99994385,0.999944,0.9999441,0.9999442,0.9999443,0.99994445,0.99994457,0.9999447,0.9999448,0.9999449,0.9999451,0.9999452,0.99994534,0.99994546,0.9999456,0.9999457,0.9999458,0.99994594,0.99994606,0.9999462,0.9999463,0.9999464,0.99994653,0.99994665,0.9999468,0.9999469,0.999947,0.99994713,0.99994725,0.99994737,0.99994755,0.99994767,0.9999478,0.9999479,0.999948,0.99994814,0.99994826,0.9999484,0.9999485,0.9999486,0.99994874,0.99994886,0.999949,0.9999491,0.9999492,0.99994934,0.99994946,0.9999496,0.9999497,0.9999498,0.99995,0.9999501,0.99995023,0.99995035,0.99995047,0.9999506,0.9999507,0.9999508,0.99995095,0.99995106,0.9999512,0.9999513,0.9999514,0.99995154,0.99995166,0.9999518,0.9999519,0.999952,0.99995214,0.99995226,0.99995244,0.99995255,0.9999527,0.9999528,0.9999529,0.99995303,0.99995315,0.99995327,0.9999534,0.9999535,0.9999536,0.99995375,0.99995387,0.999954,0.9999541,0.9999542,0.99995434,0.99995446,0.9999546,0.9999547,0.9999549,0.999955,0.9999551,0.99995524,0.99995536,0.9999555,0.9999556,0.9999557,0.99995583,0.99995595,0.9999561,0.9999562,0.9999563,0.9999564,0.99995655,0.99995667,0.9999568,0.9999569,0.999957,0.99995714,0.9999573,0.99995744,0.99995756,0.9999577,0.9999578,0.9999579,0.99995804,0.99995816,0.9999583,0.9999584,0.9999585,0.99995863,0.99995875,0.9999589,0.999959,0.9999591,0.99995923,0.99995935,0.99995947,0.9999596,0.99995977,0.9999599,0.99996,0.9999601,0.99996024,0.99996036,0.9999605,0.9999606,0.9999607,0.99996084,0.99996096,0.9999611,0.9999612,0.9999613,0.99996144,0.99996156,0.9999617,0.9999618,0.9999619,0.99996203,0.9999622,0.99996233,0.99996245,0.99996257,0.9999627,0.9999628,0.9999629,0.99996305,0.99996316,0.9999633,0.9999634,0.9999635,0.99996364,0.99996376,0.9999639,0.999964,0.9999641,0.99996424,0.99996436,0.9999645,0.99996465,0.9999648,0.9999649,0.999965,0.99996513,0.99996525,0.99996537,0.9999655,0.9999656,0.9999657,0.99996585,0.99996597,0.9999661,0.9999662,0.9999663,0.99996644,0.99996656,0.9999667,0.9999668,0.9999669,0.9999671,0.9999672,0.99996734,0.99996746,0.9999676,0.9999677,0.9999678,0.99996793,0.99996805,0.9999682,0.9999683,0.9999684,0.9999685,0.99996865,0.99996877,0.9999689,0.999969,0.9999691,0.99996924,0.99996936,0.99996954,0.99996966,0.9999698,0.9999699,0.99997,0.99997014,0.99997026,0.9999704,0.9999705,0.9999706,0.99997073,0.99997085,0.999971,0.9999711,0.9999712,0.99997133,0.99997145,0.99997157,0.9999717,0.9999718,0.999972,0.9999721,0.9999722,0.99997234,0.99997246,0.9999726,0.9999727,0.9999728,0.99997294,0.99997306,0.9999732,0.9999733,0.9999734,0.99997354,0.99997365,0.9999738,0.9999739,0.999974,0.99997413,0.99997425,0.9999744,0.99997455,0.99997467,0.9999748,0.9999749,0.999975,0.99997514,0.99997526,0.9999754,0.9999755,0.9999756,0.99997574,0.99997586,0.999976,0.9999761,0.9999762,0.99997634,0.99997646,0.9999766,0.9999767,0.9999769,0.999977,0.9999771,0.99997723,0.99997735,0.99997747,0.9999776,0.9999777,0.9999778,0.99997795,0.99997807,0.9999782,0.9999783,0.9999784,0.99997854,0.99997866,0.9999788,0.9999789,0.999979,0.99997914,0.9999793,0.99997944,0.99997956,0.9999797,0.9999798,0.9999799,0.99998003,0.99998015,0.9999803,0.9999804,0.9999805,0.9999806,0.99998075,0.99998087,0.999981,0.9999811,0.9999812,0.99998134,0.99998146,0.9999816,0.99998176,0.9999819,0.999982,0.9999821,0.99998224,0.99998236,0.9999825,0.9999826,0.9999827,0.99998283,0.99998295,0.9999831,0.9999832,0.9999833,0.99998343,0.99998355,0.99998367,0.9999838,0.9999839,0.999984,0.9999842,0.9999843,0.99998444,0.99998456,0.9999847,0.9999848,0.9999849,0.99998504,0.99998516,0.9999853,0.9999854,0.9999855,0.99998564,0.99998575,0.9999859,0.999986,0.9999861,0.99998623,0.99998635,0.99998647,0.99998665,0.99998677,0.9999869,0.999987,0.9999871,0.99998724,0.99998736,0.9999875,0.9999876,0.9999877,0.99998784,0.99998796,0.9999881,0.9999882,0.9999883,0.99998844,0.99998856,0.9999887,0.9999888,0.9999889,0.9999891,0.9999892,0.99998933,0.99998945,0.99998957,0.9999897,0.9999898,0.9999899,0.99999005,0.99999017,0.9999903,0.9999904,0.9999905,0.99999064,0.99999076,0.9999909,0.999991,0.9999911,0.99999124,0.99999136,0.99999154,0.99999166,0.9999918,0.9999919,0.999992,0.99999213,0.99999225,0.9999924,0.9999925,0.9999926,0.9999927,0.99999285,0.99999297,0.9999931,0.9999932,0.9999933,0.99999344,0.99999356,0.9999937,0.9999938,0.999994,0.9999941,0.9999942,0.99999434,0.99999446,0.9999946,0.9999947,0.9999948,0.99999493,0.99999505,0.9999952,0.9999953,0.9999954,0.9999955,0.99999565,0.99999577,0.9999959,0.999996,0.9999961,0.99999624,0.9999964,0.99999654,0.99999666,0.9999968,0.9999969,0.999997,0.99999714,0.99999726,0.9999974,0.9999975,0.9999976,0.99999774,0.99999785,0.999998,0.9999981,0.9999982,0.99999833,0.99999845,0.99999857,0.9999987,0.99999887,0.999999,0.9999991,0.9999992,0.99999934,0.99999946,0.9999996,0.9999997,0.9999998,0.99999994,1.0000001,1.0000002,1.0000004,1.0000005,1.0000006,1.0000007,1.0000008,1.000001,1.0000011,1.0000012,1.0000013,1.0000014,1.0000015,1.0000017,1.0000018,1.0000019,1.000002,1.0000021,1.0000023,1.0000024,1.0000025,1.0000026,1.0000027,1.0000029,1.000003,1.0000031,1.0000032,1.0000033,1.0000035,1.0000036,1.0000037,1.0000038,1.0000039,1.000004,1.0000042,1.0000043,1.0000044,1.0000045,1.0000046,1.0000048,1.000005,1.0000051,1.0000052,1.0000054,1.0000055,1.0000056,1.0000057,1.0000058,1.000006,1.0000061,1.0000062,1.0000063,1.0000064,1.0000066,1.0000067,1.0000068,1.0000069,1.000007,1.0000072,1.0000073,1.0000074,1.0000075,1.0000076,1.0000077,1.0000079,1.000008,1.0000081,1.0000082,1.0000083,1.0000085,1.0000086,1.0000087,1.0000088,1.000009,1.0000091,1.0000092,1.0000093,1.0000094,1.0000095,1.0000097,1.0000099,1.00001,1.0000101,1.0000103,1.0000104,1.0000105,1.0000106,1.0000107,1.0000108,1.000011,1.0000111,1.0000112,1.0000113,1.0000114,1.0000116,1.0000117,1.0000118,1.0000119,1.000012,1.0000122,1.0000123,1.0000124,1.0000125,1.0000126,1.0000128,1.0000129,1.000013,1.0000131,1.0000132,1.0000134,1.0000135,1.0000136,1.0000137,1.0000138,1.000014,1.0000141,1.0000142,1.0000143,1.0000144,1.0000145,1.0000148,1.0000149,1.000015,1.0000151,1.0000153,1.0000154,1.0000155,1.0000156,1.0000157,1.0000159,1.000016,1.0000161,1.0000162,1.0000163,1.0000165,1.0000166,1.0000167,1.0000168,1.0000169,1.000017,1.0000172,1.0000173,1.0000174,1.0000175,1.0000176,1.0000178,1.0000179,1.000018,1.0000181,1.0000182,1.0000184,1.0000185,1.0000186,1.0000187,1.0000188,1.000019,1.0000191,1.0000192,1.0000193,1.0000194,1.0000197,1.0000198,1.0000199,1.00002,1.0000201,1.0000203,1.0000204,1.0000205,1.0000206,1.0000207,1.0000209,1.000021,1.0000211,1.0000212,1.0000213,1.0000215,1.0000216,1.0000217,1.0000218,1.0000219,1.000022,1.0000222,1.0000223,1.0000224,1.0000225,1.0000226,1.0000228,1.0000229,1.000023,1.0000231,1.0000232,1.0000234,1.0000235,1.0000236,1.0000237,1.0000238,1.000024,1.0000241,1.0000242,1.0000243,1.0000246,1.0000247,1.0000248,1.0000249,1.000025,1.0000252,1.0000253,1.0000254,1.0000255,1.0000256,1.0000257,1.0000259,1.000026,1.0000261,1.0000262,1.0000263,1.0000265,1.0000266,1.0000267,1.0000268,1.000027,1.0000271,1.0000272,1.0000273,1.0000274,1.0000275,1.0000277,1.0000278,1.0000279,1.000028,1.0000281,1.0000283,1.0000284,1.0000285,1.0000286,1.0000287,1.0000288,1.000029,1.0000291,1.0000292,1.0000294,1.0000296,1.0000297,1.0000298,1.0000299,1.00003,1.0000302,1.0000303,1.0000304,1.0000305,1.0000306,1.0000308,1.0000309,1.000031,1.0000311,1.0000312,1.0000314,1.0000315,1.0000316,1.0000317,1.0000318,1.000032,1.0000321,1.0000322,1.0000323,1.0000324,1.0000325,1.0000327,1.0000328,1.0000329,1.000033,1.0000331,1.0000333,1.0000334,1.0000335,1.0000336,1.0000337,1.0000339,1.000034,1.0000341,1.0000343,1.0000345,1.0000346,1.0000347,1.0000348,1.0000349,1.000035,1.0000352,1.0000353,1.0000354,1.0000355,1.0000356,1.0000358,1.0000359,1.000036,1.0000361,1.0000362,1.0000364,1.0000365,1.0000366,1.0000367,1.0000368,1.000037,1.0000371,1.0000372,1.0000373,1.0000374,1.0000376,1.0000377,1.0000378,1.0000379,1.000038,1.0000381,1.0000383,1.0000384,1.0000385,1.0000386,1.0000387,1.0000389,1.0000391,1.0000392,1.0000393,1.0000395,1.0000396,1.0000397,1.0000398,1.0000399,1.00004,1.0000402,1.0000403,1.0000404,1.0000405,1.0000407,1.0000408,1.0000409,1.000041,1.0000411,1.0000412,1.0000414,1.0000415,1.0000416,1.0000417,1.0000418,1.000042,1.0000421,1.0000422,1.0000423,1.0000424,1.0000426,1.0000427,1.0000428,1.0000429,1.000043,1.0000432,1.0000433,1.0000434,1.0000435,1.0000436,1.0000437,1.000044,1.0000441,1.0000442,1.0000443,1.0000445,1.0000446,1.0000447,1.0000448,1.000045,1.0000451,1.0000452,1.0000453,1.0000454,1.0000455,1.0000457,1.0000458,1.0000459,1.000046,1.0000461,1.0000463,1.0000464,1.0000465,1.0000466,1.0000467,1.0000468,1.000047,1.0000471,1.0000472,1.0000473,1.0000474,1.0000476,1.0000477,1.0000478,1.0000479,1.000048,1.0000482,1.0000483,1.0000484,1.0000485,1.0000486,1.0000489,1.000049,1.0000491,1.0000492,1.0000494,1.0000495,1.0000496,1.0000497,1.0000498,1.00005,1.0000501,1.0000502,1.0000503,1.0000504,1.0000505,1.0000507,1.0000508,1.0000509,1.000051,1.0000511,1.0000513,1.0000514,1.0000515,1.0000516,1.0000517,1.0000519,1.000052,1.0000521,1.0000522,1.0000523,1.0000525,1.0000526,1.0000527,1.0000528,1.0000529,1.000053,1.0000532,1.0000533,1.0000534,1.0000535,1.0000538,1.0000539,1.000054,1.0000541,1.0000542,1.0000544,1.0000545,1.0000546,1.0000547,1.0000548,1.000055,1.0000551,1.0000552,1.0000553,1.0000554,1.0000556,1.0000557,1.0000558,1.0000559,1.000056,1.0000561,1.0000563,1.0000564,1.0000565,1.0000566,1.0000567,1.0000569,1.000057,1.0000571,1.0000572,1.0000573,1.0000575,1.0000576,1.0000577,1.0000578,1.0000579,1.000058,1.0000582,1.0000583,1.0000584,1.0000587,1.0000588,1.0000589,1.000059,1.0000591,1.0000592,1.0000594,1.0000595,1.0000596,1.0000597,1.0000598,1.00006,1.0000601,1.0000602,1.0000603,1.0000604,1.0000606,1.0000607,1.0000608,1.0000609,1.000061],"x":[-6.1035156e-5,-6.0912964e-5,-6.079077e-5,-6.066858e-5,-6.0546387e-5,-6.0424194e-5,-6.0302e-5,-6.017981e-5,-6.0057617e-5,-5.9935424e-5,-5.9813232e-5,-5.969104e-5,-5.9568847e-5,-5.9446655e-5,-5.9324462e-5,-5.920227e-5,-5.9080077e-5,-5.8957885e-5,-5.8835692e-5,-5.87135e-5,-5.8591308e-5,-5.8469115e-5,-5.8346923e-5,-5.822473e-5,-5.8102538e-5,-5.798034e-5,-5.785815e-5,-5.7735957e-5,-5.7613765e-5,-5.7491572e-5,-5.736938e-5,-5.7247187e-5,-5.7124995e-5,-5.7002802e-5,-5.688061e-5,-5.6758417e-5,-5.6636225e-5,-5.6514033e-5,-5.639184e-5,-5.6269648e-5,-5.6147455e-5,-5.6025263e-5,-5.590307e-5,-5.5780878e-5,-5.5658686e-5,-5.5536493e-5,-5.54143e-5,-5.529211e-5,-5.5169916e-5,-5.5047723e-5,-5.492553e-5,-5.480334e-5,-5.4681146e-5,-5.4558954e-5,-5.443676e-5,-5.431457e-5,-5.4192376e-5,-5.4070184e-5,-5.394799e-5,-5.38258e-5,-5.3703607e-5,-5.3581414e-5,-5.345922e-5,-5.333703e-5,-5.3214837e-5,-5.3092645e-5,-5.2970452e-5,-5.284826e-5,-5.2726067e-5,-5.2603875e-5,-5.2481682e-5,-5.235949e-5,-5.2237297e-5,-5.2115105e-5,-5.1992913e-5,-5.1870717e-5,-5.1748524e-5,-5.162633e-5,-5.150414e-5,-5.1381947e-5,-5.1259754e-5,-5.1137562e-5,-5.101537e-5,-5.0893177e-5,-5.0770985e-5,-5.0648792e-5,-5.05266e-5,-5.0404407e-5,-5.0282215e-5,-5.0160023e-5,-5.003783e-5,-4.9915638e-5,-4.9793445e-5,-4.9671253e-5,-4.954906e-5,-4.9426868e-5,-4.9304675e-5,-4.9182483e-5,-4.906029e-5,-4.89381e-5,-4.8815906e-5,-4.8693713e-5,-4.857152e-5,-4.844933e-5,-4.8327136e-5,-4.8204944e-5,-4.808275e-5,-4.796056e-5,-4.7838366e-5,-4.7716174e-5,-4.759398e-5,-4.747179e-5,-4.7349597e-5,-4.7227404e-5,-4.710521e-5,-4.698302e-5,-4.6860827e-5,-4.6738634e-5,-4.6616442e-5,-4.649425e-5,-4.6372057e-5,-4.6249865e-5,-4.6127672e-5,-4.600548e-5,-4.5883287e-5,-4.576109e-5,-4.56389e-5,-4.5516706e-5,-4.5394514e-5,-4.527232e-5,-4.515013e-5,-4.5027937e-5,-4.4905744e-5,-4.4783552e-5,-4.466136e-5,-4.4539167e-5,-4.4416975e-5,-4.4294782e-5,-4.417259e-5,-4.4050397e-5,-4.3928205e-5,-4.3806012e-5,-4.368382e-5,-4.3561628e-5,-4.3439435e-5,-4.3317243e-5,-4.319505e-5,-4.3072858e-5,-4.2950665e-5,-4.2828473e-5,-4.270628e-5,-4.2584088e-5,-4.2461896e-5,-4.2339703e-5,-4.221751e-5,-4.209532e-5,-4.1973126e-5,-4.1850933e-5,-4.172874e-5,-4.160655e-5,-4.1484356e-5,-4.1362164e-5,-4.123997e-5,-4.111778e-5,-4.0995586e-5,-4.0873394e-5,-4.07512e-5,-4.062901e-5,-4.0506817e-5,-4.0384624e-5,-4.0262432e-5,-4.014024e-5,-4.0018047e-5,-3.9895855e-5,-3.9773662e-5,-3.9651466e-5,-3.9529274e-5,-3.940708e-5,-3.928489e-5,-3.9162696e-5,-3.9040504e-5,-3.891831e-5,-3.879612e-5,-3.8673927e-5,-3.8551734e-5,-3.842954e-5,-3.830735e-5,-3.8185157e-5,-3.8062964e-5,-3.7940772e-5,-3.781858e-5,-3.7696387e-5,-3.7574195e-5,-3.7452002e-5,-3.732981e-5,-3.7207617e-5,-3.7085425e-5,-3.6963233e-5,-3.684104e-5,-3.6718848e-5,-3.6596655e-5,-3.6474463e-5,-3.635227e-5,-3.6230078e-5,-3.6107886e-5,-3.5985693e-5,-3.58635e-5,-3.574131e-5,-3.5619116e-5,-3.5496923e-5,-3.537473e-5,-3.525254e-5,-3.5130346e-5,-3.5008154e-5,-3.488596e-5,-3.476377e-5,-3.4641576e-5,-3.4519384e-5,-3.439719e-5,-3.4275e-5,-3.4152807e-5,-3.4030614e-5,-3.390842e-5,-3.378623e-5,-3.3664037e-5,-3.354184e-5,-3.341965e-5,-3.3297456e-5,-3.3175264e-5,-3.305307e-5,-3.293088e-5,-3.2808686e-5,-3.2686494e-5,-3.25643e-5,-3.244211e-5,-3.2319916e-5,-3.2197724e-5,-3.207553e-5,-3.195334e-5,-3.1831147e-5,-3.1708954e-5,-3.1586762e-5,-3.146457e-5,-3.1342377e-5,-3.1220185e-5,-3.1097992e-5,-3.09758e-5,-3.0853607e-5,-3.0731415e-5,-3.0609222e-5,-3.048703e-5,-3.0364838e-5,-3.0242645e-5,-3.0120453e-5,-2.999826e-5,-2.9876068e-5,-2.9753875e-5,-2.9631683e-5,-2.950949e-5,-2.9387298e-5,-2.9265106e-5,-2.9142913e-5,-2.902072e-5,-2.8898527e-5,-2.8776334e-5,-2.8654142e-5,-2.853195e-5,-2.8409757e-5,-2.8287564e-5,-2.8165372e-5,-2.804318e-5,-2.7920987e-5,-2.7798795e-5,-2.7676602e-5,-2.755441e-5,-2.7432217e-5,-2.7310025e-5,-2.7187833e-5,-2.706564e-5,-2.6943448e-5,-2.6821255e-5,-2.6699063e-5,-2.657687e-5,-2.6454678e-5,-2.6332486e-5,-2.6210293e-5,-2.60881e-5,-2.5965908e-5,-2.5843714e-5,-2.5721522e-5,-2.559933e-5,-2.5477137e-5,-2.5354944e-5,-2.5232752e-5,-2.511056e-5,-2.4988367e-5,-2.4866174e-5,-2.4743982e-5,-2.462179e-5,-2.4499597e-5,-2.4377405e-5,-2.4255212e-5,-2.413302e-5,-2.4010827e-5,-2.3888635e-5,-2.3766443e-5,-2.364425e-5,-2.3522058e-5,-2.3399865e-5,-2.3277673e-5,-2.315548e-5,-2.3033288e-5,-2.2911096e-5,-2.2788901e-5,-2.2666709e-5,-2.2544516e-5,-2.2422324e-5,-2.2300132e-5,-2.217794e-5,-2.2055747e-5,-2.1933554e-5,-2.1811362e-5,-2.168917e-5,-2.1566977e-5,-2.1444785e-5,-2.1322592e-5,-2.12004e-5,-2.1078207e-5,-2.0956015e-5,-2.0833822e-5,-2.071163e-5,-2.0589438e-5,-2.0467245e-5,-2.0345053e-5,-2.022286e-5,-2.0100668e-5,-1.9978475e-5,-1.9856283e-5,-1.9734089e-5,-1.9611896e-5,-1.9489704e-5,-1.9367511e-5,-1.9245319e-5,-1.9123127e-5,-1.9000934e-5,-1.8878742e-5,-1.875655e-5,-1.8634357e-5,-1.8512164e-5,-1.8389972e-5,-1.826778e-5,-1.8145587e-5,-1.8023395e-5,-1.7901202e-5,-1.777901e-5,-1.7656817e-5,-1.7534625e-5,-1.7412432e-5,-1.729024e-5,-1.7168048e-5,-1.7045855e-5,-1.6923663e-5,-1.680147e-5,-1.6679276e-5,-1.6557084e-5,-1.6434891e-5,-1.6312699e-5,-1.6190506e-5,-1.6068314e-5,-1.5946121e-5,-1.5823929e-5,-1.5701737e-5,-1.5579544e-5,-1.5457352e-5,-1.533516e-5,-1.5212967e-5,-1.50907745e-5,-1.4968582e-5,-1.484639e-5,-1.4724197e-5,-1.4602005e-5,-1.4479811e-5,-1.4357619e-5,-1.42354265e-5,-1.4113234e-5,-1.3991042e-5,-1.3868849e-5,-1.3746657e-5,-1.3624464e-5,-1.3502272e-5,-1.33800795e-5,-1.3257887e-5,-1.3135695e-5,-1.3013502e-5,-1.2891309e-5,-1.2769116e-5,-1.2646924e-5,-1.2524732e-5,-1.2402539e-5,-1.2280347e-5,-1.2158154e-5,-1.2035962e-5,-1.1913769e-5,-1.1791577e-5,-1.1669385e-5,-1.1547192e-5,-1.1424999e-5,-1.1302806e-5,-1.1180614e-5,-1.10584215e-5,-1.0936229e-5,-1.0814037e-5,-1.0691844e-5,-1.0569652e-5,-1.0447459e-5,-1.0325267e-5,-1.0203074e-5,-1.0080882e-5,-9.95869e-6,-9.836496e-6,-9.714304e-6,-9.592111e-6,-9.469919e-6,-9.3477265e-6,-9.225534e-6,-9.103342e-6,-8.981149e-6,-8.858957e-6,-8.736764e-6,-8.614572e-6,-8.4923795e-6,-8.370186e-6,-8.247994e-6,-8.125801e-6,-8.003609e-6,-7.881416e-6,-7.759224e-6,-7.637032e-6,-7.514839e-6,-7.3926467e-6,-7.2704543e-6,-7.1482614e-6,-7.026069e-6,-6.9038765e-6,-6.781684e-6,-6.6594916e-6,-6.537299e-6,-6.4151063e-6,-6.292914e-6,-6.1707215e-6,-6.048529e-6,-5.9263366e-6,-5.804144e-6,-5.6819513e-6,-5.559759e-6,-5.4375664e-6,-5.315374e-6,-5.1931816e-6,-5.070989e-6,-4.9487962e-6,-4.826604e-6,-4.7044114e-6,-4.582219e-6,-4.4600265e-6,-4.337834e-6,-4.2156416e-6,-4.0934488e-6,-3.9712563e-6,-3.849064e-6,-3.7268715e-6,-3.6046788e-6,-3.4824864e-6,-3.360294e-6,-3.2381013e-6,-3.1159088e-6,-2.9937164e-6,-2.871524e-6,-2.7493313e-6,-2.6271389e-6,-2.5049465e-6,-2.3827538e-6,-2.2605614e-6,-2.138369e-6,-2.0161763e-6,-1.8939838e-6,-1.7717913e-6,-1.6495989e-6,-1.5274063e-6,-1.4052138e-6,-1.2830213e-6,-1.1608288e-6,-1.0386362e-6,-9.164438e-7,-7.9425126e-7,-6.720588e-7,-5.498663e-7,-4.2767377e-7,-3.0548125e-7,-1.8328876e-7,-6.109625e-8,6.109625e-8,1.8328876e-7,3.0548125e-7,4.2767377e-7,5.498663e-7,6.720588e-7,7.9425126e-7,9.164438e-7,1.0386362e-6,1.1608288e-6,1.2830213e-6,1.4052138e-6,1.5274063e-6,1.6495989e-6,1.7717913e-6,1.8939838e-6,2.0161763e-6,2.138369e-6,2.2605614e-6,2.3827538e-6,2.5049465e-6,2.6271389e-6,2.7493313e-6,2.871524e-6,2.9937164e-6,3.1159088e-6,3.2381013e-6,3.360294e-6,3.4824864e-6,3.6046788e-6,3.7268715e-6,3.849064e-6,3.9712563e-6,4.0934488e-6,4.2156416e-6,4.337834e-6,4.4600265e-6,4.582219e-6,4.7044114e-6,4.826604e-6,4.9487962e-6,5.070989e-6,5.1931816e-6,5.315374e-6,5.4375664e-6,5.559759e-6,5.6819513e-6,5.804144e-6,5.9263366e-6,6.048529e-6,6.1707215e-6,6.292914e-6,6.4151063e-6,6.537299e-6,6.6594916e-6,6.781684e-6,6.9038765e-6,7.026069e-6,7.1482614e-6,7.2704543e-6,7.3926467e-6,7.514839e-6,7.637032e-6,7.759224e-6,7.881416e-6,8.003609e-6,8.125801e-6,8.247994e-6,8.370186e-6,8.4923795e-6,8.614572e-6,8.736764e-6,8.858957e-6,8.981149e-6,9.103342e-6,9.225534e-6,9.3477265e-6,9.469919e-6,9.592111e-6,9.714304e-6,9.836496e-6,9.95869e-6,1.0080882e-5,1.0203074e-5,1.0325267e-5,1.0447459e-5,1.0569652e-5,1.0691844e-5,1.0814037e-5,1.0936229e-5,1.10584215e-5,1.1180614e-5,1.1302806e-5,1.1424999e-5,1.1547192e-5,1.1669385e-5,1.1791577e-5,1.1913769e-5,1.2035962e-5,1.2158154e-5,1.2280347e-5,1.2402539e-5,1.2524732e-5,1.2646924e-5,1.2769116e-5,1.2891309e-5,1.3013502e-5,1.3135695e-5,1.3257887e-5,1.33800795e-5,1.3502272e-5,1.3624464e-5,1.3746657e-5,1.3868849e-5,1.3991042e-5,1.4113234e-5,1.42354265e-5,1.4357619e-5,1.4479811e-5,1.4602005e-5,1.4724197e-5,1.484639e-5,1.4968582e-5,1.50907745e-5,1.5212967e-5,1.533516e-5,1.5457352e-5,1.5579544e-5,1.5701737e-5,1.5823929e-5,1.5946121e-5,1.6068314e-5,1.6190506e-5,1.6312699e-5,1.6434891e-5,1.6557084e-5,1.6679276e-5,1.680147e-5,1.6923663e-5,1.7045855e-5,1.7168048e-5,1.729024e-5,1.7412432e-5,1.7534625e-5,1.7656817e-5,1.777901e-5,1.7901202e-5,1.8023395e-5,1.8145587e-5,1.826778e-5,1.8389972e-5,1.8512164e-5,1.8634357e-5,1.875655e-5,1.8878742e-5,1.9000934e-5,1.9123127e-5,1.9245319e-5,1.9367511e-5,1.9489704e-5,1.9611896e-5,1.9734089e-5,1.9856283e-5,1.9978475e-5,2.0100668e-5,2.022286e-5,2.0345053e-5,2.0467245e-5,2.0589438e-5,2.071163e-5,2.0833822e-5,2.0956015e-5,2.1078207e-5,2.12004e-5,2.1322592e-5,2.1444785e-5,2.1566977e-5,2.168917e-5,2.1811362e-5,2.1933554e-5,2.2055747e-5,2.217794e-5,2.2300132e-5,2.2422324e-5,2.2544516e-5,2.2666709e-5,2.2788901e-5,2.2911096e-5,2.3033288e-5,2.315548e-5,2.3277673e-5,2.3399865e-5,2.3522058e-5,2.364425e-5,2.3766443e-5,2.3888635e-5,2.4010827e-5,2.413302e-5,2.4255212e-5,2.4377405e-5,2.4499597e-5,2.462179e-5,2.4743982e-5,2.4866174e-5,2.4988367e-5,2.511056e-5,2.5232752e-5,2.5354944e-5,2.5477137e-5,2.559933e-5,2.5721522e-5,2.5843714e-5,2.5965908e-5,2.60881e-5,2.6210293e-5,2.6332486e-5,2.6454678e-5,2.657687e-5,2.6699063e-5,2.6821255e-5,2.6943448e-5,2.706564e-5,2.7187833e-5,2.7310025e-5,2.7432217e-5,2.755441e-5,2.7676602e-5,2.7798795e-5,2.7920987e-5,2.804318e-5,2.8165372e-5,2.8287564e-5,2.8409757e-5,2.853195e-5,2.8654142e-5,2.8776334e-5,2.8898527e-5,2.902072e-5,2.9142913e-5,2.9265106e-5,2.9387298e-5,2.950949e-5,2.9631683e-5,2.9753875e-5,2.9876068e-5,2.999826e-5,3.0120453e-5,3.0242645e-5,3.0364838e-5,3.048703e-5,3.0609222e-5,3.0731415e-5,3.0853607e-5,3.09758e-5,3.1097992e-5,3.1220185e-5,3.1342377e-5,3.146457e-5,3.1586762e-5,3.1708954e-5,3.1831147e-5,3.195334e-5,3.207553e-5,3.2197724e-5,3.2319916e-5,3.244211e-5,3.25643e-5,3.2686494e-5,3.2808686e-5,3.293088e-5,3.305307e-5,3.3175264e-5,3.3297456e-5,3.341965e-5,3.354184e-5,3.3664037e-5,3.378623e-5,3.390842e-5,3.4030614e-5,3.4152807e-5,3.4275e-5,3.439719e-5,3.4519384e-5,3.4641576e-5,3.476377e-5,3.488596e-5,3.5008154e-5,3.5130346e-5,3.525254e-5,3.537473e-5,3.5496923e-5,3.5619116e-5,3.574131e-5,3.58635e-5,3.5985693e-5,3.6107886e-5,3.6230078e-5,3.635227e-5,3.6474463e-5,3.6596655e-5,3.6718848e-5,3.684104e-5,3.6963233e-5,3.7085425e-5,3.7207617e-5,3.732981e-5,3.7452002e-5,3.7574195e-5,3.7696387e-5,3.781858e-5,3.7940772e-5,3.8062964e-5,3.8185157e-5,3.830735e-5,3.842954e-5,3.8551734e-5,3.8673927e-5,3.879612e-5,3.891831e-5,3.9040504e-5,3.9162696e-5,3.928489e-5,3.940708e-5,3.9529274e-5,3.9651466e-5,3.9773662e-5,3.9895855e-5,4.0018047e-5,4.014024e-5,4.0262432e-5,4.0384624e-5,4.0506817e-5,4.062901e-5,4.07512e-5,4.0873394e-5,4.0995586e-5,4.111778e-5,4.123997e-5,4.1362164e-5,4.1484356e-5,4.160655e-5,4.172874e-5,4.1850933e-5,4.1973126e-5,4.209532e-5,4.221751e-5,4.2339703e-5,4.2461896e-5,4.2584088e-5,4.270628e-5,4.2828473e-5,4.2950665e-5,4.3072858e-5,4.319505e-5,4.3317243e-5,4.3439435e-5,4.3561628e-5,4.368382e-5,4.3806012e-5,4.3928205e-5,4.4050397e-5,4.417259e-5,4.4294782e-5,4.4416975e-5,4.4539167e-5,4.466136e-5,4.4783552e-5,4.4905744e-5,4.5027937e-5,4.515013e-5,4.527232e-5,4.5394514e-5,4.5516706e-5,4.56389e-5,4.576109e-5,4.5883287e-5,4.600548e-5,4.6127672e-5,4.6249865e-5,4.6372057e-5,4.649425e-5,4.6616442e-5,4.6738634e-5,4.6860827e-5,4.698302e-5,4.710521e-5,4.7227404e-5,4.7349597e-5,4.747179e-5,4.759398e-5,4.7716174e-5,4.7838366e-5,4.796056e-5,4.808275e-5,4.8204944e-5,4.8327136e-5,4.844933e-5,4.857152e-5,4.8693713e-5,4.8815906e-5,4.89381e-5,4.906029e-5,4.9182483e-5,4.9304675e-5,4.9426868e-5,4.954906e-5,4.9671253e-5,4.9793445e-5,4.9915638e-5,5.003783e-5,5.0160023e-5,5.0282215e-5,5.0404407e-5,5.05266e-5,5.0648792e-5,5.0770985e-5,5.0893177e-5,5.101537e-5,5.1137562e-5,5.1259754e-5,5.1381947e-5,5.150414e-5,5.162633e-5,5.1748524e-5,5.1870717e-5,5.1992913e-5,5.2115105e-5,5.2237297e-5,5.235949e-5,5.2481682e-5,5.2603875e-5,5.2726067e-5,5.284826e-5,5.2970452e-5,5.3092645e-5,5.3214837e-5,5.333703e-5,5.345922e-5,5.3581414e-5,5.3703607e-5,5.38258e-5,5.394799e-5,5.4070184e-5,5.4192376e-5,5.431457e-5,5.443676e-5,5.4558954e-5,5.4681146e-5,5.480334e-5,5.492553e-5,5.5047723e-5,5.5169916e-5,5.529211e-5,5.54143e-5,5.5536493e-5,5.5658686e-5,5.5780878e-5,5.590307e-5,5.6025263e-5,5.6147455e-5,5.6269648e-5,5.639184e-5,5.6514033e-5,5.6636225e-5,5.6758417e-5,5.688061e-5,5.7002802e-5,5.7124995e-5,5.7247187e-5,5.736938e-5,5.7491572e-5,5.7613765e-5,5.7735957e-5,5.785815e-5,5.798034e-5,5.8102538e-5,5.822473e-5,5.8346923e-5,5.8469115e-5,5.8591308e-5,5.87135e-5,5.8835692e-5,5.8957885e-5,5.9080077e-5,5.920227e-5,5.9324462e-5,5.9446655e-5,5.9568847e-5,5.969104e-5,5.9813232e-5,5.9935424e-5,6.0057617e-5,6.017981e-5,6.0302e-5,6.0424194e-5,6.0546387e-5,6.066858e-5,6.079077e-5,6.0912964e-5,6.1035156e-5]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js index e5f090558a3d..f998cb4beaa9 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js @@ -31,11 +31,11 @@ var expf = require( './../lib' ); // FIXTURES // -var mediumNegative = require( './fixtures/julia/medium_negative.json' ); -var mediumPositive = require( './fixtures/julia/medium_positive.json' ); -var smallNegative = require( './fixtures/julia/small_negative.json' ); -var smallPositive = require( './fixtures/julia/small_positive.json' ); -var tiny = require( './fixtures/julia/tiny.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative_float32.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive_float32.json' ); +var smallNegative = require( './fixtures/julia/small_negative_float32.json' ); +var smallPositive = require( './fixtures/julia/small_positive_float32.json' ); +var tiny = require( './fixtures/julia/tiny_float32.json' ); // TESTS // diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js index 347a53cfad88..dd1cfcc081de 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js @@ -32,11 +32,11 @@ var EPS = require( '@stdlib/constants/float32/eps' ); // FIXTURES // -var mediumNegative = require( './fixtures/julia/medium_negative.json' ); -var mediumPositive = require( './fixtures/julia/medium_positive.json' ); -var smallNegative = require( './fixtures/julia/small_negative.json' ); -var smallPositive = require( './fixtures/julia/small_positive.json' ); -var tiny = require( './fixtures/julia/tiny.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative_float32.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive_float32.json' ); +var smallNegative = require( './fixtures/julia/small_negative_float32.json' ); +var smallPositive = require( './fixtures/julia/small_positive_float32.json' ); +var tiny = require( './fixtures/julia/tiny_float32.json' ); // VARIABLES // From 9bcb506f77d534c09194e6bf83443128a43b5a3e Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 18:48:56 +0530 Subject: [PATCH 05/18] scaled tolerance value --- .../test/fixtures/julia/medium_negative_float32.json | 2 +- .../base/special/expf/test/fixtures/julia/runner.jl | 2 +- .../@stdlib/math/base/special/expf/test/test.js | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json index 4b21dc1f9bd5..d46efac5d01c 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json @@ -1 +1 @@ -{"expected":[2.944143e-39,3.216434e-39,3.513907e-39,3.838891e-39,4.193932e-39,4.581844e-39,5.005598e-39,5.468542e-39,5.974301e-39,6.526836e-39,7.130474e-39,7.789937e-39,8.510391e-39,9.297478e-39,1.0157358e-38,1.1096849e-38,1.2123144e-38,1.3244357e-38,1.4469266e-38,1.5807461e-38,1.7269419e-38,1.8866586e-38,2.0611468e-38,2.2517726e-38,2.4600285e-38,2.6875655e-38,2.9361258e-38,3.2076742e-38,3.504337e-38,3.8284368e-38,4.1825107e-38,4.5693316e-38,4.991928e-38,5.4536076e-38,5.9579864e-38,6.509062e-38,7.111055e-38,7.768723e-38,8.487216e-38,9.272158e-38,1.0129697e-37,1.1066545e-37,1.2090038e-37,1.3208189e-37,1.4429752e-37,1.5764413e-37,1.7222389e-37,1.8815208e-37,2.0555338e-37,2.2456404e-37,2.4533292e-37,2.680226e-37,2.9281075e-37,3.1989144e-37,3.494767e-37,3.818011e-37,4.1711207e-37,4.556888e-37,4.978333e-37,5.438756e-37,5.941761e-37,6.4912867e-37,7.091635e-37,7.747507e-37,8.464038e-37,9.246908e-37,1.0102111e-36,1.1036407e-36,1.2057113e-36,1.3172219e-36,1.4390455e-36,1.5721362e-36,1.7175356e-36,1.8763825e-36,2.0499202e-36,2.2395248e-36,2.446648e-36,2.672927e-36,2.9201334e-36,3.190203e-36,3.4852496e-36,3.8075843e-36,4.1597297e-36,4.5444437e-36,4.964738e-36,5.4239447e-36,5.92558e-36,6.473609e-36,7.0723226e-36,7.726409e-36,8.440988e-36,9.2216556e-36,1.0074523e-35,1.1006268e-35,1.20241865e-35,1.3136247e-35,1.4351266e-35,1.5678548e-35,1.7128583e-35,1.8712725e-35,2.0443378e-35,2.233409e-35,2.4399664e-35,2.6656274e-35,2.912159e-35,3.181491e-35,3.4757586e-35,3.797215e-35,4.1484016e-35,4.532068e-35,4.951218e-35,5.4091325e-35,5.909398e-35,6.4559303e-35,7.053009e-35,7.7053086e-35,8.418001e-35,9.196542e-35,1.0047087e-34,1.0976296e-34,1.1991442e-34,1.3100474e-34,1.4312074e-34,1.5635731e-34,1.7081806e-34,1.8661623e-34,2.0387705e-34,2.2273267e-34,2.4333217e-34,2.6583683e-34,2.9042282e-34,3.1728269e-34,3.4662665e-34,3.7868454e-34,4.137073e-34,4.5196913e-34,4.937734e-34,5.394402e-34,5.8933047e-34,6.438349e-34,7.0338014e-34,7.684325e-34,8.395012e-34,9.171427e-34,1.0019649e-33,1.094632e-33,1.1958785e-33,1.3064797e-33,1.42730985e-33,1.5593151e-33,1.7035288e-33,1.8610801e-33,2.0332028e-33,2.2212442e-33,2.4266766e-33,2.6511086e-33,2.8963193e-33,3.164186e-33,3.456827e-33,3.7765327e-33,4.1258063e-33,4.5073828e-33,4.9242494e-33,5.3796705e-33,5.877211e-33,6.420766e-33,7.0146465e-33,7.663398e-33,8.37215e-33,9.146451e-33,9.992363e-33,1.09165104e-32,1.1926127e-32,1.3029119e-32,1.423412e-32,1.5550568e-32,1.6988895e-32,1.856012e-32,2.0276657e-32,2.215195e-32,2.4200681e-32,2.6438887e-32,2.8884097e-32,3.1555452e-32,3.4473867e-32,3.7662192e-32,4.1145708e-32,4.495108e-32,4.9108395e-32,5.3650197e-32,5.861206e-32,6.403281e-32,6.9954903e-32,7.64247e-32,8.3492866e-32,9.121473e-32,9.965151e-32,1.0886781e-31,1.1893648e-31,1.2993636e-31,1.4195357e-31,1.5508218e-31,1.6942501e-31,1.8509434e-31,2.0221284e-31,2.2091456e-31,2.4134592e-31,2.6366888e-31,2.8805437e-31,3.1469517e-31,3.4379984e-31,3.7559628e-31,4.1033343e-31,4.4828323e-31,4.8974287e-31,5.350369e-31,5.8451993e-31,6.385843e-31,6.9764395e-31,7.6216576e-31,8.326549e-31,9.096633e-31,9.937938e-31,1.0857051e-30,1.1861169e-30,1.2958152e-30,1.4156591e-30,1.5465986e-30,1.6896362e-30,1.8459027e-30,2.0166215e-30,2.2031296e-30,2.4068866e-30,2.6294881e-30,2.8726772e-30,3.1383578e-30,3.4286097e-30,3.7457344e-30,4.09216e-30,4.4706243e-30,4.8840914e-30,5.3357983e-30,5.829281e-30,6.368404e-30,6.957387e-30,7.6008435e-30,8.30381e-30,9.07186e-30,9.910874e-30,1.0827484e-29,1.1828867e-29,1.2922864e-29,1.4118038e-29,1.542375e-29,1.685022e-29,1.8408618e-29,2.0111144e-29,2.1971298e-29,2.400332e-29,2.6223273e-29,2.8648542e-29,3.129811e-29,3.4192726e-29,3.735505e-29,4.0809845e-29,4.4584156e-29,4.8707536e-29,5.3212674e-29,5.813406e-29,6.351061e-29,6.9384407e-29,7.580144e-29,8.2811966e-29,9.0470854e-29,9.883808e-29,1.0797915e-28,1.1796564e-28,1.2887671e-28,1.4079592e-28,1.5381746e-28,1.6804332e-28,1.8358485e-28,2.0056376e-28,2.1911295e-28,2.3937768e-28,2.615176e-28,2.8570415e-28,3.1212757e-28,3.409948e-28,3.725318e-28,4.069871e-28,4.446274e-28,4.857489e-28,5.3067353e-28,5.79753e-28,6.333741e-28,6.919519e-28,7.559473e-28,8.258613e-28,9.022414e-28,9.856891e-28,1.0768509e-27,1.1764438e-27,1.2852476e-27,1.4041142e-27,1.5339799e-27,1.6758504e-27,1.830842e-27,2.000168e-27,2.1851541e-27,2.387258e-27,2.6080443e-27,2.84925e-27,3.1127639e-27,3.4006488e-27,3.7151728e-27,4.0587718e-27,4.4341486e-27,4.8442423e-27,5.2922633e-27,5.7817422e-27,6.3164682e-27,6.9006486e-27,7.538858e-27,8.236091e-27,8.997842e-27,9.830011e-27,1.07391425e-26,1.1732355e-26,1.2817426e-26,1.4002904e-26,1.5297967e-26,1.6712804e-26,1.8258492e-26,1.9947134e-26,2.1792034e-26,2.3807477e-26,2.600932e-26,2.8414798e-26,3.104275e-26,3.391388e-26,3.7050415e-26,4.0477032e-26,4.4220563e-26,4.8310316e-26,5.277851e-26,5.765975e-26,6.299243e-26,6.88183e-26,7.5182986e-26,8.2136617e-26,8.973305e-26,9.803204e-26,1.0709857e-25,1.170036e-25,1.2782521e-25,1.3964716e-25,1.5256247e-25,1.6667226e-25,1.82087e-25,1.9892736e-25,2.1732605e-25,2.3742551e-25,2.593839e-25,2.8337309e-25,3.0958094e-25,3.382139e-25,3.6949375e-25,4.0366649e-25,4.4099967e-25,4.817857e-25,5.263458e-25,5.75025e-25,6.282064e-25,6.863063e-25,7.4977955e-25,8.1912624e-25,8.948834e-25,9.77647e-25,1.0680649e-24,1.1668453e-24,1.2747662e-24,1.3926633e-24,1.5214642e-24,1.6621773e-24,1.8159042e-24,1.9838562e-24,2.1673338e-24,2.3677804e-24,2.5867652e-24,2.826003e-24,3.0873785e-24,3.3729156e-24,3.6848608e-24,4.0256566e-24,4.3979705e-24,4.8047364e-24,5.249104e-24,5.734569e-24,6.2649325e-24,6.8443465e-24,7.477377e-24,8.1689245e-24,8.92443e-24,9.749808e-24,1.06515226e-23,1.1636676e-23,1.2712897e-23,1.3888654e-23,1.517315e-23,1.6576443e-23,1.8109591e-23,1.9784461e-23,2.1614233e-23,2.3613232e-23,2.579711e-23,2.8183072e-23,3.078959e-23,3.3637174e-23,3.674812e-23,4.0146782e-23,4.3859937e-23,4.7916336e-23,5.234789e-23,5.7189304e-23,6.247847e-23,6.8257073e-23,7.456985e-23,8.146647e-23,8.900092e-23,9.723219e-23,1.0622516e-22,1.1604942e-22,1.2678228e-22,1.3850778e-22,1.5131772e-22,1.6531301e-22,1.8060204e-22,1.9730507e-22,2.155529e-22,2.3548836e-22,2.5726857e-22,2.8106213e-22,3.0705624e-22,3.3545443e-22,3.6647905e-22,4.003745e-22,4.3740325e-22,4.7785665e-22,5.2205133e-22,5.703334e-22,6.230833e-22,6.807093e-22,7.4366496e-22,8.12443e-22,8.875821e-22,9.696741e-22,1.0593546e-21,1.1573294e-21,1.2643654e-21,1.3813005e-21,1.5090563e-21,1.6486219e-21,1.8010951e-21,1.96767e-21,2.1496506e-21,2.3484617e-21,2.5656697e-21,2.8029564e-21,3.0621887e-21,3.3453963e-21,3.654796e-21,3.9928263e-21,4.3621042e-21,4.765535e-21,5.2062768e-21,5.6877807e-21,6.2138405e-21,6.78853e-21,7.416369e-21,8.102274e-21,8.851615e-21,9.670297e-21,1.0564657e-20,1.1541733e-20,1.2609173e-20,1.3775336e-20,1.504941e-20,1.644126e-20,1.7961834e-20,1.9623041e-20,2.1437883e-20,2.3420663e-20,2.5586729e-20,2.7953124e-20,3.0538377e-20,3.336273e-20,3.644843e-20,3.9819376e-20,4.3502084e-20,4.7525387e-20,5.1920786e-20,5.6722915e-20,6.196895e-20,6.770017e-20,7.396144e-20,8.080178e-20,8.82751e-20,9.643925e-20,1.0535846e-19,1.1510257e-19,1.2574787e-19,1.3737822e-19,1.5008369e-19,1.6396423e-19,1.7912851e-19,1.9569527e-19,2.1379501e-19,2.3356791e-19,2.5516953e-19,2.7876894e-19,3.0455097e-19,3.3271874e-19,3.6349033e-19,3.9710785e-19,4.338345e-19,4.739578e-19,5.177939e-19,5.6568225e-19,6.1799956e-19,6.751554e-19,7.3759737e-19,8.058174e-19,8.803436e-19,9.617625e-19,1.0507114e-18,1.1478868e-18,1.2540542e-18,1.3700358e-18,1.496744e-18,1.6351708e-18,1.7864001e-18,1.9516233e-18,2.1321199e-18,2.3293096e-18,2.5447364e-18,2.7800872e-18,3.037216e-18,3.3181138e-18,3.624991e-18,3.960249e-18,4.326514e-18,4.726671e-18,5.1638185e-18,5.6413958e-18,6.163142e-18,6.7331422e-18,7.355887e-18,8.036199e-18,8.779429e-18,9.591397e-18,1.047846e-17,1.1447607e-17,1.2506343e-17,1.3662996e-17,1.4926623e-17,1.6307116e-17,1.7815353e-17,1.946301e-17,2.1263053e-17,2.3229573e-17,2.5377967e-17,2.7725056e-17,3.0289332e-17,3.3090652e-17,3.615105e-17,3.949449e-17,4.314715e-17,4.7137807e-17,5.1497363e-17,5.6260114e-17,6.1463344e-17,6.71478e-17,7.335827e-17,8.014283e-17,8.7554864e-17,9.56524e-17,1.04498845e-16,1.141639e-16,1.2472237e-16,1.3625736e-16,1.4885916e-16,1.6262645e-16,1.7766768e-16,1.9409933e-16,2.1205067e-16,2.3166224e-16,2.530876e-16,2.7649554e-16,3.020673e-16,3.300041e-16,3.6052462e-16,3.9386786e-16,4.302965e-16,4.700926e-16,5.1356926e-16,5.6106684e-16,6.129573e-16,6.696494e-16,7.3158214e-16,7.992427e-16,8.7316095e-16,9.539155e-16,1.0421426e-15,1.1385256e-15,1.2438225e-15,1.3588577e-15,1.4845321e-15,1.6218357e-15,1.7718317e-15,1.9357e-15,2.1147238e-15,2.3103048e-15,2.5239837e-15,2.757415e-15,3.0124354e-15,3.2910415e-15,3.5954143e-15,3.9279527e-15,4.2912303e-15,4.6881063e-15,5.121687e-15,5.595368e-15,6.1128805e-15,6.6782322e-15,7.295871e-15,7.970632e-15,8.707798e-15,9.513177e-15,1.0393006e-14,1.13542065e-14,1.2404304e-14,1.35515454e-14,1.4804865e-14,1.6174128e-14,1.7669997e-14,1.9304213e-14,2.108961e-14,2.3040087e-14,2.5171005e-14,2.7498953e-14,3.0042202e-14,3.2820728e-14,3.585616e-14,3.917233e-14,4.279528e-14,4.6753213e-14,5.1077296e-14,5.5801196e-14,6.0961984e-14,6.66002e-14,7.275974e-14,7.9489095e-14,8.684067e-14,9.487216e-14,1.0364664e-13,1.1323243e-13,1.23705e-13,1.351459e-13,1.476449e-13,1.613002e-13,1.7621809e-13,1.9251605e-13,2.1032095e-13,2.2977255e-13,2.5102362e-13,2.7423962e-13,2.996033e-13,3.273122e-13,3.575838e-13,3.906558e-13,4.2678572e-13,4.66258e-13,5.0938003e-13,5.564902e-13,6.079585e-13,6.641858e-13,7.2561456e-13,7.9272325e-13,8.660385e-13,9.461362e-13,1.0336399e-12,1.1292385e-12,1.2336765e-12,1.3477735e-12,1.4724255e-12,1.6086031e-12,1.7573786e-12,1.9199104e-12,2.0974739e-12,2.2914637e-12,2.5033905e-12,2.7349225e-12,2.9878628e-12,3.2641962e-12,3.5660932e-12,3.8959044e-12,4.256218e-12,4.6498647e-12,5.079909e-12,5.5497365e-12,6.0630056e-12,6.6237445e-12,7.2363573e-12,7.9056145e-12,8.636784e-12,9.435559e-12,1.030821e-11,1.126159e-11,1.2303121e-11,1.3441004e-11,1.46841e-11,1.6042164e-11,1.7525861e-11,1.9146747e-11,2.0917578e-11,2.2852147e-11,2.4965635e-11,2.7274643e-11,2.9797147e-11,3.2553005e-11,3.556368e-11,3.88528e-11,4.2446192e-11,4.6371844e-11,5.0660653e-11,5.534602e-11,6.046471e-11,6.605694e-11,7.216623e-11,7.88407e-11,8.61323e-11,9.409828e-11,1.02801184e-10,1.1230878e-10,1.2269592e-10,1.340435e-10,1.4644055e-10,1.5998446e-10,1.7478068e-10,1.9094568e-10,2.0860534e-10,2.2789828e-10,2.48976e-10,2.7200261e-10,2.9715944e-10,3.246423e-10,3.5466696e-10,3.8746917e-10,4.233044e-10,4.6245383e-10,5.05225e-10,5.519509e-10,6.029994e-10,6.5876793e-10,7.196943e-10,7.8625695e-10,8.5897417e-10,9.384185e-10,1.0252084e-9,1.1200251e-9,1.2236132e-9,1.3367795e-9,1.4604148e-9,1.5954816e-9,1.7430403e-9,1.9042494e-9,2.0803645e-9,2.2727722e-9,2.48297e-9,2.7126084e-9,2.9634906e-9,3.2375698e-9,3.5370042e-9,3.864125e-9,4.2215e-9,4.6119353e-9,5.038472e-9,5.5044667e-9,6.013549e-9,6.569714e-9,7.17733e-9,7.841128e-9,8.5663325e-9,9.358593e-9,1.02241255e-8,1.1169727e-8,1.2202763e-8,1.3331365e-8,1.456432e-8,1.5911306e-8,1.7382902e-8,1.8990566e-8,2.0746953e-8,2.2665741e-8,2.4761988e-8,2.7052161e-8,2.9554087e-8,3.2287467e-8,3.5273583e-8,3.8535873e-8,4.2099956e-8,4.5993584e-8,5.0247312e-8,5.4894556e-8,5.99715e-8,6.55181e-8,7.157757e-8,7.819744e-8,8.542972e-8,9.333071e-8,1.0196263e-7,1.1139267e-7,1.2169497e-7,1.3295009e-7,1.4524602e-7,1.586793e-7,1.7335498e-7,1.8938793e-7,2.0690374e-7,2.2603929e-7,2.4694484e-7,2.6978387e-7,2.947352e-7,3.2199418e-7,3.517739e-7,3.8430818e-7,4.1985146e-7,4.58682e-7,5.011038e-7,5.4744856e-7,5.980801e-7,6.533943e-7,7.1382436e-7,7.798434e-7,8.519674e-7,9.307628e-7,1.0168457e-6,1.11089e-6,1.2136321e-6,1.3258754e-6,1.4485007e-6,1.5824672e-6,1.7288238e-6,1.8887146e-6,2.063395e-6,2.2542308e-6,2.4627163e-6,2.690484e-6,2.9393143e-6,3.2111607e-6,3.5081491e-6,3.832605e-6,4.187069e-6,4.5743113e-6,4.9973723e-6,5.459561e-6,5.9644963e-6,6.5161307e-6,7.118777e-6,7.7771665e-6,8.496449e-6,9.282254e-6,1.0140736e-5,1.1078605e-5,1.2103224e-5,1.3222608e-5,1.4445518e-5,1.5781516e-5,1.7241091e-5,1.8835657e-5,2.0577698e-5,2.2480854e-5,2.4560002e-5,2.6831469e-5,2.9313012e-5,3.2024065e-5,3.4985856e-5,3.8221533e-5,4.1756502e-5,4.561841e-5,4.983749e-5,5.4446777e-5,5.9482303e-5,6.498361e-5,7.09937e-5,7.755965e-5,8.4732856e-5,9.2569404e-5,0.00010113081,0.000110484034,0.000120702294,0.00013186561,0.00014406124,0.00015738494,0.00017194089,0.00018784308,0.00020521581,0.00022419546,0.0002449305,0.0002675832,0.000292331,0.00031936733,0.00034890446,0.00038117336,0.0004164267,0.00045494025,0.000497016,0.00054298295,0.0005932015,0.0006480645,0.0007080013,0.00077348173,0.00084501784,0.0009231705,0.0010085506,0.0011018278,0.0012037319,0.00131506,0.0014366851,0.0015695582,0.0017147209,0.0018733091,0.0020465637,0.0022358429,0.0024426265,0.0026685363,0.0029153393,0.003184967,0.003479533,0.0038013405,0.0041529126,0.004536998,0.0049566086,0.005415027,0.0059158406,0.006462975,0.0070607085,0.0077137277,0.008427142,0.009206533,0.010058012,0.0109882355,0.012004497,0.013114743,0.014327678,0.015652793,0.017100455,0.018682012,0.02040984,0.022297466,0.024359671,0.026612602,0.029073898,0.031762835,0.034700457,0.037909765,0.041415893,0.045246284,0.049430937,0.054002624,0.058997117,0.06445353,0.07041458,0.076926954,0.084041625,0.09181433,0.10030588,0.109582774,0.11971766,0.13078988,0.14288613,0.15610112,0.17053832,0.18631074,0.20354189,0.22236672,0.24293254,0.26540044,0.28994632,0.3167623,0.3460584,0.37806404,0.4130297,0.45122924,0.49296167,0.5385538,0.5883626,0.642778,0.702226],"x":[-88.721,-88.632545,-88.54409,-88.455635,-88.36718,-88.27872,-88.19026,-88.10181,-88.01335,-87.9249,-87.83644,-87.747986,-87.65953,-87.571075,-87.48262,-87.39416,-87.3057,-87.21725,-87.12879,-87.04034,-86.95188,-86.86343,-86.77497,-86.686516,-86.59806,-86.5096,-86.42114,-86.33269,-86.24423,-86.15578,-86.06732,-85.97887,-85.89041,-85.801956,-85.7135,-85.62504,-85.53658,-85.44813,-85.35967,-85.27122,-85.18276,-85.09431,-85.00585,-84.9174,-84.82894,-84.74048,-84.65202,-84.56357,-84.47511,-84.38666,-84.2982,-84.20975,-84.12129,-84.03284,-83.94438,-83.85592,-83.76746,-83.67901,-83.59055,-83.5021,-83.41364,-83.32519,-83.23673,-83.14828,-83.05982,-82.97136,-82.882904,-82.79445,-82.70599,-82.61754,-82.52908,-82.44063,-82.35217,-82.26372,-82.17526,-82.0868,-81.998344,-81.90989,-81.821434,-81.73298,-81.64452,-81.55607,-81.46761,-81.37916,-81.2907,-81.20224,-81.113785,-81.02533,-80.936874,-80.84842,-80.759964,-80.67151,-80.58305,-80.4946,-80.40614,-80.31769,-80.229225,-80.14077,-80.052315,-79.96386,-79.875404,-79.78695,-79.698494,-79.61004,-79.52158,-79.43313,-79.344666,-79.25621,-79.167755,-79.0793,-78.990845,-78.90239,-78.813934,-78.72548,-78.637024,-78.54857,-78.460106,-78.37165,-78.283195,-78.19474,-78.106285,-78.01783,-77.929375,-77.84092,-77.752464,-77.66401,-77.57555,-77.48709,-77.398636,-77.31018,-77.221725,-77.13327,-77.044815,-76.95636,-76.867905,-76.77945,-76.69099,-76.60253,-76.51408,-76.42562,-76.337166,-76.24871,-76.160255,-76.0718,-75.983345,-75.89489,-75.80643,-75.71797,-75.62952,-75.54106,-75.45261,-75.36415,-75.275696,-75.18724,-75.098785,-75.01033,-74.92187,-74.83341,-74.74496,-74.6565,-74.56805,-74.47959,-74.391136,-74.30268,-74.214226,-74.12577,-74.03731,-73.94885,-73.8604,-73.77194,-73.68349,-73.59503,-73.50658,-73.41812,-73.329666,-73.24121,-73.15275,-73.06429,-72.97584,-72.88738,-72.79893,-72.71047,-72.62202,-72.53356,-72.44511,-72.35665,-72.26819,-72.17973,-72.09128,-72.00282,-71.91437,-71.82591,-71.73746,-71.649,-71.56055,-71.47209,-71.38363,-71.29517,-71.20672,-71.11826,-71.02981,-70.94135,-70.8529,-70.76444,-70.67599,-70.58753,-70.49908,-70.410614,-70.32216,-70.2337,-70.14525,-70.05679,-69.96834,-69.87988,-69.79143,-69.70297,-69.61452,-69.526054,-69.4376,-69.349144,-69.26069,-69.17223,-69.08378,-68.99532,-68.90687,-68.81841,-68.72996,-68.641495,-68.55304,-68.464584,-68.37613,-68.287674,-68.19922,-68.11076,-68.02231,-67.93385,-67.8454,-67.756935,-67.66848,-67.580025,-67.49157,-67.403114,-67.31466,-67.226204,-67.13775,-67.04929,-66.96084,-66.872375,-66.78392,-66.695465,-66.60701,-66.518555,-66.4301,-66.341644,-66.25319,-66.164734,-66.07628,-65.987816,-65.89936,-65.810905,-65.72245,-65.633995,-65.54554,-65.457085,-65.36863,-65.280174,-65.19172,-65.10326,-65.0148,-64.926346,-64.83789,-64.749435,-64.66098,-64.572525,-64.48407,-64.395615,-64.30716,-64.2187,-64.13024,-64.04179,-63.95333,-63.864876,-63.77642,-63.687965,-63.59951,-63.51105,-63.422596,-63.33414,-63.245686,-63.15723,-63.06877,-62.980316,-62.89186,-62.803406,-62.71495,-62.62649,-62.538036,-62.44958,-62.361126,-62.27267,-62.18421,-62.095757,-62.0073,-61.918846,-61.83039,-61.741932,-61.653477,-61.56502,-61.476566,-61.38811,-61.299652,-61.211197,-61.12274,-61.034286,-60.94583,-60.857372,-60.768917,-60.68046,-60.592007,-60.50355,-60.415092,-60.326637,-60.238182,-60.149727,-60.06127,-59.972813,-59.884357,-59.795902,-59.707447,-59.61899,-59.530533,-59.442078,-59.353622,-59.265167,-59.176712,-59.088253,-58.999798,-58.911343,-58.822887,-58.734432,-58.645973,-58.557518,-58.469063,-58.380608,-58.292152,-58.203693,-58.11524,-58.026783,-57.938328,-57.849873,-57.761414,-57.67296,-57.584503,-57.496048,-57.407593,-57.319134,-57.23068,-57.142223,-57.05377,-56.965313,-56.876858,-56.7884,-56.699944,-56.61149,-56.523033,-56.434578,-56.34612,-56.257664,-56.16921,-56.080753,-55.9923,-55.90384,-55.815384,-55.72693,-55.638474,-55.55002,-55.46156,-55.373104,-55.28465,-55.196194,-55.10774,-55.01928,-54.930824,-54.84237,-54.753914,-54.66546,-54.577,-54.488544,-54.40009,-54.311634,-54.22318,-54.13472,-54.046265,-53.95781,-53.869354,-53.7809,-53.69244,-53.603985,-53.51553,-53.427074,-53.33862,-53.25016,-53.161705,-53.07325,-52.984795,-52.89634,-52.80788,-52.719425,-52.63097,-52.542515,-52.45406,-52.3656,-52.277145,-52.18869,-52.100235,-52.01178,-51.92332,-51.834866,-51.74641,-51.657955,-51.5695,-51.48104,-51.392586,-51.30413,-51.215675,-51.12722,-51.03876,-50.950306,-50.86185,-50.773396,-50.68494,-50.59648,-50.508026,-50.41957,-50.331116,-50.24266,-50.1542,-50.065746,-49.97729,-49.888836,-49.80038,-49.71192,-49.623466,-49.53501,-49.446556,-49.3581,-49.26964,-49.181187,-49.09273,-49.004276,-48.91582,-48.827362,-48.738907,-48.65045,-48.561996,-48.47354,-48.385082,-48.296627,-48.20817,-48.119717,-48.03126,-47.942802,-47.854347,-47.765892,-47.677437,-47.58898,-47.500526,-47.412067,-47.323612,-47.235157,-47.1467,-47.058247,-46.969788,-46.881332,-46.792877,-46.704422,-46.615967,-46.527508,-46.439053,-46.350597,-46.262142,-46.173687,-46.085228,-45.996773,-45.908318,-45.819862,-45.731407,-45.64295,-45.554493,-45.466038,-45.377583,-45.289127,-45.20067,-45.112213,-45.023758,-44.935303,-44.846848,-44.75839,-44.669933,-44.58148,-44.493023,-44.404568,-44.31611,-44.227654,-44.1392,-44.050743,-43.962288,-43.87383,-43.785374,-43.69692,-43.608463,-43.520008,-43.43155,-43.343094,-43.25464,-43.166183,-43.07773,-42.98927,-42.900814,-42.81236,-42.723904,-42.63545,-42.54699,-42.458534,-42.37008,-42.281624,-42.19317,-42.10471,-42.016254,-41.9278,-41.839344,-41.75089,-41.66243,-41.573975,-41.48552,-41.397064,-41.30861,-41.22015,-41.131695,-41.04324,-40.954784,-40.86633,-40.77787,-40.689415,-40.60096,-40.512505,-40.42405,-40.33559,-40.247135,-40.15868,-40.070225,-39.98177,-39.89331,-39.804855,-39.7164,-39.627945,-39.53949,-39.45103,-39.362576,-39.27412,-39.185665,-39.09721,-39.00875,-38.920296,-38.83184,-38.743385,-38.65493,-38.56647,-38.478016,-38.38956,-38.301105,-38.21265,-38.124195,-38.035736,-37.94728,-37.858826,-37.77037,-37.681915,-37.593456,-37.505,-37.416546,-37.32809,-37.239635,-37.151176,-37.06272,-36.974266,-36.88581,-36.797356,-36.708897,-36.62044,-36.531986,-36.44353,-36.355076,-36.266617,-36.17816,-36.089706,-36.00125,-35.912796,-35.824337,-35.73588,-35.647427,-35.55897,-35.470516,-35.382057,-35.293602,-35.205147,-35.11669,-35.028236,-34.939777,-34.851322,-34.762867,-34.67441,-34.585957,-34.497498,-34.409042,-34.320587,-34.232132,-34.143677,-34.055218,-33.966763,-33.878307,-33.789852,-33.701397,-33.612938,-33.524483,-33.436028,-33.347572,-33.259117,-33.17066,-33.082203,-32.993748,-32.905293,-32.816837,-32.72838,-32.639923,-32.551468,-32.463013,-32.374557,-32.2861,-32.197643,-32.109188,-32.020733,-31.932276,-31.84382,-31.755363,-31.666908,-31.578453,-31.489996,-31.40154,-31.313084,-31.224628,-31.136173,-31.047716,-30.95926,-30.870806,-30.782349,-30.693893,-30.605436,-30.516981,-30.428526,-30.340069,-30.251614,-30.163157,-30.074701,-29.986246,-29.897789,-29.809334,-29.720877,-29.632421,-29.543966,-29.45551,-29.367054,-29.278597,-29.190142,-29.101686,-29.01323,-28.924774,-28.836317,-28.747862,-28.659407,-28.57095,-28.482494,-28.394037,-28.305582,-28.217127,-28.12867,-28.040215,-27.951757,-27.863302,-27.774847,-27.68639,-27.597935,-27.509478,-27.421022,-27.332567,-27.24411,-27.155655,-27.067198,-26.978743,-26.890287,-26.80183,-26.713375,-26.624918,-26.536463,-26.448008,-26.35955,-26.271095,-26.18264,-26.094183,-26.005728,-25.91727,-25.828815,-25.74036,-25.651903,-25.563448,-25.47499,-25.386536,-25.29808,-25.209623,-25.121168,-25.032711,-24.944256,-24.8558,-24.767344,-24.678888,-24.590431,-24.501976,-24.41352,-24.325064,-24.236609,-24.148151,-24.059696,-23.971241,-23.882784,-23.794329,-23.705872,-23.617416,-23.528961,-23.440504,-23.352049,-23.263592,-23.175137,-23.086681,-22.998224,-22.90977,-22.821312,-22.732857,-22.644402,-22.555944,-22.46749,-22.379032,-22.290577,-22.202122,-22.113665,-22.02521,-21.936752,-21.848297,-21.759842,-21.671385,-21.58293,-21.494474,-21.406017,-21.317562,-21.229105,-21.14065,-21.052195,-20.963737,-20.875282,-20.786825,-20.69837,-20.609915,-20.521458,-20.433002,-20.344545,-20.25609,-20.167635,-20.079178,-19.990723,-19.902266,-19.81381,-19.725355,-19.636898,-19.548443,-19.459986,-19.37153,-19.283075,-19.194618,-19.106163,-19.017706,-18.92925,-18.840796,-18.752338,-18.663883,-18.575426,-18.48697,-18.398516,-18.310059,-18.221603,-18.133146,-18.044691,-17.956236,-17.867779,-17.779324,-17.690866,-17.602411,-17.513956,-17.425499,-17.337044,-17.248587,-17.160131,-17.071676,-16.98322,-16.894764,-16.806309,-16.717852,-16.629396,-16.54094,-16.452484,-16.364029,-16.275572,-16.187117,-16.09866,-16.010204,-15.921748,-15.833292,-15.744837,-15.656381,-15.5679245,-15.479468,-15.391012,-15.302557,-15.214101,-15.125645,-15.037189,-14.948732,-14.860277,-14.771821,-14.683365,-14.594909,-14.506453,-14.417997,-14.329541,-14.241085,-14.152629,-14.064173,-13.975718,-13.887261,-13.798805,-13.710349,-13.621893,-13.533438,-13.444982,-13.356525,-13.268069,-13.179614,-13.091158,-13.002702,-12.914246,-12.825789,-12.737334,-12.648878,-12.560422,-12.471966,-12.38351,-12.295054,-12.206598,-12.118142,-12.029686,-11.94123,-11.852775,-11.764318,-11.675862,-11.587406,-11.49895,-11.410495,-11.322039,-11.2335825,-11.145126,-11.056671,-10.968215,-10.879759,-10.791303,-10.702847,-10.614391,-10.525935,-10.437479,-10.349023,-10.260567,-10.1721115,-10.083655,-9.995199,-9.906743,-9.818287,-9.729832,-9.641376,-9.552919,-9.464463,-9.376007,-9.287552,-9.199096,-9.11064,-9.022183,-8.933727,-8.845272,-8.756816,-8.66836,-8.579904,-8.491448,-8.402992,-8.314536,-8.22608,-8.137624,-8.049169,-7.9607124,-7.8722563,-7.7838,-7.6953444,-7.6068883,-7.5184326,-7.4299765,-7.3415203,-7.2530646,-7.1646085,-7.076153,-6.9876966,-6.899241,-6.810785,-6.7223287,-6.633873,-6.545417,-6.456961,-6.368505,-6.280049,-6.191593,-6.103137,-6.0146813,-5.926225,-5.837769,-5.7493134,-5.660857,-5.5724015,-5.4839454,-5.3954897,-5.3070335,-5.2185774,-5.1301217,-5.0416656,-4.95321,-4.8647537,-4.7762976,-4.687842,-4.5993857,-4.51093,-4.422474,-4.334018,-4.245562,-4.157106,-4.0686502,-3.980194,-3.8917382,-3.8032823,-3.7148263,-3.6263704,-3.5379145,-3.4494584,-3.3610024,-3.2725465,-3.1840906,-3.0956347,-3.0071788,-2.9187226,-2.8302667,-2.7418108,-2.653355,-2.564899,-2.476443,-2.387987,-2.299531,-2.211075,-2.1226192,-2.0341632,-1.9457072,-1.8572513,-1.7687953,-1.6803393,-1.5918834,-1.5034274,-1.4149715,-1.3265156,-1.2380595,-1.1496036,-1.0611477,-0.9726917,-0.88423574,-0.79577976,-0.70732385,-0.6188679,-0.5304119,-0.44195595,-0.3535]} +{"expected":[1.8189001e-38,1.9835017e-38,2.1630152e-38,2.3587575e-38,2.5722134e-38,2.804986e-38,3.0588232e-38,3.3356315e-38,3.6375175e-38,3.9666948e-38,4.3256612e-38,4.717112e-38,5.1439873e-38,5.6095356e-38,6.117171e-38,6.6707446e-38,7.2744144e-38,7.932713e-38,8.650584e-38,9.433491e-38,1.0287175e-37,1.1218114e-37,1.2233297e-37,1.3340351e-37,1.4547587e-37,1.5864192e-37,1.7299823e-37,1.8865372e-37,2.0572595e-37,2.2434313e-37,2.4464694e-37,2.6678629e-37,2.9092911e-37,3.1725677e-37,3.4596694e-37,3.7727524e-37,4.1141993e-37,4.486514e-37,4.8925213e-37,5.33527e-37,5.818086e-37,6.344594e-37,6.918801e-37,7.544918e-37,8.227696e-37,8.9722625e-37,9.784208e-37,1.0669711e-36,1.1635267e-36,1.2688202e-36,1.3836421e-36,1.5088549e-36,1.6453988e-36,1.794313e-36,1.9566894e-36,2.13376e-36,2.3268548e-36,2.5374237e-36,2.7670691e-36,3.017475e-36,3.290542e-36,3.5883196e-36,3.913045e-36,4.267156e-36,4.653348e-36,5.0744532e-36,5.533666e-36,6.034435e-36,6.580522e-36,7.1760264e-36,7.825481e-36,8.5336485e-36,9.305902e-36,1.014804e-35,1.10663875e-35,1.2067933e-35,1.3160021e-35,1.4350938e-35,1.5649627e-35,1.706584e-35,1.8610215e-35,2.0294502e-35,2.2131055e-35,2.4133806e-35,2.6317795e-35,2.8699425e-35,3.1296822e-35,3.412903e-35,3.7217537e-35,4.058554e-35,4.4258332e-35,4.826349e-35,5.26315e-35,5.739439e-35,6.25883e-35,6.825223e-35,7.442872e-35,8.1164154e-35,8.850978e-35,9.651949e-35,1.0525402e-34,1.1477899e-34,1.2516592e-34,1.3649386e-34,1.4884587e-34,1.6231569e-34,1.7700446e-34,1.9302249e-34,2.1049006e-34,2.2954014e-34,2.5031238e-34,2.7296441e-34,2.9766635e-34,3.2460367e-34,3.539787e-34,3.86015e-34,4.209474e-34,4.5904106e-34,5.00582e-34,5.458822e-34,5.952864e-34,6.491569e-34,7.079024e-34,7.71964e-34,8.41823e-34,9.180038e-34,1.00108625e-33,1.0916796e-33,1.19047125e-33,1.298203e-33,1.4156839e-33,1.5438081e-33,1.683515e-33,1.8358649e-33,2.0020015e-33,2.183173e-33,2.3807392e-33,2.5962042e-33,2.8311478e-33,3.0873525e-33,3.366743e-33,3.6714164e-33,4.0036614e-33,4.3660064e-33,4.7611084e-33,5.191965e-33,5.6618123e-33,6.174178e-33,6.732963e-33,7.342262e-33,8.0067005e-33,8.731267e-33,9.521404e-33,1.0383044e-32,1.1322744e-32,1.2347397e-32,1.3464775e-32,1.468327e-32,1.6012035e-32,1.7461178e-32,1.9041328e-32,2.0764474e-32,2.2643556e-32,2.4692687e-32,2.6927252e-32,2.936426e-32,3.202158e-32,3.4919373e-32,3.8079405e-32,4.1525405e-32,4.528325e-32,4.9381536e-32,5.385032e-32,5.872351e-32,6.4037694e-32,6.9832787e-32,7.615289e-32,8.3044356e-32,9.0559456e-32,9.875464e-32,1.0769145e-31,1.1743699e-31,1.2806543e-31,1.3965472e-31,1.5229278e-31,1.6607454e-31,1.8110345e-31,1.9749243e-31,2.1536615e-31,2.3485573e-31,2.56109e-31,2.792856e-31,3.0455958e-31,3.3212326e-31,3.6217877e-31,3.9495416e-31,4.3069553e-31,4.6967135e-31,5.121743e-31,5.585278e-31,6.090718e-31,6.641898e-31,7.242957e-31,7.898409e-31,8.613241e-31,9.392697e-31,1.024269e-30,1.1169603e-30,1.2180396e-30,1.3282662e-30,1.4484788e-30,1.579559e-30,1.7225013e-30,1.878379e-30,2.0483632e-30,2.2337298e-30,2.43589e-30,2.6563259e-30,2.8967104e-30,3.1588482e-30,3.4447085e-30,3.756466e-30,4.096408e-30,4.4671125e-30,4.871364e-30,5.3121985e-30,5.7929264e-30,6.317206e-30,6.8888814e-30,7.512291e-30,8.192117e-30,8.933463e-30,9.741971e-30,1.0623572e-29,1.1584952e-29,1.2633333e-29,1.3776588e-29,1.5023301e-29,1.6382959e-29,1.7865537e-29,1.948228e-29,2.1245329e-29,2.3167926e-29,2.526451e-29,2.7551033e-29,3.0044266e-29,3.2763123e-29,3.5728023e-29,3.8961232e-29,4.2487357e-29,4.6332253e-29,5.052509e-29,5.5097365e-29,6.0083405e-29,6.5520654e-29,7.1450496e-29,7.791641e-29,8.496746e-29,9.26566e-29,1.0104156e-28,1.1018532e-28,1.2015747e-28,1.3103113e-28,1.4288879e-28,1.5581952e-28,1.6992107e-28,1.8529808e-28,2.0206664e-28,2.2035352e-28,2.4029443e-28,2.6204087e-28,2.8575427e-28,3.1161364e-28,3.3981443e-28,3.7056594e-28,4.0410035e-28,4.406711e-28,4.8054966e-28,5.24037e-28,5.71462e-28,6.2317643e-28,6.7957083e-28,7.4107146e-28,8.081347e-28,8.812703e-28,9.610209e-28,1.0479886e-27,1.1428307e-27,1.2462513e-27,1.3590308e-27,1.4820221e-27,1.6161378e-27,1.7623902e-27,1.9218851e-27,2.0958062e-27,2.2854664e-27,2.4922993e-27,2.7178402e-27,2.9638026e-27,3.232012e-27,3.524493e-27,3.843457e-27,4.1912708e-27,4.57056e-27,4.9841923e-27,5.435237e-27,5.927099e-27,6.463497e-27,7.048411e-27,7.686258e-27,8.381858e-27,9.140375e-27,9.967534e-27,1.0869588e-26,1.1853231e-26,1.292594e-26,1.4095673e-26,1.5371263e-26,1.676235e-26,1.827926e-26,1.9933443e-26,2.1737403e-26,2.370453e-26,2.5849675e-26,2.8189048e-26,3.0740017e-26,3.352184e-26,3.655554e-26,3.9863634e-26,4.3471262e-26,4.7405197e-26,5.169513e-26,5.6373504e-26,6.1475024e-26,6.703821e-26,7.3105114e-26,7.972077e-26,8.6935103e-26,9.480266e-26,1.03381836e-25,1.1273738e-25,1.2294003e-25,1.3406549e-25,1.4619831e-25,1.5942854e-25,1.7385603e-25,1.8958986e-25,2.0674681e-25,2.2545637e-25,2.4586001e-25,2.6810912e-25,2.9237167e-25,3.1883108e-25,3.4768371e-25,3.7914736e-25,4.134599e-25,4.5087596e-25,4.916799e-25,5.361745e-25,5.8469567e-25,6.3761014e-25,6.9531073e-25,7.582329e-25,8.268524e-25,9.016785e-25,9.832759e-25,1.0722616e-24,1.169296e-24,1.2751115e-24,1.3905081e-24,1.5163421e-24,1.6535636e-24,1.8032098e-24,1.9663914e-24,2.1443484e-24,2.3384013e-24,2.550015e-24,2.7807893e-24,3.0324371e-24,3.3068576e-24,3.6061258e-24,3.932462e-24,4.2883307e-24,4.676421e-24,5.0996142e-24,5.561104e-24,6.0643796e-24,6.613176e-24,7.211663e-24,7.864283e-24,8.575962e-24,9.35208e-24,1.0198397e-23,1.1121301e-23,1.212777e-23,1.32252736e-23,1.4422095e-23,1.5727283e-23,1.7150526e-23,1.8702564e-23,2.0395131e-23,2.224079e-23,2.4253563e-23,2.644839e-23,2.884184e-23,3.1452004e-23,3.4298252e-23,3.7402076e-23,4.0786936e-23,4.447795e-23,4.8502987e-23,5.2892467e-23,5.767897e-23,6.289864e-23,6.859091e-23,7.479805e-23,8.156722e-23,8.894865e-23,9.699806e-23,1.05776314e-22,1.1534854e-22,1.2578701e-22,1.3717064e-22,1.495839e-22,1.6312052e-22,1.778828e-22,1.939803e-22,2.1153457e-22,2.3067828e-22,2.5155353e-22,2.7431892e-22,2.9914343e-22,3.2621443e-22,3.5573659e-22,3.8792898e-22,4.2303465e-22,4.6131894e-22,5.03066e-22,5.4859104e-22,5.982381e-22,6.5237565e-22,7.1141243e-22,7.757947e-22,8.460003e-22,9.225591e-22,1.00605e-21,1.0970926e-21,1.1963786e-21,1.304645e-21,1.4227089e-21,1.5514629e-21,1.6918626e-21,1.8449678e-21,2.0119359e-21,2.1940063e-21,2.3925529e-21,2.609077e-21,2.8451857e-21,3.102661e-21,3.3834494e-21,3.6896347e-21,4.023544e-21,4.3876548e-21,4.784716e-21,5.217729e-21,5.6899077e-21,6.204816e-21,6.766347e-21,7.378668e-21,8.046401e-21,8.774594e-21,9.568652e-21,1.0434567e-20,1.1378887e-20,1.240862e-20,1.3531591e-20,1.4756133e-20,1.609149e-20,1.7547758e-20,1.9135743e-20,2.0867432e-20,2.275592e-20,2.4815216e-20,2.7060871e-20,2.950986e-20,3.2180357e-20,3.509252e-20,3.8268364e-20,4.1731462e-20,4.5508127e-20,4.9626387e-20,5.4117332e-20,5.9014904e-20,6.4355466e-20,7.0179315e-20,7.6530485e-20,8.345612e-20,9.1008485e-20,9.9244684e-20,1.08225836e-19,1.1801974e-19,1.2870044e-19,1.4034719e-19,1.5304792e-19,1.6689863e-19,1.8200213e-19,1.9847319e-19,2.1643403e-19,2.3602025e-19,2.5737988e-19,2.8067148e-19,3.0607086e-19,3.3377004e-19,3.639746e-19,3.9691248e-19,4.3283275e-19,4.72002e-19,5.147158e-19,5.612972e-19,6.1209184e-19,6.6748564e-19,7.2788983e-19,7.9376024e-19,8.6559493e-19,9.43927e-19,1.0293477e-18,1.1225029e-18,1.2240838e-18,1.3348573e-18,1.455661e-18,1.587391e-18,1.7310421e-18,1.8877e-18,2.0585277e-18,2.2448228e-18,2.447968e-18,2.6694971e-18,2.9110845e-18,3.1745231e-18,3.461802e-18,3.7750923e-18,4.1167195e-18,4.4892622e-18,4.895537e-18,5.3385587e-18,5.821672e-18,6.348529e-18,6.9230393e-18,7.549569e-18,8.232767e-18,8.977792e-18,9.790276e-18,1.0676247e-17,1.1642395e-17,1.2696022e-17,1.38449496e-17,1.509785e-17,1.6464193e-17,1.795412e-17,1.957888e-17,2.1350753e-17,2.3282891e-17,2.5389975e-17,2.7687643e-17,3.0193237e-17,3.29257e-17,3.5905313e-17,3.9154568e-17,4.2698024e-17,4.6561987e-17,5.0775615e-17,5.537077e-17,6.038155e-17,6.584578e-17,7.1804776e-17,7.830275e-17,8.538876e-17,9.3116377e-17,1.0154295e-16,1.1073251e-16,1.2075326e-16,1.3168083e-16,1.4359784e-16,1.5659274e-16,1.707636e-16,1.8621757e-16,2.0306935e-16,2.2144611e-16,2.4148682e-16,2.633402e-16,2.8717117e-16,3.1315994e-16,3.4149936e-16,3.7240479e-16,4.0610558e-16,4.4285612e-16,4.8293425e-16,5.266374e-16,5.742955e-16,6.262688e-16,6.82943e-16,7.44746e-16,8.1214493e-16,8.8564e-16,9.657861e-16,1.053189e-15,1.1484974e-15,1.2524354e-15,1.3657747e-15,1.4893705e-15,1.6241574e-15,1.7711356e-15,1.9314147e-15,2.106206e-15,2.2968073e-15,2.5046572e-15,2.7313266e-15,2.9784982e-15,3.2480376e-15,3.5419824e-15,3.8625143e-15,4.2120687e-15,4.5932403e-15,5.0089056e-15,5.462208e-15,5.9565106e-15,6.4955454e-15,7.083387e-15,7.724399e-15,8.423419e-15,9.185732e-15,1.0016995e-14,1.09234834e-14,1.19120505e-14,1.2990032e-14,1.4165593e-14,1.5447538e-14,1.6845464e-14,1.836993e-14,2.0032356e-14,2.1845227e-14,2.3822112e-14,2.5977945e-14,2.8328875e-14,3.0892498e-14,3.368818e-14,3.6736866e-14,4.0061446e-14,4.368681e-14,4.7640338e-14,5.1951655e-14,5.6653023e-14,6.177996e-14,6.7370866e-14,7.346774e-14,8.0116205e-14,8.7366495e-14,9.527291e-14,1.0389464e-13,1.1329681e-13,1.2354984e-13,1.3473075e-13,1.4692322e-13,1.6021934e-13,1.7471875e-13,1.9052992e-13,2.0777233e-13,2.2657513e-13,2.4707908e-13,2.69439e-13,2.9382248e-13,3.2041256e-13,3.4940833e-13,3.8102879e-13,4.155108e-13,4.5311246e-13,4.941178e-13,5.388341e-13,5.8759703e-13,6.4077167e-13,6.987597e-13,7.6199545e-13,8.309522e-13,9.06151e-13,9.881551e-13,1.0775803e-12,1.175096e-12,1.2814388e-12,1.3974054e-12,1.5238637e-12,1.661769e-12,1.8121543e-12,1.976149e-12,2.1549808e-12,2.3500004e-12,2.5626688e-12,2.7945777e-12,3.047479e-12,3.323267e-12,3.6240132e-12,3.9519685e-12,4.3096104e-12,4.699618e-12,5.12491e-12,5.5886996e-12,6.094461e-12,6.645992e-12,7.2474214e-12,7.903293e-12,8.618517e-12,9.398451e-12,1.0248984e-11,1.1176488e-11,1.2187928e-11,1.3290875e-11,1.44936615e-11,1.5805296e-11,1.7235597e-11,1.879537e-11,2.0496297e-11,2.2351152e-11,2.4373822e-11,2.6579582e-11,2.8984959e-11,3.1607956e-11,3.4468383e-11,3.7587676e-11,4.0989174e-11,4.4698575e-11,4.874367e-11,5.315483e-11,5.796508e-11,6.3210756e-11,6.8931146e-11,7.516908e-11,8.1971666e-11,8.9389864e-11,9.747939e-11,1.06300795e-10,1.1592071e-10,1.264112e-10,1.3785079e-10,1.5032589e-10,1.6392995e-10,1.7876516e-10,1.949425e-10,2.1258426e-10,2.3182252e-10,2.528013e-10,2.756791e-10,3.0062727e-10,3.2783318e-10,3.5750047e-10,3.8985323e-10,4.2513384e-10,4.6360635e-10,5.0556137e-10,5.513133e-10,6.0120553e-10,6.556117e-10,7.149426e-10,7.796429e-10,8.501967e-10,9.271371e-10,1.0110404e-9,1.1025366e-9,1.2023107e-9,1.3111164e-9,1.4297686e-9,1.5591557e-9,1.7002548e-9,1.854123e-9,2.0219157e-9,2.2048892e-9,2.4044253e-9,2.622019e-9,2.8592988e-9,3.1180571e-9,3.4002323e-9,3.7079437e-9,4.0434944e-9,4.4094186e-9,4.8084585e-9,5.2436e-9,5.7181313e-9,6.235606e-9,6.7999104e-9,7.4152684e-9,8.086329e-9,8.818119e-9,9.616115e-9,1.0486346e-8,1.143533e-8,1.2470171e-8,1.3598686e-8,1.4829328e-8,1.617134e-8,1.7634767e-8,1.9230662e-8,2.0970981e-8,2.2868752e-8,2.493831e-8,2.7195155e-8,2.9656237e-8,3.233998e-8,3.5266655e-8,3.8458186e-8,4.1938463e-8,4.5733774e-8,4.987255e-8,5.4385872e-8,5.9307524e-8,6.467469e-8,7.052756e-8,7.6909956e-8,8.3870084e-8,9.146009e-8,9.9736965e-8,1.0876267e-7,1.1860538e-7,1.293387e-7,1.4104349e-7,1.5380738e-7,1.677265e-7,1.829051e-7,1.9945747e-7,2.175076e-7,2.3719119e-7,2.586563e-7,2.820637e-7,3.0758966e-7,3.3542534e-7,3.6578035e-7,3.9888204e-7,4.349793e-7,4.7434372e-7,5.1726994e-7,5.640814e-7,6.151286e-7,6.7079594e-7,7.315004e-7,7.976983e-7,8.6988774e-7,9.4860917e-7,1.0344555e-6,1.1280698e-6,1.2301557e-6,1.3414813e-6,1.46288e-6,1.5952666e-6,1.7396319e-6,1.8970636e-6,2.0687405e-6,2.2559534e-6,2.4601109e-6,2.682741e-6,2.9255216e-6,3.1902698e-6,3.4789803e-6,3.7938144e-6,4.1371395e-6,4.511539e-6,4.9198156e-6,5.365045e-6,5.8505607e-6,6.3800194e-6,6.9573866e-6,7.5870025e-6,8.273605e-6,9.022334e-6,9.838829e-6,1.0729204e-5,1.1700167e-5,1.27589865e-5,1.3913625e-5,1.5172768e-5,1.6545844e-5,1.8043196e-5,1.9676036e-5,2.1456639e-5,2.3398405e-5,2.5515868e-5,2.782498e-5,3.0343033e-5,3.3088992e-5,3.6083416e-5,3.9348823e-5,4.290978e-5,4.6792946e-5,5.1027575e-5,5.564537e-5,6.068112e-5,6.617252e-5,7.216088e-5,7.869123e-5,8.581248e-5,9.357827e-5,0.00010204673,0.00011128167,0.00012135223,0.00013233413,0.00014430999,0.00015736948,0.00017161097,0.0001871411,0.00020407683,0.00022254499,0.00024268443,0.0002646467,0.00028859617,0.0003147133,0.00034319362,0.00037425148,0.00040812,0.00044505345,0.00048532928,0.0005292497,0.000577145,0.00062937464,0.00068633095,0.00074844155,0.00081617304,0.0008900335,0.0009705785,0.0010584126,0.0011541954,0.0012586461,0.0013725493,0.0014967604,0.0016322114,0.001779921,0.0019409978,0.0021166515,0.0023082013,0.0025170858,0.0027448721,0.0029932738,0.003264155,0.00355955,0.0038816773,0.004232956,0.004616024,0.005033756,0.005489294,0.0059860568,0.0065277745,0.007118516,0.007762718,0.008465214,0.009231287,0.010066687,0.010977688,0.011971132,0.013054479,0.014235865,0.015524155,0.016929038,0.01846106,0.020131724,0.021953575,0.023940295,0.02610681,0.028469387,0.031045765,0.0338553,0.03691909,0.040260144,0.04390354,0.047876664,0.052209336,0.056934092,0.062086437,0.06770505,0.07383211,0.08051366,0.087799884,0.095745474,0.10441009,0.11385885,0.12416269,0.13539897,0.1476521,0.16101411,0.17558533,0.1914752,0.20880306,0.227699,0.24830495,0.2707757,0.29527995,0.3220018,0.35114184,0.38291895,0.41757178,0.4553606,0.49656916,0.54150695,0.59051144,0.6439507,0.702226],"x":[-86.9,-86.81337,-86.72673,-86.6401,-86.55347,-86.466835,-86.3802,-86.29357,-86.20693,-86.1203,-86.03367,-85.94704,-85.860405,-85.773766,-85.68713,-85.6005,-85.51387,-85.42724,-85.34061,-85.25397,-85.167336,-85.0807,-84.99407,-84.90744,-84.82081,-84.73417,-84.64754,-84.560905,-84.47427,-84.38764,-84.301,-84.21437,-84.12774,-84.04111,-83.954475,-83.86784,-83.781204,-83.69457,-83.60794,-83.52131,-83.43468,-83.348045,-83.261406,-83.174774,-83.08814,-83.00151,-82.91488,-82.82824,-82.74161,-82.654976,-82.568344,-82.48171,-82.39508,-82.30844,-82.22181,-82.13518,-82.048546,-81.961914,-81.875275,-81.78864,-81.70201,-81.61538,-81.52875,-81.442116,-81.35548,-81.268845,-81.18221,-81.09558,-81.00895,-80.92232,-80.83568,-80.74905,-80.662415,-80.57578,-80.48915,-80.40251,-80.31588,-80.22925,-80.14262,-80.055984,-79.96935,-79.88271,-79.79608,-79.70945,-79.62282,-79.53619,-79.44955,-79.362915,-79.27628,-79.18965,-79.10302,-79.01639,-78.92975,-78.84312,-78.756485,-78.66985,-78.58322,-78.49659,-78.40995,-78.32332,-78.23669,-78.150055,-78.06342,-77.97678,-77.89015,-77.80352,-77.71689,-77.63026,-77.543625,-77.456985,-77.37035,-77.28372,-77.19709,-77.11046,-77.02383,-76.93719,-76.850555,-76.76392,-76.67729,-76.59066,-76.50402,-76.41739,-76.33076,-76.244125,-76.15749,-76.07086,-75.98422,-75.89759,-75.81096,-75.72433,-75.637695,-75.551056,-75.464424,-75.37779,-75.29116,-75.20453,-75.1179,-75.03126,-74.944626,-74.857994,-74.77136,-74.68473,-74.5981,-74.51146,-74.42483,-74.338196,-74.251564,-74.16493,-74.07829,-73.99166,-73.90503,-73.8184,-73.731766,-73.645134,-73.558495,-73.47186,-73.38523,-73.2986,-73.21197,-73.12533,-73.0387,-72.952065,-72.86543,-72.7788,-72.69217,-72.60553,-72.5189,-72.43227,-72.345634,-72.259,-72.17237,-72.08573,-71.9991,-71.91247,-71.825836,-71.739204,-71.652565,-71.56593,-71.4793,-71.39267,-71.30604,-71.219406,-71.13277,-71.046135,-70.9595,-70.87287,-70.78624,-70.69961,-70.61297,-70.52634,-70.439705,-70.35307,-70.26644,-70.1798,-70.09317,-70.00654,-69.91991,-69.833275,-69.74664,-69.66,-69.57337,-69.48674,-69.40011,-69.31348,-69.22684,-69.140205,-69.05357,-68.96694,-68.88031,-68.79368,-68.70704,-68.62041,-68.533775,-68.44714,-68.36051,-68.27388,-68.18724,-68.10061,-68.01398,-67.927345,-67.84071,-67.754074,-67.66744,-67.58081,-67.49418,-67.40755,-67.320915,-67.234276,-67.147644,-67.06101,-66.97438,-66.88775,-66.80111,-66.71448,-66.627846,-66.541214,-66.45458,-66.36795,-66.28131,-66.19468,-66.10805,-66.021416,-65.934784,-65.84815,-65.76151,-65.67488,-65.58825,-65.50162,-65.414986,-65.32835,-65.241714,-65.15508,-65.06845,-64.98182,-64.89519,-64.80855,-64.72192,-64.635284,-64.54865,-64.46202,-64.37539,-64.28875,-64.20212,-64.115486,-64.028854,-63.94222,-63.855587,-63.768955,-63.68232,-63.595688,-63.509052,-63.42242,-63.33579,-63.249153,-63.16252,-63.07589,-62.989254,-62.902622,-62.81599,-62.729355,-62.642723,-62.55609,-62.469456,-62.382824,-62.29619,-62.209557,-62.122925,-62.03629,-61.949657,-61.863026,-61.77639,-61.68976,-61.603127,-61.51649,-61.42986,-61.343227,-61.25659,-61.16996,-61.083324,-60.996693,-60.91006,-60.823425,-60.736794,-60.65016,-60.563526,-60.476894,-60.390263,-60.303627,-60.216995,-60.130363,-60.043728,-59.957096,-59.870464,-59.78383,-59.697197,-59.61056,-59.52393,-59.437298,-59.350662,-59.26403,-59.1774,-59.090763,-59.00413,-58.9175,-58.830864,-58.744232,-58.6576,-58.570965,-58.484333,-58.397697,-58.311066,-58.224434,-58.1378,-58.051167,-57.964535,-57.8779,-57.791267,-57.704636,-57.618,-57.53137,-57.444736,-57.3581,-57.27147,-57.184834,-57.0982,-57.01157,-56.924934,-56.838303,-56.75167,-56.665035,-56.578403,-56.49177,-56.405136,-56.318504,-56.231873,-56.145237,-56.058605,-55.97197,-55.885338,-55.798706,-55.71207,-55.62544,-55.538807,-55.45217,-55.36554,-55.278908,-55.192272,-55.10564,-55.01901,-54.932373,-54.84574,-54.75911,-54.672474,-54.585842,-54.499207,-54.412575,-54.325943,-54.239307,-54.152676,-54.066044,-53.97941,-53.892776,-53.806145,-53.71951,-53.632877,-53.546246,-53.45961,-53.37298,-53.286343,-53.19971,-53.11308,-53.026443,-52.93981,-52.85318,-52.766544,-52.679913,-52.59328,-52.506645,-52.420013,-52.33338,-52.246746,-52.160114,-52.07348,-51.986847,-51.900215,-51.81358,-51.726948,-51.640316,-51.55368,-51.46705,-51.380417,-51.29378,-51.20715,-51.120518,-51.033882,-50.94725,-50.860615,-50.773983,-50.68735,-50.600716,-50.514084,-50.427452,-50.340816,-50.254185,-50.167553,-50.080917,-49.994286,-49.907654,-49.82102,-49.734386,-49.64775,-49.56112,-49.474487,-49.38785,-49.30122,-49.21459,-49.127953,-49.04132,-48.95469,-48.868053,-48.78142,-48.69479,-48.608154,-48.521523,-48.43489,-48.348255,-48.261623,-48.174988,-48.088356,-48.001724,-47.91509,-47.828457,-47.741825,-47.65519,-47.568558,-47.481926,-47.39529,-47.30866,-47.222027,-47.13539,-47.04876,-46.962124,-46.875492,-46.78886,-46.702225,-46.615593,-46.52896,-46.442326,-46.355694,-46.269062,-46.182426,-46.095795,-46.009163,-45.922527,-45.835896,-45.74926,-45.66263,-45.575996,-45.48936,-45.40273,-45.316097,-45.22946,-45.14283,-45.0562,-44.969563,-44.88293,-44.7963,-44.709663,-44.62303,-44.536396,-44.449764,-44.363132,-44.276497,-44.189865,-44.103233,-44.016598,-43.929966,-43.843334,-43.7567,-43.670067,-43.583435,-43.4968,-43.410168,-43.323536,-43.2369,-43.15027,-43.063633,-42.977,-42.89037,-42.803734,-42.717102,-42.63047,-42.543835,-42.457203,-42.37057,-42.283936,-42.197304,-42.110672,-42.024036,-41.937405,-41.85077,-41.764137,-41.677505,-41.59087,-41.50424,-41.417606,-41.33097,-41.24434,-41.157707,-41.07107,-40.98444,-40.897808,-40.811172,-40.72454,-40.637905,-40.551273,-40.46464,-40.378006,-40.291374,-40.204742,-40.118107,-40.031475,-39.944843,-39.858208,-39.771576,-39.684944,-39.59831,-39.511677,-39.42504,-39.33841,-39.251778,-39.165142,-39.07851,-38.99188,-38.905243,-38.81861,-38.73198,-38.645344,-38.558712,-38.47208,-38.385445,-38.298813,-38.212177,-38.125546,-38.038914,-37.95228,-37.865646,-37.779015,-37.69238,-37.605747,-37.519115,-37.43248,-37.345848,-37.259216,-37.17258,-37.08595,-36.999317,-36.91268,-36.82605,-36.739414,-36.652782,-36.56615,-36.479515,-36.392883,-36.30625,-36.219616,-36.132984,-36.046352,-35.959717,-35.873085,-35.786453,-35.699818,-35.613186,-35.52655,-35.43992,-35.353287,-35.26665,-35.18002,-35.093388,-35.006752,-34.92012,-34.83349,-34.746853,-34.66022,-34.57359,-34.486954,-34.400322,-34.313686,-34.227055,-34.140423,-34.053787,-33.967155,-33.880524,-33.793888,-33.707256,-33.620625,-33.53399,-33.447357,-33.360725,-33.27409,-33.187458,-33.100822,-33.01419,-32.92756,-32.840923,-32.75429,-32.66766,-32.581024,-32.494392,-32.40776,-32.321125,-32.234493,-32.14786,-32.061226,-31.974594,-31.88796,-31.801327,-31.714695,-31.628061,-31.541428,-31.454794,-31.368162,-31.281528,-31.194895,-31.108263,-31.02163,-30.934996,-30.848362,-30.76173,-30.675097,-30.588463,-30.501831,-30.415197,-30.328564,-30.24193,-30.155298,-30.068665,-29.98203,-29.8954,-29.808765,-29.722132,-29.635498,-29.548866,-29.462233,-29.375599,-29.288967,-29.202333,-29.1157,-29.029068,-28.942434,-28.8558,-28.769167,-28.682535,-28.595901,-28.509268,-28.422636,-28.336002,-28.249369,-28.162735,-28.076103,-27.98947,-27.902836,-27.816204,-27.72957,-27.642937,-27.556303,-27.469671,-27.383038,-27.296404,-27.209772,-27.123138,-27.036505,-26.949871,-26.86324,-26.776606,-26.689972,-26.60334,-26.516706,-26.430073,-26.34344,-26.256807,-26.170174,-26.08354,-25.996908,-25.910275,-25.82364,-25.737007,-25.650375,-25.563742,-25.477108,-25.390476,-25.303843,-25.217209,-25.130575,-25.043943,-24.95731,-24.870676,-24.784044,-24.69741,-24.610777,-24.524143,-24.437511,-24.350878,-24.264244,-24.177612,-24.090979,-24.004345,-23.917713,-23.83108,-23.744446,-23.657812,-23.57118,-23.484547,-23.397913,-23.311281,-23.224648,-23.138014,-23.05138,-22.964748,-22.878115,-22.791481,-22.70485,-22.618216,-22.531582,-22.444948,-22.358316,-22.271683,-22.18505,-22.098417,-22.011784,-21.92515,-21.838516,-21.751884,-21.66525,-21.578617,-21.491985,-21.405352,-21.318718,-21.232084,-21.145452,-21.058819,-20.972185,-20.885553,-20.79892,-20.712286,-20.625652,-20.53902,-20.452387,-20.365753,-20.279121,-20.192488,-20.105854,-20.01922,-19.932589,-19.845955,-19.759321,-19.67269,-19.586056,-19.499422,-19.412788,-19.326157,-19.239523,-19.15289,-19.066257,-18.979624,-18.89299,-18.806356,-18.719725,-18.633091,-18.546457,-18.459826,-18.373192,-18.286558,-18.199926,-18.113293,-18.026659,-17.940025,-17.853394,-17.76676,-17.680126,-17.593494,-17.50686,-17.420227,-17.333593,-17.246962,-17.160328,-17.073694,-16.987062,-16.900429,-16.813795,-16.727161,-16.64053,-16.553896,-16.467262,-16.38063,-16.293997,-16.207363,-16.12073,-16.034098,-15.947464,-15.860831,-15.774198,-15.687565,-15.600931,-15.514298,-15.427665,-15.341032,-15.254399,-15.167766,-15.081133,-14.994499,-14.9078665,-14.821233,-14.7346,-14.647967,-14.561334,-14.474701,-14.388067,-14.3014345,-14.214801,-14.128168,-14.041535,-13.954902,-13.868269,-13.781635,-13.695003,-13.60837,-13.521736,-13.435103,-13.34847,-13.261837,-13.175203,-13.088571,-13.001938,-12.915304,-12.828671,-12.742038,-12.655405,-12.568771,-12.482139,-12.395506,-12.308872,-12.2222395,-12.135606,-12.048973,-11.962339,-11.875707,-11.789074,-11.70244,-11.615808,-11.529174,-11.442541,-11.355907,-11.269275,-11.182642,-11.096008,-11.009376,-10.922742,-10.836109,-10.749476,-10.662843,-10.57621,-10.489576,-10.402944,-10.31631,-10.229677,-10.143044,-10.056411,-9.969778,-9.883144,-9.796512,-9.709878,-9.623245,-9.5366125,-9.449979,-9.363346,-9.276712,-9.19008,-9.103446,-9.016813,-8.930181,-8.843547,-8.756914,-8.67028,-8.583648,-8.497014,-8.410381,-8.323749,-8.237115,-8.150482,-8.0638485,-7.977216,-7.8905826,-7.8039494,-7.717316,-7.630683,-7.54405,-7.457417,-7.370784,-7.2841506,-7.1975174,-7.110884,-7.0242515,-6.9376183,-6.850985,-6.764352,-6.6777186,-6.5910854,-6.504452,-6.4178195,-6.3311863,-6.244553,-6.15792,-6.0712867,-5.9846535,-5.8980207,-5.8113875,-5.7247543,-5.638121,-5.551488,-5.4648547,-5.3782215,-5.291589,-5.2049556,-5.1183224,-5.031689,-4.945056,-4.8584228,-4.77179,-4.685157,-4.5985236,-4.5118904,-4.425257,-4.338624,-4.251991,-4.165358,-4.078725,-3.9920917,-3.9054585,-3.8188252,-3.7321923,-3.645559,-3.5589259,-3.472293,-3.3856597,-3.2990265,-3.2123933,-3.1257603,-3.039127,-2.952494,-2.865861,-2.7792277,-2.6925945,-2.6059616,-2.5193284,-2.4326952,-2.346062,-2.259429,-2.1727958,-2.0861626,-1.9995295,-1.9128964,-1.8262633,-1.7396301,-1.652997,-1.5663638,-1.4797307,-1.3930976,-1.3064644,-1.2198313,-1.1331981,-1.046565,-0.9599319,-0.8732988,-0.7866657,-0.70003253,-0.6133994,-0.52676624,-0.44013312,-0.3535]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl index f654b0bf8aad..1c80b3f1b54e 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl @@ -55,7 +55,7 @@ file = @__FILE__; dir = dirname( file ); # Medium negative values: -x = Float32.(range( -88.721, stop = -0.3535, length = 1000 )); +x = Float32.(range( -86.9, stop = -0.3535, length = 1000 )); out = joinpath( dir, "./medium_negative_float32.json" ); gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js index f998cb4beaa9..a49a0da5dfb3 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js @@ -60,7 +60,7 @@ tape( 'the function accurately computes the natural exponential function for neg for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -80,7 +80,7 @@ tape( 'the function accurately computes the natural exponential function for pos for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -100,7 +100,7 @@ tape( 'the function accurately computes the natural exponential function for neg for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -120,7 +120,7 @@ tape( 'the function accurately computes the natural exponential function for pos for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -140,7 +140,7 @@ tape( 'the function accurately computes the natural exponential function for ver for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); From 08ebbbe8792bee8d2bb9cc39389293e59ba5c7d2 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 19:03:37 +0530 Subject: [PATCH 06/18] changed test.native file --- .../@stdlib/math/base/special/expf/test/test.native.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js index dd1cfcc081de..665155e1973b 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js @@ -69,7 +69,7 @@ tape( 'the function accurately computes the natural exponential function for neg for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -89,7 +89,7 @@ tape( 'the function accurately computes the natural exponential function for pos for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -109,7 +109,7 @@ tape( 'the function accurately computes the natural exponential function for neg for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -129,7 +129,7 @@ tape( 'the function accurately computes the natural exponential function for pos for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); @@ -149,7 +149,7 @@ tape( 'the function accurately computes the natural exponential function for ver for ( i = 0; i < x.length; i++ ) { v = expf( x[ i ] ); delta = absf( v - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); + tol = EPS * 50 * absf( expected[ i ] ); t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); } t.end(); From 3c9f6ffc5932861a1f31e6c1c9bd81699657ecc1 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 20:20:52 +0530 Subject: [PATCH 07/18] changed the computation methods --- .../math/base/special/expf/lib/expmulti.js | 41 +----- .../math/base/special/expf/lib/main.js | 49 ++---- .../expf/scripts/fixtures/julia/REQUIRE | 2 + .../expf/scripts/fixtures/julia/data.json | 1 + .../expf/scripts/fixtures/julia/runner.jl | 63 ++++++++ .../math/base/special/expf/src/addon.c | 2 +- .../@stdlib/math/base/special/expf/src/main.c | 139 ++++++++---------- 7 files changed, 141 insertions(+), 156 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json create mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js index 51e907f1c231..ff2f7293e0d4 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js @@ -18,46 +18,17 @@ * * ## Notice * -* The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified for JavaScript. -* -* ```text -* Copyright (c) 2009 The Go Authors. All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are -* met: -* -* * Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above -* copyright notice, this list of conditions and the following disclaimer -* in the documentation and/or other materials provided with the -* distribution. -* * Neither the name of Google Inc. nor the names of its -* contributors may be used to endorse or promote products derived from -* this software without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -* ``` -* -* ```text -* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. +* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript. * +* e_expf.c -- float version of e_exp.c. +* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. +* ==================================================== +* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. -* ``` +* ==================================================== */ 'use strict'; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js index fd84aabd60de..c938711c0c40 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js @@ -18,46 +18,17 @@ * * ## Notice * -* The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified for JavaScript. -* -* ```text -* Copyright (c) 2009 The Go Authors. All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are -* met: -* -* * Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above -* copyright notice, this list of conditions and the following disclaimer -* in the documentation and/or other materials provided with the -* distribution. -* * Neither the name of Google Inc. nor the names of its -* contributors may be used to endorse or promote products derived from -* this software without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -* ``` -* -* ```text -* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. +* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript. * +* e_expf.c -- float version of e_exp.c. +* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. +* ==================================================== +* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. -* ``` +* ==================================================== */ 'use strict'; @@ -74,8 +45,8 @@ var expmulti = require( './expmulti.js' ); // VARIABLES // -var LN2_HI = [6.9314575195e-01, -6.9314575195e-01]; -var LN2_LO = [1.4286067653e-06, -1.4286067653e-06]; +var LN2_HI = 6.9314575195e-01; +var LN2_LO = 1.4286067653e-06; var halF = [0.5, -0.5]; var INVLN2 = 1.4426950216e+00; var OVERFLOW = 8.8721679688e+01; @@ -218,8 +189,8 @@ function expf( x ) { // Argument reduction k = truncf(INVLN2 * x + halF[xsb]); - hi = x - k * LN2_HI[0]; - lo = k * LN2_LO[0]; + hi = x - k * LN2_HI; + lo = k * LN2_LO; return expmulti( hi, lo, k ); } diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json new file mode 100644 index 000000000000..b12d14a013ec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json @@ -0,0 +1 @@ +{"expected":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,6.0e-45,6.0e-45,6.0e-45,6.0e-45,7.0e-45,7.0e-45,7.0e-45,8.0e-45,8.0e-45,8.0e-45,1.0e-44,1.0e-44,1.1e-44,1.1e-44,1.1e-44,1.3e-44,1.4e-44,1.4e-44,1.5e-44,1.5e-44,1.7e-44,1.8e-44,2.0e-44,2.1e-44,2.1e-44,2.2e-44,2.4e-44,2.7e-44,2.8e-44,3.0e-44,3.1e-44,3.4e-44,3.5e-44,3.8e-44,3.9e-44,4.2e-44,4.5e-44,4.8e-44,5.0e-44,5.3e-44,5.6e-44,6.0e-44,6.4e-44,6.7e-44,7.1e-44,7.7e-44,8.1e-44,8.5e-44,9.1e-44,9.7e-44,1.04e-43,1.1e-43,1.16e-43,1.23e-43,1.32e-43,1.39e-43,1.49e-43,1.57e-43,1.67e-43,1.77e-43,1.88e-43,1.99e-43,2.12e-43,2.26e-43,2.4e-43,2.54e-43,2.69e-43,2.86e-43,3.04e-43,3.22e-43,3.42e-43,3.64e-43,3.87e-43,4.1e-43,4.36e-43,4.62e-43,4.9e-43,5.21e-43,5.54e-43,5.89e-43,6.25e-43,6.63e-43,7.03e-43,7.47e-43,7.93e-43,8.42e-43,8.95e-43,9.5e-43,1.009e-42,1.072e-42,1.138e-42,1.208e-42,1.282e-42,1.362e-42,1.446e-42,1.536e-42,1.631e-42,1.732e-42,1.839e-42,1.952e-42,2.073e-42,2.201e-42,2.337e-42,2.482e-42,2.636e-42,2.798e-42,2.971e-42,3.156e-42,3.35e-42,3.558e-42,3.778e-42,4.01e-42,4.259e-42,4.522e-42,4.802e-42,5.1e-42,5.415e-42,5.75e-42,6.105e-42,6.482e-42,6.883e-42,7.309e-42,7.76e-42,8.241e-42,8.751e-42,9.292e-42,9.867e-42,1.0476e-41,1.1125e-41,1.1813e-41,1.2543e-41,1.3318e-41,1.4142e-41,1.5016e-41,1.5945e-41,1.6932e-41,1.7979e-41,1.9091e-41,2.0271e-41,2.1525e-41,2.2857e-41,2.4269e-41,2.577e-41,2.7365e-41,2.9056e-41,3.0854e-41,3.2761e-41,3.4787e-41,3.6938e-41,3.9224e-41,4.165e-41,4.4225e-41,4.696e-41,4.9864e-41,5.2948e-41,5.6221e-41,5.9698e-41,6.339e-41,6.7311e-41,7.1473e-41,7.5894e-41,8.0587e-41,8.5572e-41,9.0863e-41,9.6482e-41,1.02449e-40,1.08784e-40,1.15512e-40,1.22656e-40,1.30241e-40,1.38297e-40,1.46849e-40,1.55931e-40,1.65573e-40,1.75813e-40,1.86685e-40,1.9823e-40,2.10489e-40,2.23507e-40,2.37331e-40,2.52008e-40,2.67592e-40,2.8414e-40,3.01712e-40,3.2037e-40,3.40183e-40,3.61221e-40,3.83559e-40,4.07283e-40,4.3247e-40,4.59215e-40,4.87614e-40,5.17769e-40,5.49788e-40,5.83788e-40,6.19891e-40,6.58226e-40,6.98933e-40,7.42161e-40,7.88058e-40,8.36794e-40,8.88542e-40,9.43491e-40,1.00184e-39,1.063796e-39,1.129582e-39,1.199439e-39,1.273623e-39,1.352388e-39,1.436021e-39,1.524829e-39,1.619128e-39,1.719257e-39,1.82558e-39,1.938476e-39,2.058356e-39,2.18565e-39,2.320832e-39,2.464357e-39,2.616758e-39,2.778584e-39,2.950417e-39,3.132877e-39,3.326621e-39,3.532346e-39,3.750794e-39,3.98278e-39,4.229084e-39,4.490619e-39,4.768327e-39,5.063211e-39,5.376331e-39,5.708814e-39,6.061859e-39,6.436736e-39,6.83485e-39,7.257531e-39,7.706351e-39,8.182927e-39,8.688977e-39,9.22632e-39,9.796895e-39,1.0402755e-38,1.1046084e-38,1.1729196e-38,1.2454648e-38,1.322487e-38,1.4042723e-38,1.4911154e-38,1.5833291e-38,1.6812454e-38,1.785217e-38,1.8956185e-38,2.0128475e-38,2.1373424e-38,2.26952e-38,2.4098718e-38,2.5589033e-38,2.717151e-38,2.8851853e-38,3.0636112e-38,3.2530712e-38,3.4542478e-38,3.6678654e-38,3.8947235e-38,4.1355813e-38,4.3913342e-38,4.6629033e-38,4.9512667e-38,5.2574633e-38,5.5825954e-38,5.927835e-38,6.294424e-38,6.683735e-38,7.097071e-38,7.5359685e-38,8.0020084e-38,8.496869e-38,9.022333e-38,9.580293e-38,1.0172758e-37,1.0801862e-37,1.1469959e-37,1.2179285e-37,1.2932477e-37,1.3732247e-37,1.4581478e-37,1.5483226e-37,1.6440741e-37,1.745747e-37,1.8537076e-37,1.9683448e-37,2.090087e-37,2.2193424e-37,2.3565912e-37,2.5023276e-37,2.6570767e-37,2.8213956e-37,2.9958766e-37,3.1811477e-37,3.3778766e-37,3.5867987e-37,3.8086135e-37,4.044146e-37,4.2942444e-37,4.5598095e-37,4.8417974e-37,5.141224e-37,5.459168e-37,5.796774e-37,6.1553055e-37,6.5359623e-37,6.9401596e-37,7.3693533e-37,7.825089e-37,8.309009e-37,8.822855e-37,9.368479e-37,9.947844e-37,1.056304e-36,1.1216365e-36,1.1910008e-36,1.2646548e-36,1.34286365e-36,1.4259091e-36,1.5140902e-36,1.6077248e-36,1.7071498e-36,1.8127233e-36,1.9248406e-36,2.0438766e-36,2.1702742e-36,2.3044884e-36,2.4470027e-36,2.5983304e-36,2.7590165e-36,2.9296397e-36,3.1108148e-36,3.3031937e-36,3.5074968e-36,3.7244076e-36,3.9547328e-36,4.1993015e-36,4.458995e-36,4.7347483e-36,5.027555e-36,5.338469e-36,5.6686113e-36,6.0192155e-36,6.3914564e-36,6.786717e-36,7.206422e-36,7.6520815e-36,8.125302e-36,8.627788e-36,9.161348e-36,9.727904e-36,1.0329576e-35,1.0968379e-35,1.1646686e-35,1.2366941e-35,1.3131738e-35,1.3943831e-35,1.4806146e-35,1.5721789e-35,1.6694057e-35,1.7726452e-35,1.8822836e-35,1.9986878e-35,2.1222908e-35,2.2535376e-35,2.392901e-35,2.540883e-35,2.6980164e-35,2.864867e-35,3.0420365e-35,3.230187e-35,3.4299484e-35,3.6420635e-35,3.867296e-35,4.1064575e-35,4.3604093e-35,4.6300662e-35,4.916399e-35,5.2204393e-35,5.543282e-35,5.8861347e-35,6.2501454e-35,6.636667e-35,7.0470927e-35,7.482899e-35,7.945657e-35,8.4370326e-35,8.958796e-35,9.5128264e-35,1.0101196e-34,1.0725875e-34,1.1389185e-34,1.2093516e-34,1.2841403e-34,1.3635543e-34,1.4478792e-34,1.5374191e-34,1.6324962e-34,1.7334664e-34,1.8406675e-34,1.9544981e-34,2.0753683e-34,2.2037135e-34,2.3399955e-34,2.4847058e-34,2.638365e-34,2.801527e-34,2.974779e-34,3.1587696e-34,3.3541145e-34,3.5615399e-34,3.7817926e-34,4.0156664e-34,4.264004e-34,4.5276984e-34,4.8077007e-34,5.1050186e-34,5.4207646e-34,5.755996e-34,6.1119585e-34,6.4899346e-34,6.8912856e-34,7.317457e-34,7.769984e-34,8.2504955e-34,8.7607225e-34,9.302504e-34,9.877865e-34,1.0488733e-33,1.1137377e-33,1.1826135e-33,1.2557488e-33,1.333407e-33,1.4158675e-33,1.5034277e-33,1.5964027e-33,1.6951405e-33,1.7999715e-33,1.9112855e-33,2.0294833e-33,2.1549906e-33,2.2882597e-33,2.4297705e-33,2.5800325e-33,2.739587e-33,2.9090308e-33,3.0889314e-33,3.2799573e-33,3.4827965e-33,3.6981798e-33,3.926883e-33,4.1697294e-33,4.427594e-33,4.7014055e-33,4.99215e-33,5.3009153e-33,5.6287346e-33,5.976827e-33,6.346446e-33,6.738924e-33,7.155673e-33,7.598194e-33,8.068082e-33,8.567029e-33,9.096901e-33,9.659472e-33,1.0256833e-32,1.0891137e-32,1.1564668e-32,1.227985e-32,1.3039262e-32,1.3845637e-32,1.4701878e-32,1.5611192e-32,1.657662e-32,1.7601752e-32,1.8690281e-32,1.9846127e-32,2.1073453e-32,2.2376678e-32,2.3760498e-32,2.5229897e-32,2.6790163e-32,2.844714e-32,3.020637e-32,3.2074392e-32,3.405794e-32,3.616415e-32,3.840062e-32,4.0775392e-32,4.3297028e-32,4.5974604e-32,4.881814e-32,5.1837156e-32,5.504287e-32,5.8446837e-32,6.2061306e-32,6.5899307e-32,6.997465e-32,7.430203e-32,7.889702e-32,8.377617e-32,8.8957745e-32,9.445907e-32,1.0030062e-31,1.0650341e-31,1.130898e-31,1.2008351e-31,1.2750972e-31,1.3539518e-31,1.437683e-31,1.5266039e-31,1.6210122e-31,1.721259e-31,1.8277052e-31,1.9407342e-31,2.0607533e-31,2.1881945e-31,2.323517e-31,2.467208e-31,2.619805e-31,2.7818191e-31,2.9538527e-31,3.136525e-31,3.330494e-31,3.5364588e-31,3.7551607e-31,3.9873873e-31,4.2339755e-31,4.4958136e-31,4.77388e-31,5.069107e-31,5.382591e-31,5.7154614e-31,6.068917e-31,6.444231e-31,6.8427557e-31,7.2659257e-31,7.715266e-31,8.1924565e-31,8.699095e-31,9.237065e-31,9.808303e-31,1.041487e-30,1.1058946e-30,1.1742854e-30,1.2469056e-30,1.3240168e-30,1.4058968e-30,1.4928517e-30,1.5851728e-30,1.683203e-30,1.7872957e-30,1.8978258e-30,2.0151912e-30,2.1398148e-30,2.2721454e-30,2.4126595e-30,2.561883e-30,2.720315e-30,2.8885449e-30,3.0671785e-30,3.256859e-30,3.4582698e-30,3.6721364e-30,3.8992287e-30,4.1403653e-30,4.3964474e-30,4.6683327e-30,4.9570322e-30,5.263585e-30,5.589096e-30,5.9347373e-30,6.3017534e-30,6.691467e-30,7.105281e-30,7.544686e-30,8.011326e-30,8.506763e-30,9.032839e-30,9.591448e-30,1.0184603e-29,1.081444e-29,1.1483227e-29,1.2193373e-29,1.2947437e-29,1.3748237e-29,1.4598457e-29,1.5501255e-29,1.6459885e-29,1.7477798e-29,1.8558661e-29,1.9706366e-29,2.0925048e-29,2.2219097e-29,2.3593171e-29,2.5052412e-29,2.6601706e-29,2.824681e-29,2.999365e-29,3.184852e-29,3.38181e-29,3.5909478e-29,3.8130193e-29,4.0488244e-29,4.2992447e-29,4.565119e-29,4.8474354e-29,5.147211e-29,5.465525e-29,5.803524e-29,6.162426e-29,6.543523e-29,6.9481877e-29,7.377934e-29,7.834201e-29,8.318684e-29,8.8331284e-29,9.379387e-29,9.959428e-29,1.0575339e-28,1.122934e-28,1.1923786e-28,1.2661177e-28,1.3444273e-28,1.4275695e-28,1.5158532e-28,1.6095968e-28,1.7091375e-28,1.8148341e-28,1.9270672e-28,2.0462488e-28,2.172793e-28,2.307163e-28,2.4498426e-28,2.601356e-28,2.7622292e-28,2.933051e-28,3.114437e-28,3.30704e-28,3.5115676e-28,3.7287301e-28,3.9593227e-28,4.204175e-28,4.46417e-28,4.7402615e-28,5.0334092e-28,5.3446853e-28,5.675212e-28,6.0261785e-28,6.3988743e-28,6.7945937e-28,7.2147854e-28,7.6609627e-28,8.134763e-28,8.637833e-28,9.172015e-28,9.739231e-28,1.0341525e-27,1.0981108e-27,1.1660203e-27,1.2381294e-27,1.3146978e-27,1.3960015e-27,1.4823387e-27,1.5740096e-27,1.6713495e-27,1.7747092e-27,1.8844681e-27,2.0010075e-27,2.1247539e-27,2.256153e-27,2.3956783e-27,2.5438416e-27,2.701158e-27,2.8682031e-27,3.0455788e-27,3.2339237e-27,3.4339292e-27,3.6462904e-27,3.8717844e-27,4.1112237e-27,4.365487e-27,4.6354572e-27,4.922124e-27,5.226518e-27,5.5497366e-27,5.8929662e-27,6.257399e-27,6.64437e-27,7.0552715e-27,7.491584e-27,7.954909e-27,8.446857e-27,8.9692275e-27,9.523904e-27,1.01129195e-26,1.0738324e-26,1.14024035e-26,1.2107551e-26,1.2856307e-26,1.365142e-26,1.4495652e-26,1.5392092e-26,1.6343972e-26,1.7354717e-26,1.8428037e-26,1.9567665e-26,2.077777e-26,2.206271e-26,2.3427114e-26,2.4875989e-26,2.6414373e-26,2.804789e-26,2.978243e-26,3.1624358e-26,3.358007e-26,3.5656735e-26,3.786182e-26,4.0203273e-26,4.2689686e-26,4.5329704e-26,4.8132986e-26,5.110963e-26,5.427035e-26,5.7626764e-26,6.119052e-26,6.497467e-26,6.899284e-26,7.3259774e-26,7.779031e-26,8.260102e-26,8.770924e-26,9.313336e-26,9.889329e-26,1.0500906e-25,1.1150304e-25,1.1839862e-25,1.2572063e-25,1.3349596e-25,1.4175162e-25,1.5051783e-25,1.5982617e-25,1.6971079e-25,1.8020605e-25,1.9135037e-25,2.0318387e-25,2.1574917e-25,2.2909243e-25,2.4325998e-25,2.5830368e-25,2.742777e-25,2.9123958e-25,3.0925162e-25,3.283764e-25,3.4868387e-25,3.7024718e-25,3.9314552e-25,4.1745844e-25,4.4327494e-25,4.7068796e-25,4.997963e-25,5.307067e-25,5.6352673e-25,5.983764e-25,6.353812e-25,6.7467447e-25,7.164005e-25,7.6070414e-25,8.0774767e-25,8.577005e-25,9.107424e-25,9.670682e-25,1.02687375e-24,1.0903777e-24,1.157809e-24,1.2294149e-24,1.3054445e-24,1.3861758e-24,1.4718998e-24,1.5629251e-24,1.6595859e-24,1.7622182e-24,1.8711974e-24,1.986916e-24,2.109791e-24,2.2402733e-24,2.3788166e-24,2.5259273e-24,2.682136e-24,2.8480157e-24,3.0241427e-24,3.2111619e-24,3.4097467e-24,3.6206124e-24,3.8445333e-24,4.082287e-24,4.334744e-24,4.6028137e-24,4.887461e-24,5.1897313e-24,5.510675e-24,5.851467e-24,6.2133335e-24,6.597604e-24,7.005613e-24,7.438855e-24,7.898889e-24,8.387373e-24,8.9060984e-24,9.45687e-24,1.0041702e-23,1.0662702e-23,1.1322106e-23,1.2022333e-23,1.276582e-23,1.3555284e-23,1.439357e-23,1.5283699e-23,1.6228936e-23,1.7232566e-23,1.8298263e-23,1.9429867e-23,2.0631527e-23,2.1907423e-23,2.3262224e-23,2.4700808e-23,2.6228357e-23,2.785048e-23,2.9572808e-23,3.1401653e-23,3.3343595e-23,3.540563e-23,3.759533e-23,3.9920303e-23,4.238906e-23,4.5010485e-23,4.7794208e-23,5.07499e-23,5.3888376e-23,5.722095e-23,6.0759607e-23,6.4517355e-23,6.850724e-23,7.274386e-23,7.7242496e-23,8.201933e-23,8.7091904e-23,9.247785e-23,9.819687e-23,1.04269564e-22,1.1071823e-22,1.1756528e-22,1.2483575e-22,1.3255586e-22,1.4075338e-22,1.4945842e-22,1.5870124e-22,1.6851566e-22,1.7893702e-22,1.9000284e-22,2.0175378e-22,2.1423064e-22,2.274791e-22,2.4154689e-22,2.5648562e-22,2.7234722e-22,2.8918972e-22,3.0707381e-22,3.2606388e-22,3.462297e-22,3.6764124e-22,3.9037692e-22,4.1451864e-22,4.4015334e-22,4.6737507e-22,4.9627853e-22,5.269694e-22,5.5955825e-22,5.941625e-22,6.3090914e-22,6.6992587e-22,7.1135543e-22,7.553471e-22,8.020624e-22,8.516636e-22,9.043323e-22,9.60258e-22,1.0196423e-21,1.0827032e-21,1.1496598e-21,1.2207571e-21,1.2962513e-21,1.3764141e-21,1.46154e-21,1.5519246e-21,1.6478988e-21,1.7498083e-21,1.8580272e-21,1.9729314e-21,2.0949415e-21,2.2244969e-21,2.3620643e-21,2.508149e-21,2.6632578e-21,2.8279593e-21,3.0028462e-21,3.1885482e-21,3.3857476e-21,3.5951293e-21,3.8174595e-21,4.053539e-21,4.3042343e-21,4.5704172e-21,4.8530614e-21,5.1531846e-21,5.471868e-21,5.810282e-21,6.1696013e-21,6.5511424e-21,6.956279e-21,7.386469e-21,7.8432934e-21,8.328339e-21,8.843381e-21,9.390273e-21,9.971025e-21,1.0587653e-20,1.1242416e-20,1.193767e-20,1.267592e-20,1.34598765e-20,1.4292262e-20,1.5176126e-20,1.6114648e-20,1.7111212e-20,1.8169473e-20,1.929311e-20,2.0486236e-20,2.1753147e-20,2.3098406e-20,2.4526954e-20,2.6043751e-20,2.765435e-20,2.936455e-20,3.1180635e-20,3.310891e-20,3.5156433e-20,3.7330577e-20,3.9639177e-20,4.2090707e-20,4.4693683e-20,4.745763e-20,5.039251e-20,5.3508886e-20,5.68182e-20,6.0331956e-20,6.4063006e-20,6.8024794e-20,7.223187e-20,7.669883e-20,8.1442045e-20,8.6478586e-20,9.18266e-20,9.750572e-20,1.0353567e-19,1.0993853e-19,1.1673736e-19,1.2395663e-19,1.3162287e-19,1.397627e-19,1.4840591e-19,1.5758365e-19,1.6732956e-19,1.7767758e-19,1.8866553e-19,2.0033299e-19,2.1272199e-19,2.2587803e-19,2.3984678e-19,2.546794e-19,2.704293e-19,2.871532e-19,3.049125e-19,3.2376893e-19,3.4379146e-19,3.6505223e-19,3.876293e-19,4.1160107e-19,4.3705535e-19,4.6408374e-19,4.9278365e-19,5.232604e-19,5.5561985e-19,5.899806e-19,6.2646617e-19,6.652081e-19,7.0634865e-19,7.500307e-19,7.9641415e-19,8.4566603e-19,8.979637e-19,9.534994e-19,1.0124657e-18,1.0750786e-18,1.1415637e-18,1.2121649e-18,1.2871277e-18,1.3667263e-18,1.4512475e-18,1.5409956e-18,1.6363003e-18,1.7374925e-18,1.8449426e-18,1.9590375e-18,2.0801884e-18,2.20884e-18,2.3454392e-18,2.490486e-18,2.6445028e-18,2.808055e-18,2.9817109e-18,3.166106e-18,3.3619046e-18,3.5698117e-18,3.7905903e-18,4.0250083e-18,4.273923e-18,4.5382313e-18,4.818885e-18,5.116914e-18,5.433355e-18,5.7693647e-18,6.126154e-18,6.5050327e-18,6.907317e-18,7.33448e-18,7.788059e-18,8.2696885e-18,8.781137e-18,9.32418e-18,9.900807e-18,1.0513093e-17,1.1163245e-17,1.1853648e-17,1.2586702e-17,1.3365089e-17,1.4191614e-17,1.5069252e-17,1.6001227e-17,1.6990776e-17,1.804152e-17,1.9157245e-17,2.0342045e-17,2.160004e-17,2.293583e-17,2.4354229e-17,2.5860346e-17,2.7459706e-17,2.9157872e-17,3.0961053e-17,3.287575e-17,3.4908855e-17,3.706783e-17,3.9360182e-17,4.1794296e-17,4.437894e-17,4.7123606e-17,5.0037826e-17,5.313227e-17,5.641808e-17,5.990709e-17,6.361211e-17,6.754601e-17,7.1723196e-17,7.6158704e-17,8.086851e-17,8.586992e-17,9.118029e-17,9.681906e-17,1.0280655e-16,1.0916474e-16,1.1591572e-16,1.2308418e-16,1.3069595e-16,1.3877846e-16,1.4736138e-16,1.564745e-16,1.661512e-16,1.7642634e-16,1.873369e-16,1.9892296e-16,2.1122476e-16,2.2428734e-16,2.3815774e-16,2.5288685e-16,2.685259e-16,2.851321e-16,3.0276526e-16,3.214889e-16,3.4137172e-16,3.6248283e-16,3.8489953e-16,4.087025e-16,4.3397752e-16,4.608173e-16,4.893152e-16,5.1957546e-16,5.517071e-16,5.858258e-16,6.220568e-16,6.6052614e-16,7.013744e-16,7.4474885e-16,7.9080865e-16,8.397139e-16,8.916435e-16,9.467846e-16,1.0053357e-15,1.0675118e-15,1.1335289e-15,1.2036286e-15,1.2780636e-15,1.3571016e-15,1.4410331e-15,1.5301495e-15,1.6247771e-15,1.7252566e-15,1.8319571e-15,1.945249e-15,2.0655472e-15,2.1932849e-15,2.3289222e-15,2.472957e-15,2.6258898e-15,2.78828e-15,2.960713e-15,3.1438096e-15,3.338242e-15,3.5446857e-15,3.7638964e-15,3.9966636e-15,4.2438417e-15,4.5062894e-15,4.784968e-15,5.08088e-15,5.395092e-15,5.7287574e-15,6.0830357e-15,6.459223e-15,6.858675e-15,7.282829e-15,7.733244e-15,8.211484e-15,8.719299e-15,9.258517e-15,9.831121e-15,1.0439098e-14,1.1084673e-14,1.17701725e-14,1.24980635e-14,1.3270995e-14,1.4091727e-14,1.496319e-14,1.5888542e-14,1.6871155e-14,1.7914503e-14,1.9022408e-14,2.0198793e-14,2.1447969e-14,2.2774356e-14,2.4182769e-14,2.5678329e-14,2.726633e-14,2.8952592e-14,3.0743078e-14,3.2644355e-14,3.466315e-14,3.680679e-14,3.9083073e-14,4.150005e-14,4.4066584e-14,4.679175e-14,4.9685543e-14,5.27582e-14,5.6020875e-14,5.9485437e-14,6.3164135e-14,6.707047e-14,7.121824e-14,7.562252e-14,8.0299326e-14,8.52652e-14,9.0538356e-14,9.613743e-14,1.0208296e-13,1.0839598e-13,1.1509942e-13,1.2221763e-13,1.2977582e-13,1.3780169e-13,1.4632363e-13,1.5537288e-13,1.6498145e-13,1.7518425e-13,1.8601836e-13,1.975221e-13,2.0973768e-13,2.2270829e-13,2.364815e-13,2.51106e-13,2.6663489e-13,2.8312468e-13,3.006337e-13,3.192261e-13,3.389677e-13,3.5993086e-13,3.8218972e-13,4.058251e-13,4.3092298e-13,4.575722e-13,4.858703e-13,5.159175e-13,5.4782394e-13,5.817025e-13,6.176762e-13,6.558758e-13,6.964365e-13,7.39507e-13,7.852396e-13,8.3380205e-13,8.8536605e-13,9.40119e-13,9.982597e-13,1.0599942e-12,1.1255485e-12,1.1951548e-12,1.269068e-12,1.3475498e-12,1.430885e-12,1.5193767e-12,1.6133382e-12,1.7131136e-12,1.819056e-12,1.9315502e-12,2.0510052e-12,2.1778436e-12,2.3125304e-12,2.4555418e-12,2.6074026e-12,2.76865e-12,2.9398688e-12,3.1216822e-12,3.3147335e-12,3.51973e-12,3.7373975e-12,3.9685334e-12,4.2139556e-12,4.4745553e-12,4.75128e-12,5.045109e-12,5.3571193e-12,5.6884146e-12,6.040209e-12,6.413748e-12,6.8103873e-12,7.2315695e-12,7.678785e-12,8.153672e-12,8.657912e-12,9.193353e-12,9.761888e-12,1.0365583e-11,1.1006634e-11,1.16873065e-11,1.2410097e-11,1.3177563e-11,1.3992517e-11,1.4857844e-11,1.5776684e-11,1.6752377e-11,1.7788378e-11,1.8888485e-11,2.0056588e-11,2.129697e-11,2.2614017e-11,2.4012514e-11,2.5497547e-11,2.7074367e-11,2.8748757e-11,3.052664e-11,3.241453e-11,3.4419113e-11,3.654766e-11,3.880792e-11,4.1207877e-11,4.3756342e-11,4.6462324e-11,4.9335744e-11,5.238677e-11,5.5626472e-11,5.906664e-11,6.271944e-11,6.659827e-11,7.071684e-11,7.509012e-11,7.9734e-11,8.4664914e-11,8.9900934e-11,9.546059e-11,1.01364264e-10,1.0763284e-10,1.1428908e-10,1.2135717e-10,1.2886216e-10,1.3683152e-10,1.4529346e-10,1.54279e-10,1.6381993e-10,1.739509e-10,1.8470872e-10,1.961315e-10,2.0826106e-10,2.2114036e-10,2.3481658e-10,2.4933813e-10,2.6475772e-10,2.811314e-10,2.9851716e-10,3.1697867e-10,3.3658126e-10,3.5739683e-10,3.79499e-10,4.02968e-10,4.2788917e-10,4.5435072e-10,4.8244964e-10,5.1228527e-10,5.439671e-10,5.7760713e-10,6.1332756e-10,6.5125827e-10,6.915334e-10,7.343006e-10,7.797113e-10,8.2793183e-10,8.791328e-10,9.335002e-10,9.912317e-10,1.0525315e-9,1.1176243e-9,1.1867405e-9,1.2601333e-9,1.3380627e-9,1.4208111e-9,1.50868e-9,1.6019798e-9,1.7010527e-9,1.8062494e-9,1.9179516e-9,2.0365656e-9,2.1625108e-9,2.2962494e-9,2.438254e-9,2.5890456e-9,2.7491576e-9,2.9191711e-9,3.0997047e-9,3.2913967e-9,3.49495e-9,3.711085e-9,3.9405936e-9,4.184288e-9,4.443053e-9,4.7178297e-9,5.00959e-9,5.3194036e-9,5.648366e-9,5.997684e-9,6.3685937e-9,6.7624404e-9,7.1806574e-9,7.624724e-9,8.096268e-9,8.596958e-9,9.1286285e-9,9.693162e-9,1.0292607e-8,1.0929144e-8,1.16050245e-8,1.2322727e-8,1.3084789e-8,1.3894006e-8,1.47532395e-8,1.5665611e-8,1.6634436e-8,1.7663144e-8,1.8755504e-8,1.9915383e-8,2.1147033e-8,2.2454808e-8,2.3843459e-8,2.5318036e-8,2.6883756e-8,2.8546356e-8,3.031172e-8,3.218632e-8,3.417679e-8,3.6290352e-8,3.8534697e-8,4.091776e-8,4.344828e-8,4.6135213e-8,4.8988312e-8,5.201795e-8,5.5234846e-8,5.8650794e-8,6.227788e-8,6.6129395e-8,7.0218974e-8,7.456146e-8,7.917264e-8,8.4068844e-8,8.9268006e-8,9.4788525e-8,1.0065063e-7,1.0687507e-7,1.1348455e-7,1.2050279e-7,1.2795505e-7,1.3586805e-7,1.4427054e-7,1.5319269e-7,1.626666e-7,1.7272639e-7,1.8340832e-7,1.9475085e-7,2.0679465e-7,2.1958347e-7,2.3316318e-7,2.475827e-7,2.62894e-7,2.7915215e-7,2.9641578e-7,3.1474673e-7,3.3421165e-7,3.548803e-7,3.768272e-7,4.0013134e-7,4.248767e-7,4.5115237e-7,4.790526e-7,5.086786e-7,5.401369e-7,5.735406e-7,6.0901016e-7,6.466732e-7,6.866648e-7,7.2913025e-7,7.7422186e-7,8.2210215e-7,8.729435e-7,9.26929e-7,9.842531e-7,1.0451214e-6,1.1097549e-6,1.1783854e-6,1.2512605e-6,1.3286423e-6,1.4108095e-6,1.4980584e-6,1.5907013e-6,1.6890752e-6,1.7935328e-6,1.9044504e-6,2.0222274e-6,2.1472881e-6,2.280083e-6,2.421088e-6,2.5708157e-6,2.7298026e-6,2.8986221e-6,3.0778817e-6,3.2682274e-6,3.4703414e-6,3.6849578e-6,3.912847e-6,4.1548296e-6,4.411777e-6,4.684615e-6,4.9743257e-6,5.2819482e-6,5.6086e-6,5.955453e-6,6.3237567e-6,6.714837e-6,7.1301033e-6,7.571051e-6,8.03926e-6,8.536433e-6,9.064352e-6,9.62492e-6,1.0220154e-5,1.0852199e-5,1.1523332e-5,1.2235959e-5,1.2992668e-5,1.3796175e-5,1.4649372e-5,1.5555335e-5,1.6517324e-5,1.753879e-5,1.8623443e-5,1.9775172e-5,2.099813e-5,2.229672e-5,2.3675617e-5,2.5139789e-5,2.6694486e-5,2.8345354e-5,3.0098317e-5,3.195969e-5,3.3936176e-5,3.6034893e-5,3.8263403e-5,4.062969e-5,4.3142354e-5,4.5810408e-5,4.8643466e-5,5.1651725e-5,5.4846027e-5,5.8237874e-5,6.1839426e-5,6.5663764e-5,6.9724614e-5,7.4036594e-5,7.8615245e-5,8.3477054e-5,8.8639536e-5,9.4121184e-5,9.994193e-5,0.00010612264,0.00011268559,0.00011965441,0.00012705421,0.0001349115,0.00014325485,0.00015211415,0.00016152137,0.00017151034,0.00018211707,0.00019337975,0.00020533876,0.00021803753,0.00023152164,0.00024583965,0.00026104314,0.00027718683,0.00029432893,0.0003125308,0.0003318587,0.00035238185,0.0003741742,0.00039731432,0.00042188523,0.0004479759,0.00047568014,0.0005050974,0.0005363342,0.0005695027,0.00060472253,0.0006421201,0.0006818308,0.0007239973,0.00076877116,0.0008163143,0.0008667977,0.0009204027,0.0009773232,0.0010377639,0.0011019424,0.0011700894,0.0012424513,0.0013192883,0.0014008763,0.0014875109,0.0015795031,0.0016771845,0.0017809058,0.0018910425,0.0020079904,0.0021321697,0.0022640296,0.0024040441,0.0025527163,0.002710584,0.002878215,0.0030562126,0.0032452166,0.0034459108,0.0036590165,0.0038852994,0.0041255783,0.0043807165,0.004651631,0.0049393023,0.005244764,0.0055691167,0.005913525,0.0062792352,0.0066675628,0.0070799016,0.007517745,0.007982665,0.008476337,0.009000536,0.009557157,0.010148201,0.0107757915,0.011442199,0.01214982,0.012901196,0.013699045,0.014546237,0.01544582,0.01640103,0.017415319,0.018492332,0.019635955,0.020850297,0.022139743,0.023508927,0.024962785,0.026506562,0.028145801,0.029886425,0.031734686,0.033697248,0.035781186,0.037993997,0.040343665,0.04283863,0.045487892,0.048301,0.05128807,0.05445988,0.057827834,0.061404087,0.06520148,0.06923373,0.073515356,0.07806175,0.08288933,0.088015445,0.09345856,0.09923833,0.105375506,0.11189225,0.11881198,0.12615965,0.13396175,0.14224632,0.15104325,0.16038421,0.17030284,0.18083487,0.19201823,0.20389318,0.21650253,0.22989169,0.24410887,0.25920528,0.27523527,0.29225662,0.31033063,0.32952237,0.34990102,0.3715399,0.39451703,0.4189151,0.44482204,0.47233114,0.50154144,0.53255826,0.56549317,0.60046494,0.63759947,0.6770305,0.7189,0.7633589,0.8105672,0.86069506,0.91392297,0.9704426,1.0304576,1.0941842,1.1618516,1.233704,1.3099998,1.391014,1.4770384,1.5683827,1.6653762,1.7683679,1.8777288,1.9938531,2.1171587,2.24809,2.3871186,2.534745,2.691501,2.8579512,3.0346951,3.2223697,3.4216504,3.6332555,3.8579462,4.096533,4.3498745,4.6188836,4.904529,5.207839,5.5299067,5.8718925,6.235028,6.6206203,7.030059,7.4648175,7.9264646,8.416659,8.937169,9.489871,10.076752,10.699929,11.361643,12.064279,12.81037,13.6026,14.443827,15.337073,16.28556,17.292711,18.36214,19.497711,20.703505,21.983873,23.343418,24.78704,26.319946,27.947647,29.676014,31.511263,33.460007,35.529278,37.72651,40.05963,42.53703,45.16764,47.960945,50.926987,54.07647,57.420708,60.971783,64.74243,68.74631,72.99779,77.51219,82.30575,87.39578,92.800606,98.539635,104.63363,111.10449,117.97548,125.27145,133.01862,141.2449,149.97984,159.25507,169.10388,179.56169,190.66635,202.45773,214.97835,228.27315,242.39026,257.38043,273.2975,290.19904,308.14584,327.20236,347.43756,368.92416,391.73956,415.96576,441.69034,469.00583,498.01035,528.80884,561.512,596.23737,633.1105,672.264,713.83887,757.9845,804.86053,854.6356,907.48846,963.61035,1023.20294,1086.481,1153.6718,1225.0183,1300.7772,1381.2206,1466.6395,1557.3411,1653.651,1755.9178,1864.5092,1979.8162,2102.2532,2232.263,2370.3127,2516.8992,2672.5518,2837.8306,3013.3308,3199.6843,3397.5596,3607.675,3830.7847,4067.6921,4319.2505,4586.366,4870.0015,5171.1724,5490.9736,5830.5522,6191.1313,6574.01,6980.567,7412.2666,7870.6562,8357.401,8874.249,9423.06,10005.811,10624.601,11281.648,11979.34,12720.179,13506.834,14342.138,15229.1,16170.914,17170.957,18232.861,19360.438,20557.746,21829.1,23179.078,24612.545,26134.635,27750.88,29467.08,31289.414,33224.45,35279.15,37460.92,39777.582,42237.547,44849.65,47623.29,50568.457,53695.766,57016.477,60542.492,64286.63,68262.31,72483.86,76966.484,81726.33,86780.45,92147.22,97845.89,103896.98,110322.29,117144.95,124389.555,132082.06,140250.42,148923.94,158133.86,167913.33,178297.61,189324.08,201032.28,213464.73,226666.03,240683.77,255568.39,271373.53,288156.1,305976.25,324898.75,344991.5,366326.84,388981.6,413037.4,438580.5,465703.7,494504.22,525085.9,557558.8,592039.94,628653.5,667530.75,708812.9,752648.06,799194.1,848618.75,901099.94,956826.7,1.0159988e6,1.0788312e6,1.1455495e6,1.2163939e6,1.2916194e6,1.371497e6,1.4563146e6,1.5463761e6,1.6420089e6,1.7435556e6,1.8513825e6,1.9658776e6,2.0874536e6,2.216546e6,2.353624e6,2.4991792e6,2.6537362e6,2.8178515e6,2.992116e6,3.1771578e6,3.3736395e6,3.5822758e6,3.8038148e6,4.0390542e6,4.288842e6,4.554077e6,4.835715e6,5.1347655e6,5.452315e6,5.789503e6,6.147544e6,6.5277265e6,6.9314215e6,7.360082e6,7.8152445e6,8.298563e6,8.811772e6,9.356719e6,9.935358e6,1.0549801e7,1.1202222e7,1.1895013e7,1.2630625e7,1.3411754e7,1.4241165e7,1.5121868e7,1.6057066e7,1.7050068e7,1.8104514e7,1.9224134e7,2.0413032e7,2.1675418e7,2.301587e7,2.4439264e7,2.5950638e7,2.7555532e7,2.9259622e7,3.1069098e7,3.2990538e7,3.503074e7,3.7197184e7,3.9497536e7,4.1940224e7,4.4533892e7,4.728796e7,5.021244e7,5.331768e7,5.6615064e7,6.0116256e7,6.3834092e7,6.778172e7,7.197348e7,7.6424616e7,8.115087e7,8.6169576e7,9.149848e7,9.715712e7,1.0316551e8,1.0954548e8,1.16320216e8,1.23513704e8,1.3115229e8,1.3926302e8,1.4787562e8,1.5702054e8,1.66731e8,1.7704234e8,1.87991e8,1.9961714e8,2.1196187e8,2.2507046e8,2.3898928e8,2.5376886e8,2.6946298e8,2.861271e8,3.0382237e8,3.226114e8,3.4256298e8,3.6374778e8,3.862427e8,4.1012954e8,4.3549277e8,4.624254e8,4.9102275e8,5.213896e8,5.536334e8,5.878712e8,6.242276e8,6.628311e8,7.038233e8,7.473492e8,7.935668e8,8.426442e8,8.947551e8,9.500904e8,1.0088459e9,1.07123706e9,1.1374845e9,1.2078289e9,1.282526e9,1.36184e9,1.4460618e9,1.5354892e9,1.6304502e9,1.7312805e9,1.8383465e9,1.9520372e9,2.0727553e9,2.2009428e9,2.3370537e9,2.4815867e9,2.635053e9,2.7980104e9,2.9710505e9,3.1547866e9,3.3498913e9,3.5570555e9,3.7770383e9,4.010618e9,4.258643e9,4.5220147e9,4.8016655e9,5.0986204e9,5.4139295e9,5.748749e9,6.104263e9,6.4817633e9,6.882622e9,7.308258e9,7.76023e9,8.240139e9,8.749742e9,9.290844e9,9.86541e9,1.0475527e10,1.1123355e10,1.1811269e10,1.2541701e10,1.3317331e10,1.4140902e10,1.5015406e10,1.5944019e10,1.6930031e10,1.7977053e10,1.908879e10,2.026928e10,2.1522815e10,2.285383e10,2.4267205e10,2.5767938e10,2.7361532e10,2.9053626e10,3.0850361e10,3.2758274e10,3.4784113e10,3.6935303e10,3.921946e10,4.164495e10,4.4220363e10,4.6955037e10,4.985893e10,5.2942307e10,5.6216478e10,5.969302e10,6.338468e10,6.7304518e10,7.146677e10,7.588657e10,8.057954e10,8.556292e10,9.08543e10,9.6473104e10,1.0243919e11,1.08774244e11,1.15501285e11,1.2264413e11,1.3022894e11,1.3828257e11,1.4683452e11,1.5591508e11,1.6555717e11,1.7579591e11,1.866675e11,1.9821176e11,2.1046958e11,2.2348589e11,2.3730672e11,2.5198225e11,2.6756588e11,2.8411268e11,3.0168338e11,3.203401e11,3.4015124e11,3.611869e11,3.8352342e11,4.0724208e11,4.3242678e11,4.591698e11,4.8756582e11,5.1771887e11,5.4973566e11,5.837324e11,6.198329e11,6.581646e11,6.988682e11,7.420876e11,7.879798e11,8.3671174e11,8.884557e11,9.434014e11,1.0017433e12,1.0636952e12,1.1294763e12,1.1993254e12,1.2734966e12,1.3522523e12,1.435881e12,1.5246789e12,1.6189713e12,1.7190917e12,1.825404e12,1.9382943e12,2.0581624e12,2.1854476e12,2.3206001e12,2.4641156e12,2.6165015e12,2.7783114e12,2.9501334e12,3.132576e12,3.3263072e12,3.5320127e12,3.7504468e12,3.9823823e12,4.2286609e12,4.4901786e12,4.7678604e12,5.062724e12,5.375814e12,5.708276e12,6.0612873e12,6.43613e12,6.8341664e12,7.2568055e12,7.705596e12,8.1821256e12,8.6881416e12,9.225435e12,9.795954e12,1.0401775e13,1.1045043e13,1.1728114e13,1.2453404e13,1.3223574e13,1.4041347e13,1.4909693e13,1.5831768e13,1.6810838e13,1.7850488e13,1.89544e13,2.0126577e13,2.1371288e13,2.2692932e13,2.4096356e13,2.5586525e13,2.71689e13,2.884908e13,3.0633166e13,3.2527645e13,3.4539223e13,3.667527e13,3.8943345e13,4.1351756e13,4.3909036e13,4.662446e13,4.9507908e13,5.2569578e13,5.5820696e13,5.9272763e13,6.2938434e13,6.6830673e13,7.096362e13,7.53523e13,8.00124e13,8.496053e13,9.0214656e13,9.579372e13,1.017178e14,1.0800865e14,1.1468813e14,1.2178068e14,1.2931184e14,1.3730927e14,1.4580077e14,1.5481738e14,1.643916e14,1.7455792e14,1.8535364e14,1.968163e14,2.0898782e14,2.2191207e14,2.3563556e14,2.502087e14,2.6568213e14,2.8211244e14,2.9955887e14,3.180854e14,3.3775646e14,3.5864403e14,3.808233e14,4.043742e14,4.2938318e14,4.5593712e14,4.841332e14,5.14073e14,5.4586434e14,5.796239e14,6.15469e14,6.535309e14,6.939466e14,7.368645e14,7.824337e14,8.30821e14,8.822007e14,9.367578e14,9.946926e14,1.0562065e15,1.1215245e15,1.1908818e15,1.2645284e15,1.3427346e15,1.425772e15,1.5139447e15,1.6075702e15,1.7069921e15,1.812556e15,1.9246483e15,2.0436724e15,2.1700573e15,2.3042669e15,2.4467674e15,2.5980807e15,2.7587512e15,2.929358e15,3.1105275e15,3.302889e15,3.5071463e15,3.7240354e15,3.9543375e15,4.198898e15,4.4585664e15,4.734293e15,5.027072e15,5.3379765e15,5.668088e15,6.0186144e15,6.3908174e15,6.7860387e15,7.205729e15,7.651346e15,8.124521e15,8.6269583e15,9.160467e15,9.727007e15,1.0328544e16,1.0967283e16,1.1645521e16,1.2365752e16,1.3130475e16,1.3942491e16,1.4804723e16,1.5720278e16,1.6692516e16,1.7724816e16,1.8820955e16,1.9984882e16,2.1220787e16,2.253321e16,2.392671e16,2.5406387e16,2.6977572e16,2.8646027e16,3.0417558e16,3.2298642e16,3.4296057e16,3.6416993e16,3.8669244e16,4.106063e16,4.3599905e16,4.6296213e16,4.9159264e16,5.2199572e16,5.5427704e16,5.8855466e16,6.2495206e16,6.6360294e16,7.046415e16,7.48218e16,7.944893e16,8.436222e16,8.9579695e16,9.511948e16,1.0100187e17,1.0724803e17,1.1388047e17,1.2092353e17,1.2840169e17,1.3634232e17,1.44774e17,1.5372714e17,1.6323456e17,1.7332932e17,1.8404835e17,1.9543029e17,2.075169e17,2.2035015e17,2.3397705e17,2.4844668e17,2.6381113e17,2.8012684e17,2.9745043e17,3.158454e17,3.353779e17,3.5611838e17,3.7814294e17,4.0152804e17,4.2635938e17,4.5272632e17,4.807257e17,5.1045473e17,5.420223e17,5.7554208e17,6.111348e17,6.489311e17,6.8906236e17,7.316754e17,7.769237e17,8.2497024e17,8.759914e17,9.301645e17,9.876878e17,1.0487685e18,1.1136307e18,1.1824999e18,1.2556281e18,1.3332788e18,1.4157314e18,1.503289e18,1.5962555e18,1.6949711e18,1.7997917e18,1.9110944e18,2.0292882e18,2.1547836e18,2.2880399e18,2.429537e18,2.5797844e18,2.739334e18,2.9087401e18,3.0886224e18,3.2796293e18,3.4824617e18,3.6978242e18,3.9265053e18,4.1693286e18,4.4271682e18,4.7009713e18,4.9916893e18,5.3003855e18,5.628172e18,5.97623e18,6.3458363e18,6.738276e18,7.154985e18,7.5974637e18,8.067337e18,8.566238e18,9.095992e18,9.658507e18,1.0255809e19,1.0890091e19,1.1563556e19,1.227867e19,1.3038009e19,1.3844306e19,1.4700522e19,1.5609632e19,1.6574964e19,1.7599994e19,1.8688485e19,1.984422e19,2.1071426e19,2.2374527e19,2.3758214e19,2.5227566e19,2.6787692e19,2.8444298e19,3.0203351e19,3.2071188e19,3.4054666e19,3.6160677e19,3.839693e19,4.0771474e19,4.329303e19,4.597036e19,4.881326e19,5.183197e19,5.503737e19,5.8441216e19,6.205534e19,6.589297e19,6.996793e19,7.429489e19,7.888974e19,8.376844e19,8.8948855e19,9.444963e19,1.0029059e20,1.0649317e20,1.1307893e20,1.20071965e20,1.2749746e20,1.3538268e20,1.4375503e20,1.5264513e20,1.6208503e20,1.721087e20,1.8275294e20,1.9405476e20,2.0605552e20,2.187984e20,2.3232936e20,2.4669802e20,2.6195434e20,2.7815412e20,2.9535574e20,3.1362234e20,3.330174e20,3.5361188e20,3.7547995e20,3.987004e20,4.233585e20,4.4953985e20,4.7734032e20,5.0686e20,5.3820528e20,5.7149117e20,6.068334e20,6.443612e20,6.842098e20,7.2652555e20,7.7145536e20,8.1916375e20,8.698225e20,9.236141e20,9.807361e20,1.0413868e21,1.1057883e21,1.1741725e21,1.2467858e21,1.3238946e21,1.405767e21,1.4927025e21,1.5850143e21,1.6830412e21,1.787124e21,1.8976434e21,2.0149976e21,2.1396091e21,2.2719357e21,2.4124367e21,2.561627e21,2.720043e21,2.888256e21,3.0668835e21,3.256546e21,3.4579375e21,3.6717834e21,3.898854e21,4.139983e21,4.396008e21,4.6678662e21,4.956537e21,5.2630794e21,5.588559e21,5.934167e21,6.301148e21,6.690824e21,7.1046254e21,7.54399e21,8.0105256e21,8.505913e21,9.0319364e21,9.590526e21,1.0183624e22,1.08134e22,1.1482123e22,1.2192247e22,1.2946241e22,1.3746864e22,1.4596998e22,1.5499707e22,1.6458302e22,1.7476118e22,1.8556877e22,1.9704473e22,2.0923037e22,2.2217045e22,2.3590994e22,2.504991e22,2.6599048e22,2.8244095e22,2.9990767e22,3.184546e22,3.3814848e22,3.5906027e22,3.8126673e22,4.0484505e22,4.298815e22,4.5646626e22,4.846951e22,5.146716e22,5.4649993e22,5.802966e22,6.1618336e22,6.542919e22,6.9475464e22,7.377197e22,7.833418e22,8.317853e22,8.832279e22,9.378486e22,9.95847e22,1.0574323e23,1.1228261e23,1.19226855e23,1.2660009e23,1.344293e23,1.4274268e23,1.5157018e23,1.609442e23,1.7089732e23,1.8146597e23,1.926882e23,2.0460521e23,2.1725842e23,2.3069412e23,2.4496073e23,2.601096e23,2.7619636e23,2.9327691e23,3.1141375e23,3.3067223e23,3.5112167e23,3.728372e23,3.958942e23,4.2037712e23,4.463741e23,4.739806e23,5.0329253e23,5.3441716e23,5.6746663e23,6.0255994e23,6.398259e23,6.793941e23,7.214092e23,7.660226e23,8.1339506e23,8.6370034e23,9.171133e23,9.7382956e23,1.0340531e24,1.0980053e24,1.1659082e24,1.2380104e24,1.3145715e24,1.3958673e24,1.4821962e24,1.5738583e24,1.671189e24,1.7745387e24,1.8842799e24,2.0008151e24,2.1245497e24,2.2559362e24,2.3954479e24,2.5435875e24,2.7008985e24,2.8679274e24,3.045286e24,3.2336128e24,3.433599e24,3.64594e24,3.8714124e24,4.1108284e24,4.3650505e24,4.635012e24,4.9216507e24,5.2260156e24,5.549203e24,5.892377e24,6.256798e24,6.643731e24,7.054593e24,7.4908636e24,7.9541444e24,8.4460447e24,8.968366e24,9.522988e24,1.0111909e25,1.0737292e25,1.1401308e25,1.2106387e25,1.2855071e25,1.3650056e25,1.4494258e25,1.5390613e25,1.6342401e25,1.7353048e25,1.8426266e25,1.9565784e25,2.0775772e25,2.206059e25,2.342486e25,2.48736e25,2.6411831e25,2.8045194e25,2.9779566e25,3.1621197e25,3.3576844e25,3.5653307e25,3.785818e25,4.0199408e25,4.2685586e25,4.5325347e25,4.8128362e25,5.1104717e25,5.4265138e25,5.7621223e25,6.118464e25,6.4968423e25,6.8986207e25,7.3252454e25,7.778284e25,8.259308e25,8.770081e25,9.312441e25,9.888341e25,1.0499897e26,1.11492315e26,1.1838724e26,1.2570854e26,1.3348313e26,1.4173799e26,1.5050337e26,1.598108e26,1.6969383e26,1.8018874e26,1.9133197e26,2.0316434e26,2.1572844e26,2.2906953e26,2.4323659e26,2.5827884e26,2.7425132e26,2.912116e26,3.092219e26,3.283448e26,3.4865033e26,3.7021158e26,3.9310624e26,4.174183e26,4.4323235e26,4.7064274e26,4.9974823e26,5.306537e26,5.634726e26,5.983189e26,6.353201e26,6.746097e26,7.1633164e26,7.6063105e26,8.0767e26,8.57618e26,9.106549e26,9.669753e26,1.0267751e27,1.090273e27,1.15769766e27,1.22929206e27,1.305319e27,1.3860426e27,1.4717583e27,1.562775e27,1.6594264e27,1.7620488e27,1.8710175e27,1.9867251e27,2.1095882e27,2.2400581e27,2.3785878e27,2.5256845e27,2.681878e27,2.847731e27,3.023852e27,3.2108533e27,3.409419e27,3.6202644e27,3.8441492e27,4.081895e27,4.3343276e27,4.6023712e27,4.8869914e27,5.1892326e27,5.510146e27,5.850904e27,6.2127365e27,6.5969447e27,7.004913e27,7.4381115e27,7.89816e27,8.386598e27,8.905243e27,9.455961e27,1.0040737e28,1.0661677e28,1.1321018e28,1.2021132e28,1.2764544e28,1.355393e28,1.4392242e28,1.5282287e28,1.6227376e28,1.7230911e28,1.8296506e28,1.9427999e28,2.0629467e28,2.1905235e28,2.3259898e28,2.4698527e28,2.6225936e28,2.78478e28,2.9569967e28,3.1398635e28,3.334039e28,3.5402229e28,3.7591574e28,3.9916313e28,4.2385147e28,4.500633e28,4.778961e28,5.074502e28,5.38832e28,5.7215446e28,6.0753764e28,6.4510903e28,6.850039e28,7.2736594e28,7.7235366e28,8.201176e28,8.708354e28,9.246896e28,9.818743e28,1.0425954e29,1.1070716e29,1.1755353e29,1.2482328e29,1.3254361e29,1.4074039e29,1.4944407e29,1.5868598e29,1.6849946e29,1.7891981e29,1.8998458e29,2.0173362e29,2.1420923e29,2.2745637e29,2.4152458e29,2.5646098e29,2.7232104e29,2.8916193e29,3.070443e29,3.2603256e29,3.4619506e29,3.676045e29,3.903379e29,4.1448037e29,4.401127e29,4.6733015e29,4.962308e29,5.2691874e29,5.5950447e29,5.941054e29,6.308461e29,6.698589e29,7.112898e29,7.552774e29,8.019853e29,8.515817e29,9.042453e29,9.601657e29,1.01954434e30,1.082595e30,1.149545e30,1.2206352e30,1.2961317e30,1.3762871e30,1.4613996e30,1.5517754e30,1.6477404e30,1.7496401e30,1.8578414e30,1.972734e30,2.094732e30,2.2242916e30,2.3618463e30,2.5079078e30,2.6630018e30,2.8276875e30,3.0025574e30,3.1882417e30,3.385409e30,3.59477e30,3.8170778e30,4.0531647e30,4.3038206e30,4.5699778e30,4.8525947e30,5.152689e30,5.471342e30,5.809701e30,6.168985e30,6.550488e30,6.9556363e30,7.385787e30,7.8425393e30,8.327538e30,8.84253e30,9.38937e30,9.970029e30,1.0586596e31,1.1241292e31,1.1936568e31,1.267475e31,1.3458583e31,1.4290889e31,1.5174667e31,1.6113099e31,1.7109567e31,1.8167657e31,1.9291182e31,2.048419e31,2.1751138e31,2.3096274e31,2.4524596e31,2.6041246e31,2.7651693e31,2.936173e31,3.1177517e31,3.31056e31,3.5152918e31,3.7327132e31,3.9635518e31,4.208666e31,4.4689384e31,4.745307e31,5.0387665e31,5.3503744e31,5.6812526e31,6.0325925e31,6.405661e31,6.801852e31,7.2224923e31,7.669146e31,8.143422e31,8.647028e31,9.181777e31,9.749598e31,1.0352533e32,1.0992755e32,1.16726585e32,1.239452e32,1.3161022e32,1.3974926e32,1.4839165e32,1.5756849e32,1.6731286e32,1.7765981e32,1.8864667e32,2.003145e32,2.1270235e32,2.2585632e32,2.3982373e32,2.5465492e32,2.704033e32,2.871256e32,3.0488204e32,3.2373656e32,3.437571e32,3.6501854e32,3.8759202e32,4.1156152e32,4.3701334e32,4.640391e32,4.9273627e32,5.232081e32,5.5556436e32,5.899216e32,6.2640834e32,6.651467e32,7.062808e32,7.499586e32,7.963376e32,8.455847e32,8.9787745e32,9.53404e32,1.0123645e33,1.0749794e33,1.1414583e33,1.21204845e33,1.287004e33,1.366595e33,1.451108e33,1.5408476e33,1.6361368e33,1.7373187e33,1.8447581e33,1.9588567e33,2.0799964e33,2.2086277e33,2.3452138e33,2.4902467e33,2.6442486e33,2.8077743e33,2.981413e33,3.1657896e33,3.3615943e33,3.569482e33,3.790226e33,4.0246217e33,4.2735123e33,4.5377952e33,4.818422e33,5.1164028e33,5.432812e33,5.768788e33,6.1255885e33,6.5044075e33,6.906653e33,7.3337747e33,7.787311e33,8.268894e33,8.7802593e33,9.323249e33,9.8998176e33,1.0512123e34,1.1162214e34,1.1852508e34,1.2585491e34,1.3363804e34,1.4190249e34,1.5067804e34,1.5999627e34,1.6989078e34,1.8039855e34,1.9155477e34,2.034009e34,2.1597964e34,2.2933627e34,2.435189e34,2.585786e34,2.7456963e34,2.9154959e34,3.095796e34,3.2872715e34,3.490563e34,3.7064266e34,3.9356397e34,4.1790276e34,4.4374674e34,4.7118895e34,5.0032827e34,5.312696e34,5.641287e34,5.9901557e34,6.3605993e34,6.753952e34,7.17163e34,7.615138e34,8.0860743e34,8.586133e34,9.117117e34,9.680939e34,1.0279707e35,1.0915424e35,1.1590457e35,1.2307234e35,1.306834e35,1.3876513e35,1.4734665e35,1.5645886e35,1.661346e35,1.7641006e35,1.8731962e35,1.9890385e35,2.1120447e35,2.2426577e35,2.3813484e35,2.528616e35,2.6849907e35,2.8510361e35,3.027373e35,3.214592e35,3.413389e35,3.62448e35,3.8486253e35,4.086632e35,4.3393578e35,4.6077127e35,4.892663e35,5.1952354e35,5.5165615e35,5.857717e35,6.2199705e35,6.604626e35,7.01307e35,7.446772e35,7.907296e35,8.3962996e35,8.915544e35,9.466972e35,1.0052429e36,1.0674092e36,1.13341995e36,1.20351295e36,1.2779407e36,1.3569712e36,1.440889e36,1.5299966e36,1.6246147e36,1.7250974e36,1.831781e36,1.945062e36,2.0653487e36,2.193074e36,2.3286982e36,2.4727098e36,2.6256273e36,2.7880013e36,2.9604398e36,3.1435193e36,3.337921e36,3.544345e36,3.7635345e36,3.9962796e36,4.2434176e36,4.5058393e36,4.7844895e36,5.080411e36,5.394594e36,5.728207e36,6.082451e36,6.4586025e36,6.858015e36,7.282129e36,7.732471e36,8.210663e36,8.7184274e36,9.257663e36,9.830176e36,1.0438094e37,1.1083608e37,1.176904e37,1.2496862e37,1.3269694e37,1.4090319e37,1.4961693e37,1.5887077e37,1.6869566e37,1.7912814e37,1.902058e37,2.0196852e37,2.1445867e37,2.2772124e37,2.4180397e37,2.5675763e37,2.7263813e37,2.8949864e37,3.0740182e37,3.264122e37,3.465982e37,3.6803254e37,3.9079242e37,4.1495982e37,4.406218e37,4.6787077e37,4.9680865e37,5.275323e37,5.60156e37,5.947972e37,6.3158065e37,6.706389e37,7.121126e37,7.561511e37,8.0291306e37,8.525733e37,9.052983e37,9.612837e37,1.0207315e38,1.0838557e38,1.1508834e38,1.2220565e38,1.2976309e38,1.3778791e38,1.46309e38,1.5535824e38,1.649659e38,1.7516773e38,1.8600047e38,1.9750313e38,2.0971713e38,2.2268646e38,2.3645785e38,2.5108088e38,2.6661029e38,2.83098e38,3.0060537e38,3.1919544e38,3.3893513e38,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"x":[-300.0,-299.9399939993999,-299.8799879987999,-299.8199819981998,-299.7599759975998,-299.6999699969997,-299.6399639963996,-299.5799579957996,-299.5199519951995,-299.4599459945995,-299.3999399939994,-299.3399339933993,-299.2799279927993,-299.2199219921992,-299.1599159915992,-299.0999099909991,-299.039903990399,-298.979897989799,-298.9198919891989,-298.8598859885989,-298.7998799879988,-298.73987398739877,-298.6798679867987,-298.6198619861986,-298.5598559855986,-298.4998499849985,-298.43984398439846,-298.3798379837984,-298.3198319831983,-298.2598259825983,-298.1998199819982,-298.13981398139816,-298.0798079807981,-298.019801980198,-297.95979597959797,-297.8997899789979,-297.83978397839786,-297.7797779777978,-297.7197719771977,-297.65976597659767,-297.5997599759976,-297.53975397539756,-297.4797479747975,-297.4197419741974,-297.35973597359737,-297.2997299729973,-297.23972397239726,-297.1797179717972,-297.1197119711971,-297.05970597059707,-296.999699969997,-296.93969396939696,-296.8796879687969,-296.81968196819685,-296.75967596759676,-296.6996699669967,-296.63966396639665,-296.57965796579657,-296.51965196519654,-296.45964596459646,-296.3996399639964,-296.33963396339635,-296.27962796279627,-296.21962196219624,-296.15961596159616,-296.0996099609961,-296.03960396039605,-295.97959795979597,-295.91959195919594,-295.85958595859586,-295.7995799579958,-295.73957395739575,-295.67956795679567,-295.61956195619564,-295.55955595559556,-295.4995499549955,-295.43954395439545,-295.37953795379536,-295.31953195319534,-295.25952595259525,-295.19951995199517,-295.13951395139514,-295.07950795079506,-295.01950195019504,-294.95949594959495,-294.8994899489949,-294.83948394839484,-294.77947794779476,-294.71947194719473,-294.65946594659465,-294.5994599459946,-294.53945394539454,-294.47944794479446,-294.41944194419443,-294.35943594359435,-294.2994299429943,-294.23942394239424,-294.17941794179416,-294.11941194119413,-294.05940594059405,-293.999399939994,-293.93939393939394,-293.87938793879385,-293.8193819381938,-293.75937593759375,-293.6993699369937,-293.63936393639364,-293.57935793579355,-293.5193519351935,-293.45934593459344,-293.3993399339934,-293.33933393339333,-293.27932793279325,-293.2193219321932,-293.15931593159314,-293.0993099309931,-293.03930393039303,-292.979297929793,-292.9192919291929,-292.85928592859284,-292.7992799279928,-292.73927392739273,-292.6792679267927,-292.6192619261926,-292.55925592559254,-292.4992499249925,-292.43924392439243,-292.3792379237924,-292.3192319231923,-292.25922592259224,-292.1992199219922,-292.1392139213921,-292.0792079207921,-292.019201920192,-291.95919591959193,-291.8991899189919,-291.8391839183918,-291.7791779177918,-291.7191719171917,-291.65916591659163,-291.5991599159916,-291.5391539153915,-291.4791479147915,-291.4191419141914,-291.35913591359133,-291.2991299129913,-291.2391239123912,-291.1791179117912,-291.1191119111911,-291.0591059105911,-290.999099909991,-290.9390939093909,-290.8790879087909,-290.8190819081908,-290.7590759075908,-290.6990699069907,-290.6390639063906,-290.5790579057906,-290.5190519051905,-290.4590459045905,-290.3990399039904,-290.3390339033903,-290.2790279027903,-290.2190219021902,-290.1590159015902,-290.0990099009901,-290.03900390039,-289.97899789979,-289.9189918991899,-289.8589858985899,-289.7989798979898,-289.7389738973897,-289.6789678967897,-289.6189618961896,-289.5589558955896,-289.4989498949895,-289.4389438943894,-289.3789378937894,-289.3189318931893,-289.2589258925893,-289.1989198919892,-289.13891389138917,-289.0789078907891,-289.018901890189,-288.958895889589,-288.8988898889889,-288.83888388838886,-288.7788778877888,-288.7188718871887,-288.65886588658867,-288.5988598859886,-288.53885388538856,-288.4788478847885,-288.4188418841884,-288.35883588358837,-288.2988298829883,-288.23882388238826,-288.1788178817882,-288.1188118811881,-288.05880588058807,-287.998799879988,-287.93879387938796,-287.8787878787879,-287.8187818781878,-287.75877587758777,-287.6987698769877,-287.63876387638766,-287.5787578757876,-287.5187518751875,-287.45874587458746,-287.3987398739874,-287.33873387338735,-287.2787278727873,-287.21872187218725,-287.15871587158716,-287.0987098709871,-287.03870387038705,-286.97869786978697,-286.91869186918694,-286.85868586858686,-286.7986798679868,-286.73867386738675,-286.67866786678667,-286.61866186618664,-286.55865586558656,-286.4986498649865,-286.43864386438645,-286.37863786378637,-286.31863186318634,-286.25862586258626,-286.1986198619862,-286.13861386138615,-286.07860786078606,-286.01860186018604,-285.95859585958596,-285.8985898589859,-285.83858385838585,-285.77857785778576,-285.71857185718574,-285.65856585658565,-285.59855985598557,-285.53855385538554,-285.47854785478546,-285.41854185418543,-285.35853585358535,-285.2985298529853,-285.23852385238524,-285.17851785178516,-285.11851185118513,-285.05850585058505,-284.998499849985,-284.93849384938494,-284.87848784878486,-284.81848184818483,-284.75847584758475,-284.6984698469847,-284.63846384638464,-284.57845784578456,-284.51845184518453,-284.45844584458445,-284.3984398439844,-284.33843384338434,-284.27842784278425,-284.2184218421842,-284.15841584158414,-284.0984098409841,-284.03840384038403,-283.97839783978395,-283.9183918391839,-283.85838583858384,-283.7983798379838,-283.73837383738373,-283.67836783678365,-283.6183618361836,-283.55835583558354,-283.4983498349835,-283.43834383438343,-283.3783378337834,-283.3183318331833,-283.25832583258324,-283.1983198319832,-283.13831383138313,-283.0783078307831,-283.018301830183,-282.95829582958294,-282.8982898289829,-282.8382838283828,-282.7782778277828,-282.7182718271827,-282.65826582658264,-282.5982598259826,-282.5382538253825,-282.4782478247825,-282.4182418241824,-282.35823582358233,-282.2982298229823,-282.2382238223822,-282.1782178217822,-282.1182118211821,-282.05820582058203,-281.998199819982,-281.9381938193819,-281.8781878187819,-281.8181818181818,-281.75817581758173,-281.6981698169817,-281.6381638163816,-281.5781578157816,-281.5181518151815,-281.4581458145815,-281.3981398139814,-281.3381338133813,-281.2781278127813,-281.2181218121812,-281.1581158115812,-281.0981098109811,-281.038103810381,-280.978097809781,-280.9180918091809,-280.8580858085809,-280.7980798079808,-280.7380738073807,-280.6780678067807,-280.6180618061806,-280.5580558055806,-280.4980498049805,-280.4380438043804,-280.3780378037804,-280.3180318031803,-280.2580258025803,-280.1980198019802,-280.1380138013801,-280.0780078007801,-280.01800180018,-279.95799579958,-279.8979897989799,-279.8379837983798,-279.7779777977798,-279.7179717971797,-279.6579657965797,-279.5979597959796,-279.53795379537956,-279.4779477947795,-279.4179417941794,-279.3579357935794,-279.2979297929793,-279.23792379237926,-279.1779177917792,-279.1179117911791,-279.05790579057907,-278.997899789979,-278.93789378937896,-278.8778877887789,-278.8178817881788,-278.75787578757877,-278.6978697869787,-278.63786378637866,-278.5778577857786,-278.5178517851785,-278.45784578457847,-278.3978397839784,-278.33783378337836,-278.2778277827783,-278.2178217821782,-278.15781578157817,-278.0978097809781,-278.03780378037806,-277.977797779778,-277.9177917791779,-277.85778577857786,-277.7977797779778,-277.73777377737775,-277.67776777677767,-277.61776177617764,-277.55775577557756,-277.4977497749775,-277.43774377437745,-277.37773777377737,-277.31773177317734,-277.25772577257726,-277.1977197719772,-277.13771377137715,-277.07770777077707,-277.01770177017704,-276.95769576957696,-276.8976897689769,-276.83768376837685,-276.77767776777677,-276.71767176717674,-276.65766576657666,-276.5976597659766,-276.53765376537655,-276.47764776477646,-276.41764176417644,-276.35763576357635,-276.29762976297627,-276.23762376237624,-276.17761776177616,-276.11761176117614,-276.05760576057605,-275.99759975997597,-275.93759375937594,-275.87758775877586,-275.81758175817583,-275.75757575757575,-275.6975697569757,-275.63756375637564,-275.57755775577556,-275.51755175517553,-275.45754575457545,-275.3975397539754,-275.33753375337534,-275.27752775277526,-275.21752175217523,-275.15751575157515,-275.0975097509751,-275.03750375037504,-274.97749774977495,-274.9174917491749,-274.85748574857485,-274.7974797479748,-274.73747374737474,-274.67746774677465,-274.6174617461746,-274.55745574557454,-274.4974497449745,-274.43744374437443,-274.37743774377435,-274.3174317431743,-274.25742574257424,-274.1974197419742,-274.13741374137413,-274.07740774077405,-274.017401740174,-273.95739573957394,-273.8973897389739,-273.83738373837383,-273.7773777377738,-273.7173717371737,-273.65736573657364,-273.5973597359736,-273.53735373537353,-273.4773477347735,-273.4173417341734,-273.35733573357334,-273.2973297329733,-273.2373237323732,-273.1773177317732,-273.1173117311731,-273.05730573057303,-272.997299729973,-272.9372937293729,-272.8772877287729,-272.8172817281728,-272.75727572757273,-272.6972697269727,-272.6372637263726,-272.5772577257726,-272.5172517251725,-272.45724572457243,-272.3972397239724,-272.3372337233723,-272.2772277227723,-272.2172217221722,-272.15721572157213,-272.0972097209721,-272.037203720372,-271.977197719772,-271.9171917191719,-271.8571857185719,-271.7971797179718,-271.7371737173717,-271.6771677167717,-271.6171617161716,-271.5571557155716,-271.4971497149715,-271.4371437143714,-271.3771377137714,-271.3171317131713,-271.2571257125713,-271.1971197119712,-271.1371137113711,-271.0771077107711,-271.017101710171,-270.957095709571,-270.8970897089709,-270.8370837083708,-270.7770777077708,-270.7170717071707,-270.6570657065707,-270.5970597059706,-270.5370537053705,-270.4770477047705,-270.4170417041704,-270.3570357035704,-270.2970297029703,-270.2370237023702,-270.1770177017702,-270.1170117011701,-270.0570057005701,-269.99699969997,-269.93699369936996,-269.8769876987699,-269.8169816981698,-269.75697569756977,-269.6969696969697,-269.63696369636966,-269.5769576957696,-269.5169516951695,-269.45694569456947,-269.3969396939694,-269.33693369336936,-269.2769276927693,-269.2169216921692,-269.15691569156917,-269.0969096909691,-269.03690369036906,-268.976897689769,-268.9168916891689,-268.85688568856887,-268.7968796879688,-268.73687368736876,-268.6768676867687,-268.6168616861686,-268.55685568556856,-268.4968496849685,-268.43684368436845,-268.3768376837684,-268.3168316831683,-268.25682568256826,-268.1968196819682,-268.13681368136815,-268.07680768076807,-268.01680168016804,-267.95679567956796,-267.8967896789679,-267.83678367836785,-267.77677767776777,-267.71677167716774,-267.65676567656766,-267.5967596759676,-267.53675367536755,-267.47674767476747,-267.41674167416744,-267.35673567356736,-267.2967296729673,-267.23672367236725,-267.17671767176716,-267.11671167116714,-267.05670567056706,-266.996699669967,-266.93669366936695,-266.87668766876686,-266.81668166816684,-266.75667566756675,-266.69666966696667,-266.63666366636664,-266.57665766576656,-266.51665166516653,-266.45664566456645,-266.39663966396637,-266.33663366336634,-266.27662766276626,-266.21662166216623,-266.15661566156615,-266.0966096609661,-266.03660366036604,-265.97659765976596,-265.91659165916593,-265.85658565856585,-265.7965796579658,-265.73657365736574,-265.67656765676566,-265.61656165616563,-265.55655565556555,-265.4965496549655,-265.43654365436544,-265.37653765376535,-265.3165316531653,-265.25652565256524,-265.1965196519652,-265.13651365136514,-265.07650765076505,-265.016501650165,-264.95649564956494,-264.8964896489649,-264.83648364836483,-264.77647764776475,-264.7164716471647,-264.65646564656464,-264.5964596459646,-264.53645364536453,-264.47644764476445,-264.4164416441644,-264.35643564356434,-264.2964296429643,-264.23642364236423,-264.1764176417642,-264.1164116411641,-264.05640564056404,-263.996399639964,-263.9363936393639,-263.8763876387639,-263.8163816381638,-263.75637563756374,-263.6963696369637,-263.6363636363636,-263.5763576357636,-263.5163516351635,-263.45634563456343,-263.3963396339634,-263.3363336333633,-263.2763276327633,-263.2163216321632,-263.15631563156313,-263.0963096309631,-263.036303630363,-262.976297629763,-262.9162916291629,-262.85628562856283,-262.7962796279628,-262.7362736273627,-262.6762676267627,-262.6162616261626,-262.5562556255625,-262.4962496249625,-262.4362436243624,-262.3762376237624,-262.3162316231623,-262.2562256225623,-262.1962196219622,-262.1362136213621,-262.0762076207621,-262.016201620162,-261.956195619562,-261.8961896189619,-261.8361836183618,-261.7761776177618,-261.7161716171617,-261.6561656165617,-261.5961596159616,-261.5361536153615,-261.4761476147615,-261.4161416141614,-261.3561356135614,-261.2961296129613,-261.2361236123612,-261.1761176117612,-261.1161116111611,-261.0561056105611,-260.996099609961,-260.9360936093609,-260.8760876087609,-260.8160816081608,-260.7560756075608,-260.6960696069607,-260.6360636063606,-260.5760576057606,-260.5160516051605,-260.4560456045605,-260.3960396039604,-260.33603360336036,-260.2760276027603,-260.2160216021602,-260.15601560156017,-260.0960096009601,-260.03600360036006,-259.97599759976,-259.9159915991599,-259.85598559855987,-259.7959795979598,-259.73597359735976,-259.6759675967597,-259.6159615961596,-259.55595559555957,-259.4959495949595,-259.43594359435946,-259.3759375937594,-259.3159315931593,-259.25592559255927,-259.1959195919592,-259.13591359135916,-259.0759075907591,-259.015901590159,-258.95589558955896,-258.8958895889589,-258.83588358835885,-258.77587758775877,-258.7158715871587,-258.65586558655866,-258.5958595859586,-258.53585358535855,-258.47584758475847,-258.41584158415844,-258.35583558355836,-258.2958295829583,-258.23582358235825,-258.17581758175817,-258.11581158115814,-258.05580558055806,-257.995799579958,-257.93579357935795,-257.87578757875787,-257.81578157815784,-257.75577557755776,-257.6957695769577,-257.63576357635765,-257.57575757575756,-257.51575157515754,-257.45574557455745,-257.39573957395737,-257.33573357335734,-257.27572757275726,-257.21572157215724,-257.15571557155715,-257.09570957095707,-257.03570357035704,-256.97569756975696,-256.91569156915693,-256.85568556855685,-256.79567956795677,-256.73567356735674,-256.67566756675666,-256.61566156615663,-256.55565556555655,-256.4956495649565,-256.43564356435644,-256.37563756375636,-256.31563156315633,-256.25562556255625,-256.1956195619562,-256.13561356135614,-256.07560756075605,-256.01560156015603,-255.95559555955595,-255.8955895589559,-255.83558355835584,-255.77557755775578,-255.71557155715573,-255.65556555655564,-255.5955595559556,-255.53555355535553,-255.47554755475548,-255.41554155415542,-255.35553555355534,-255.2955295529553,-255.23552355235523,-255.17551755175518,-255.11551155115512,-255.05550555055507,-254.99549954995499,-254.93549354935493,-254.87548754875488,-254.81548154815482,-254.75547554755477,-254.69546954695468,-254.63546354635463,-254.57545754575457,-254.51545154515452,-254.45544554455446,-254.39543954395438,-254.33543354335433,-254.27542754275427,-254.21542154215422,-254.15541554155416,-254.0954095409541,-254.03540354035403,-253.97539753975397,-253.91539153915392,-253.85538553855386,-253.7953795379538,-253.73537353735372,-253.67536753675367,-253.6153615361536,-253.55535553555356,-253.4953495349535,-253.43534353435342,-253.37533753375337,-253.3153315331533,-253.25532553255326,-253.1953195319532,-253.13531353135315,-253.07530753075307,-253.015301530153,-252.95529552955296,-252.8952895289529,-252.83528352835285,-252.77527752775276,-252.7152715271527,-252.65526552655265,-252.5952595259526,-252.53525352535254,-252.47524752475246,-252.4152415241524,-252.35523552355235,-252.2952295229523,-252.23522352235224,-252.1752175217522,-252.1152115211521,-252.05520552055205,-251.995199519952,-251.93519351935194,-251.8751875187519,-251.8151815181518,-251.75517551755175,-251.6951695169517,-251.63516351635164,-251.57515751575158,-251.5151515151515,-251.45514551455145,-251.3951395139514,-251.33513351335134,-251.27512751275128,-251.21512151215123,-251.15511551155114,-251.0951095109511,-251.03510351035104,-250.97509750975098,-250.91509150915093,-250.85508550855084,-250.7950795079508,-250.73507350735073,-250.67506750675068,-250.61506150615062,-250.55505550555054,-250.4950495049505,-250.43504350435043,-250.37503750375038,-250.31503150315032,-250.25502550255027,-250.19501950195018,-250.13501350135013,-250.07500750075008,-250.01500150015002,-249.95499549954997,-249.89498949894988,-249.83498349834983,-249.77497749774977,-249.71497149714972,-249.65496549654966,-249.59495949594958,-249.53495349534953,-249.47494749474947,-249.41494149414942,-249.35493549354936,-249.2949294929493,-249.23492349234922,-249.17491749174917,-249.11491149114912,-249.05490549054906,-248.994899489949,-248.93489348934892,-248.87488748874887,-248.8148814881488,-248.75487548754876,-248.6948694869487,-248.63486348634862,-248.57485748574857,-248.5148514851485,-248.45484548454846,-248.3948394839484,-248.33483348334835,-248.27482748274826,-248.2148214821482,-248.15481548154816,-248.0948094809481,-248.03480348034805,-247.97479747974796,-247.9147914791479,-247.85478547854785,-247.7947794779478,-247.73477347734774,-247.67476747674766,-247.6147614761476,-247.55475547554755,-247.4947494749475,-247.43474347434744,-247.3747374737474,-247.3147314731473,-247.25472547254725,-247.1947194719472,-247.13471347134714,-247.0747074707471,-247.014701470147,-246.95469546954695,-246.8946894689469,-246.83468346834684,-246.77467746774678,-246.7146714671467,-246.65466546654665,-246.5946594659466,-246.53465346534654,-246.47464746474648,-246.41464146414643,-246.35463546354634,-246.2946294629463,-246.23462346234624,-246.17461746174618,-246.11461146114613,-246.05460546054604,-245.994599459946,-245.93459345934593,-245.87458745874588,-245.81458145814582,-245.75457545754574,-245.6945694569457,-245.63456345634563,-245.57455745574558,-245.51455145514552,-245.45454545454547,-245.39453945394538,-245.33453345334533,-245.27452745274528,-245.21452145214522,-245.15451545154517,-245.09450945094508,-245.03450345034503,-244.97449744974497,-244.91449144914492,-244.85448544854486,-244.79447944794478,-244.73447344734473,-244.67446744674467,-244.61446144614462,-244.55445544554456,-244.4944494449445,-244.43444344434442,-244.37443744374437,-244.31443144314431,-244.25442544254426,-244.1944194419442,-244.13441344134412,-244.07440744074407,-244.014401440144,-243.95439543954396,-243.8943894389439,-243.83438343834382,-243.77437743774377,-243.7143714371437,-243.65436543654366,-243.5943594359436,-243.53435343534355,-243.47434743474346,-243.4143414341434,-243.35433543354335,-243.2943294329433,-243.23432343234325,-243.17431743174316,-243.1143114311431,-243.05430543054305,-242.994299429943,-242.93429342934294,-242.87428742874286,-242.8142814281428,-242.75427542754275,-242.6942694269427,-242.63426342634264,-242.5742574257426,-242.5142514251425,-242.45424542454245,-242.3942394239424,-242.33423342334234,-242.27422742274229,-242.2142214221422,-242.15421542154215,-242.0942094209421,-242.03420342034204,-241.97419741974198,-241.9141914191419,-241.85418541854185,-241.7941794179418,-241.73417341734174,-241.67416741674168,-241.61416141614163,-241.55415541554154,-241.4941494149415,-241.43414341434143,-241.37413741374138,-241.31413141314133,-241.25412541254124,-241.1941194119412,-241.13411341134113,-241.07410741074108,-241.01410141014102,-240.95409540954094,-240.89408940894089,-240.83408340834083,-240.77407740774078,-240.71407140714072,-240.65406540654067,-240.59405940594058,-240.53405340534053,-240.47404740474047,-240.41404140414042,-240.35403540354037,-240.29402940294028,-240.23402340234023,-240.17401740174017,-240.11401140114012,-240.05400540054006,-239.99399939993998,-239.93399339933993,-239.87398739873987,-239.81398139813982,-239.75397539753976,-239.6939693969397,-239.63396339633962,-239.57395739573957,-239.51395139513951,-239.45394539453946,-239.3939393939394,-239.33393339333932,-239.27392739273927,-239.2139213921392,-239.15391539153916,-239.0939093909391,-239.03390339033902,-238.97389738973897,-238.9138913891389,-238.85388538853886,-238.7938793879388,-238.73387338733875,-238.67386738673866,-238.6138613861386,-238.55385538553855,-238.4938493849385,-238.43384338433845,-238.37383738373836,-238.3138313831383,-238.25382538253825,-238.1938193819382,-238.13381338133814,-238.07380738073806,-238.013801380138,-237.95379537953795,-237.8937893789379,-237.83378337833784,-237.7737773777378,-237.7137713771377,-237.65376537653765,-237.5937593759376,-237.53375337533754,-237.47374737473748,-237.4137413741374,-237.35373537353735,-237.2937293729373,-237.23372337233724,-237.17371737173718,-237.1137113711371,-237.05370537053705,-236.993699369937,-236.93369336933694,-236.87368736873688,-236.81368136813683,-236.75367536753674,-236.6936693669367,-236.63366336633663,-236.57365736573658,-236.51365136513652,-236.45364536453644,-236.3936393639364,-236.33363336333633,-236.27362736273628,-236.21362136213622,-236.15361536153614,-236.09360936093609,-236.03360336033603,-235.97359735973598,-235.91359135913592,-235.85358535853587,-235.79357935793578,-235.73357335733573,-235.67356735673567,-235.61356135613562,-235.55355535553556,-235.49354935493548,-235.43354335433543,-235.37353735373537,-235.31353135313532,-235.25352535253526,-235.19351935193518,-235.13351335133513,-235.07350735073507,-235.01350135013502,-234.95349534953496,-234.8934893489349,-234.83348334833482,-234.77347734773477,-234.7134713471347,-234.65346534653466,-234.5934593459346,-234.53345334533452,-234.47344734473447,-234.4134413441344,-234.35343534353436,-234.2934293429343,-234.23342334233422,-234.17341734173417,-234.1134113411341,-234.05340534053406,-233.993399339934,-233.93339333933395,-233.87338733873386,-233.8133813381338,-233.75337533753375,-233.6933693369337,-233.63336333633364,-233.57335733573356,-233.5133513351335,-233.45334533453345,-233.3933393339334,-233.33333333333334,-233.27332733273326,-233.2133213321332,-233.15331533153315,-233.0933093309331,-233.03330333033304,-232.973297329733,-232.9132913291329,-232.85328532853285,-232.7932793279328,-232.73327332733274,-232.67326732673268,-232.6132613261326,-232.55325532553255,-232.4932493249325,-232.43324332433244,-232.37323732373238,-232.3132313231323,-232.25322532253224,-232.1932193219322,-232.13321332133214,-232.07320732073208,-232.01320132013203,-231.95319531953194,-231.8931893189319,-231.83318331833183,-231.77317731773178,-231.71317131713172,-231.65316531653164,-231.5931593159316,-231.53315331533153,-231.47314731473148,-231.41314131413142,-231.35313531353134,-231.29312931293128,-231.23312331233123,-231.17311731173118,-231.11311131113112,-231.05310531053107,-230.99309930993098,-230.93309330933093,-230.87308730873087,-230.81308130813082,-230.75307530753076,-230.69306930693068,-230.63306330633063,-230.57305730573057,-230.51305130513052,-230.45304530453046,-230.39303930393038,-230.33303330333032,-230.27302730273027,-230.21302130213022,-230.15301530153016,-230.0930093009301,-230.03300330033002,-229.97299729972997,-229.9129912991299,-229.85298529852986,-229.7929792979298,-229.73297329732972,-229.67296729672967,-229.6129612961296,-229.55295529552956,-229.4929492949295,-229.43294329432942,-229.37293729372936,-229.3129312931293,-229.25292529252926,-229.1929192919292,-229.13291329132915,-229.07290729072906,-229.012901290129,-228.95289528952895,-228.8928892889289,-228.83288328832884,-228.77287728772876,-228.7128712871287,-228.65286528652865,-228.5928592859286,-228.53285328532854,-228.47284728472846,-228.4128412841284,-228.35283528352835,-228.2928292829283,-228.23282328232824,-228.1728172817282,-228.1128112811281,-228.05280528052805,-227.992799279928,-227.93279327932794,-227.87278727872788,-227.8127812781278,-227.75277527752775,-227.6927692769277,-227.63276327632764,-227.57275727572758,-227.5127512751275,-227.45274527452744,-227.3927392739274,-227.33273327332734,-227.27272727272728,-227.21272127212723,-227.15271527152714,-227.0927092709271,-227.03270327032703,-226.97269726972698,-226.91269126912692,-226.85268526852684,-226.7926792679268,-226.73267326732673,-226.67266726672668,-226.61266126612662,-226.55265526552654,-226.49264926492648,-226.43264326432643,-226.37263726372638,-226.31263126312632,-226.25262526252627,-226.19261926192618,-226.13261326132613,-226.07260726072607,-226.01260126012602,-225.95259525952596,-225.89258925892588,-225.83258325832583,-225.77257725772577,-225.71257125712572,-225.65256525652566,-225.59255925592558,-225.53255325532552,-225.47254725472547,-225.41254125412541,-225.35253525352536,-225.2925292529253,-225.23252325232522,-225.17251725172517,-225.1125112511251,-225.05250525052506,-224.992499249925,-224.93249324932492,-224.87248724872487,-224.8124812481248,-224.75247524752476,-224.6924692469247,-224.63246324632462,-224.57245724572456,-224.5124512451245,-224.45244524452445,-224.3924392439244,-224.33243324332435,-224.27242724272426,-224.2124212421242,-224.15241524152415,-224.0924092409241,-224.03240324032404,-223.97239723972396,-223.9123912391239,-223.85238523852385,-223.7923792379238,-223.73237323732374,-223.67236723672366,-223.6123612361236,-223.55235523552355,-223.4923492349235,-223.43234323432344,-223.37233723372339,-223.3123312331233,-223.25232523252325,-223.1923192319232,-223.13231323132314,-223.07230723072308,-223.012301230123,-222.95229522952295,-222.8922892289229,-222.83228322832284,-222.77227722772278,-222.7122712271227,-222.65226522652264,-222.5922592259226,-222.53225322532253,-222.47224722472248,-222.41224122412243,-222.35223522352234,-222.2922292229223,-222.23222322232223,-222.17221722172218,-222.11221122112212,-222.05220522052204,-221.99219921992199,-221.93219321932193,-221.87218721872188,-221.81218121812182,-221.75217521752174,-221.69216921692168,-221.63216321632163,-221.57215721572157,-221.51215121512152,-221.45214521452147,-221.39213921392138,-221.33213321332133,-221.27212721272127,-221.21212121212122,-221.15211521152116,-221.09210921092108,-221.03210321032103,-220.97209720972097,-220.91209120912092,-220.85208520852086,-220.79207920792078,-220.73207320732072,-220.67206720672067,-220.61206120612061,-220.55205520552056,-220.4920492049205,-220.43204320432042,-220.37203720372037,-220.3120312031203,-220.25202520252026,-220.1920192019202,-220.13201320132012,-220.07200720072007,-220.01200120012,-219.95199519951996,-219.8919891989199,-219.83198319831982,-219.77197719771976,-219.7119711971197,-219.65196519651965,-219.5919591959196,-219.53195319531955,-219.47194719471946,-219.4119411941194,-219.35193519351935,-219.2919291929193,-219.23192319231924,-219.17191719171916,-219.1119111911191,-219.05190519051905,-218.991899189919,-218.93189318931894,-218.87188718871886,-218.8118811881188,-218.75187518751875,-218.6918691869187,-218.63186318631864,-218.57185718571859,-218.5118511851185,-218.45184518451845,-218.3918391839184,-218.33183318331834,-218.27182718271828,-218.2118211821182,-218.15181518151815,-218.0918091809181,-218.03180318031804,-217.97179717971798,-217.9117911791179,-217.85178517851784,-217.7917791779178,-217.73177317731773,-217.67176717671768,-217.61176117611762,-217.55175517551754,-217.4917491749175,-217.43174317431743,-217.37173717371738,-217.31173117311732,-217.25172517251724,-217.19171917191719,-217.13171317131713,-217.07170717071708,-217.01170117011702,-216.95169516951694,-216.89168916891688,-216.83168316831683,-216.77167716771677,-216.71167116711672,-216.65166516651666,-216.59165916591658,-216.53165316531653,-216.47164716471647,-216.41164116411642,-216.35163516351636,-216.29162916291628,-216.23162316231623,-216.17161716171617,-216.11161116111612,-216.05160516051606,-215.99159915991598,-215.93159315931592,-215.87158715871587,-215.8115811581158,-215.75157515751576,-215.6915691569157,-215.63156315631562,-215.57155715571557,-215.5115511551155,-215.45154515451546,-215.3915391539154,-215.33153315331532,-215.27152715271527,-215.2115211521152,-215.15151515151516,-215.0915091509151,-215.03150315031502,-214.97149714971496,-214.9114911491149,-214.85148514851485,-214.7914791479148,-214.73147314731474,-214.67146714671466,-214.6114611461146,-214.55145514551455,-214.4914491449145,-214.43144314431444,-214.37143714371436,-214.3114311431143,-214.25142514251425,-214.1914191419142,-214.13141314131414,-214.07140714071406,-214.011401140114,-213.95139513951395,-213.8913891389139,-213.83138313831384,-213.77137713771378,-213.7113711371137,-213.65136513651365,-213.5913591359136,-213.53135313531354,-213.47134713471348,-213.4113411341134,-213.35133513351334,-213.2913291329133,-213.23132313231324,-213.17131713171318,-213.1113111311131,-213.05130513051304,-212.991299129913,-212.93129312931293,-212.87128712871288,-212.81128112811282,-212.75127512751274,-212.6912691269127,-212.63126312631263,-212.57125712571258,-212.51125112511252,-212.45124512451244,-212.39123912391238,-212.33123312331233,-212.27122712271228,-212.21122112211222,-212.15121512151214,-212.09120912091208,-212.03120312031203,-211.97119711971197,-211.91119111911192,-211.85118511851186,-211.79117911791178,-211.73117311731173,-211.67116711671167,-211.61116111611162,-211.55115511551156,-211.49114911491148,-211.43114311431142,-211.37113711371137,-211.31113111311132,-211.25112511251126,-211.19111911191118,-211.13111311131112,-211.07110711071107,-211.011101110111,-210.95109510951096,-210.8910891089109,-210.83108310831082,-210.77107710771077,-210.7110711071107,-210.65106510651066,-210.5910591059106,-210.53105310531052,-210.47104710471046,-210.4110411041104,-210.35103510351036,-210.2910291029103,-210.23102310231022,-210.17101710171016,-210.1110111011101,-210.05100510051005,-209.99099909991,-209.93099309930994,-209.87098709870986,-209.8109810981098,-209.75097509750975,-209.6909690969097,-209.63096309630964,-209.57095709570956,-209.5109510951095,-209.45094509450945,-209.3909390939094,-209.33093309330934,-209.27092709270926,-209.2109210921092,-209.15091509150915,-209.0909090909091,-209.03090309030904,-208.97089708970898,-208.9108910891089,-208.85088508850885,-208.7908790879088,-208.73087308730874,-208.67086708670868,-208.6108610861086,-208.55085508550854,-208.4908490849085,-208.43084308430844,-208.37083708370838,-208.3108310831083,-208.25082508250824,-208.1908190819082,-208.13081308130813,-208.07080708070808,-208.01080108010802,-207.95079507950794,-207.8907890789079,-207.83078307830783,-207.77077707770778,-207.71077107710772,-207.65076507650764,-207.59075907590758,-207.53075307530753,-207.47074707470748,-207.41074107410742,-207.35073507350734,-207.29072907290728,-207.23072307230723,-207.17071707170717,-207.11071107110712,-207.05070507050706,-206.99069906990698,-206.93069306930693,-206.87068706870687,-206.81068106810682,-206.75067506750676,-206.69066906690668,-206.63066306630662,-206.57065706570657,-206.51065106510652,-206.45064506450646,-206.39063906390638,-206.33063306330632,-206.27062706270627,-206.2106210621062,-206.15061506150616,-206.0906090609061,-206.03060306030602,-205.97059705970597,-205.9105910591059,-205.85058505850586,-205.7905790579058,-205.73057305730572,-205.67056705670566,-205.6105610561056,-205.55055505550555,-205.4905490549055,-205.43054305430542,-205.37053705370536,-205.3105310531053,-205.25052505250525,-205.1905190519052,-205.13051305130514,-205.07050705070506,-205.010501050105,-204.95049504950495,-204.8904890489049,-204.83048304830484,-204.77047704770476,-204.7104710471047,-204.65046504650465,-204.5904590459046,-204.53045304530454,-204.47044704470446,-204.4104410441044,-204.35043504350435,-204.2904290429043,-204.23042304230424,-204.17041704170418,-204.1104110411041,-204.05040504050405,-203.990399039904,-203.93039303930394,-203.87038703870388,-203.8103810381038,-203.75037503750374,-203.6903690369037,-203.63036303630363,-203.57035703570358,-203.5103510351035,-203.45034503450344,-203.3903390339034,-203.33033303330333,-203.27032703270328,-203.21032103210322,-203.15031503150314,-203.0903090309031,-203.03030303030303,-202.97029702970298,-202.91029102910292,-202.85028502850284,-202.79027902790278,-202.73027302730273,-202.67026702670267,-202.61026102610262,-202.55025502550254,-202.49024902490248,-202.43024302430243,-202.37023702370237,-202.31023102310232,-202.25022502250226,-202.19021902190218,-202.13021302130213,-202.07020702070207,-202.01020102010202,-201.95019501950196,-201.89018901890188,-201.83018301830182,-201.77017701770177,-201.71017101710171,-201.65016501650166,-201.59015901590158,-201.53015301530152,-201.47014701470147,-201.4101410141014,-201.35013501350136,-201.2901290129013,-201.23012301230122,-201.17011701170117,-201.1101110111011,-201.05010501050106,-200.990099009901,-200.93009300930092,-200.87008700870086,-200.8100810081008,-200.75007500750075,-200.6900690069007,-200.63006300630062,-200.57005700570056,-200.5100510051005,-200.45004500450045,-200.3900390039004,-200.33003300330034,-200.27002700270026,-200.2100210021002,-200.15001500150015,-200.0900090009001,-200.03000300030004,-199.96999699969996,-199.9099909990999,-199.84998499849985,-199.7899789978998,-199.72997299729974,-199.66996699669966,-199.6099609960996,-199.54995499549955,-199.4899489948995,-199.42994299429944,-199.36993699369938,-199.3099309930993,-199.24992499249925,-199.1899189918992,-199.12991299129914,-199.06990699069908,-199.009900990099,-198.94989498949894,-198.8898889888989,-198.82988298829883,-198.76987698769878,-198.7098709870987,-198.64986498649864,-198.5898589858986,-198.52985298529853,-198.46984698469848,-198.40984098409842,-198.34983498349834,-198.28982898289829,-198.22982298229823,-198.16981698169818,-198.10981098109812,-198.04980498049804,-197.98979897989798,-197.92979297929793,-197.86978697869787,-197.80978097809782,-197.74977497749774,-197.68976897689768,-197.62976297629763,-197.56975697569757,-197.50975097509752,-197.44974497449746,-197.38973897389738,-197.32973297329733,-197.26972697269727,-197.20972097209722,-197.14971497149716,-197.08970897089708,-197.02970297029702,-196.96969696969697,-196.9096909690969,-196.84968496849686,-196.78967896789678,-196.72967296729672,-196.66966696669667,-196.6096609660966,-196.54965496549656,-196.4896489648965,-196.42964296429642,-196.36963696369637,-196.3096309630963,-196.24962496249626,-196.1896189618962,-196.12961296129612,-196.06960696069606,-196.009600960096,-195.94959495949595,-195.8895889588959,-195.82958295829582,-195.76957695769576,-195.7095709570957,-195.64956495649565,-195.5895589558956,-195.52955295529554,-195.46954695469546,-195.4095409540954,-195.34953495349535,-195.2895289528953,-195.22952295229524,-195.16951695169516,-195.1095109510951,-195.04950495049505,-194.989498949895,-194.92949294929494,-194.86948694869486,-194.8094809480948,-194.74947494749475,-194.6894689468947,-194.62946294629464,-194.56945694569458,-194.5094509450945,-194.44944494449445,-194.3894389438944,-194.32943294329434,-194.26942694269428,-194.2094209420942,-194.14941494149414,-194.0894089408941,-194.02940294029403,-193.96939693969398,-193.9093909390939,-193.84938493849384,-193.7893789378938,-193.72937293729373,-193.66936693669368,-193.60936093609362,-193.54935493549354,-193.48934893489348,-193.42934293429343,-193.36933693369338,-193.30933093309332,-193.24932493249324,-193.18931893189318,-193.12931293129313,-193.06930693069307,-193.00930093009302,-192.94929492949294,-192.88928892889288,-192.82928292829283,-192.76927692769277,-192.70927092709272,-192.64926492649266,-192.58925892589258,-192.52925292529252,-192.46924692469247,-192.40924092409242,-192.34923492349236,-192.28922892289228,-192.22922292229222,-192.16921692169217,-192.1092109210921,-192.04920492049206,-191.98919891989198,-191.92919291929192,-191.86918691869187,-191.8091809180918,-191.74917491749176,-191.6891689168917,-191.62916291629162,-191.56915691569156,-191.5091509150915,-191.44914491449146,-191.3891389138914,-191.32913291329132,-191.26912691269126,-191.2091209120912,-191.14911491149115,-191.0891089108911,-191.02910291029102,-190.96909690969096,-190.9090909090909,-190.84908490849085,-190.7890789078908,-190.72907290729074,-190.66906690669066,-190.6090609060906,-190.54905490549055,-190.4890489048905,-190.42904290429044,-190.36903690369036,-190.3090309030903,-190.24902490249025,-190.1890189018902,-190.12901290129014,-190.06900690069006,-190.00900090009,-189.94899489948995,-189.8889888988899,-189.82898289828984,-189.76897689768978,-189.7089708970897,-189.64896489648964,-189.5889588958896,-189.52895289528954,-189.46894689468948,-189.4089408940894,-189.34893489348934,-189.2889288928893,-189.22892289228923,-189.16891689168918,-189.1089108910891,-189.04890489048904,-188.988898889889,-188.92889288928893,-188.86888688868888,-188.80888088808882,-188.74887488748874,-188.68886888688868,-188.62886288628863,-188.56885688568858,-188.50885088508852,-188.44884488448844,-188.38883888388838,-188.32883288328833,-188.26882688268827,-188.20882088208822,-188.14881488148814,-188.08880888088808,-188.02880288028803,-187.96879687968797,-187.90879087908792,-187.84878487848786,-187.78877887788778,-187.72877287728772,-187.66876687668767,-187.60876087608762,-187.54875487548756,-187.48874887488748,-187.42874287428742,-187.36873687368737,-187.3087308730873,-187.24872487248726,-187.18871887188718,-187.12871287128712,-187.06870687068707,-187.008700870087,-186.94869486948696,-186.8886888688869,-186.82868286828682,-186.76867686768676,-186.7086708670867,-186.64866486648666,-186.5886588658866,-186.52865286528652,-186.46864686468646,-186.4086408640864,-186.34863486348635,-186.2886288628863,-186.22862286228622,-186.16861686168616,-186.1086108610861,-186.04860486048605,-185.988598859886,-185.92859285928594,-185.86858685868586,-185.8085808580858,-185.74857485748575,-185.6885688568857,-185.62856285628564,-185.56855685568556,-185.5085508550855,-185.44854485448545,-185.3885388538854,-185.32853285328534,-185.26852685268526,-185.2085208520852,-185.14851485148515,-185.0885088508851,-185.02850285028504,-184.96849684968498,-184.9084908490849,-184.84848484848484,-184.7884788478848,-184.72847284728473,-184.66846684668468,-184.6084608460846,-184.54845484548454,-184.4884488448845,-184.42844284428443,-184.36843684368438,-184.3084308430843,-184.24842484248424,-184.1884188418842,-184.12841284128413,-184.06840684068408,-184.00840084008402,-183.94839483948394,-183.88838883888388,-183.82838283828383,-183.76837683768377,-183.70837083708372,-183.64836483648364,-183.58835883588358,-183.52835283528353,-183.46834683468347,-183.40834083408342,-183.34833483348334,-183.28832883288328,-183.22832283228323,-183.16831683168317,-183.10831083108312,-183.04830483048306,-182.98829882988298,-182.92829282928292,-182.86828682868287,-182.80828082808281,-182.74827482748276,-182.68826882688268,-182.62826282628262,-182.56825682568257,-182.5082508250825,-182.44824482448246,-182.38823882388238,-182.32823282328232,-182.26822682268227,-182.2082208220822,-182.14821482148216,-182.0882088208821,-182.02820282028202,-181.96819681968196,-181.9081908190819,-181.84818481848185,-181.7881788178818,-181.72817281728172,-181.66816681668166,-181.6081608160816,-181.54815481548155,-181.4881488148815,-181.42814281428141,-181.36813681368136,-181.3081308130813,-181.24812481248125,-181.1881188118812,-181.12811281128114,-181.06810681068106,-181.008100810081,-180.94809480948095,-180.8880888088809,-180.82808280828084,-180.76807680768076,-180.7080708070807,-180.64806480648065,-180.5880588058806,-180.52805280528054,-180.46804680468045,-180.4080408040804,-180.34803480348035,-180.2880288028803,-180.22802280228024,-180.16801680168018,-180.1080108010801,-180.04800480048004,-179.98799879988,-179.92799279927993,-179.86798679867988,-179.8079807980798,-179.74797479747974,-179.6879687968797,-179.62796279627963,-179.56795679567958,-179.5079507950795,-179.44794479447944,-179.38793879387939,-179.32793279327933,-179.26792679267928,-179.20792079207922,-179.14791479147914,-179.08790879087908,-179.02790279027903,-178.96789678967897,-178.90789078907892,-178.84788478847884,-178.78787878787878,-178.72787278727873,-178.66786678667867,-178.60786078607862,-178.54785478547853,-178.48784878487848,-178.42784278427843,-178.36783678367837,-178.30783078307832,-178.24782478247826,-178.18781878187818,-178.12781278127812,-178.06780678067807,-178.00780078007801,-177.94779477947796,-177.88778877887788,-177.82778277827782,-177.76777677767777,-177.7077707770777,-177.64776477647766,-177.58775877587757,-177.52775277527752,-177.46774677467747,-177.4077407740774,-177.34773477347736,-177.2877287728773,-177.22772277227722,-177.16771677167716,-177.1077107710771,-177.04770477047705,-176.987698769877,-176.92769276927692,-176.86768676867686,-176.8076807680768,-176.74767476747675,-176.6876687668767,-176.62766276627661,-176.56765676567656,-176.5076507650765,-176.44764476447645,-176.3876387638764,-176.32763276327634,-176.26762676267626,-176.2076207620762,-176.14761476147615,-176.0876087608761,-176.02760276027604,-175.96759675967596,-175.9075907590759,-175.84758475847585,-175.7875787578758,-175.72757275727574,-175.66756675667565,-175.6075607560756,-175.54755475547555,-175.4875487548755,-175.42754275427544,-175.36753675367538,-175.3075307530753,-175.24752475247524,-175.1875187518752,-175.12751275127513,-175.06750675067508,-175.007500750075,-174.94749474947494,-174.8874887488749,-174.82748274827483,-174.76747674767478,-174.7074707470747,-174.64746474647464,-174.58745874587459,-174.52745274527453,-174.46744674467448,-174.40744074407442,-174.34743474347434,-174.28742874287428,-174.22742274227423,-174.16741674167417,-174.10741074107412,-174.04740474047404,-173.98739873987398,-173.92739273927393,-173.86738673867387,-173.80738073807382,-173.74737473747373,-173.68736873687368,-173.62736273627362,-173.56735673567357,-173.50735073507352,-173.44734473447346,-173.38733873387338,-173.32733273327332,-173.26732673267327,-173.2073207320732,-173.14731473147316,-173.08730873087308,-173.02730273027302,-172.96729672967297,-172.9072907290729,-172.84728472847286,-172.78727872787277,-172.72727272727272,-172.66726672667266,-172.6072607260726,-172.54725472547256,-172.4872487248725,-172.42724272427242,-172.36723672367236,-172.3072307230723,-172.24722472247225,-172.1872187218722,-172.12721272127212,-172.06720672067206,-172.007200720072,-171.94719471947195,-171.8871887188719,-171.8271827182718,-171.76717671767176,-171.7071707170717,-171.64716471647165,-171.5871587158716,-171.52715271527154,-171.46714671467146,-171.4071407140714,-171.34713471347135,-171.2871287128713,-171.22712271227124,-171.16711671167116,-171.1071107110711,-171.04710471047105,-170.987098709871,-170.92709270927094,-170.86708670867085,-170.8070807080708,-170.74707470747074,-170.6870687068707,-170.62706270627064,-170.56705670567058,-170.5070507050705,-170.44704470447044,-170.3870387038704,-170.32703270327033,-170.26702670267028,-170.2070207020702,-170.14701470147014,-170.0870087008701,-170.02700270027003,-169.96699669966998,-169.9069906990699,-169.84698469846984,-169.78697869786978,-169.72697269726973,-169.66696669666968,-169.60696069606962,-169.54695469546954,-169.48694869486948,-169.42694269426943,-169.36693669366937,-169.30693069306932,-169.24692469246924,-169.18691869186918,-169.12691269126913,-169.06690669066907,-169.00690069006902,-168.94689468946893,-168.88688868886888,-168.82688268826882,-168.76687668766877,-168.70687068706872,-168.64686468646866,-168.58685868586858,-168.52685268526852,-168.46684668466847,-168.4068406840684,-168.34683468346836,-168.28682868286828,-168.22682268226822,-168.16681668166817,-168.1068106810681,-168.04680468046806,-167.98679867986797,-167.92679267926792,-167.86678667866786,-167.8067806780678,-167.74677467746776,-167.6867686768677,-167.62676267626762,-167.56675667566756,-167.5067506750675,-167.44674467446745,-167.3867386738674,-167.32673267326732,-167.26672667266726,-167.2067206720672,-167.14671467146715,-167.0867086708671,-167.026702670267,-166.96669666966696,-166.9066906690669,-166.84668466846685,-166.7866786678668,-166.72667266726674,-166.66666666666666,-166.6066606660666,-166.54665466546655,-166.4866486648665,-166.42664266426644,-166.36663666366636,-166.3066306630663,-166.24662466246625,-166.1866186618662,-166.12661266126614,-166.06660666066605,-166.006600660066,-165.94659465946594,-165.8865886588659,-165.82658265826583,-165.76657665766578,-165.7065706570657,-165.64656465646564,-165.5865586558656,-165.52655265526553,-165.46654665466548,-165.4065406540654,-165.34653465346534,-165.2865286528653,-165.22652265226523,-165.16651665166518,-165.1065106510651,-165.04650465046504,-164.98649864986498,-164.92649264926493,-164.86648664866487,-164.80648064806482,-164.74647464746474,-164.68646864686468,-164.62646264626463,-164.56645664566457,-164.50645064506452,-164.44644464446444,-164.38643864386438,-164.32643264326433,-164.26642664266427,-164.20642064206422,-164.14641464146413,-164.08640864086408,-164.02640264026402,-163.96639663966397,-163.90639063906391,-163.84638463846386,-163.78637863786378,-163.72637263726372,-163.66636663666367,-163.6063606360636,-163.54635463546356,-163.48634863486348,-163.42634263426342,-163.36633663366337,-163.3063306330633,-163.24632463246326,-163.18631863186317,-163.12631263126312,-163.06630663066306,-163.006300630063,-162.94629462946295,-162.8862886288629,-162.82628262826282,-162.76627662766276,-162.7062706270627,-162.64626462646265,-162.5862586258626,-162.52625262526252,-162.46624662466246,-162.4062406240624,-162.34623462346235,-162.2862286228623,-162.2262226222622,-162.16621662166216,-162.1062106210621,-162.04620462046205,-161.986198619862,-161.92619261926194,-161.86618661866186,-161.8061806180618,-161.74617461746175,-161.6861686168617,-161.62616261626164,-161.56615661566155,-161.5061506150615,-161.44614461446145,-161.3861386138614,-161.32613261326134,-161.26612661266125,-161.2061206120612,-161.14611461146114,-161.0861086108611,-161.02610261026103,-160.96609660966098,-160.9060906090609,-160.84608460846084,-160.7860786078608,-160.72607260726073,-160.66606660666068,-160.6060606060606,-160.54605460546054,-160.48604860486049,-160.42604260426043,-160.36603660366038,-160.3060306030603,-160.24602460246024,-160.18601860186018,-160.12601260126013,-160.06600660066007,-160.00600060006002,-159.94599459945994,-159.88598859885988,-159.82598259825983,-159.76597659765977,-159.70597059705972,-159.64596459645963,-159.58595859585958,-159.52595259525953,-159.46594659465947,-159.40594059405942,-159.34593459345933,-159.28592859285928,-159.22592259225922,-159.16591659165917,-159.10591059105911,-159.04590459045906,-158.98589858985898,-158.92589258925892,-158.86588658865887,-158.8058805880588,-158.74587458745876,-158.68586858685867,-158.62586258625862,-158.56585658565857,-158.5058505850585,-158.44584458445846,-158.38583858385837,-158.32583258325832,-158.26582658265826,-158.2058205820582,-158.14581458145815,-158.0858085808581,-158.02580258025802,-157.96579657965796,-157.9057905790579,-157.84578457845785,-157.7857785778578,-157.72577257725771,-157.66576657665766,-157.6057605760576,-157.54575457545755,-157.4857485748575,-157.4257425742574,-157.36573657365736,-157.3057305730573,-157.24572457245725,-157.1857185718572,-157.12571257125714,-157.06570657065706,-157.005700570057,-156.94569456945695,-156.8856885688569,-156.82568256825684,-156.76567656765675,-156.7056705670567,-156.64566456645665,-156.5856585658566,-156.52565256525654,-156.46564656465645,-156.4056405640564,-156.34563456345634,-156.2856285628563,-156.22562256225623,-156.16561656165618,-156.1056105610561,-156.04560456045604,-155.985598559856,-155.92559255925593,-155.86558655865588,-155.8055805580558,-155.74557455745574,-155.68556855685569,-155.62556255625563,-155.56555655565558,-155.5055505550555,-155.44554455445544,-155.38553855385538,-155.32553255325533,-155.26552655265527,-155.20552055205522,-155.14551455145514,-155.08550855085508,-155.02550255025503,-154.96549654965497,-154.90549054905492,-154.84548454845483,-154.78547854785478,-154.72547254725472,-154.66546654665467,-154.60546054605462,-154.54545454545453,-154.48544854485448,-154.42544254425442,-154.36543654365437,-154.3054305430543,-154.24542454245426,-154.18541854185418,-154.12541254125412,-154.06540654065407,-154.005400540054,-153.94539453945396,-153.88538853885387,-153.82538253825382,-153.76537653765376,-153.7053705370537,-153.64536453645366,-153.58535853585357,-153.52535253525352,-153.46534653465346,-153.4053405340534,-153.34533453345335,-153.2853285328533,-153.22532253225322,-153.16531653165316,-153.1053105310531,-153.04530453045305,-152.985298529853,-152.9252925292529,-152.86528652865286,-152.8052805280528,-152.74527452745275,-152.6852685268527,-152.6252625262526,-152.56525652565256,-152.5052505250525,-152.44524452445245,-152.3852385238524,-152.32523252325234,-152.26522652265226,-152.2052205220522,-152.14521452145215,-152.0852085208521,-152.02520252025204,-151.96519651965195,-151.9051905190519,-151.84518451845184,-151.7851785178518,-151.72517251725174,-151.66516651665165,-151.6051605160516,-151.54515451545154,-151.4851485148515,-151.42514251425143,-151.36513651365138,-151.3051305130513,-151.24512451245124,-151.1851185118512,-151.12511251125113,-151.06510651065108,-151.005100510051,-150.94509450945094,-150.88508850885088,-150.82508250825083,-150.76507650765078,-150.7050705070507,-150.64506450645064,-150.58505850585058,-150.52505250525053,-150.46504650465047,-150.40504050405042,-150.34503450345034,-150.28502850285028,-150.22502250225023,-150.16501650165017,-150.10501050105012,-150.04500450045003,-149.98499849984998,-149.92499249924992,-149.86498649864987,-149.80498049804982,-149.74497449744973,-149.68496849684968,-149.62496249624962,-149.56495649564957,-149.5049504950495,-149.44494449444946,-149.38493849384938,-149.32493249324932,-149.26492649264927,-149.2049204920492,-149.14491449144916,-149.08490849084907,-149.02490249024902,-148.96489648964896,-148.9048904890489,-148.84488448844886,-148.78487848784877,-148.72487248724872,-148.66486648664866,-148.6048604860486,-148.54485448544855,-148.4848484848485,-148.42484248424842,-148.36483648364836,-148.3048304830483,-148.24482448244825,-148.1848184818482,-148.1248124812481,-148.06480648064806,-148.004800480048,-147.94479447944795,-147.8847884788479,-147.8247824782478,-147.76477647764776,-147.7047704770477,-147.64476447644765,-147.5847584758476,-147.52475247524754,-147.46474647464746,-147.4047404740474,-147.34473447344735,-147.2847284728473,-147.22472247224724,-147.16471647164715,-147.1047104710471,-147.04470447044704,-146.984698469847,-146.92469246924693,-146.86468646864685,-146.8046804680468,-146.74467446744674,-146.6846684668467,-146.62466246624663,-146.56465646564658,-146.5046504650465,-146.44464446444644,-146.3846384638464,-146.32463246324633,-146.26462646264628,-146.2046204620462,-146.14461446144614,-146.08460846084608,-146.02460246024603,-145.96459645964597,-145.9045904590459,-145.84458445844584,-145.78457845784578,-145.72457245724573,-145.66456645664567,-145.60456045604562,-145.54455445544554,-145.48454845484548,-145.42454245424543,-145.36453645364537,-145.30453045304532,-145.24452445244523,-145.18451845184518,-145.12451245124512,-145.06450645064507,-145.00450045004501,-144.94449444944493,-144.88448844884488,-144.82448244824482,-144.76447644764477,-144.7044704470447,-144.64446444644466,-144.58445844584458,-144.52445244524452,-144.46444644464447,-144.4044404440444,-144.34443444344436,-144.28442844284427,-144.22442244224422,-144.16441644164416,-144.1044104410441,-144.04440444044405,-143.98439843984397,-143.92439243924392,-143.86438643864386,-143.8043804380438,-143.74437443744375,-143.6843684368437,-143.62436243624362,-143.56435643564356,-143.5043504350435,-143.44434443444345,-143.3843384338434,-143.3243324332433,-143.26432643264326,-143.2043204320432,-143.14431443144315,-143.0843084308431,-143.024302430243,-142.96429642964296,-142.9042904290429,-142.84428442844285,-142.7842784278428,-142.72427242724274,-142.66426642664266,-142.6042604260426,-142.54425442544255,-142.4842484248425,-142.42424242424244,-142.36423642364235,-142.3042304230423,-142.24422442244224,-142.1842184218422,-142.12421242124213,-142.06420642064205,-142.004200420042,-141.94419441944194,-141.8841884188419,-141.82418241824183,-141.76417641764178,-141.7041704170417,-141.64416441644164,-141.58415841584159,-141.52415241524153,-141.46414641464148,-141.4041404140414,-141.34413441344134,-141.28412841284128,-141.22412241224123,-141.16411641164117,-141.1041104110411,-141.04410441044104,-140.98409840984098,-140.92409240924093,-140.86408640864087,-140.80408040804082,-140.74407440744073,-140.68406840684068,-140.62406240624063,-140.56405640564057,-140.50405040504052,-140.44404440444043,-140.38403840384038,-140.32403240324032,-140.26402640264027,-140.20402040204021,-140.14401440144013,-140.08400840084008,-140.02400240024002,-139.96399639963997,-139.9039903990399,-139.84398439843986,-139.78397839783977,-139.72397239723972,-139.66396639663967,-139.6039603960396,-139.54395439543956,-139.48394839483947,-139.42394239423942,-139.36393639363936,-139.3039303930393,-139.24392439243925,-139.18391839183917,-139.12391239123912,-139.06390639063906,-139.003900390039,-138.94389438943895,-138.8838883888389,-138.82388238823881,-138.76387638763876,-138.7038703870387,-138.64386438643865,-138.5838583858386,-138.5238523852385,-138.46384638463846,-138.4038403840384,-138.34383438343835,-138.2838283828383,-138.2238223822382,-138.16381638163816,-138.1038103810381,-138.04380438043805,-137.983798379838,-137.92379237923794,-137.86378637863785,-137.8037803780378,-137.74377437743775,-137.6837683768377,-137.62376237623764,-137.56375637563755,-137.5037503750375,-137.44374437443744,-137.3837383738374,-137.32373237323733,-137.26372637263725,-137.2037203720372,-137.14371437143714,-137.0837083708371,-137.02370237023703,-136.96369636963698,-136.9036903690369,-136.84368436843684,-136.78367836783679,-136.72367236723673,-136.66366636663668,-136.6036603660366,-136.54365436543654,-136.48364836483648,-136.42364236423643,-136.36363636363637,-136.3036303630363,-136.24362436243624,-136.18361836183618,-136.12361236123613,-136.06360636063607,-136.00360036003602,-135.94359435943593,-135.88358835883588,-135.82358235823583,-135.76357635763577,-135.70357035703572,-135.64356435643563,-135.58355835583558,-135.52355235523552,-135.46354635463547,-135.4035403540354,-135.34353435343533,-135.28352835283528,-135.22352235223522,-135.16351635163517,-135.1035103510351,-135.04350435043506,-134.98349834983497,-134.92349234923492,-134.86348634863486,-134.8034803480348,-134.74347434743476,-134.68346834683467,-134.62346234623462,-134.56345634563456,-134.5034503450345,-134.44344434443445,-134.38343834383437,-134.32343234323432,-134.26342634263426,-134.2034203420342,-134.14341434143415,-134.0834083408341,-134.02340234023401,-133.96339633963396,-133.9033903390339,-133.84338433843385,-133.7833783378338,-133.7233723372337,-133.66336633663366,-133.6033603360336,-133.54335433543355,-133.4833483348335,-133.4233423342334,-133.36333633363336,-133.3033303330333,-133.24332433243325,-133.1833183318332,-133.12331233123314,-133.06330633063305,-133.003300330033,-132.94329432943294,-132.8832883288329,-132.82328232823284,-132.76327632763275,-132.7032703270327,-132.64326432643264,-132.5832583258326,-132.52325232523253,-132.46324632463245,-132.4032403240324,-132.34323432343234,-132.2832283228323,-132.22322232223223,-132.16321632163218,-132.1032103210321,-132.04320432043204,-131.98319831983198,-131.92319231923193,-131.86318631863188,-131.8031803180318,-131.74317431743174,-131.68316831683168,-131.62316231623163,-131.56315631563157,-131.5031503150315,-131.44314431443144,-131.38313831383138,-131.32313231323133,-131.26312631263127,-131.20312031203122,-131.14311431143113,-131.08310831083108,-131.02310231023102,-130.96309630963097,-130.90309030903092,-130.84308430843083,-130.78307830783078,-130.72307230723072,-130.66306630663067,-130.6030603060306,-130.54305430543053,-130.48304830483048,-130.42304230423042,-130.36303630363037,-130.3030303030303,-130.24302430243026,-130.18301830183017,-130.12301230123012,-130.06300630063006,-130.00300030003,-129.94299429942996,-129.88298829882987,-129.82298229822982,-129.76297629762976,-129.7029702970297,-129.64296429642965,-129.58295829582957,-129.52295229522952,-129.46294629462946,-129.4029402940294,-129.34293429342935,-129.2829282928293,-129.2229222922292,-129.16291629162916,-129.1029102910291,-129.04290429042905,-128.982898289829,-128.9228922892289,-128.86288628862886,-128.8028802880288,-128.74287428742875,-128.6828682868287,-128.6228622862286,-128.56285628562856,-128.5028502850285,-128.44284428442845,-128.3828382838284,-128.32283228322834,-128.26282628262825,-128.2028202820282,-128.14281428142814,-128.0828082808281,-128.02280228022803,-127.96279627962797,-127.9027902790279,-127.84278427842784,-127.78277827782779,-127.72277227722772,-127.66276627662766,-127.60276027602761,-127.54275427542754,-127.48274827482749,-127.42274227422742,-127.36273627362736,-127.30273027302731,-127.24272427242724,-127.18271827182718,-127.12271227122713,-127.06270627062706,-127.002700270027,-126.94269426942694,-126.88268826882688,-126.82268226822683,-126.76267626762676,-126.7026702670267,-126.64266426642665,-126.58265826582658,-126.52265226522653,-126.46264626462646,-126.4026402640264,-126.34263426342635,-126.28262826282628,-126.22262226222622,-126.16261626162617,-126.1026102610261,-126.04260426042605,-125.98259825982598,-125.92259225922592,-125.86258625862587,-125.8025802580258,-125.74257425742574,-125.68256825682569,-125.62256225622562,-125.56255625562557,-125.5025502550255,-125.44254425442544,-125.38253825382539,-125.32253225322532,-125.26252625262526,-125.20252025202521,-125.14251425142514,-125.08250825082509,-125.02250225022502,-124.96249624962496,-124.90249024902491,-124.84248424842484,-124.78247824782478,-124.72247224722473,-124.66246624662466,-124.6024602460246,-124.54245424542454,-124.48244824482448,-124.42244224422443,-124.36243624362436,-124.3024302430243,-124.24242424242425,-124.18241824182418,-124.12241224122413,-124.06240624062406,-124.002400240024,-123.94239423942395,-123.88238823882388,-123.82238223822382,-123.76237623762377,-123.7023702370237,-123.64236423642365,-123.58235823582358,-123.52235223522352,-123.46234623462347,-123.4023402340234,-123.34233423342334,-123.28232823282329,-123.22232223222322,-123.16231623162317,-123.1023102310231,-123.04230423042304,-122.98229822982299,-122.92229222922292,-122.86228622862286,-122.80228022802281,-122.74227422742274,-122.68226822682269,-122.62226222622262,-122.56225622562256,-122.50225022502251,-122.44224422442244,-122.38223822382238,-122.32223222322233,-122.26222622262226,-122.2022202220222,-122.14221422142214,-122.08220822082208,-122.02220222022203,-121.96219621962196,-121.9021902190219,-121.84218421842185,-121.78217821782178,-121.72217221722173,-121.66216621662166,-121.6021602160216,-121.54215421542155,-121.48214821482148,-121.42214221422142,-121.36213621362137,-121.3021302130213,-121.24212421242125,-121.18211821182118,-121.12211221122112,-121.06210621062107,-121.002100210021,-120.94209420942094,-120.88208820882089,-120.82208220822082,-120.76207620762077,-120.7020702070207,-120.64206420642064,-120.58205820582059,-120.52205220522052,-120.46204620462046,-120.40204020402041,-120.34203420342034,-120.28202820282029,-120.22202220222022,-120.16201620162016,-120.10201020102011,-120.04200420042004,-119.98199819981998,-119.92199219921993,-119.86198619861986,-119.8019801980198,-119.74197419741974,-119.68196819681968,-119.62196219621963,-119.56195619561956,-119.5019501950195,-119.44194419441945,-119.38193819381938,-119.32193219321933,-119.26192619261926,-119.2019201920192,-119.14191419141915,-119.08190819081908,-119.02190219021902,-118.96189618961897,-118.9018901890189,-118.84188418841885,-118.78187818781878,-118.72187218721872,-118.66186618661867,-118.6018601860186,-118.54185418541854,-118.48184818481849,-118.42184218421842,-118.36183618361837,-118.3018301830183,-118.24182418241824,-118.18181818181819,-118.12181218121812,-118.06180618061806,-118.00180018001801,-117.94179417941794,-117.88178817881789,-117.82178217821782,-117.76177617761776,-117.7017701770177,-117.64176417641764,-117.58175817581758,-117.52175217521753,-117.46174617461746,-117.4017401740174,-117.34173417341734,-117.28172817281728,-117.22172217221723,-117.16171617161716,-117.1017101710171,-117.04170417041705,-116.98169816981698,-116.92169216921693,-116.86168616861686,-116.8016801680168,-116.74167416741675,-116.68166816681668,-116.62166216621662,-116.56165616561657,-116.5016501650165,-116.44164416441645,-116.38163816381638,-116.32163216321632,-116.26162616261627,-116.2016201620162,-116.14161416141614,-116.08160816081609,-116.02160216021602,-115.96159615961597,-115.9015901590159,-115.84158415841584,-115.78157815781579,-115.72157215721572,-115.66156615661566,-115.60156015601561,-115.54155415541554,-115.48154815481548,-115.42154215421542,-115.36153615361536,-115.3015301530153,-115.24152415241524,-115.18151815181518,-115.12151215121513,-115.06150615061506,-115.001500150015,-114.94149414941494,-114.88148814881488,-114.82148214821483,-114.76147614761476,-114.7014701470147,-114.64146414641465,-114.58145814581458,-114.52145214521452,-114.46144614461446,-114.4014401440144,-114.34143414341435,-114.28142814281428,-114.22142214221422,-114.16141614161417,-114.1014101410141,-114.04140414041404,-113.98139813981398,-113.92139213921392,-113.86138613861387,-113.8013801380138,-113.74137413741374,-113.68136813681369,-113.62136213621362,-113.56135613561356,-113.5013501350135,-113.44134413441344,-113.38133813381339,-113.32133213321332,-113.26132613261326,-113.20132013201321,-113.14131413141314,-113.08130813081308,-113.02130213021302,-112.96129612961296,-112.9012901290129,-112.84128412841284,-112.78127812781278,-112.72127212721273,-112.66126612661266,-112.6012601260126,-112.54125412541254,-112.48124812481248,-112.42124212421243,-112.36123612361236,-112.3012301230123,-112.24122412241225,-112.18121812181218,-112.12121212121212,-112.06120612061206,-112.001200120012,-111.94119411941195,-111.88118811881188,-111.82118211821182,-111.76117611761177,-111.7011701170117,-111.64116411641164,-111.58115811581158,-111.52115211521152,-111.46114611461147,-111.4011401140114,-111.34113411341134,-111.28112811281129,-111.22112211221122,-111.16111611161116,-111.1011101110111,-111.04110411041104,-110.98109810981099,-110.92109210921092,-110.86108610861086,-110.80108010801081,-110.74107410741074,-110.68106810681068,-110.62106210621062,-110.56105610561056,-110.5010501050105,-110.44104410441044,-110.38103810381038,-110.32103210321033,-110.26102610261026,-110.2010201020102,-110.14101410141014,-110.08100810081008,-110.02100210021003,-109.96099609960996,-109.9009900990099,-109.84098409840985,-109.78097809780978,-109.72097209720972,-109.66096609660966,-109.6009600960096,-109.54095409540955,-109.48094809480948,-109.42094209420942,-109.36093609360937,-109.3009300930093,-109.24092409240924,-109.18091809180918,-109.12091209120912,-109.06090609060907,-109.000900090009,-108.94089408940894,-108.88088808880889,-108.82088208820882,-108.76087608760876,-108.7008700870087,-108.64086408640864,-108.58085808580859,-108.52085208520852,-108.46084608460846,-108.40084008400841,-108.34083408340834,-108.28082808280828,-108.22082208220822,-108.16081608160816,-108.1008100810081,-108.04080408040804,-107.98079807980798,-107.92079207920793,-107.86078607860786,-107.8007800780078,-107.74077407740774,-107.68076807680768,-107.62076207620763,-107.56075607560756,-107.5007500750075,-107.44074407440745,-107.38073807380738,-107.32073207320732,-107.26072607260726,-107.2007200720072,-107.14071407140715,-107.08070807080708,-107.02070207020702,-106.96069606960697,-106.9006900690069,-106.84068406840684,-106.78067806780678,-106.72067206720672,-106.66066606660667,-106.6006600660066,-106.54065406540654,-106.48064806480649,-106.42064206420642,-106.36063606360636,-106.3006300630063,-106.24062406240624,-106.18061806180619,-106.12061206120612,-106.06060606060606,-106.00060006000601,-105.94059405940594,-105.88058805880588,-105.82058205820582,-105.76057605760576,-105.7005700570057,-105.64056405640564,-105.58055805580558,-105.52055205520553,-105.46054605460546,-105.4005400540054,-105.34053405340534,-105.28052805280528,-105.22052205220523,-105.16051605160516,-105.1005100510051,-105.04050405040505,-104.98049804980498,-104.92049204920492,-104.86048604860486,-104.8004800480048,-104.74047404740475,-104.68046804680468,-104.62046204620462,-104.56045604560457,-104.5004500450045,-104.44044404440444,-104.38043804380438,-104.32043204320432,-104.26042604260427,-104.2004200420042,-104.14041404140414,-104.08040804080409,-104.02040204020402,-103.96039603960396,-103.9003900390039,-103.84038403840384,-103.78037803780379,-103.72037203720372,-103.66036603660366,-103.60036003600361,-103.54035403540354,-103.48034803480348,-103.42034203420341,-103.36033603360336,-103.3003300330033,-103.24032403240324,-103.18031803180318,-103.12031203120313,-103.06030603060306,-103.000300030003,-102.94029402940293,-102.88028802880288,-102.82028202820283,-102.76027602760276,-102.7002700270027,-102.64026402640265,-102.58025802580258,-102.52025202520252,-102.46024602460245,-102.4002400240024,-102.34023402340235,-102.28022802280228,-102.22022202220222,-102.16021602160217,-102.1002100210021,-102.04020402040204,-101.98019801980197,-101.92019201920192,-101.86018601860187,-101.8001800180018,-101.74017401740174,-101.68016801680169,-101.62016201620162,-101.56015601560156,-101.5001500150015,-101.44014401440144,-101.38013801380139,-101.32013201320132,-101.26012601260126,-101.20012001200121,-101.14011401140114,-101.08010801080108,-101.02010201020101,-100.96009600960096,-100.9000900090009,-100.84008400840084,-100.78007800780078,-100.72007200720073,-100.66006600660066,-100.6000600060006,-100.54005400540053,-100.48004800480048,-100.42004200420043,-100.36003600360036,-100.3000300030003,-100.24002400240025,-100.18001800180018,-100.12001200120012,-100.06000600060005,-100.0,-99.93999399939995,-99.87998799879988,-99.81998199819982,-99.75997599759975,-99.6999699969997,-99.63996399639964,-99.57995799579957,-99.51995199519952,-99.45994599459947,-99.3999399939994,-99.33993399339934,-99.27992799279927,-99.21992199219922,-99.15991599159916,-99.0999099909991,-99.03990399039904,-98.97989798979899,-98.91989198919892,-98.85988598859886,-98.79987998799879,-98.73987398739874,-98.67986798679868,-98.61986198619861,-98.55985598559856,-98.4998499849985,-98.43984398439844,-98.37983798379838,-98.31983198319831,-98.25982598259826,-98.1998199819982,-98.13981398139813,-98.07980798079808,-98.01980198019803,-97.95979597959796,-97.8997899789979,-97.83978397839783,-97.77977797779778,-97.71977197719772,-97.65976597659765,-97.5997599759976,-97.53975397539755,-97.47974797479748,-97.41974197419742,-97.35973597359735,-97.2997299729973,-97.23972397239724,-97.17971797179717,-97.11971197119712,-97.05970597059707,-96.999699969997,-96.93969396939694,-96.87968796879687,-96.81968196819682,-96.75967596759676,-96.6996699669967,-96.63966396639664,-96.57965796579659,-96.51965196519652,-96.45964596459646,-96.39963996399639,-96.33963396339634,-96.27962796279628,-96.21962196219621,-96.15961596159616,-96.0996099609961,-96.03960396039604,-95.97959795979598,-95.91959195919591,-95.85958595859586,-95.7995799579958,-95.73957395739573,-95.67956795679568,-95.61956195619562,-95.55955595559556,-95.4995499549955,-95.43954395439543,-95.37953795379538,-95.31953195319532,-95.25952595259525,-95.1995199519952,-95.13951395139514,-95.07950795079508,-95.01950195019502,-94.95949594959495,-94.8994899489949,-94.83948394839484,-94.77947794779477,-94.71947194719472,-94.65946594659466,-94.5994599459946,-94.53945394539454,-94.47944794479447,-94.41944194419442,-94.35943594359436,-94.2994299429943,-94.23942394239424,-94.17941794179418,-94.11941194119412,-94.05940594059406,-93.99939993999399,-93.93939393939394,-93.87938793879388,-93.81938193819381,-93.75937593759376,-93.6993699369937,-93.63936393639364,-93.57935793579358,-93.51935193519351,-93.45934593459346,-93.3993399339934,-93.33933393339333,-93.27932793279328,-93.21932193219322,-93.15931593159316,-93.0993099309931,-93.03930393039303,-92.97929792979298,-92.91929192919292,-92.85928592859285,-92.7992799279928,-92.73927392739274,-92.67926792679268,-92.61926192619262,-92.55925592559255,-92.4992499249925,-92.43924392439244,-92.37923792379237,-92.31923192319232,-92.25922592259226,-92.1992199219922,-92.13921392139214,-92.07920792079207,-92.01920192019202,-91.95919591959196,-91.8991899189919,-91.83918391839184,-91.77917791779178,-91.71917191719172,-91.65916591659166,-91.59915991599159,-91.53915391539154,-91.47914791479148,-91.41914191419141,-91.35913591359136,-91.2991299129913,-91.23912391239124,-91.17911791179118,-91.11911191119111,-91.05910591059106,-90.999099909991,-90.93909390939093,-90.87908790879088,-90.81908190819082,-90.75907590759076,-90.6990699069907,-90.63906390639063,-90.57905790579058,-90.51905190519052,-90.45904590459045,-90.3990399039904,-90.33903390339034,-90.27902790279028,-90.21902190219022,-90.15901590159015,-90.0990099009901,-90.03900390039004,-89.97899789978997,-89.91899189918992,-89.85898589858986,-89.7989798979898,-89.73897389738974,-89.67896789678967,-89.61896189618962,-89.55895589558956,-89.4989498949895,-89.43894389438944,-89.37893789378938,-89.31893189318932,-89.25892589258926,-89.19891989198919,-89.13891389138914,-89.07890789078908,-89.01890189018901,-88.95889588958896,-88.8988898889889,-88.83888388838884,-88.77887788778878,-88.71887188718871,-88.65886588658866,-88.5988598859886,-88.53885388538853,-88.47884788478848,-88.41884188418842,-88.35883588358836,-88.2988298829883,-88.23882388238823,-88.17881788178818,-88.11881188118812,-88.05880588058805,-87.998799879988,-87.93879387938794,-87.87878787878788,-87.81878187818782,-87.75877587758775,-87.6987698769877,-87.63876387638764,-87.57875787578757,-87.51875187518752,-87.45874587458746,-87.3987398739874,-87.33873387338734,-87.27872787278727,-87.21872187218722,-87.15871587158716,-87.0987098709871,-87.03870387038704,-86.97869786978698,-86.91869186918692,-86.85868586858686,-86.79867986798679,-86.73867386738674,-86.67866786678668,-86.61866186618661,-86.55865586558656,-86.4986498649865,-86.43864386438644,-86.37863786378638,-86.31863186318631,-86.25862586258626,-86.1986198619862,-86.13861386138613,-86.07860786078608,-86.01860186018602,-85.95859585958596,-85.8985898589859,-85.83858385838583,-85.77857785778578,-85.71857185718572,-85.65856585658565,-85.5985598559856,-85.53855385538554,-85.47854785478548,-85.41854185418542,-85.35853585358535,-85.2985298529853,-85.23852385238524,-85.17851785178517,-85.11851185118512,-85.05850585058506,-84.998499849985,-84.93849384938494,-84.87848784878487,-84.81848184818482,-84.75847584758476,-84.6984698469847,-84.63846384638464,-84.57845784578458,-84.51845184518452,-84.45844584458446,-84.39843984398439,-84.33843384338434,-84.27842784278428,-84.21842184218421,-84.15841584158416,-84.0984098409841,-84.03840384038403,-83.97839783978398,-83.91839183918391,-83.85838583858386,-83.7983798379838,-83.73837383738373,-83.67836783678368,-83.61836183618362,-83.55835583558355,-83.4983498349835,-83.43834383438343,-83.37833783378338,-83.31833183318332,-83.25832583258325,-83.1983198319832,-83.13831383138314,-83.07830783078307,-83.01830183018302,-82.95829582958295,-82.8982898289829,-82.83828382838284,-82.77827782778277,-82.71827182718272,-82.65826582658266,-82.5982598259826,-82.53825382538254,-82.47824782478247,-82.41824182418242,-82.35823582358236,-82.2982298229823,-82.23822382238224,-82.17821782178218,-82.11821182118211,-82.05820582058206,-81.99819981998199,-81.93819381938194,-81.87818781878188,-81.81818181818181,-81.75817581758176,-81.6981698169817,-81.63816381638163,-81.57815781578158,-81.51815181518151,-81.45814581458146,-81.3981398139814,-81.33813381338133,-81.27812781278128,-81.21812181218122,-81.15811581158115,-81.0981098109811,-81.03810381038103,-80.97809780978098,-80.91809180918092,-80.85808580858085,-80.7980798079808,-80.73807380738074,-80.67806780678067,-80.61806180618062,-80.55805580558055,-80.4980498049805,-80.43804380438044,-80.37803780378037,-80.31803180318032,-80.25802580258026,-80.1980198019802,-80.13801380138014,-80.07800780078007,-80.01800180018002,-79.95799579957996,-79.89798979897989,-79.83798379837984,-79.77797779777978,-79.71797179717971,-79.65796579657966,-79.59795979597959,-79.53795379537954,-79.47794779477948,-79.41794179417941,-79.35793579357936,-79.2979297929793,-79.23792379237923,-79.17791779177918,-79.11791179117911,-79.05790579057906,-78.997899789979,-78.93789378937893,-78.87788778877888,-78.81788178817882,-78.75787578757875,-78.6978697869787,-78.63786378637863,-78.57785778577858,-78.51785178517852,-78.45784578457845,-78.3978397839784,-78.33783378337834,-78.27782778277827,-78.21782178217822,-78.15781578157815,-78.0978097809781,-78.03780378037804,-77.97779777977797,-77.91779177917792,-77.85778577857786,-77.7977797779778,-77.73777377737774,-77.67776777677767,-77.61776177617762,-77.55775577557756,-77.49774977497749,-77.43774377437744,-77.37773777377738,-77.31773177317731,-77.25772577257726,-77.19771977197719,-77.13771377137714,-77.07770777077708,-77.01770177017701,-76.95769576957696,-76.8976897689769,-76.83768376837683,-76.77767776777678,-76.71767176717671,-76.65766576657666,-76.5976597659766,-76.53765376537653,-76.47764776477648,-76.41764176417642,-76.35763576357635,-76.2976297629763,-76.23762376237623,-76.17761776177618,-76.11761176117612,-76.05760576057605,-75.997599759976,-75.93759375937594,-75.87758775877587,-75.81758175817582,-75.75757575757575,-75.6975697569757,-75.63756375637564,-75.57755775577557,-75.51755175517552,-75.45754575457546,-75.3975397539754,-75.33753375337534,-75.27752775277527,-75.21752175217522,-75.15751575157516,-75.09750975097509,-75.03750375037504,-74.97749774977498,-74.91749174917491,-74.85748574857486,-74.79747974797479,-74.73747374737474,-74.67746774677468,-74.61746174617461,-74.55745574557456,-74.4974497449745,-74.43744374437443,-74.37743774377438,-74.31743174317431,-74.25742574257426,-74.1974197419742,-74.13741374137413,-74.07740774077408,-74.01740174017402,-73.95739573957395,-73.8973897389739,-73.83738373837383,-73.77737773777378,-73.71737173717372,-73.65736573657365,-73.5973597359736,-73.53735373537354,-73.47734773477347,-73.41734173417342,-73.35733573357335,-73.2973297329733,-73.23732373237324,-73.17731773177317,-73.11731173117312,-73.05730573057306,-72.997299729973,-72.93729372937294,-72.87728772877287,-72.81728172817282,-72.75727572757276,-72.69726972697269,-72.63726372637264,-72.57725772577258,-72.51725172517251,-72.45724572457246,-72.39723972397239,-72.33723372337234,-72.27722772277228,-72.21722172217221,-72.15721572157216,-72.0972097209721,-72.03720372037203,-71.97719771977198,-71.91719171917191,-71.85718571857186,-71.7971797179718,-71.73717371737173,-71.67716771677168,-71.61716171617162,-71.55715571557155,-71.4971497149715,-71.43714371437143,-71.37713771377138,-71.31713171317132,-71.25712571257125,-71.1971197119712,-71.13711371137114,-71.07710771077107,-71.01710171017102,-70.95709570957095,-70.8970897089709,-70.83708370837084,-70.77707770777077,-70.71707170717072,-70.65706570657066,-70.5970597059706,-70.53705370537054,-70.47704770477047,-70.41704170417042,-70.35703570357036,-70.29702970297029,-70.23702370237024,-70.17701770177018,-70.11701170117011,-70.05700570057006,-69.99699969996999,-69.93699369936994,-69.87698769876988,-69.81698169816981,-69.75697569756976,-69.6969696969697,-69.63696369636963,-69.57695769576958,-69.51695169516951,-69.45694569456946,-69.3969396939694,-69.33693369336933,-69.27692769276928,-69.21692169216922,-69.15691569156915,-69.0969096909691,-69.03690369036903,-68.97689768976898,-68.91689168916892,-68.85688568856885,-68.7968796879688,-68.73687368736874,-68.67686768676867,-68.61686168616862,-68.55685568556855,-68.4968496849685,-68.43684368436844,-68.37683768376837,-68.31683168316832,-68.25682568256826,-68.1968196819682,-68.13681368136814,-68.07680768076807,-68.01680168016802,-67.95679567956796,-67.89678967896789,-67.83678367836784,-67.77677767776778,-67.71677167716771,-67.65676567656766,-67.59675967596759,-67.53675367536754,-67.47674767476748,-67.41674167416741,-67.35673567356736,-67.2967296729673,-67.23672367236723,-67.17671767176718,-67.11671167116711,-67.05670567056706,-66.996699669967,-66.93669366936693,-66.87668766876688,-66.81668166816682,-66.75667566756675,-66.6966696669667,-66.63666366636663,-66.57665766576658,-66.51665166516652,-66.45664566456645,-66.3966396639664,-66.33663366336634,-66.27662766276627,-66.21662166216622,-66.15661566156615,-66.0966096609661,-66.03660366036604,-65.97659765976597,-65.91659165916592,-65.85658565856586,-65.7965796579658,-65.73657365736574,-65.67656765676567,-65.61656165616562,-65.55655565556556,-65.49654965496549,-65.43654365436544,-65.37653765376538,-65.31653165316531,-65.25652565256526,-65.19651965196519,-65.13651365136514,-65.07650765076508,-65.01650165016501,-64.95649564956496,-64.8964896489649,-64.83648364836483,-64.77647764776478,-64.71647164716471,-64.65646564656466,-64.5964596459646,-64.53645364536453,-64.47644764476448,-64.41644164416442,-64.35643564356435,-64.2964296429643,-64.23642364236423,-64.17641764176417,-64.11641164116412,-64.05640564056405,-63.996399639964,-63.936393639363935,-63.87638763876387,-63.81638163816382,-63.75637563756376,-63.696369636963695,-63.63636363636363,-63.57635763576358,-63.51635163516352,-63.456345634563455,-63.39633963396339,-63.33633363336334,-63.27632763276328,-63.216321632163215,-63.15631563156315,-63.0963096309631,-63.03630363036304,-62.976297629762975,-62.91629162916291,-62.85628562856286,-62.7962796279628,-62.736273627362735,-62.67626762676267,-62.61626162616262,-62.55625562556256,-62.496249624962495,-62.43624362436243,-62.37623762376238,-62.31623162316232,-62.256225622562255,-62.19621962196219,-62.13621362136214,-62.07620762076208,-62.016201620162015,-61.95619561956195,-61.8961896189619,-61.83618361836184,-61.776177617761775,-61.71617161716171,-61.65616561656166,-61.5961596159616,-61.536153615361535,-61.47614761476147,-61.41614161416142,-61.35613561356136,-61.296129612961295,-61.23612361236123,-61.17611761176118,-61.11611161116112,-61.056105610561055,-60.99609960996099,-60.93609360936094,-60.876087608760876,-60.816081608160815,-60.75607560756075,-60.6960696069607,-60.636063606360636,-60.576057605760575,-60.51605160516051,-60.45604560456046,-60.396039603960396,-60.336033603360335,-60.27602760276027,-60.21602160216022,-60.156015601560156,-60.096009600960095,-60.03600360036003,-59.97599759975998,-59.915991599159916,-59.855985598559855,-59.79597959795979,-59.73597359735974,-59.675967596759676,-59.615961596159615,-59.55595559555955,-59.4959495949595,-59.435943594359436,-59.375937593759375,-59.31593159315931,-59.25592559255926,-59.195919591959196,-59.135913591359135,-59.07590759075907,-59.01590159015902,-58.955895589558956,-58.895889588958894,-58.83588358835883,-58.77587758775878,-58.715871587158716,-58.655865586558654,-58.59585958595859,-58.53585358535854,-58.475847584758476,-58.415841584158414,-58.35583558355835,-58.2958295829583,-58.235823582358236,-58.175817581758174,-58.11581158115811,-58.05580558055806,-57.995799579957996,-57.935793579357934,-57.87578757875787,-57.81578157815782,-57.755775577557756,-57.695769576957694,-57.63576357635763,-57.57575757575758,-57.515751575157516,-57.455745574557454,-57.39573957395739,-57.33573357335734,-57.275727572757276,-57.215721572157214,-57.15571557155715,-57.0957095709571,-57.035703570357036,-56.975697569756974,-56.91569156915691,-56.85568556855686,-56.795679567956796,-56.735673567356734,-56.67566756675667,-56.61566156615662,-56.555655565556556,-56.495649564956494,-56.43564356435643,-56.37563756375638,-56.315631563156316,-56.255625562556254,-56.19561956195619,-56.13561356135614,-56.075607560756076,-56.015601560156014,-55.95559555955595,-55.8955895589559,-55.835583558355836,-55.775577557755774,-55.71557155715571,-55.65556555655566,-55.595559555955596,-55.535553555355534,-55.47554755475547,-55.41554155415542,-55.355535553555356,-55.295529552955294,-55.23552355235523,-55.17551755175518,-55.115511551155116,-55.055505550555054,-54.99549954995499,-54.93549354935494,-54.875487548754876,-54.815481548154814,-54.75547554755475,-54.6954695469547,-54.635463546354636,-54.575457545754574,-54.51545154515451,-54.45544554455446,-54.395439543954396,-54.335433543354334,-54.27542754275427,-54.21542154215422,-54.155415541554156,-54.095409540954094,-54.03540354035403,-53.97539753975398,-53.915391539153916,-53.855385538553854,-53.79537953795379,-53.73537353735374,-53.675367536753676,-53.615361536153614,-53.55535553555355,-53.4953495349535,-53.435343534353436,-53.375337533753374,-53.31533153315331,-53.25532553255326,-53.195319531953196,-53.135313531353134,-53.07530753075307,-53.01530153015302,-52.955295529552956,-52.895289528952894,-52.83528352835283,-52.77527752775278,-52.715271527152716,-52.655265526552654,-52.59525952595259,-52.53525352535254,-52.475247524752476,-52.415241524152414,-52.35523552355235,-52.2952295229523,-52.235223522352236,-52.175217521752174,-52.11521152115211,-52.05520552055206,-51.995199519951996,-51.935193519351934,-51.87518751875187,-51.81518151815182,-51.755175517551756,-51.695169516951694,-51.63516351635163,-51.57515751575158,-51.515151515151516,-51.455145514551454,-51.39513951395139,-51.33513351335134,-51.275127512751276,-51.215121512151214,-51.15511551155115,-51.0951095109511,-51.035103510351036,-50.975097509750974,-50.91509150915091,-50.85508550855086,-50.795079507950796,-50.735073507350734,-50.67506750675067,-50.61506150615062,-50.555055505550555,-50.495049504950494,-50.43504350435043,-50.37503750375038,-50.315031503150315,-50.255025502550254,-50.19501950195019,-50.13501350135014,-50.075007500750075,-50.015001500150014,-49.95499549954995,-49.8949894989499,-49.834983498349835,-49.774977497749774,-49.71497149714971,-49.65496549654966,-49.594959495949595,-49.534953495349534,-49.47494749474947,-49.41494149414942,-49.354935493549355,-49.294929492949294,-49.23492349234923,-49.17491749174918,-49.114911491149115,-49.054905490549054,-48.99489948994899,-48.93489348934894,-48.874887488748875,-48.814881488148814,-48.75487548754875,-48.6948694869487,-48.634863486348635,-48.57485748574857,-48.51485148514851,-48.45484548454846,-48.394839483948395,-48.33483348334833,-48.27482748274827,-48.21482148214822,-48.154815481548155,-48.09480948094809,-48.03480348034803,-47.97479747974798,-47.914791479147915,-47.85478547854785,-47.79477947794779,-47.73477347734774,-47.674767476747675,-47.61476147614761,-47.55475547554755,-47.4947494749475,-47.434743474347435,-47.37473747374737,-47.31473147314731,-47.25472547254726,-47.194719471947195,-47.13471347134713,-47.07470747074707,-47.01470147014702,-46.954695469546955,-46.89468946894689,-46.83468346834683,-46.77467746774678,-46.714671467146715,-46.65466546654665,-46.59465946594659,-46.53465346534654,-46.474647464746475,-46.41464146414641,-46.35463546354635,-46.2946294629463,-46.234623462346235,-46.17461746174617,-46.11461146114611,-46.05460546054606,-45.994599459945995,-45.93459345934593,-45.87458745874587,-45.81458145814582,-45.754575457545755,-45.69456945694569,-45.63456345634563,-45.57455745574558,-45.514551455145515,-45.45454545454545,-45.39453945394539,-45.33453345334534,-45.274527452745275,-45.21452145214521,-45.15451545154515,-45.0945094509451,-45.034503450345035,-44.97449744974497,-44.91449144914491,-44.85448544854486,-44.794479447944795,-44.73447344734473,-44.67446744674467,-44.61446144614462,-44.554455445544555,-44.49444944494449,-44.43444344434443,-44.37443744374438,-44.314431443144315,-44.25442544254425,-44.19441944194419,-44.13441344134414,-44.074407440744075,-44.01440144014401,-43.95439543954395,-43.8943894389439,-43.834383438343835,-43.77437743774377,-43.71437143714371,-43.65436543654366,-43.594359435943595,-43.53435343534353,-43.47434743474347,-43.41434143414342,-43.354335433543355,-43.29432943294329,-43.23432343234323,-43.17431743174318,-43.114311431143115,-43.05430543054305,-42.99429942994299,-42.93429342934294,-42.874287428742875,-42.81428142814281,-42.75427542754275,-42.6942694269427,-42.634263426342635,-42.57425742574257,-42.51425142514251,-42.45424542454246,-42.394239423942395,-42.33423342334233,-42.27422742274227,-42.21422142214222,-42.154215421542155,-42.09420942094209,-42.03420342034203,-41.97419741974198,-41.914191419141915,-41.85418541854185,-41.79417941794179,-41.73417341734174,-41.674167416741675,-41.61416141614161,-41.55415541554155,-41.494149414941496,-41.434143414341435,-41.37413741374137,-41.31413141314131,-41.254125412541256,-41.194119411941195,-41.13411341134113,-41.07410741074107,-41.014101410141016,-40.954095409540955,-40.89408940894089,-40.83408340834083,-40.774077407740776,-40.714071407140715,-40.65406540654065,-40.59405940594059,-40.534053405340536,-40.474047404740475,-40.41404140414041,-40.35403540354035,-40.294029402940296,-40.234023402340235,-40.17401740174017,-40.11401140114011,-40.054005400540056,-39.993999399939995,-39.93399339933993,-39.87398739873987,-39.813981398139816,-39.753975397539755,-39.69396939693969,-39.63396339633963,-39.573957395739576,-39.513951395139514,-39.45394539453945,-39.39393939393939,-39.333933393339336,-39.273927392739274,-39.21392139213921,-39.15391539153915,-39.093909390939096,-39.033903390339034,-38.97389738973897,-38.91389138913891,-38.853885388538856,-38.793879387938794,-38.73387338733873,-38.67386738673867,-38.613861386138616,-38.553855385538554,-38.49384938493849,-38.43384338433843,-38.373837383738376,-38.313831383138314,-38.25382538253825,-38.19381938193819,-38.133813381338136,-38.073807380738074,-38.01380138013801,-37.95379537953795,-37.893789378937896,-37.833783378337834,-37.77377737773777,-37.71377137713771,-37.653765376537656,-37.593759375937594,-37.53375337533753,-37.47374737473747,-37.413741374137416,-37.353735373537354,-37.29372937293729,-37.23372337233723,-37.173717371737176,-37.113711371137114,-37.05370537053705,-36.99369936993699,-36.933693369336936,-36.873687368736874,-36.81368136813681,-36.75367536753675,-36.693669366936696,-36.633663366336634,-36.57365736573657,-36.51365136513651,-36.453645364536456,-36.393639363936394,-36.33363336333633,-36.27362736273627,-36.213621362136216,-36.153615361536154,-36.09360936093609,-36.03360336033603,-35.973597359735976,-35.913591359135914,-35.85358535853585,-35.79357935793579,-35.733573357335736,-35.673567356735674,-35.61356135613561,-35.55355535553555,-35.493549354935496,-35.433543354335434,-35.37353735373537,-35.31353135313531,-35.253525352535256,-35.193519351935194,-35.13351335133513,-35.07350735073507,-35.013501350135016,-34.953495349534954,-34.89348934893489,-34.83348334833483,-34.773477347734776,-34.713471347134714,-34.65346534653465,-34.59345934593459,-34.533453345334536,-34.473447344734474,-34.41344134413441,-34.35343534353435,-34.293429342934296,-34.233423342334234,-34.17341734173417,-34.11341134113411,-34.053405340534056,-33.993399339933994,-33.93339333933393,-33.87338733873387,-33.813381338133816,-33.753375337533754,-33.69336933693369,-33.63336333633363,-33.573357335733576,-33.513351335133514,-33.45334533453345,-33.39333933393339,-33.333333333333336,-33.273327332733274,-33.21332133213321,-33.15331533153315,-33.093309330933096,-33.033303330333034,-32.97329732973297,-32.91329132913291,-32.853285328532856,-32.793279327932794,-32.73327332733273,-32.67326732673267,-32.613261326132616,-32.553255325532554,-32.49324932493249,-32.43324332433243,-32.373237323732376,-32.313231323132314,-32.25322532253225,-32.19321932193219,-32.133213321332136,-32.073207320732074,-32.01320132013201,-31.953195319531954,-31.893189318931892,-31.833183318331834,-31.773177317731772,-31.713171317131714,-31.653165316531652,-31.593159315931594,-31.533153315331532,-31.473147314731474,-31.413141314131412,-31.353135313531354,-31.293129312931292,-31.233123312331234,-31.173117311731172,-31.113111311131114,-31.053105310531052,-30.993099309930994,-30.933093309330932,-30.873087308730874,-30.813081308130812,-30.753075307530754,-30.693069306930692,-30.633063306330634,-30.573057305730572,-30.513051305130514,-30.453045304530452,-30.393039303930394,-30.333033303330332,-30.273027302730274,-30.213021302130212,-30.153015301530154,-30.093009300930092,-30.033003300330034,-29.972997299729972,-29.912991299129914,-29.852985298529852,-29.792979297929794,-29.732973297329732,-29.672967296729674,-29.612961296129612,-29.552955295529554,-29.492949294929492,-29.432943294329434,-29.372937293729372,-29.312931293129314,-29.252925292529252,-29.192919291929194,-29.13291329132913,-29.072907290729074,-29.01290129012901,-28.952895289528954,-28.89288928892889,-28.832883288328834,-28.77287728772877,-28.712871287128714,-28.65286528652865,-28.592859285928593,-28.53285328532853,-28.472847284728473,-28.41284128412841,-28.352835283528353,-28.29282928292829,-28.232823282328233,-28.17281728172817,-28.112811281128113,-28.05280528052805,-27.992799279927993,-27.93279327932793,-27.872787278727873,-27.81278127812781,-27.752775277527753,-27.69276927692769,-27.632763276327633,-27.57275727572757,-27.512751275127513,-27.45274527452745,-27.392739273927393,-27.33273327332733,-27.272727272727273,-27.21272127212721,-27.152715271527153,-27.09270927092709,-27.032703270327033,-26.97269726972697,-26.912691269126913,-26.85268526852685,-26.792679267926793,-26.73267326732673,-26.672667266726673,-26.61266126612661,-26.552655265526553,-26.49264926492649,-26.432643264326433,-26.37263726372637,-26.312631263126313,-26.25262526252625,-26.192619261926193,-26.13261326132613,-26.072607260726073,-26.01260126012601,-25.952595259525953,-25.89258925892589,-25.832583258325833,-25.77257725772577,-25.712571257125713,-25.65256525652565,-25.592559255925593,-25.53255325532553,-25.472547254725473,-25.41254125412541,-25.352535253525353,-25.29252925292529,-25.232523252325233,-25.17251725172517,-25.112511251125113,-25.05250525052505,-24.992499249924993,-24.93249324932493,-24.872487248724873,-24.81248124812481,-24.752475247524753,-24.69246924692469,-24.632463246324633,-24.57245724572457,-24.512451245124513,-24.45244524452445,-24.392439243924393,-24.33243324332433,-24.272427242724273,-24.21242124212421,-24.152415241524153,-24.09240924092409,-24.032403240324033,-23.97239723972397,-23.912391239123913,-23.85238523852385,-23.792379237923793,-23.73237323732373,-23.672367236723673,-23.61236123612361,-23.552355235523553,-23.49234923492349,-23.432343234323433,-23.37233723372337,-23.312331233123313,-23.25232523252325,-23.192319231923193,-23.13231323132313,-23.072307230723073,-23.01230123012301,-22.952295229522953,-22.89228922892289,-22.832283228322833,-22.77227722772277,-22.712271227122713,-22.65226522652265,-22.592259225922593,-22.53225322532253,-22.472247224722473,-22.41224122412241,-22.352235223522353,-22.29222922292229,-22.232223222322233,-22.17221722172217,-22.112211221122113,-22.05220522052205,-21.992199219921993,-21.93219321932193,-21.872187218721873,-21.81218121812181,-21.752175217521753,-21.69216921692169,-21.632163216321633,-21.57215721572157,-21.512151215121513,-21.45214521452145,-21.392139213921393,-21.33213321332133,-21.272127212721273,-21.21212121212121,-21.152115211521153,-21.09210921092109,-21.032103210321033,-20.97209720972097,-20.912091209120913,-20.85208520852085,-20.792079207920793,-20.73207320732073,-20.672067206720673,-20.61206120612061,-20.552055205520553,-20.49204920492049,-20.432043204320433,-20.37203720372037,-20.312031203120313,-20.25202520252025,-20.192019201920193,-20.13201320132013,-20.072007200720073,-20.01200120012001,-19.951995199519953,-19.89198919891989,-19.831983198319833,-19.77197719771977,-19.711971197119713,-19.65196519651965,-19.591959195919593,-19.53195319531953,-19.471947194719473,-19.41194119411941,-19.351935193519353,-19.29192919291929,-19.231923192319233,-19.17191719171917,-19.111911191119113,-19.05190519051905,-18.991899189918993,-18.93189318931893,-18.871887188718873,-18.81188118811881,-18.751875187518753,-18.69186918691869,-18.631863186318633,-18.57185718571857,-18.511851185118513,-18.45184518451845,-18.391839183918393,-18.33183318331833,-18.271827182718273,-18.21182118211821,-18.151815181518153,-18.09180918091809,-18.031803180318033,-17.97179717971797,-17.911791179117913,-17.85178517851785,-17.791779177917793,-17.73177317731773,-17.671767176717672,-17.61176117611761,-17.551755175517552,-17.49174917491749,-17.431743174317432,-17.37173717371737,-17.311731173117312,-17.25172517251725,-17.191719171917192,-17.13171317131713,-17.071707170717072,-17.01170117011701,-16.951695169516952,-16.89168916891689,-16.831683168316832,-16.77167716771677,-16.711671167116712,-16.65166516651665,-16.591659165916592,-16.53165316531653,-16.471647164716472,-16.41164116411641,-16.351635163516352,-16.29162916291629,-16.231623162316232,-16.17161716171617,-16.111611161116112,-16.05160516051605,-15.991599159915992,-15.931593159315932,-15.871587158715872,-15.811581158115812,-15.751575157515752,-15.691569156915692,-15.631563156315632,-15.571557155715572,-15.511551155115512,-15.451545154515452,-15.391539153915392,-15.331533153315332,-15.271527152715272,-15.211521152115212,-15.151515151515152,-15.091509150915092,-15.031503150315032,-14.971497149714972,-14.911491149114912,-14.851485148514852,-14.791479147914792,-14.731473147314732,-14.671467146714672,-14.611461146114612,-14.551455145514552,-14.491449144914492,-14.431443144314432,-14.371437143714372,-14.311431143114312,-14.251425142514252,-14.191419141914192,-14.131413141314132,-14.071407140714072,-14.011401140114012,-13.951395139513952,-13.891389138913892,-13.831383138313832,-13.771377137713772,-13.711371137113712,-13.651365136513652,-13.591359135913592,-13.531353135313532,-13.471347134713472,-13.411341134113412,-13.351335133513352,-13.291329132913292,-13.231323132313232,-13.171317131713172,-13.111311131113112,-13.051305130513052,-12.991299129912992,-12.931293129312932,-12.871287128712872,-12.811281128112812,-12.751275127512752,-12.691269126912692,-12.631263126312632,-12.571257125712572,-12.511251125112512,-12.451245124512452,-12.391239123912392,-12.331233123312332,-12.271227122712272,-12.211221122112212,-12.151215121512152,-12.091209120912092,-12.031203120312032,-11.971197119711972,-11.911191119111912,-11.851185118511852,-11.791179117911792,-11.731173117311732,-11.671167116711672,-11.611161116111612,-11.551155115511552,-11.491149114911492,-11.431143114311432,-11.371137113711372,-11.311131113111312,-11.251125112511252,-11.191119111911192,-11.131113111311132,-11.071107110711072,-11.011101110111012,-10.951095109510952,-10.891089108910892,-10.831083108310832,-10.771077107710772,-10.711071107110712,-10.651065106510652,-10.591059105910592,-10.531053105310532,-10.471047104710472,-10.411041104110412,-10.351035103510352,-10.291029102910292,-10.231023102310232,-10.171017101710172,-10.111011101110112,-10.051005100510052,-9.990999099909992,-9.930993099309932,-9.870987098709872,-9.810981098109812,-9.750975097509752,-9.690969096909692,-9.630963096309632,-9.570957095709572,-9.510951095109512,-9.450945094509452,-9.390939093909392,-9.330933093309332,-9.270927092709272,-9.210921092109212,-9.150915091509152,-9.090909090909092,-9.030903090309032,-8.970897089708972,-8.910891089108912,-8.850885088508852,-8.790879087908792,-8.730873087308732,-8.670867086708672,-8.610861086108612,-8.550855085508552,-8.490849084908492,-8.430843084308432,-8.370837083708372,-8.310831083108312,-8.250825082508252,-8.190819081908192,-8.130813081308132,-8.070807080708072,-8.010801080108012,-7.950795079507951,-7.890789078907891,-7.830783078307831,-7.770777077707771,-7.710771077107711,-7.650765076507651,-7.590759075907591,-7.530753075307531,-7.470747074707471,-7.410741074107411,-7.350735073507351,-7.290729072907291,-7.230723072307231,-7.170717071707171,-7.110711071107111,-7.050705070507051,-6.990699069906991,-6.930693069306931,-6.870687068706871,-6.810681068106811,-6.750675067506751,-6.690669066906691,-6.630663066306631,-6.570657065706571,-6.510651065106511,-6.450645064506451,-6.390639063906391,-6.330633063306331,-6.270627062706271,-6.210621062106211,-6.150615061506151,-6.0906090609060906,-6.0306030603060305,-5.9705970597059705,-5.9105910591059105,-5.8505850585058505,-5.7905790579057905,-5.7305730573057305,-5.6705670567056705,-5.6105610561056105,-5.5505550555055505,-5.4905490549054905,-5.4305430543054305,-5.3705370537053705,-5.3105310531053105,-5.2505250525052505,-5.1905190519051905,-5.1305130513051305,-5.0705070507050705,-5.0105010501050105,-4.9504950495049505,-4.8904890489048904,-4.83048304830483,-4.77047704770477,-4.71047104710471,-4.65046504650465,-4.59045904590459,-4.53045304530453,-4.47044704470447,-4.41044104410441,-4.35043504350435,-4.29042904290429,-4.23042304230423,-4.17041704170417,-4.11041104110411,-4.05040504050405,-3.9903990399039904,-3.9303930393039304,-3.8703870387038704,-3.8103810381038103,-3.7503750375037503,-3.6903690369036903,-3.6303630363036303,-3.5703570357035703,-3.5103510351035103,-3.4503450345034503,-3.3903390339033903,-3.3303330333033303,-3.2703270327032703,-3.2103210321032103,-3.1503150315031503,-3.0903090309030903,-3.0303030303030303,-2.9702970297029703,-2.9102910291029103,-2.8502850285028503,-2.7902790279027903,-2.7302730273027302,-2.6702670267026702,-2.6102610261026102,-2.5502550255025502,-2.4902490249024902,-2.43024302430243,-2.37023702370237,-2.31023102310231,-2.25022502250225,-2.19021902190219,-2.13021302130213,-2.07020702070207,-2.01020102010201,-1.9501950195019502,-1.8901890189018902,-1.8301830183018302,-1.7701770177017702,-1.7101710171017102,-1.6501650165016502,-1.5901590159015901,-1.5301530153015301,-1.4701470147014701,-1.4101410141014101,-1.3501350135013501,-1.2901290129012901,-1.2301230123012301,-1.17011701170117,-1.11011101110111,-1.05010501050105,-0.9900990099009901,-0.9300930093009301,-0.8700870087008701,-0.8100810081008101,-0.7500750075007501,-0.6900690069006901,-0.6300630063006301,-0.57005700570057,-0.51005100510051,-0.45004500450045004,-0.39003900390039004,-0.33003300330033003,-0.27002700270027,-0.21002100210021002,-0.15001500150015,-0.09000900090009001,-0.030003000300030003,0.030003000300030003,0.09000900090009001,0.15001500150015,0.21002100210021002,0.27002700270027,0.33003300330033003,0.39003900390039004,0.45004500450045004,0.51005100510051,0.57005700570057,0.6300630063006301,0.6900690069006901,0.7500750075007501,0.8100810081008101,0.8700870087008701,0.9300930093009301,0.9900990099009901,1.05010501050105,1.11011101110111,1.17011701170117,1.2301230123012301,1.2901290129012901,1.3501350135013501,1.4101410141014101,1.4701470147014701,1.5301530153015301,1.5901590159015901,1.6501650165016502,1.7101710171017102,1.7701770177017702,1.8301830183018302,1.8901890189018902,1.9501950195019502,2.01020102010201,2.07020702070207,2.13021302130213,2.19021902190219,2.25022502250225,2.31023102310231,2.37023702370237,2.43024302430243,2.4902490249024902,2.5502550255025502,2.6102610261026102,2.6702670267026702,2.7302730273027302,2.7902790279027903,2.8502850285028503,2.9102910291029103,2.9702970297029703,3.0303030303030303,3.0903090309030903,3.1503150315031503,3.2103210321032103,3.2703270327032703,3.3303330333033303,3.3903390339033903,3.4503450345034503,3.5103510351035103,3.5703570357035703,3.6303630363036303,3.6903690369036903,3.7503750375037503,3.8103810381038103,3.8703870387038704,3.9303930393039304,3.9903990399039904,4.05040504050405,4.11041104110411,4.17041704170417,4.23042304230423,4.29042904290429,4.35043504350435,4.41044104410441,4.47044704470447,4.53045304530453,4.59045904590459,4.65046504650465,4.71047104710471,4.77047704770477,4.83048304830483,4.8904890489048904,4.9504950495049505,5.0105010501050105,5.0705070507050705,5.1305130513051305,5.1905190519051905,5.2505250525052505,5.3105310531053105,5.3705370537053705,5.4305430543054305,5.4905490549054905,5.5505550555055505,5.6105610561056105,5.6705670567056705,5.7305730573057305,5.7905790579057905,5.8505850585058505,5.9105910591059105,5.9705970597059705,6.0306030603060305,6.0906090609060906,6.150615061506151,6.210621062106211,6.270627062706271,6.330633063306331,6.390639063906391,6.450645064506451,6.510651065106511,6.570657065706571,6.630663066306631,6.690669066906691,6.750675067506751,6.810681068106811,6.870687068706871,6.930693069306931,6.990699069906991,7.050705070507051,7.110711071107111,7.170717071707171,7.230723072307231,7.290729072907291,7.350735073507351,7.410741074107411,7.470747074707471,7.530753075307531,7.590759075907591,7.650765076507651,7.710771077107711,7.770777077707771,7.830783078307831,7.890789078907891,7.950795079507951,8.010801080108012,8.070807080708072,8.130813081308132,8.190819081908192,8.250825082508252,8.310831083108312,8.370837083708372,8.430843084308432,8.490849084908492,8.550855085508552,8.610861086108612,8.670867086708672,8.730873087308732,8.790879087908792,8.850885088508852,8.910891089108912,8.970897089708972,9.030903090309032,9.090909090909092,9.150915091509152,9.210921092109212,9.270927092709272,9.330933093309332,9.390939093909392,9.450945094509452,9.510951095109512,9.570957095709572,9.630963096309632,9.690969096909692,9.750975097509752,9.810981098109812,9.870987098709872,9.930993099309932,9.990999099909992,10.051005100510052,10.111011101110112,10.171017101710172,10.231023102310232,10.291029102910292,10.351035103510352,10.411041104110412,10.471047104710472,10.531053105310532,10.591059105910592,10.651065106510652,10.711071107110712,10.771077107710772,10.831083108310832,10.891089108910892,10.951095109510952,11.011101110111012,11.071107110711072,11.131113111311132,11.191119111911192,11.251125112511252,11.311131113111312,11.371137113711372,11.431143114311432,11.491149114911492,11.551155115511552,11.611161116111612,11.671167116711672,11.731173117311732,11.791179117911792,11.851185118511852,11.911191119111912,11.971197119711972,12.031203120312032,12.091209120912092,12.151215121512152,12.211221122112212,12.271227122712272,12.331233123312332,12.391239123912392,12.451245124512452,12.511251125112512,12.571257125712572,12.631263126312632,12.691269126912692,12.751275127512752,12.811281128112812,12.871287128712872,12.931293129312932,12.991299129912992,13.051305130513052,13.111311131113112,13.171317131713172,13.231323132313232,13.291329132913292,13.351335133513352,13.411341134113412,13.471347134713472,13.531353135313532,13.591359135913592,13.651365136513652,13.711371137113712,13.771377137713772,13.831383138313832,13.891389138913892,13.951395139513952,14.011401140114012,14.071407140714072,14.131413141314132,14.191419141914192,14.251425142514252,14.311431143114312,14.371437143714372,14.431443144314432,14.491449144914492,14.551455145514552,14.611461146114612,14.671467146714672,14.731473147314732,14.791479147914792,14.851485148514852,14.911491149114912,14.971497149714972,15.031503150315032,15.091509150915092,15.151515151515152,15.211521152115212,15.271527152715272,15.331533153315332,15.391539153915392,15.451545154515452,15.511551155115512,15.571557155715572,15.631563156315632,15.691569156915692,15.751575157515752,15.811581158115812,15.871587158715872,15.931593159315932,15.991599159915992,16.05160516051605,16.111611161116112,16.17161716171617,16.231623162316232,16.29162916291629,16.351635163516352,16.41164116411641,16.471647164716472,16.53165316531653,16.591659165916592,16.65166516651665,16.711671167116712,16.77167716771677,16.831683168316832,16.89168916891689,16.951695169516952,17.01170117011701,17.071707170717072,17.13171317131713,17.191719171917192,17.25172517251725,17.311731173117312,17.37173717371737,17.431743174317432,17.49174917491749,17.551755175517552,17.61176117611761,17.671767176717672,17.73177317731773,17.791779177917793,17.85178517851785,17.911791179117913,17.97179717971797,18.031803180318033,18.09180918091809,18.151815181518153,18.21182118211821,18.271827182718273,18.33183318331833,18.391839183918393,18.45184518451845,18.511851185118513,18.57185718571857,18.631863186318633,18.69186918691869,18.751875187518753,18.81188118811881,18.871887188718873,18.93189318931893,18.991899189918993,19.05190519051905,19.111911191119113,19.17191719171917,19.231923192319233,19.29192919291929,19.351935193519353,19.41194119411941,19.471947194719473,19.53195319531953,19.591959195919593,19.65196519651965,19.711971197119713,19.77197719771977,19.831983198319833,19.89198919891989,19.951995199519953,20.01200120012001,20.072007200720073,20.13201320132013,20.192019201920193,20.25202520252025,20.312031203120313,20.37203720372037,20.432043204320433,20.49204920492049,20.552055205520553,20.61206120612061,20.672067206720673,20.73207320732073,20.792079207920793,20.85208520852085,20.912091209120913,20.97209720972097,21.032103210321033,21.09210921092109,21.152115211521153,21.21212121212121,21.272127212721273,21.33213321332133,21.392139213921393,21.45214521452145,21.512151215121513,21.57215721572157,21.632163216321633,21.69216921692169,21.752175217521753,21.81218121812181,21.872187218721873,21.93219321932193,21.992199219921993,22.05220522052205,22.112211221122113,22.17221722172217,22.232223222322233,22.29222922292229,22.352235223522353,22.41224122412241,22.472247224722473,22.53225322532253,22.592259225922593,22.65226522652265,22.712271227122713,22.77227722772277,22.832283228322833,22.89228922892289,22.952295229522953,23.01230123012301,23.072307230723073,23.13231323132313,23.192319231923193,23.25232523252325,23.312331233123313,23.37233723372337,23.432343234323433,23.49234923492349,23.552355235523553,23.61236123612361,23.672367236723673,23.73237323732373,23.792379237923793,23.85238523852385,23.912391239123913,23.97239723972397,24.032403240324033,24.09240924092409,24.152415241524153,24.21242124212421,24.272427242724273,24.33243324332433,24.392439243924393,24.45244524452445,24.512451245124513,24.57245724572457,24.632463246324633,24.69246924692469,24.752475247524753,24.81248124812481,24.872487248724873,24.93249324932493,24.992499249924993,25.05250525052505,25.112511251125113,25.17251725172517,25.232523252325233,25.29252925292529,25.352535253525353,25.41254125412541,25.472547254725473,25.53255325532553,25.592559255925593,25.65256525652565,25.712571257125713,25.77257725772577,25.832583258325833,25.89258925892589,25.952595259525953,26.01260126012601,26.072607260726073,26.13261326132613,26.192619261926193,26.25262526252625,26.312631263126313,26.37263726372637,26.432643264326433,26.49264926492649,26.552655265526553,26.61266126612661,26.672667266726673,26.73267326732673,26.792679267926793,26.85268526852685,26.912691269126913,26.97269726972697,27.032703270327033,27.09270927092709,27.152715271527153,27.21272127212721,27.272727272727273,27.33273327332733,27.392739273927393,27.45274527452745,27.512751275127513,27.57275727572757,27.632763276327633,27.69276927692769,27.752775277527753,27.81278127812781,27.872787278727873,27.93279327932793,27.992799279927993,28.05280528052805,28.112811281128113,28.17281728172817,28.232823282328233,28.29282928292829,28.352835283528353,28.41284128412841,28.472847284728473,28.53285328532853,28.592859285928593,28.65286528652865,28.712871287128714,28.77287728772877,28.832883288328834,28.89288928892889,28.952895289528954,29.01290129012901,29.072907290729074,29.13291329132913,29.192919291929194,29.252925292529252,29.312931293129314,29.372937293729372,29.432943294329434,29.492949294929492,29.552955295529554,29.612961296129612,29.672967296729674,29.732973297329732,29.792979297929794,29.852985298529852,29.912991299129914,29.972997299729972,30.033003300330034,30.093009300930092,30.153015301530154,30.213021302130212,30.273027302730274,30.333033303330332,30.393039303930394,30.453045304530452,30.513051305130514,30.573057305730572,30.633063306330634,30.693069306930692,30.753075307530754,30.813081308130812,30.873087308730874,30.933093309330932,30.993099309930994,31.053105310531052,31.113111311131114,31.173117311731172,31.233123312331234,31.293129312931292,31.353135313531354,31.413141314131412,31.473147314731474,31.533153315331532,31.593159315931594,31.653165316531652,31.713171317131714,31.773177317731772,31.833183318331834,31.893189318931892,31.953195319531954,32.01320132013201,32.073207320732074,32.133213321332136,32.19321932193219,32.25322532253225,32.313231323132314,32.373237323732376,32.43324332433243,32.49324932493249,32.553255325532554,32.613261326132616,32.67326732673267,32.73327332733273,32.793279327932794,32.853285328532856,32.91329132913291,32.97329732973297,33.033303330333034,33.093309330933096,33.15331533153315,33.21332133213321,33.273327332733274,33.333333333333336,33.39333933393339,33.45334533453345,33.513351335133514,33.573357335733576,33.63336333633363,33.69336933693369,33.753375337533754,33.813381338133816,33.87338733873387,33.93339333933393,33.993399339933994,34.053405340534056,34.11341134113411,34.17341734173417,34.233423342334234,34.293429342934296,34.35343534353435,34.41344134413441,34.473447344734474,34.533453345334536,34.59345934593459,34.65346534653465,34.713471347134714,34.773477347734776,34.83348334833483,34.89348934893489,34.953495349534954,35.013501350135016,35.07350735073507,35.13351335133513,35.193519351935194,35.253525352535256,35.31353135313531,35.37353735373537,35.433543354335434,35.493549354935496,35.55355535553555,35.61356135613561,35.673567356735674,35.733573357335736,35.79357935793579,35.85358535853585,35.913591359135914,35.973597359735976,36.03360336033603,36.09360936093609,36.153615361536154,36.213621362136216,36.27362736273627,36.33363336333633,36.393639363936394,36.453645364536456,36.51365136513651,36.57365736573657,36.633663366336634,36.693669366936696,36.75367536753675,36.81368136813681,36.873687368736874,36.933693369336936,36.99369936993699,37.05370537053705,37.113711371137114,37.173717371737176,37.23372337233723,37.29372937293729,37.353735373537354,37.413741374137416,37.47374737473747,37.53375337533753,37.593759375937594,37.653765376537656,37.71377137713771,37.77377737773777,37.833783378337834,37.893789378937896,37.95379537953795,38.01380138013801,38.073807380738074,38.133813381338136,38.19381938193819,38.25382538253825,38.313831383138314,38.373837383738376,38.43384338433843,38.49384938493849,38.553855385538554,38.613861386138616,38.67386738673867,38.73387338733873,38.793879387938794,38.853885388538856,38.91389138913891,38.97389738973897,39.033903390339034,39.093909390939096,39.15391539153915,39.21392139213921,39.273927392739274,39.333933393339336,39.39393939393939,39.45394539453945,39.513951395139514,39.573957395739576,39.63396339633963,39.69396939693969,39.753975397539755,39.813981398139816,39.87398739873987,39.93399339933993,39.993999399939995,40.054005400540056,40.11401140114011,40.17401740174017,40.234023402340235,40.294029402940296,40.35403540354035,40.41404140414041,40.474047404740475,40.534053405340536,40.59405940594059,40.65406540654065,40.714071407140715,40.774077407740776,40.83408340834083,40.89408940894089,40.954095409540955,41.014101410141016,41.07410741074107,41.13411341134113,41.194119411941195,41.254125412541256,41.31413141314131,41.37413741374137,41.434143414341435,41.494149414941496,41.55415541554155,41.61416141614161,41.674167416741675,41.73417341734174,41.79417941794179,41.85418541854185,41.914191419141915,41.97419741974198,42.03420342034203,42.09420942094209,42.154215421542155,42.21422142214222,42.27422742274227,42.33423342334233,42.394239423942395,42.45424542454246,42.51425142514251,42.57425742574257,42.634263426342635,42.6942694269427,42.75427542754275,42.81428142814281,42.874287428742875,42.93429342934294,42.99429942994299,43.05430543054305,43.114311431143115,43.17431743174318,43.23432343234323,43.29432943294329,43.354335433543355,43.41434143414342,43.47434743474347,43.53435343534353,43.594359435943595,43.65436543654366,43.71437143714371,43.77437743774377,43.834383438343835,43.8943894389439,43.95439543954395,44.01440144014401,44.074407440744075,44.13441344134414,44.19441944194419,44.25442544254425,44.314431443144315,44.37443744374438,44.43444344434443,44.49444944494449,44.554455445544555,44.61446144614462,44.67446744674467,44.73447344734473,44.794479447944795,44.85448544854486,44.91449144914491,44.97449744974497,45.034503450345035,45.0945094509451,45.15451545154515,45.21452145214521,45.274527452745275,45.33453345334534,45.39453945394539,45.45454545454545,45.514551455145515,45.57455745574558,45.63456345634563,45.69456945694569,45.754575457545755,45.81458145814582,45.87458745874587,45.93459345934593,45.994599459945995,46.05460546054606,46.11461146114611,46.17461746174617,46.234623462346235,46.2946294629463,46.35463546354635,46.41464146414641,46.474647464746475,46.53465346534654,46.59465946594659,46.65466546654665,46.714671467146715,46.77467746774678,46.83468346834683,46.89468946894689,46.954695469546955,47.01470147014702,47.07470747074707,47.13471347134713,47.194719471947195,47.25472547254726,47.31473147314731,47.37473747374737,47.434743474347435,47.4947494749475,47.55475547554755,47.61476147614761,47.674767476747675,47.73477347734774,47.79477947794779,47.85478547854785,47.914791479147915,47.97479747974798,48.03480348034803,48.09480948094809,48.154815481548155,48.21482148214822,48.27482748274827,48.33483348334833,48.394839483948395,48.45484548454846,48.51485148514851,48.57485748574857,48.634863486348635,48.6948694869487,48.75487548754875,48.814881488148814,48.874887488748875,48.93489348934894,48.99489948994899,49.054905490549054,49.114911491149115,49.17491749174918,49.23492349234923,49.294929492949294,49.354935493549355,49.41494149414942,49.47494749474947,49.534953495349534,49.594959495949595,49.65496549654966,49.71497149714971,49.774977497749774,49.834983498349835,49.8949894989499,49.95499549954995,50.015001500150014,50.075007500750075,50.13501350135014,50.19501950195019,50.255025502550254,50.315031503150315,50.37503750375038,50.43504350435043,50.495049504950494,50.555055505550555,50.61506150615062,50.67506750675067,50.735073507350734,50.795079507950796,50.85508550855086,50.91509150915091,50.975097509750974,51.035103510351036,51.0951095109511,51.15511551155115,51.215121512151214,51.275127512751276,51.33513351335134,51.39513951395139,51.455145514551454,51.515151515151516,51.57515751575158,51.63516351635163,51.695169516951694,51.755175517551756,51.81518151815182,51.87518751875187,51.935193519351934,51.995199519951996,52.05520552055206,52.11521152115211,52.175217521752174,52.235223522352236,52.2952295229523,52.35523552355235,52.415241524152414,52.475247524752476,52.53525352535254,52.59525952595259,52.655265526552654,52.715271527152716,52.77527752775278,52.83528352835283,52.895289528952894,52.955295529552956,53.01530153015302,53.07530753075307,53.135313531353134,53.195319531953196,53.25532553255326,53.31533153315331,53.375337533753374,53.435343534353436,53.4953495349535,53.55535553555355,53.615361536153614,53.675367536753676,53.73537353735374,53.79537953795379,53.855385538553854,53.915391539153916,53.97539753975398,54.03540354035403,54.095409540954094,54.155415541554156,54.21542154215422,54.27542754275427,54.335433543354334,54.395439543954396,54.45544554455446,54.51545154515451,54.575457545754574,54.635463546354636,54.6954695469547,54.75547554755475,54.815481548154814,54.875487548754876,54.93549354935494,54.99549954995499,55.055505550555054,55.115511551155116,55.17551755175518,55.23552355235523,55.295529552955294,55.355535553555356,55.41554155415542,55.47554755475547,55.535553555355534,55.595559555955596,55.65556555655566,55.71557155715571,55.775577557755774,55.835583558355836,55.8955895589559,55.95559555955595,56.015601560156014,56.075607560756076,56.13561356135614,56.19561956195619,56.255625562556254,56.315631563156316,56.37563756375638,56.43564356435643,56.495649564956494,56.555655565556556,56.61566156615662,56.67566756675667,56.735673567356734,56.795679567956796,56.85568556855686,56.91569156915691,56.975697569756974,57.035703570357036,57.0957095709571,57.15571557155715,57.215721572157214,57.275727572757276,57.33573357335734,57.39573957395739,57.455745574557454,57.515751575157516,57.57575757575758,57.63576357635763,57.695769576957694,57.755775577557756,57.81578157815782,57.87578757875787,57.935793579357934,57.995799579957996,58.05580558055806,58.11581158115811,58.175817581758174,58.235823582358236,58.2958295829583,58.35583558355835,58.415841584158414,58.475847584758476,58.53585358535854,58.59585958595859,58.655865586558654,58.715871587158716,58.77587758775878,58.83588358835883,58.895889588958894,58.955895589558956,59.01590159015902,59.07590759075907,59.135913591359135,59.195919591959196,59.25592559255926,59.31593159315931,59.375937593759375,59.435943594359436,59.4959495949595,59.55595559555955,59.615961596159615,59.675967596759676,59.73597359735974,59.79597959795979,59.855985598559855,59.915991599159916,59.97599759975998,60.03600360036003,60.096009600960095,60.156015601560156,60.21602160216022,60.27602760276027,60.336033603360335,60.396039603960396,60.45604560456046,60.51605160516051,60.576057605760575,60.636063606360636,60.6960696069607,60.75607560756075,60.816081608160815,60.876087608760876,60.93609360936094,60.99609960996099,61.056105610561055,61.11611161116112,61.17611761176118,61.23612361236123,61.296129612961295,61.35613561356136,61.41614161416142,61.47614761476147,61.536153615361535,61.5961596159616,61.65616561656166,61.71617161716171,61.776177617761775,61.83618361836184,61.8961896189619,61.95619561956195,62.016201620162015,62.07620762076208,62.13621362136214,62.19621962196219,62.256225622562255,62.31623162316232,62.37623762376238,62.43624362436243,62.496249624962495,62.55625562556256,62.61626162616262,62.67626762676267,62.736273627362735,62.7962796279628,62.85628562856286,62.91629162916291,62.976297629762975,63.03630363036304,63.0963096309631,63.15631563156315,63.216321632163215,63.27632763276328,63.33633363336334,63.39633963396339,63.456345634563455,63.51635163516352,63.57635763576358,63.63636363636363,63.696369636963695,63.75637563756376,63.81638163816382,63.87638763876387,63.936393639363935,63.996399639964,64.05640564056405,64.11641164116412,64.17641764176417,64.23642364236423,64.2964296429643,64.35643564356435,64.41644164416442,64.47644764476448,64.53645364536453,64.5964596459646,64.65646564656466,64.71647164716471,64.77647764776478,64.83648364836483,64.8964896489649,64.95649564956496,65.01650165016501,65.07650765076508,65.13651365136514,65.19651965196519,65.25652565256526,65.31653165316531,65.37653765376538,65.43654365436544,65.49654965496549,65.55655565556556,65.61656165616562,65.67656765676567,65.73657365736574,65.7965796579658,65.85658565856586,65.91659165916592,65.97659765976597,66.03660366036604,66.0966096609661,66.15661566156615,66.21662166216622,66.27662766276627,66.33663366336634,66.3966396639664,66.45664566456645,66.51665166516652,66.57665766576658,66.63666366636663,66.6966696669667,66.75667566756675,66.81668166816682,66.87668766876688,66.93669366936693,66.996699669967,67.05670567056706,67.11671167116711,67.17671767176718,67.23672367236723,67.2967296729673,67.35673567356736,67.41674167416741,67.47674767476748,67.53675367536754,67.59675967596759,67.65676567656766,67.71677167716771,67.77677767776778,67.83678367836784,67.89678967896789,67.95679567956796,68.01680168016802,68.07680768076807,68.13681368136814,68.1968196819682,68.25682568256826,68.31683168316832,68.37683768376837,68.43684368436844,68.4968496849685,68.55685568556855,68.61686168616862,68.67686768676867,68.73687368736874,68.7968796879688,68.85688568856885,68.91689168916892,68.97689768976898,69.03690369036903,69.0969096909691,69.15691569156915,69.21692169216922,69.27692769276928,69.33693369336933,69.3969396939694,69.45694569456946,69.51695169516951,69.57695769576958,69.63696369636963,69.6969696969697,69.75697569756976,69.81698169816981,69.87698769876988,69.93699369936994,69.99699969996999,70.05700570057006,70.11701170117011,70.17701770177018,70.23702370237024,70.29702970297029,70.35703570357036,70.41704170417042,70.47704770477047,70.53705370537054,70.5970597059706,70.65706570657066,70.71707170717072,70.77707770777077,70.83708370837084,70.8970897089709,70.95709570957095,71.01710171017102,71.07710771077107,71.13711371137114,71.1971197119712,71.25712571257125,71.31713171317132,71.37713771377138,71.43714371437143,71.4971497149715,71.55715571557155,71.61716171617162,71.67716771677168,71.73717371737173,71.7971797179718,71.85718571857186,71.91719171917191,71.97719771977198,72.03720372037203,72.0972097209721,72.15721572157216,72.21722172217221,72.27722772277228,72.33723372337234,72.39723972397239,72.45724572457246,72.51725172517251,72.57725772577258,72.63726372637264,72.69726972697269,72.75727572757276,72.81728172817282,72.87728772877287,72.93729372937294,72.997299729973,73.05730573057306,73.11731173117312,73.17731773177317,73.23732373237324,73.2973297329733,73.35733573357335,73.41734173417342,73.47734773477347,73.53735373537354,73.5973597359736,73.65736573657365,73.71737173717372,73.77737773777378,73.83738373837383,73.8973897389739,73.95739573957395,74.01740174017402,74.07740774077408,74.13741374137413,74.1974197419742,74.25742574257426,74.31743174317431,74.37743774377438,74.43744374437443,74.4974497449745,74.55745574557456,74.61746174617461,74.67746774677468,74.73747374737474,74.79747974797479,74.85748574857486,74.91749174917491,74.97749774977498,75.03750375037504,75.09750975097509,75.15751575157516,75.21752175217522,75.27752775277527,75.33753375337534,75.3975397539754,75.45754575457546,75.51755175517552,75.57755775577557,75.63756375637564,75.6975697569757,75.75757575757575,75.81758175817582,75.87758775877587,75.93759375937594,75.997599759976,76.05760576057605,76.11761176117612,76.17761776177618,76.23762376237623,76.2976297629763,76.35763576357635,76.41764176417642,76.47764776477648,76.53765376537653,76.5976597659766,76.65766576657666,76.71767176717671,76.77767776777678,76.83768376837683,76.8976897689769,76.95769576957696,77.01770177017701,77.07770777077708,77.13771377137714,77.19771977197719,77.25772577257726,77.31773177317731,77.37773777377738,77.43774377437744,77.49774977497749,77.55775577557756,77.61776177617762,77.67776777677767,77.73777377737774,77.7977797779778,77.85778577857786,77.91779177917792,77.97779777977797,78.03780378037804,78.0978097809781,78.15781578157815,78.21782178217822,78.27782778277827,78.33783378337834,78.3978397839784,78.45784578457845,78.51785178517852,78.57785778577858,78.63786378637863,78.6978697869787,78.75787578757875,78.81788178817882,78.87788778877888,78.93789378937893,78.997899789979,79.05790579057906,79.11791179117911,79.17791779177918,79.23792379237923,79.2979297929793,79.35793579357936,79.41794179417941,79.47794779477948,79.53795379537954,79.59795979597959,79.65796579657966,79.71797179717971,79.77797779777978,79.83798379837984,79.89798979897989,79.95799579957996,80.01800180018002,80.07800780078007,80.13801380138014,80.1980198019802,80.25802580258026,80.31803180318032,80.37803780378037,80.43804380438044,80.4980498049805,80.55805580558055,80.61806180618062,80.67806780678067,80.73807380738074,80.7980798079808,80.85808580858085,80.91809180918092,80.97809780978098,81.03810381038103,81.0981098109811,81.15811581158115,81.21812181218122,81.27812781278128,81.33813381338133,81.3981398139814,81.45814581458146,81.51815181518151,81.57815781578158,81.63816381638163,81.6981698169817,81.75817581758176,81.81818181818181,81.87818781878188,81.93819381938194,81.99819981998199,82.05820582058206,82.11821182118211,82.17821782178218,82.23822382238224,82.2982298229823,82.35823582358236,82.41824182418242,82.47824782478247,82.53825382538254,82.5982598259826,82.65826582658266,82.71827182718272,82.77827782778277,82.83828382838284,82.8982898289829,82.95829582958295,83.01830183018302,83.07830783078307,83.13831383138314,83.1983198319832,83.25832583258325,83.31833183318332,83.37833783378338,83.43834383438343,83.4983498349835,83.55835583558355,83.61836183618362,83.67836783678368,83.73837383738373,83.7983798379838,83.85838583858386,83.91839183918391,83.97839783978398,84.03840384038403,84.0984098409841,84.15841584158416,84.21842184218421,84.27842784278428,84.33843384338434,84.39843984398439,84.45844584458446,84.51845184518452,84.57845784578458,84.63846384638464,84.6984698469847,84.75847584758476,84.81848184818482,84.87848784878487,84.93849384938494,84.998499849985,85.05850585058506,85.11851185118512,85.17851785178517,85.23852385238524,85.2985298529853,85.35853585358535,85.41854185418542,85.47854785478548,85.53855385538554,85.5985598559856,85.65856585658565,85.71857185718572,85.77857785778578,85.83858385838583,85.8985898589859,85.95859585958596,86.01860186018602,86.07860786078608,86.13861386138613,86.1986198619862,86.25862586258626,86.31863186318631,86.37863786378638,86.43864386438644,86.4986498649865,86.55865586558656,86.61866186618661,86.67866786678668,86.73867386738674,86.79867986798679,86.85868586858686,86.91869186918692,86.97869786978698,87.03870387038704,87.0987098709871,87.15871587158716,87.21872187218722,87.27872787278727,87.33873387338734,87.3987398739874,87.45874587458746,87.51875187518752,87.57875787578757,87.63876387638764,87.6987698769877,87.75877587758775,87.81878187818782,87.87878787878788,87.93879387938794,87.998799879988,88.05880588058805,88.11881188118812,88.17881788178818,88.23882388238823,88.2988298829883,88.35883588358836,88.41884188418842,88.47884788478848,88.53885388538853,88.5988598859886,88.65886588658866,88.71887188718871,88.77887788778878,88.83888388838884,88.8988898889889,88.95889588958896,89.01890189018901,89.07890789078908,89.13891389138914,89.19891989198919,89.25892589258926,89.31893189318932,89.37893789378938,89.43894389438944,89.4989498949895,89.55895589558956,89.61896189618962,89.67896789678967,89.73897389738974,89.7989798979898,89.85898589858986,89.91899189918992,89.97899789978997,90.03900390039004,90.0990099009901,90.15901590159015,90.21902190219022,90.27902790279028,90.33903390339034,90.3990399039904,90.45904590459045,90.51905190519052,90.57905790579058,90.63906390639063,90.6990699069907,90.75907590759076,90.81908190819082,90.87908790879088,90.93909390939093,90.999099909991,91.05910591059106,91.11911191119111,91.17911791179118,91.23912391239124,91.2991299129913,91.35913591359136,91.41914191419141,91.47914791479148,91.53915391539154,91.59915991599159,91.65916591659166,91.71917191719172,91.77917791779178,91.83918391839184,91.8991899189919,91.95919591959196,92.01920192019202,92.07920792079207,92.13921392139214,92.1992199219922,92.25922592259226,92.31923192319232,92.37923792379237,92.43924392439244,92.4992499249925,92.55925592559255,92.61926192619262,92.67926792679268,92.73927392739274,92.7992799279928,92.85928592859285,92.91929192919292,92.97929792979298,93.03930393039303,93.0993099309931,93.15931593159316,93.21932193219322,93.27932793279328,93.33933393339333,93.3993399339934,93.45934593459346,93.51935193519351,93.57935793579358,93.63936393639364,93.6993699369937,93.75937593759376,93.81938193819381,93.87938793879388,93.93939393939394,93.99939993999399,94.05940594059406,94.11941194119412,94.17941794179418,94.23942394239424,94.2994299429943,94.35943594359436,94.41944194419442,94.47944794479447,94.53945394539454,94.5994599459946,94.65946594659466,94.71947194719472,94.77947794779477,94.83948394839484,94.8994899489949,94.95949594959495,95.01950195019502,95.07950795079508,95.13951395139514,95.1995199519952,95.25952595259525,95.31953195319532,95.37953795379538,95.43954395439543,95.4995499549955,95.55955595559556,95.61956195619562,95.67956795679568,95.73957395739573,95.7995799579958,95.85958595859586,95.91959195919591,95.97959795979598,96.03960396039604,96.0996099609961,96.15961596159616,96.21962196219621,96.27962796279628,96.33963396339634,96.39963996399639,96.45964596459646,96.51965196519652,96.57965796579659,96.63966396639664,96.6996699669967,96.75967596759676,96.81968196819682,96.87968796879687,96.93969396939694,96.999699969997,97.05970597059707,97.11971197119712,97.17971797179717,97.23972397239724,97.2997299729973,97.35973597359735,97.41974197419742,97.47974797479748,97.53975397539755,97.5997599759976,97.65976597659765,97.71977197719772,97.77977797779778,97.83978397839783,97.8997899789979,97.95979597959796,98.01980198019803,98.07980798079808,98.13981398139813,98.1998199819982,98.25982598259826,98.31983198319831,98.37983798379838,98.43984398439844,98.4998499849985,98.55985598559856,98.61986198619861,98.67986798679868,98.73987398739874,98.79987998799879,98.85988598859886,98.91989198919892,98.97989798979899,99.03990399039904,99.0999099909991,99.15991599159916,99.21992199219922,99.27992799279927,99.33993399339934,99.3999399939994,99.45994599459947,99.51995199519952,99.57995799579957,99.63996399639964,99.6999699969997,99.75997599759975,99.81998199819982,99.87998799879988,99.93999399939995,100.0,100.06000600060005,100.12001200120012,100.18001800180018,100.24002400240025,100.3000300030003,100.36003600360036,100.42004200420043,100.48004800480048,100.54005400540053,100.6000600060006,100.66006600660066,100.72007200720073,100.78007800780078,100.84008400840084,100.9000900090009,100.96009600960096,101.02010201020101,101.08010801080108,101.14011401140114,101.20012001200121,101.26012601260126,101.32013201320132,101.38013801380139,101.44014401440144,101.5001500150015,101.56015601560156,101.62016201620162,101.68016801680169,101.74017401740174,101.8001800180018,101.86018601860187,101.92019201920192,101.98019801980197,102.04020402040204,102.1002100210021,102.16021602160217,102.22022202220222,102.28022802280228,102.34023402340235,102.4002400240024,102.46024602460245,102.52025202520252,102.58025802580258,102.64026402640265,102.7002700270027,102.76027602760276,102.82028202820283,102.88028802880288,102.94029402940293,103.000300030003,103.06030603060306,103.12031203120313,103.18031803180318,103.24032403240324,103.3003300330033,103.36033603360336,103.42034203420341,103.48034803480348,103.54035403540354,103.60036003600361,103.66036603660366,103.72037203720372,103.78037803780379,103.84038403840384,103.9003900390039,103.96039603960396,104.02040204020402,104.08040804080409,104.14041404140414,104.2004200420042,104.26042604260427,104.32043204320432,104.38043804380438,104.44044404440444,104.5004500450045,104.56045604560457,104.62046204620462,104.68046804680468,104.74047404740475,104.8004800480048,104.86048604860486,104.92049204920492,104.98049804980498,105.04050405040505,105.1005100510051,105.16051605160516,105.22052205220523,105.28052805280528,105.34053405340534,105.4005400540054,105.46054605460546,105.52055205520553,105.58055805580558,105.64056405640564,105.7005700570057,105.76057605760576,105.82058205820582,105.88058805880588,105.94059405940594,106.00060006000601,106.06060606060606,106.12061206120612,106.18061806180619,106.24062406240624,106.3006300630063,106.36063606360636,106.42064206420642,106.48064806480649,106.54065406540654,106.6006600660066,106.66066606660667,106.72067206720672,106.78067806780678,106.84068406840684,106.9006900690069,106.96069606960697,107.02070207020702,107.08070807080708,107.14071407140715,107.2007200720072,107.26072607260726,107.32073207320732,107.38073807380738,107.44074407440745,107.5007500750075,107.56075607560756,107.62076207620763,107.68076807680768,107.74077407740774,107.8007800780078,107.86078607860786,107.92079207920793,107.98079807980798,108.04080408040804,108.1008100810081,108.16081608160816,108.22082208220822,108.28082808280828,108.34083408340834,108.40084008400841,108.46084608460846,108.52085208520852,108.58085808580859,108.64086408640864,108.7008700870087,108.76087608760876,108.82088208820882,108.88088808880889,108.94089408940894,109.000900090009,109.06090609060907,109.12091209120912,109.18091809180918,109.24092409240924,109.3009300930093,109.36093609360937,109.42094209420942,109.48094809480948,109.54095409540955,109.6009600960096,109.66096609660966,109.72097209720972,109.78097809780978,109.84098409840985,109.9009900990099,109.96099609960996,110.02100210021003,110.08100810081008,110.14101410141014,110.2010201020102,110.26102610261026,110.32103210321033,110.38103810381038,110.44104410441044,110.5010501050105,110.56105610561056,110.62106210621062,110.68106810681068,110.74107410741074,110.80108010801081,110.86108610861086,110.92109210921092,110.98109810981099,111.04110411041104,111.1011101110111,111.16111611161116,111.22112211221122,111.28112811281129,111.34113411341134,111.4011401140114,111.46114611461147,111.52115211521152,111.58115811581158,111.64116411641164,111.7011701170117,111.76117611761177,111.82118211821182,111.88118811881188,111.94119411941195,112.001200120012,112.06120612061206,112.12121212121212,112.18121812181218,112.24122412241225,112.3012301230123,112.36123612361236,112.42124212421243,112.48124812481248,112.54125412541254,112.6012601260126,112.66126612661266,112.72127212721273,112.78127812781278,112.84128412841284,112.9012901290129,112.96129612961296,113.02130213021302,113.08130813081308,113.14131413141314,113.20132013201321,113.26132613261326,113.32133213321332,113.38133813381339,113.44134413441344,113.5013501350135,113.56135613561356,113.62136213621362,113.68136813681369,113.74137413741374,113.8013801380138,113.86138613861387,113.92139213921392,113.98139813981398,114.04140414041404,114.1014101410141,114.16141614161417,114.22142214221422,114.28142814281428,114.34143414341435,114.4014401440144,114.46144614461446,114.52145214521452,114.58145814581458,114.64146414641465,114.7014701470147,114.76147614761476,114.82148214821483,114.88148814881488,114.94149414941494,115.001500150015,115.06150615061506,115.12151215121513,115.18151815181518,115.24152415241524,115.3015301530153,115.36153615361536,115.42154215421542,115.48154815481548,115.54155415541554,115.60156015601561,115.66156615661566,115.72157215721572,115.78157815781579,115.84158415841584,115.9015901590159,115.96159615961597,116.02160216021602,116.08160816081609,116.14161416141614,116.2016201620162,116.26162616261627,116.32163216321632,116.38163816381638,116.44164416441645,116.5016501650165,116.56165616561657,116.62166216621662,116.68166816681668,116.74167416741675,116.8016801680168,116.86168616861686,116.92169216921693,116.98169816981698,117.04170417041705,117.1017101710171,117.16171617161716,117.22172217221723,117.28172817281728,117.34173417341734,117.4017401740174,117.46174617461746,117.52175217521753,117.58175817581758,117.64176417641764,117.7017701770177,117.76177617761776,117.82178217821782,117.88178817881789,117.94179417941794,118.00180018001801,118.06180618061806,118.12181218121812,118.18181818181819,118.24182418241824,118.3018301830183,118.36183618361837,118.42184218421842,118.48184818481849,118.54185418541854,118.6018601860186,118.66186618661867,118.72187218721872,118.78187818781878,118.84188418841885,118.9018901890189,118.96189618961897,119.02190219021902,119.08190819081908,119.14191419141915,119.2019201920192,119.26192619261926,119.32193219321933,119.38193819381938,119.44194419441945,119.5019501950195,119.56195619561956,119.62196219621963,119.68196819681968,119.74197419741974,119.8019801980198,119.86198619861986,119.92199219921993,119.98199819981998,120.04200420042004,120.10201020102011,120.16201620162016,120.22202220222022,120.28202820282029,120.34203420342034,120.40204020402041,120.46204620462046,120.52205220522052,120.58205820582059,120.64206420642064,120.7020702070207,120.76207620762077,120.82208220822082,120.88208820882089,120.94209420942094,121.002100210021,121.06210621062107,121.12211221122112,121.18211821182118,121.24212421242125,121.3021302130213,121.36213621362137,121.42214221422142,121.48214821482148,121.54215421542155,121.6021602160216,121.66216621662166,121.72217221722173,121.78217821782178,121.84218421842185,121.9021902190219,121.96219621962196,122.02220222022203,122.08220822082208,122.14221422142214,122.2022202220222,122.26222622262226,122.32223222322233,122.38223822382238,122.44224422442244,122.50225022502251,122.56225622562256,122.62226222622262,122.68226822682269,122.74227422742274,122.80228022802281,122.86228622862286,122.92229222922292,122.98229822982299,123.04230423042304,123.1023102310231,123.16231623162317,123.22232223222322,123.28232823282329,123.34233423342334,123.4023402340234,123.46234623462347,123.52235223522352,123.58235823582358,123.64236423642365,123.7023702370237,123.76237623762377,123.82238223822382,123.88238823882388,123.94239423942395,124.002400240024,124.06240624062406,124.12241224122413,124.18241824182418,124.24242424242425,124.3024302430243,124.36243624362436,124.42244224422443,124.48244824482448,124.54245424542454,124.6024602460246,124.66246624662466,124.72247224722473,124.78247824782478,124.84248424842484,124.90249024902491,124.96249624962496,125.02250225022502,125.08250825082509,125.14251425142514,125.20252025202521,125.26252625262526,125.32253225322532,125.38253825382539,125.44254425442544,125.5025502550255,125.56255625562557,125.62256225622562,125.68256825682569,125.74257425742574,125.8025802580258,125.86258625862587,125.92259225922592,125.98259825982598,126.04260426042605,126.1026102610261,126.16261626162617,126.22262226222622,126.28262826282628,126.34263426342635,126.4026402640264,126.46264626462646,126.52265226522653,126.58265826582658,126.64266426642665,126.7026702670267,126.76267626762676,126.82268226822683,126.88268826882688,126.94269426942694,127.002700270027,127.06270627062706,127.12271227122713,127.18271827182718,127.24272427242724,127.30273027302731,127.36273627362736,127.42274227422742,127.48274827482749,127.54275427542754,127.60276027602761,127.66276627662766,127.72277227722772,127.78277827782779,127.84278427842784,127.9027902790279,127.96279627962797,128.02280228022803,128.0828082808281,128.14281428142814,128.2028202820282,128.26282628262825,128.32283228322834,128.3828382838284,128.44284428442845,128.5028502850285,128.56285628562856,128.6228622862286,128.6828682868287,128.74287428742875,128.8028802880288,128.86288628862886,128.9228922892289,128.982898289829,129.04290429042905,129.1029102910291,129.16291629162916,129.2229222922292,129.2829282928293,129.34293429342935,129.4029402940294,129.46294629462946,129.52295229522952,129.58295829582957,129.64296429642965,129.7029702970297,129.76297629762976,129.82298229822982,129.88298829882987,129.94299429942996,130.00300030003,130.06300630063006,130.12301230123012,130.18301830183017,130.24302430243026,130.3030303030303,130.36303630363037,130.42304230423042,130.48304830483048,130.54305430543053,130.6030603060306,130.66306630663067,130.72307230723072,130.78307830783078,130.84308430843083,130.90309030903092,130.96309630963097,131.02310231023102,131.08310831083108,131.14311431143113,131.20312031203122,131.26312631263127,131.32313231323133,131.38313831383138,131.44314431443144,131.5031503150315,131.56315631563157,131.62316231623163,131.68316831683168,131.74317431743174,131.8031803180318,131.86318631863188,131.92319231923193,131.98319831983198,132.04320432043204,132.1032103210321,132.16321632163218,132.22322232223223,132.2832283228323,132.34323432343234,132.4032403240324,132.46324632463245,132.52325232523253,132.5832583258326,132.64326432643264,132.7032703270327,132.76327632763275,132.82328232823284,132.8832883288329,132.94329432943294,133.003300330033,133.06330633063305,133.12331233123314,133.1833183318332,133.24332433243325,133.3033303330333,133.36333633363336,133.4233423342334,133.4833483348335,133.54335433543355,133.6033603360336,133.66336633663366,133.7233723372337,133.7833783378338,133.84338433843385,133.9033903390339,133.96339633963396,134.02340234023401,134.0834083408341,134.14341434143415,134.2034203420342,134.26342634263426,134.32343234323432,134.38343834383437,134.44344434443445,134.5034503450345,134.56345634563456,134.62346234623462,134.68346834683467,134.74347434743476,134.8034803480348,134.86348634863486,134.92349234923492,134.98349834983497,135.04350435043506,135.1035103510351,135.16351635163517,135.22352235223522,135.28352835283528,135.34353435343533,135.4035403540354,135.46354635463547,135.52355235523552,135.58355835583558,135.64356435643563,135.70357035703572,135.76357635763577,135.82358235823583,135.88358835883588,135.94359435943593,136.00360036003602,136.06360636063607,136.12361236123613,136.18361836183618,136.24362436243624,136.3036303630363,136.36363636363637,136.42364236423643,136.48364836483648,136.54365436543654,136.6036603660366,136.66366636663668,136.72367236723673,136.78367836783679,136.84368436843684,136.9036903690369,136.96369636963698,137.02370237023703,137.0837083708371,137.14371437143714,137.2037203720372,137.26372637263725,137.32373237323733,137.3837383738374,137.44374437443744,137.5037503750375,137.56375637563755,137.62376237623764,137.6837683768377,137.74377437743775,137.8037803780378,137.86378637863785,137.92379237923794,137.983798379838,138.04380438043805,138.1038103810381,138.16381638163816,138.2238223822382,138.2838283828383,138.34383438343835,138.4038403840384,138.46384638463846,138.5238523852385,138.5838583858386,138.64386438643865,138.7038703870387,138.76387638763876,138.82388238823881,138.8838883888389,138.94389438943895,139.003900390039,139.06390639063906,139.12391239123912,139.18391839183917,139.24392439243925,139.3039303930393,139.36393639363936,139.42394239423942,139.48394839483947,139.54395439543956,139.6039603960396,139.66396639663967,139.72397239723972,139.78397839783977,139.84398439843986,139.9039903990399,139.96399639963997,140.02400240024002,140.08400840084008,140.14401440144013,140.20402040204021,140.26402640264027,140.32403240324032,140.38403840384038,140.44404440444043,140.50405040504052,140.56405640564057,140.62406240624063,140.68406840684068,140.74407440744073,140.80408040804082,140.86408640864087,140.92409240924093,140.98409840984098,141.04410441044104,141.1041104110411,141.16411641164117,141.22412241224123,141.28412841284128,141.34413441344134,141.4041404140414,141.46414641464148,141.52415241524153,141.58415841584159,141.64416441644164,141.7041704170417,141.76417641764178,141.82418241824183,141.8841884188419,141.94419441944194,142.004200420042,142.06420642064205,142.12421242124213,142.1842184218422,142.24422442244224,142.3042304230423,142.36423642364235,142.42424242424244,142.4842484248425,142.54425442544255,142.6042604260426,142.66426642664266,142.72427242724274,142.7842784278428,142.84428442844285,142.9042904290429,142.96429642964296,143.024302430243,143.0843084308431,143.14431443144315,143.2043204320432,143.26432643264326,143.3243324332433,143.3843384338434,143.44434443444345,143.5043504350435,143.56435643564356,143.62436243624362,143.6843684368437,143.74437443744375,143.8043804380438,143.86438643864386,143.92439243924392,143.98439843984397,144.04440444044405,144.1044104410441,144.16441644164416,144.22442244224422,144.28442844284427,144.34443444344436,144.4044404440444,144.46444644464447,144.52445244524452,144.58445844584458,144.64446444644466,144.7044704470447,144.76447644764477,144.82448244824482,144.88448844884488,144.94449444944493,145.00450045004501,145.06450645064507,145.12451245124512,145.18451845184518,145.24452445244523,145.30453045304532,145.36453645364537,145.42454245424543,145.48454845484548,145.54455445544554,145.60456045604562,145.66456645664567,145.72457245724573,145.78457845784578,145.84458445844584,145.9045904590459,145.96459645964597,146.02460246024603,146.08460846084608,146.14461446144614,146.2046204620462,146.26462646264628,146.32463246324633,146.3846384638464,146.44464446444644,146.5046504650465,146.56465646564658,146.62466246624663,146.6846684668467,146.74467446744674,146.8046804680468,146.86468646864685,146.92469246924693,146.984698469847,147.04470447044704,147.1047104710471,147.16471647164715,147.22472247224724,147.2847284728473,147.34473447344735,147.4047404740474,147.46474647464746,147.52475247524754,147.5847584758476,147.64476447644765,147.7047704770477,147.76477647764776,147.8247824782478,147.8847884788479,147.94479447944795,148.004800480048,148.06480648064806,148.1248124812481,148.1848184818482,148.24482448244825,148.3048304830483,148.36483648364836,148.42484248424842,148.4848484848485,148.54485448544855,148.6048604860486,148.66486648664866,148.72487248724872,148.78487848784877,148.84488448844886,148.9048904890489,148.96489648964896,149.02490249024902,149.08490849084907,149.14491449144916,149.2049204920492,149.26492649264927,149.32493249324932,149.38493849384938,149.44494449444946,149.5049504950495,149.56495649564957,149.62496249624962,149.68496849684968,149.74497449744973,149.80498049804982,149.86498649864987,149.92499249924992,149.98499849984998,150.04500450045003,150.10501050105012,150.16501650165017,150.22502250225023,150.28502850285028,150.34503450345034,150.40504050405042,150.46504650465047,150.52505250525053,150.58505850585058,150.64506450645064,150.7050705070507,150.76507650765078,150.82508250825083,150.88508850885088,150.94509450945094,151.005100510051,151.06510651065108,151.12511251125113,151.1851185118512,151.24512451245124,151.3051305130513,151.36513651365138,151.42514251425143,151.4851485148515,151.54515451545154,151.6051605160516,151.66516651665165,151.72517251725174,151.7851785178518,151.84518451845184,151.9051905190519,151.96519651965195,152.02520252025204,152.0852085208521,152.14521452145215,152.2052205220522,152.26522652265226,152.32523252325234,152.3852385238524,152.44524452445245,152.5052505250525,152.56525652565256,152.6252625262526,152.6852685268527,152.74527452745275,152.8052805280528,152.86528652865286,152.9252925292529,152.985298529853,153.04530453045305,153.1053105310531,153.16531653165316,153.22532253225322,153.2853285328533,153.34533453345335,153.4053405340534,153.46534653465346,153.52535253525352,153.58535853585357,153.64536453645366,153.7053705370537,153.76537653765376,153.82538253825382,153.88538853885387,153.94539453945396,154.005400540054,154.06540654065407,154.12541254125412,154.18541854185418,154.24542454245426,154.3054305430543,154.36543654365437,154.42544254425442,154.48544854485448,154.54545454545453,154.60546054605462,154.66546654665467,154.72547254725472,154.78547854785478,154.84548454845483,154.90549054905492,154.96549654965497,155.02550255025503,155.08550855085508,155.14551455145514,155.20552055205522,155.26552655265527,155.32553255325533,155.38553855385538,155.44554455445544,155.5055505550555,155.56555655565558,155.62556255625563,155.68556855685569,155.74557455745574,155.8055805580558,155.86558655865588,155.92559255925593,155.985598559856,156.04560456045604,156.1056105610561,156.16561656165618,156.22562256225623,156.2856285628563,156.34563456345634,156.4056405640564,156.46564656465645,156.52565256525654,156.5856585658566,156.64566456645665,156.7056705670567,156.76567656765675,156.82568256825684,156.8856885688569,156.94569456945695,157.005700570057,157.06570657065706,157.12571257125714,157.1857185718572,157.24572457245725,157.3057305730573,157.36573657365736,157.4257425742574,157.4857485748575,157.54575457545755,157.6057605760576,157.66576657665766,157.72577257725771,157.7857785778578,157.84578457845785,157.9057905790579,157.96579657965796,158.02580258025802,158.0858085808581,158.14581458145815,158.2058205820582,158.26582658265826,158.32583258325832,158.38583858385837,158.44584458445846,158.5058505850585,158.56585658565857,158.62586258625862,158.68586858685867,158.74587458745876,158.8058805880588,158.86588658865887,158.92589258925892,158.98589858985898,159.04590459045906,159.10591059105911,159.16591659165917,159.22592259225922,159.28592859285928,159.34593459345933,159.40594059405942,159.46594659465947,159.52595259525953,159.58595859585958,159.64596459645963,159.70597059705972,159.76597659765977,159.82598259825983,159.88598859885988,159.94599459945994,160.00600060006002,160.06600660066007,160.12601260126013,160.18601860186018,160.24602460246024,160.3060306030603,160.36603660366038,160.42604260426043,160.48604860486049,160.54605460546054,160.6060606060606,160.66606660666068,160.72607260726073,160.7860786078608,160.84608460846084,160.9060906090609,160.96609660966098,161.02610261026103,161.0861086108611,161.14611461146114,161.2061206120612,161.26612661266125,161.32613261326134,161.3861386138614,161.44614461446145,161.5061506150615,161.56615661566155,161.62616261626164,161.6861686168617,161.74617461746175,161.8061806180618,161.86618661866186,161.92619261926194,161.986198619862,162.04620462046205,162.1062106210621,162.16621662166216,162.2262226222622,162.2862286228623,162.34623462346235,162.4062406240624,162.46624662466246,162.52625262526252,162.5862586258626,162.64626462646265,162.7062706270627,162.76627662766276,162.82628262826282,162.8862886288629,162.94629462946295,163.006300630063,163.06630663066306,163.12631263126312,163.18631863186317,163.24632463246326,163.3063306330633,163.36633663366337,163.42634263426342,163.48634863486348,163.54635463546356,163.6063606360636,163.66636663666367,163.72637263726372,163.78637863786378,163.84638463846386,163.90639063906391,163.96639663966397,164.02640264026402,164.08640864086408,164.14641464146413,164.20642064206422,164.26642664266427,164.32643264326433,164.38643864386438,164.44644464446444,164.50645064506452,164.56645664566457,164.62646264626463,164.68646864686468,164.74647464746474,164.80648064806482,164.86648664866487,164.92649264926493,164.98649864986498,165.04650465046504,165.1065106510651,165.16651665166518,165.22652265226523,165.2865286528653,165.34653465346534,165.4065406540654,165.46654665466548,165.52655265526553,165.5865586558656,165.64656465646564,165.7065706570657,165.76657665766578,165.82658265826583,165.8865886588659,165.94659465946594,166.006600660066,166.06660666066605,166.12661266126614,166.1866186618662,166.24662466246625,166.3066306630663,166.36663666366636,166.42664266426644,166.4866486648665,166.54665466546655,166.6066606660666,166.66666666666666,166.72667266726674,166.7866786678668,166.84668466846685,166.9066906690669,166.96669666966696,167.026702670267,167.0867086708671,167.14671467146715,167.2067206720672,167.26672667266726,167.32673267326732,167.3867386738674,167.44674467446745,167.5067506750675,167.56675667566756,167.62676267626762,167.6867686768677,167.74677467746776,167.8067806780678,167.86678667866786,167.92679267926792,167.98679867986797,168.04680468046806,168.1068106810681,168.16681668166817,168.22682268226822,168.28682868286828,168.34683468346836,168.4068406840684,168.46684668466847,168.52685268526852,168.58685868586858,168.64686468646866,168.70687068706872,168.76687668766877,168.82688268826882,168.88688868886888,168.94689468946893,169.00690069006902,169.06690669066907,169.12691269126913,169.18691869186918,169.24692469246924,169.30693069306932,169.36693669366937,169.42694269426943,169.48694869486948,169.54695469546954,169.60696069606962,169.66696669666968,169.72697269726973,169.78697869786978,169.84698469846984,169.9069906990699,169.96699669966998,170.02700270027003,170.0870087008701,170.14701470147014,170.2070207020702,170.26702670267028,170.32703270327033,170.3870387038704,170.44704470447044,170.5070507050705,170.56705670567058,170.62706270627064,170.6870687068707,170.74707470747074,170.8070807080708,170.86708670867085,170.92709270927094,170.987098709871,171.04710471047105,171.1071107110711,171.16711671167116,171.22712271227124,171.2871287128713,171.34713471347135,171.4071407140714,171.46714671467146,171.52715271527154,171.5871587158716,171.64716471647165,171.7071707170717,171.76717671767176,171.8271827182718,171.8871887188719,171.94719471947195,172.007200720072,172.06720672067206,172.12721272127212,172.1872187218722,172.24722472247225,172.3072307230723,172.36723672367236,172.42724272427242,172.4872487248725,172.54725472547256,172.6072607260726,172.66726672667266,172.72727272727272,172.78727872787277,172.84728472847286,172.9072907290729,172.96729672967297,173.02730273027302,173.08730873087308,173.14731473147316,173.2073207320732,173.26732673267327,173.32733273327332,173.38733873387338,173.44734473447346,173.50735073507352,173.56735673567357,173.62736273627362,173.68736873687368,173.74737473747373,173.80738073807382,173.86738673867387,173.92739273927393,173.98739873987398,174.04740474047404,174.10741074107412,174.16741674167417,174.22742274227423,174.28742874287428,174.34743474347434,174.40744074407442,174.46744674467448,174.52745274527453,174.58745874587459,174.64746474647464,174.7074707470747,174.76747674767478,174.82748274827483,174.8874887488749,174.94749474947494,175.007500750075,175.06750675067508,175.12751275127513,175.1875187518752,175.24752475247524,175.3075307530753,175.36753675367538,175.42754275427544,175.4875487548755,175.54755475547555,175.6075607560756,175.66756675667565,175.72757275727574,175.7875787578758,175.84758475847585,175.9075907590759,175.96759675967596,176.02760276027604,176.0876087608761,176.14761476147615,176.2076207620762,176.26762676267626,176.32763276327634,176.3876387638764,176.44764476447645,176.5076507650765,176.56765676567656,176.62766276627661,176.6876687668767,176.74767476747675,176.8076807680768,176.86768676867686,176.92769276927692,176.987698769877,177.04770477047705,177.1077107710771,177.16771677167716,177.22772277227722,177.2877287728773,177.34773477347736,177.4077407740774,177.46774677467747,177.52775277527752,177.58775877587757,177.64776477647766,177.7077707770777,177.76777677767777,177.82778277827782,177.88778877887788,177.94779477947796,178.00780078007801,178.06780678067807,178.12781278127812,178.18781878187818,178.24782478247826,178.30783078307832,178.36783678367837,178.42784278427843,178.48784878487848,178.54785478547853,178.60786078607862,178.66786678667867,178.72787278727873,178.78787878787878,178.84788478847884,178.90789078907892,178.96789678967897,179.02790279027903,179.08790879087908,179.14791479147914,179.20792079207922,179.26792679267928,179.32793279327933,179.38793879387939,179.44794479447944,179.5079507950795,179.56795679567958,179.62796279627963,179.6879687968797,179.74797479747974,179.8079807980798,179.86798679867988,179.92799279927993,179.98799879988,180.04800480048004,180.1080108010801,180.16801680168018,180.22802280228024,180.2880288028803,180.34803480348035,180.4080408040804,180.46804680468045,180.52805280528054,180.5880588058806,180.64806480648065,180.7080708070807,180.76807680768076,180.82808280828084,180.8880888088809,180.94809480948095,181.008100810081,181.06810681068106,181.12811281128114,181.1881188118812,181.24812481248125,181.3081308130813,181.36813681368136,181.42814281428141,181.4881488148815,181.54815481548155,181.6081608160816,181.66816681668166,181.72817281728172,181.7881788178818,181.84818481848185,181.9081908190819,181.96819681968196,182.02820282028202,182.0882088208821,182.14821482148216,182.2082208220822,182.26822682268227,182.32823282328232,182.38823882388238,182.44824482448246,182.5082508250825,182.56825682568257,182.62826282628262,182.68826882688268,182.74827482748276,182.80828082808281,182.86828682868287,182.92829282928292,182.98829882988298,183.04830483048306,183.10831083108312,183.16831683168317,183.22832283228323,183.28832883288328,183.34833483348334,183.40834083408342,183.46834683468347,183.52835283528353,183.58835883588358,183.64836483648364,183.70837083708372,183.76837683768377,183.82838283828383,183.88838883888388,183.94839483948394,184.00840084008402,184.06840684068408,184.12841284128413,184.1884188418842,184.24842484248424,184.3084308430843,184.36843684368438,184.42844284428443,184.4884488448845,184.54845484548454,184.6084608460846,184.66846684668468,184.72847284728473,184.7884788478848,184.84848484848484,184.9084908490849,184.96849684968498,185.02850285028504,185.0885088508851,185.14851485148515,185.2085208520852,185.26852685268526,185.32853285328534,185.3885388538854,185.44854485448545,185.5085508550855,185.56855685568556,185.62856285628564,185.6885688568857,185.74857485748575,185.8085808580858,185.86858685868586,185.92859285928594,185.988598859886,186.04860486048605,186.1086108610861,186.16861686168616,186.22862286228622,186.2886288628863,186.34863486348635,186.4086408640864,186.46864686468646,186.52865286528652,186.5886588658866,186.64866486648666,186.7086708670867,186.76867686768676,186.82868286828682,186.8886888688869,186.94869486948696,187.008700870087,187.06870687068707,187.12871287128712,187.18871887188718,187.24872487248726,187.3087308730873,187.36873687368737,187.42874287428742,187.48874887488748,187.54875487548756,187.60876087608762,187.66876687668767,187.72877287728772,187.78877887788778,187.84878487848786,187.90879087908792,187.96879687968797,188.02880288028803,188.08880888088808,188.14881488148814,188.20882088208822,188.26882688268827,188.32883288328833,188.38883888388838,188.44884488448844,188.50885088508852,188.56885688568858,188.62886288628863,188.68886888688868,188.74887488748874,188.80888088808882,188.86888688868888,188.92889288928893,188.988898889889,189.04890489048904,189.1089108910891,189.16891689168918,189.22892289228923,189.2889288928893,189.34893489348934,189.4089408940894,189.46894689468948,189.52895289528954,189.5889588958896,189.64896489648964,189.7089708970897,189.76897689768978,189.82898289828984,189.8889888988899,189.94899489948995,190.00900090009,190.06900690069006,190.12901290129014,190.1890189018902,190.24902490249025,190.3090309030903,190.36903690369036,190.42904290429044,190.4890489048905,190.54905490549055,190.6090609060906,190.66906690669066,190.72907290729074,190.7890789078908,190.84908490849085,190.9090909090909,190.96909690969096,191.02910291029102,191.0891089108911,191.14911491149115,191.2091209120912,191.26912691269126,191.32913291329132,191.3891389138914,191.44914491449146,191.5091509150915,191.56915691569156,191.62916291629162,191.6891689168917,191.74917491749176,191.8091809180918,191.86918691869187,191.92919291929192,191.98919891989198,192.04920492049206,192.1092109210921,192.16921692169217,192.22922292229222,192.28922892289228,192.34923492349236,192.40924092409242,192.46924692469247,192.52925292529252,192.58925892589258,192.64926492649266,192.70927092709272,192.76927692769277,192.82928292829283,192.88928892889288,192.94929492949294,193.00930093009302,193.06930693069307,193.12931293129313,193.18931893189318,193.24932493249324,193.30933093309332,193.36933693369338,193.42934293429343,193.48934893489348,193.54935493549354,193.60936093609362,193.66936693669368,193.72937293729373,193.7893789378938,193.84938493849384,193.9093909390939,193.96939693969398,194.02940294029403,194.0894089408941,194.14941494149414,194.2094209420942,194.26942694269428,194.32943294329434,194.3894389438944,194.44944494449445,194.5094509450945,194.56945694569458,194.62946294629464,194.6894689468947,194.74947494749475,194.8094809480948,194.86948694869486,194.92949294929494,194.989498949895,195.04950495049505,195.1095109510951,195.16951695169516,195.22952295229524,195.2895289528953,195.34953495349535,195.4095409540954,195.46954695469546,195.52955295529554,195.5895589558956,195.64956495649565,195.7095709570957,195.76957695769576,195.82958295829582,195.8895889588959,195.94959495949595,196.009600960096,196.06960696069606,196.12961296129612,196.1896189618962,196.24962496249626,196.3096309630963,196.36963696369637,196.42964296429642,196.4896489648965,196.54965496549656,196.6096609660966,196.66966696669667,196.72967296729672,196.78967896789678,196.84968496849686,196.9096909690969,196.96969696969697,197.02970297029702,197.08970897089708,197.14971497149716,197.20972097209722,197.26972697269727,197.32973297329733,197.38973897389738,197.44974497449746,197.50975097509752,197.56975697569757,197.62976297629763,197.68976897689768,197.74977497749774,197.80978097809782,197.86978697869787,197.92979297929793,197.98979897989798,198.04980498049804,198.10981098109812,198.16981698169818,198.22982298229823,198.28982898289829,198.34983498349834,198.40984098409842,198.46984698469848,198.52985298529853,198.5898589858986,198.64986498649864,198.7098709870987,198.76987698769878,198.82988298829883,198.8898889888989,198.94989498949894,199.009900990099,199.06990699069908,199.12991299129914,199.1899189918992,199.24992499249925,199.3099309930993,199.36993699369938,199.42994299429944,199.4899489948995,199.54995499549955,199.6099609960996,199.66996699669966,199.72997299729974,199.7899789978998,199.84998499849985,199.9099909990999,199.96999699969996,200.03000300030004,200.0900090009001,200.15001500150015,200.2100210021002,200.27002700270026,200.33003300330034,200.3900390039004,200.45004500450045,200.5100510051005,200.57005700570056,200.63006300630062,200.6900690069007,200.75007500750075,200.8100810081008,200.87008700870086,200.93009300930092,200.990099009901,201.05010501050106,201.1101110111011,201.17011701170117,201.23012301230122,201.2901290129013,201.35013501350136,201.4101410141014,201.47014701470147,201.53015301530152,201.59015901590158,201.65016501650166,201.71017101710171,201.77017701770177,201.83018301830182,201.89018901890188,201.95019501950196,202.01020102010202,202.07020702070207,202.13021302130213,202.19021902190218,202.25022502250226,202.31023102310232,202.37023702370237,202.43024302430243,202.49024902490248,202.55025502550254,202.61026102610262,202.67026702670267,202.73027302730273,202.79027902790278,202.85028502850284,202.91029102910292,202.97029702970298,203.03030303030303,203.0903090309031,203.15031503150314,203.21032103210322,203.27032703270328,203.33033303330333,203.3903390339034,203.45034503450344,203.5103510351035,203.57035703570358,203.63036303630363,203.6903690369037,203.75037503750374,203.8103810381038,203.87038703870388,203.93039303930394,203.990399039904,204.05040504050405,204.1104110411041,204.17041704170418,204.23042304230424,204.2904290429043,204.35043504350435,204.4104410441044,204.47044704470446,204.53045304530454,204.5904590459046,204.65046504650465,204.7104710471047,204.77047704770476,204.83048304830484,204.8904890489049,204.95049504950495,205.010501050105,205.07050705070506,205.13051305130514,205.1905190519052,205.25052505250525,205.3105310531053,205.37053705370536,205.43054305430542,205.4905490549055,205.55055505550555,205.6105610561056,205.67056705670566,205.73057305730572,205.7905790579058,205.85058505850586,205.9105910591059,205.97059705970597,206.03060306030602,206.0906090609061,206.15061506150616,206.2106210621062,206.27062706270627,206.33063306330632,206.39063906390638,206.45064506450646,206.51065106510652,206.57065706570657,206.63066306630662,206.69066906690668,206.75067506750676,206.81068106810682,206.87068706870687,206.93069306930693,206.99069906990698,207.05070507050706,207.11071107110712,207.17071707170717,207.23072307230723,207.29072907290728,207.35073507350734,207.41074107410742,207.47074707470748,207.53075307530753,207.59075907590758,207.65076507650764,207.71077107710772,207.77077707770778,207.83078307830783,207.8907890789079,207.95079507950794,208.01080108010802,208.07080708070808,208.13081308130813,208.1908190819082,208.25082508250824,208.3108310831083,208.37083708370838,208.43084308430844,208.4908490849085,208.55085508550854,208.6108610861086,208.67086708670868,208.73087308730874,208.7908790879088,208.85088508850885,208.9108910891089,208.97089708970898,209.03090309030904,209.0909090909091,209.15091509150915,209.2109210921092,209.27092709270926,209.33093309330934,209.3909390939094,209.45094509450945,209.5109510951095,209.57095709570956,209.63096309630964,209.6909690969097,209.75097509750975,209.8109810981098,209.87098709870986,209.93099309930994,209.99099909991,210.05100510051005,210.1110111011101,210.17101710171016,210.23102310231022,210.2910291029103,210.35103510351036,210.4110411041104,210.47104710471046,210.53105310531052,210.5910591059106,210.65106510651066,210.7110711071107,210.77107710771077,210.83108310831082,210.8910891089109,210.95109510951096,211.011101110111,211.07110711071107,211.13111311131112,211.19111911191118,211.25112511251126,211.31113111311132,211.37113711371137,211.43114311431142,211.49114911491148,211.55115511551156,211.61116111611162,211.67116711671167,211.73117311731173,211.79117911791178,211.85118511851186,211.91119111911192,211.97119711971197,212.03120312031203,212.09120912091208,212.15121512151214,212.21122112211222,212.27122712271228,212.33123312331233,212.39123912391238,212.45124512451244,212.51125112511252,212.57125712571258,212.63126312631263,212.6912691269127,212.75127512751274,212.81128112811282,212.87128712871288,212.93129312931293,212.991299129913,213.05130513051304,213.1113111311131,213.17131713171318,213.23132313231324,213.2913291329133,213.35133513351334,213.4113411341134,213.47134713471348,213.53135313531354,213.5913591359136,213.65136513651365,213.7113711371137,213.77137713771378,213.83138313831384,213.8913891389139,213.95139513951395,214.011401140114,214.07140714071406,214.13141314131414,214.1914191419142,214.25142514251425,214.3114311431143,214.37143714371436,214.43144314431444,214.4914491449145,214.55145514551455,214.6114611461146,214.67146714671466,214.73147314731474,214.7914791479148,214.85148514851485,214.9114911491149,214.97149714971496,215.03150315031502,215.0915091509151,215.15151515151516,215.2115211521152,215.27152715271527,215.33153315331532,215.3915391539154,215.45154515451546,215.5115511551155,215.57155715571557,215.63156315631562,215.6915691569157,215.75157515751576,215.8115811581158,215.87158715871587,215.93159315931592,215.99159915991598,216.05160516051606,216.11161116111612,216.17161716171617,216.23162316231623,216.29162916291628,216.35163516351636,216.41164116411642,216.47164716471647,216.53165316531653,216.59165916591658,216.65166516651666,216.71167116711672,216.77167716771677,216.83168316831683,216.89168916891688,216.95169516951694,217.01170117011702,217.07170717071708,217.13171317131713,217.19171917191719,217.25172517251724,217.31173117311732,217.37173717371738,217.43174317431743,217.4917491749175,217.55175517551754,217.61176117611762,217.67176717671768,217.73177317731773,217.7917791779178,217.85178517851784,217.9117911791179,217.97179717971798,218.03180318031804,218.0918091809181,218.15181518151815,218.2118211821182,218.27182718271828,218.33183318331834,218.3918391839184,218.45184518451845,218.5118511851185,218.57185718571859,218.63186318631864,218.6918691869187,218.75187518751875,218.8118811881188,218.87188718871886,218.93189318931894,218.991899189919,219.05190519051905,219.1119111911191,219.17191719171916,219.23192319231924,219.2919291929193,219.35193519351935,219.4119411941194,219.47194719471946,219.53195319531955,219.5919591959196,219.65196519651965,219.7119711971197,219.77197719771976,219.83198319831982,219.8919891989199,219.95199519951996,220.01200120012,220.07200720072007,220.13201320132012,220.1920192019202,220.25202520252026,220.3120312031203,220.37203720372037,220.43204320432042,220.4920492049205,220.55205520552056,220.61206120612061,220.67206720672067,220.73207320732072,220.79207920792078,220.85208520852086,220.91209120912092,220.97209720972097,221.03210321032103,221.09210921092108,221.15211521152116,221.21212121212122,221.27212721272127,221.33213321332133,221.39213921392138,221.45214521452147,221.51215121512152,221.57215721572157,221.63216321632163,221.69216921692168,221.75217521752174,221.81218121812182,221.87218721872188,221.93219321932193,221.99219921992199,222.05220522052204,222.11221122112212,222.17221722172218,222.23222322232223,222.2922292229223,222.35223522352234,222.41224122412243,222.47224722472248,222.53225322532253,222.5922592259226,222.65226522652264,222.7122712271227,222.77227722772278,222.83228322832284,222.8922892289229,222.95229522952295,223.012301230123,223.07230723072308,223.13231323132314,223.1923192319232,223.25232523252325,223.3123312331233,223.37233723372339,223.43234323432344,223.4923492349235,223.55235523552355,223.6123612361236,223.67236723672366,223.73237323732374,223.7923792379238,223.85238523852385,223.9123912391239,223.97239723972396,224.03240324032404,224.0924092409241,224.15241524152415,224.2124212421242,224.27242724272426,224.33243324332435,224.3924392439244,224.45244524452445,224.5124512451245,224.57245724572456,224.63246324632462,224.6924692469247,224.75247524752476,224.8124812481248,224.87248724872487,224.93249324932492,224.992499249925,225.05250525052506,225.1125112511251,225.17251725172517,225.23252325232522,225.2925292529253,225.35253525352536,225.41254125412541,225.47254725472547,225.53255325532552,225.59255925592558,225.65256525652566,225.71257125712572,225.77257725772577,225.83258325832583,225.89258925892588,225.95259525952596,226.01260126012602,226.07260726072607,226.13261326132613,226.19261926192618,226.25262526252627,226.31263126312632,226.37263726372638,226.43264326432643,226.49264926492648,226.55265526552654,226.61266126612662,226.67266726672668,226.73267326732673,226.7926792679268,226.85268526852684,226.91269126912692,226.97269726972698,227.03270327032703,227.0927092709271,227.15271527152714,227.21272127212723,227.27272727272728,227.33273327332734,227.3927392739274,227.45274527452744,227.5127512751275,227.57275727572758,227.63276327632764,227.6927692769277,227.75277527752775,227.8127812781278,227.87278727872788,227.93279327932794,227.992799279928,228.05280528052805,228.1128112811281,228.1728172817282,228.23282328232824,228.2928292829283,228.35283528352835,228.4128412841284,228.47284728472846,228.53285328532854,228.5928592859286,228.65286528652865,228.7128712871287,228.77287728772876,228.83288328832884,228.8928892889289,228.95289528952895,229.012901290129,229.07290729072906,229.13291329132915,229.1929192919292,229.25292529252926,229.3129312931293,229.37293729372936,229.43294329432942,229.4929492949295,229.55295529552956,229.6129612961296,229.67296729672967,229.73297329732972,229.7929792979298,229.85298529852986,229.9129912991299,229.97299729972997,230.03300330033002,230.0930093009301,230.15301530153016,230.21302130213022,230.27302730273027,230.33303330333032,230.39303930393038,230.45304530453046,230.51305130513052,230.57305730573057,230.63306330633063,230.69306930693068,230.75307530753076,230.81308130813082,230.87308730873087,230.93309330933093,230.99309930993098,231.05310531053107,231.11311131113112,231.17311731173118,231.23312331233123,231.29312931293128,231.35313531353134,231.41314131413142,231.47314731473148,231.53315331533153,231.5931593159316,231.65316531653164,231.71317131713172,231.77317731773178,231.83318331833183,231.8931893189319,231.95319531953194,232.01320132013203,232.07320732073208,232.13321332133214,232.1932193219322,232.25322532253224,232.3132313231323,232.37323732373238,232.43324332433244,232.4932493249325,232.55325532553255,232.6132613261326,232.67326732673268,232.73327332733274,232.7932793279328,232.85328532853285,232.9132913291329,232.973297329733,233.03330333033304,233.0933093309331,233.15331533153315,233.2133213321332,233.27332733273326,233.33333333333334,233.3933393339334,233.45334533453345,233.5133513351335,233.57335733573356,233.63336333633364,233.6933693369337,233.75337533753375,233.8133813381338,233.87338733873386,233.93339333933395,233.993399339934,234.05340534053406,234.1134113411341,234.17341734173417,234.23342334233422,234.2934293429343,234.35343534353436,234.4134413441344,234.47344734473447,234.53345334533452,234.5934593459346,234.65346534653466,234.7134713471347,234.77347734773477,234.83348334833482,234.8934893489349,234.95349534953496,235.01350135013502,235.07350735073507,235.13351335133513,235.19351935193518,235.25352535253526,235.31353135313532,235.37353735373537,235.43354335433543,235.49354935493548,235.55355535553556,235.61356135613562,235.67356735673567,235.73357335733573,235.79357935793578,235.85358535853587,235.91359135913592,235.97359735973598,236.03360336033603,236.09360936093609,236.15361536153614,236.21362136213622,236.27362736273628,236.33363336333633,236.3936393639364,236.45364536453644,236.51365136513652,236.57365736573658,236.63366336633663,236.6936693669367,236.75367536753674,236.81368136813683,236.87368736873688,236.93369336933694,236.993699369937,237.05370537053705,237.1137113711371,237.17371737173718,237.23372337233724,237.2937293729373,237.35373537353735,237.4137413741374,237.47374737473748,237.53375337533754,237.5937593759376,237.65376537653765,237.7137713771377,237.7737773777378,237.83378337833784,237.8937893789379,237.95379537953795,238.013801380138,238.07380738073806,238.13381338133814,238.1938193819382,238.25382538253825,238.3138313831383,238.37383738373836,238.43384338433845,238.4938493849385,238.55385538553855,238.6138613861386,238.67386738673866,238.73387338733875,238.7938793879388,238.85388538853886,238.9138913891389,238.97389738973897,239.03390339033902,239.0939093909391,239.15391539153916,239.2139213921392,239.27392739273927,239.33393339333932,239.3939393939394,239.45394539453946,239.51395139513951,239.57395739573957,239.63396339633962,239.6939693969397,239.75397539753976,239.81398139813982,239.87398739873987,239.93399339933993,239.99399939993998,240.05400540054006,240.11401140114012,240.17401740174017,240.23402340234023,240.29402940294028,240.35403540354037,240.41404140414042,240.47404740474047,240.53405340534053,240.59405940594058,240.65406540654067,240.71407140714072,240.77407740774078,240.83408340834083,240.89408940894089,240.95409540954094,241.01410141014102,241.07410741074108,241.13411341134113,241.1941194119412,241.25412541254124,241.31413141314133,241.37413741374138,241.43414341434143,241.4941494149415,241.55415541554154,241.61416141614163,241.67416741674168,241.73417341734174,241.7941794179418,241.85418541854185,241.9141914191419,241.97419741974198,242.03420342034204,242.0942094209421,242.15421542154215,242.2142214221422,242.27422742274229,242.33423342334234,242.3942394239424,242.45424542454245,242.5142514251425,242.5742574257426,242.63426342634264,242.6942694269427,242.75427542754275,242.8142814281428,242.87428742874286,242.93429342934294,242.994299429943,243.05430543054305,243.1143114311431,243.17431743174316,243.23432343234325,243.2943294329433,243.35433543354335,243.4143414341434,243.47434743474346,243.53435343534355,243.5943594359436,243.65436543654366,243.7143714371437,243.77437743774377,243.83438343834382,243.8943894389439,243.95439543954396,244.014401440144,244.07440744074407,244.13441344134412,244.1944194419442,244.25442544254426,244.31443144314431,244.37443744374437,244.43444344434442,244.4944494449445,244.55445544554456,244.61446144614462,244.67446744674467,244.73447344734473,244.79447944794478,244.85448544854486,244.91449144914492,244.97449744974497,245.03450345034503,245.09450945094508,245.15451545154517,245.21452145214522,245.27452745274528,245.33453345334533,245.39453945394538,245.45454545454547,245.51455145514552,245.57455745574558,245.63456345634563,245.6945694569457,245.75457545754574,245.81458145814582,245.87458745874588,245.93459345934593,245.994599459946,246.05460546054604,246.11461146114613,246.17461746174618,246.23462346234624,246.2946294629463,246.35463546354634,246.41464146414643,246.47464746474648,246.53465346534654,246.5946594659466,246.65466546654665,246.7146714671467,246.77467746774678,246.83468346834684,246.8946894689469,246.95469546954695,247.014701470147,247.0747074707471,247.13471347134714,247.1947194719472,247.25472547254725,247.3147314731473,247.3747374737474,247.43474347434744,247.4947494749475,247.55475547554755,247.6147614761476,247.67476747674766,247.73477347734774,247.7947794779478,247.85478547854785,247.9147914791479,247.97479747974796,248.03480348034805,248.0948094809481,248.15481548154816,248.2148214821482,248.27482748274826,248.33483348334835,248.3948394839484,248.45484548454846,248.5148514851485,248.57485748574857,248.63486348634862,248.6948694869487,248.75487548754876,248.8148814881488,248.87488748874887,248.93489348934892,248.994899489949,249.05490549054906,249.11491149114912,249.17491749174917,249.23492349234922,249.2949294929493,249.35493549354936,249.41494149414942,249.47494749474947,249.53495349534953,249.59495949594958,249.65496549654966,249.71497149714972,249.77497749774977,249.83498349834983,249.89498949894988,249.95499549954997,250.01500150015002,250.07500750075008,250.13501350135013,250.19501950195018,250.25502550255027,250.31503150315032,250.37503750375038,250.43504350435043,250.4950495049505,250.55505550555054,250.61506150615062,250.67506750675068,250.73507350735073,250.7950795079508,250.85508550855084,250.91509150915093,250.97509750975098,251.03510351035104,251.0951095109511,251.15511551155114,251.21512151215123,251.27512751275128,251.33513351335134,251.3951395139514,251.45514551455145,251.5151515151515,251.57515751575158,251.63516351635164,251.6951695169517,251.75517551755175,251.8151815181518,251.8751875187519,251.93519351935194,251.995199519952,252.05520552055205,252.1152115211521,252.1752175217522,252.23522352235224,252.2952295229523,252.35523552355235,252.4152415241524,252.47524752475246,252.53525352535254,252.5952595259526,252.65526552655265,252.7152715271527,252.77527752775276,252.83528352835285,252.8952895289529,252.95529552955296,253.015301530153,253.07530753075307,253.13531353135315,253.1953195319532,253.25532553255326,253.3153315331533,253.37533753375337,253.43534353435342,253.4953495349535,253.55535553555356,253.6153615361536,253.67536753675367,253.73537353735372,253.7953795379538,253.85538553855386,253.91539153915392,253.97539753975397,254.03540354035403,254.0954095409541,254.15541554155416,254.21542154215422,254.27542754275427,254.33543354335433,254.39543954395438,254.45544554455446,254.51545154515452,254.57545754575457,254.63546354635463,254.69546954695468,254.75547554755477,254.81548154815482,254.87548754875488,254.93549354935493,254.99549954995499,255.05550555055507,255.11551155115512,255.17551755175518,255.23552355235523,255.2955295529553,255.35553555355534,255.41554155415542,255.47554755475548,255.53555355535553,255.5955595559556,255.65556555655564,255.71557155715573,255.77557755775578,255.83558355835584,255.8955895589559,255.95559555955595,256.01560156015603,256.07560756075605,256.13561356135614,256.1956195619562,256.25562556255625,256.31563156315633,256.37563756375636,256.43564356435644,256.4956495649565,256.55565556555655,256.61566156615663,256.67566756675666,256.73567356735674,256.79567956795677,256.85568556855685,256.91569156915693,256.97569756975696,257.03570357035704,257.09570957095707,257.15571557155715,257.21572157215724,257.27572757275726,257.33573357335734,257.39573957395737,257.45574557455745,257.51575157515754,257.57575757575756,257.63576357635765,257.6957695769577,257.75577557755776,257.81578157815784,257.87578757875787,257.93579357935795,257.995799579958,258.05580558055806,258.11581158115814,258.17581758175817,258.23582358235825,258.2958295829583,258.35583558355836,258.41584158415844,258.47584758475847,258.53585358535855,258.5958595859586,258.65586558655866,258.7158715871587,258.77587758775877,258.83588358835885,258.8958895889589,258.95589558955896,259.015901590159,259.0759075907591,259.13591359135916,259.1959195919592,259.25592559255927,259.3159315931593,259.3759375937594,259.43594359435946,259.4959495949595,259.55595559555957,259.6159615961596,259.6759675967597,259.73597359735976,259.7959795979598,259.85598559855987,259.9159915991599,259.97599759976,260.03600360036006,260.0960096009601,260.15601560156017,260.2160216021602,260.2760276027603,260.33603360336036,260.3960396039604,260.4560456045605,260.5160516051605,260.5760576057606,260.6360636063606,260.6960696069607,260.7560756075608,260.8160816081608,260.8760876087609,260.9360936093609,260.996099609961,261.0561056105611,261.1161116111611,261.1761176117612,261.2361236123612,261.2961296129613,261.3561356135614,261.4161416141614,261.4761476147615,261.5361536153615,261.5961596159616,261.6561656165617,261.7161716171617,261.7761776177618,261.8361836183618,261.8961896189619,261.956195619562,262.016201620162,262.0762076207621,262.1362136213621,262.1962196219622,262.2562256225623,262.3162316231623,262.3762376237624,262.4362436243624,262.4962496249625,262.5562556255625,262.6162616261626,262.6762676267627,262.7362736273627,262.7962796279628,262.85628562856283,262.9162916291629,262.976297629763,263.036303630363,263.0963096309631,263.15631563156313,263.2163216321632,263.2763276327633,263.3363336333633,263.3963396339634,263.45634563456343,263.5163516351635,263.5763576357636,263.6363636363636,263.6963696369637,263.75637563756374,263.8163816381638,263.8763876387639,263.9363936393639,263.996399639964,264.05640564056404,264.1164116411641,264.1764176417642,264.23642364236423,264.2964296429643,264.35643564356434,264.4164416441644,264.47644764476445,264.53645364536453,264.5964596459646,264.65646564656464,264.7164716471647,264.77647764776475,264.83648364836483,264.8964896489649,264.95649564956494,265.016501650165,265.07650765076505,265.13651365136514,265.1965196519652,265.25652565256524,265.3165316531653,265.37653765376535,265.43654365436544,265.4965496549655,265.55655565556555,265.61656165616563,265.67656765676566,265.73657365736574,265.7965796579658,265.85658565856585,265.91659165916593,265.97659765976596,266.03660366036604,266.0966096609661,266.15661566156615,266.21662166216623,266.27662766276626,266.33663366336634,266.39663966396637,266.45664566456645,266.51665166516653,266.57665766576656,266.63666366636664,266.69666966696667,266.75667566756675,266.81668166816684,266.87668766876686,266.93669366936695,266.996699669967,267.05670567056706,267.11671167116714,267.17671767176716,267.23672367236725,267.2967296729673,267.35673567356736,267.41674167416744,267.47674767476747,267.53675367536755,267.5967596759676,267.65676567656766,267.71677167716774,267.77677767776777,267.83678367836785,267.8967896789679,267.95679567956796,268.01680168016804,268.07680768076807,268.13681368136815,268.1968196819682,268.25682568256826,268.3168316831683,268.3768376837684,268.43684368436845,268.4968496849685,268.55685568556856,268.6168616861686,268.6768676867687,268.73687368736876,268.7968796879688,268.85688568856887,268.9168916891689,268.976897689769,269.03690369036906,269.0969096909691,269.15691569156917,269.2169216921692,269.2769276927693,269.33693369336936,269.3969396939694,269.45694569456947,269.5169516951695,269.5769576957696,269.63696369636966,269.6969696969697,269.75697569756977,269.8169816981698,269.8769876987699,269.93699369936996,269.99699969997,270.0570057005701,270.1170117011701,270.1770177017702,270.2370237023702,270.2970297029703,270.3570357035704,270.4170417041704,270.4770477047705,270.5370537053705,270.5970597059706,270.6570657065707,270.7170717071707,270.7770777077708,270.8370837083708,270.8970897089709,270.957095709571,271.017101710171,271.0771077107711,271.1371137113711,271.1971197119712,271.2571257125713,271.3171317131713,271.3771377137714,271.4371437143714,271.4971497149715,271.5571557155716,271.6171617161716,271.6771677167717,271.7371737173717,271.7971797179718,271.8571857185719,271.9171917191719,271.977197719772,272.037203720372,272.0972097209721,272.15721572157213,272.2172217221722,272.2772277227723,272.3372337233723,272.3972397239724,272.45724572457243,272.5172517251725,272.5772577257726,272.6372637263726,272.6972697269727,272.75727572757273,272.8172817281728,272.8772877287729,272.9372937293729,272.997299729973,273.05730573057303,273.1173117311731,273.1773177317732,273.2373237323732,273.2973297329733,273.35733573357334,273.4173417341734,273.4773477347735,273.53735373537353,273.5973597359736,273.65736573657364,273.7173717371737,273.7773777377738,273.83738373837383,273.8973897389739,273.95739573957394,274.017401740174,274.07740774077405,274.13741374137413,274.1974197419742,274.25742574257424,274.3174317431743,274.37743774377435,274.43744374437443,274.4974497449745,274.55745574557454,274.6174617461746,274.67746774677465,274.73747374737474,274.7974797479748,274.85748574857485,274.9174917491749,274.97749774977495,275.03750375037504,275.0975097509751,275.15751575157515,275.21752175217523,275.27752775277526,275.33753375337534,275.3975397539754,275.45754575457545,275.51755175517553,275.57755775577556,275.63756375637564,275.6975697569757,275.75757575757575,275.81758175817583,275.87758775877586,275.93759375937594,275.99759975997597,276.05760576057605,276.11761176117614,276.17761776177616,276.23762376237624,276.29762976297627,276.35763576357635,276.41764176417644,276.47764776477646,276.53765376537655,276.5976597659766,276.65766576657666,276.71767176717674,276.77767776777677,276.83768376837685,276.8976897689769,276.95769576957696,277.01770177017704,277.07770777077707,277.13771377137715,277.1977197719772,277.25772577257726,277.31773177317734,277.37773777377737,277.43774377437745,277.4977497749775,277.55775577557756,277.61776177617764,277.67776777677767,277.73777377737775,277.7977797779778,277.85778577857786,277.9177917791779,277.977797779778,278.03780378037806,278.0978097809781,278.15781578157817,278.2178217821782,278.2778277827783,278.33783378337836,278.3978397839784,278.45784578457847,278.5178517851785,278.5778577857786,278.63786378637866,278.6978697869787,278.75787578757877,278.8178817881788,278.8778877887789,278.93789378937896,278.997899789979,279.05790579057907,279.1179117911791,279.1779177917792,279.23792379237926,279.2979297929793,279.3579357935794,279.4179417941794,279.4779477947795,279.53795379537956,279.5979597959796,279.6579657965797,279.7179717971797,279.7779777977798,279.8379837983798,279.8979897989799,279.95799579958,280.01800180018,280.0780078007801,280.1380138013801,280.1980198019802,280.2580258025803,280.3180318031803,280.3780378037804,280.4380438043804,280.4980498049805,280.5580558055806,280.6180618061806,280.6780678067807,280.7380738073807,280.7980798079808,280.8580858085809,280.9180918091809,280.978097809781,281.038103810381,281.0981098109811,281.1581158115812,281.2181218121812,281.2781278127813,281.3381338133813,281.3981398139814,281.4581458145815,281.5181518151815,281.5781578157816,281.6381638163816,281.6981698169817,281.75817581758173,281.8181818181818,281.8781878187819,281.9381938193819,281.998199819982,282.05820582058203,282.1182118211821,282.1782178217822,282.2382238223822,282.2982298229823,282.35823582358233,282.4182418241824,282.4782478247825,282.5382538253825,282.5982598259826,282.65826582658264,282.7182718271827,282.7782778277828,282.8382838283828,282.8982898289829,282.95829582958294,283.018301830183,283.0783078307831,283.13831383138313,283.1983198319832,283.25832583258324,283.3183318331833,283.3783378337834,283.43834383438343,283.4983498349835,283.55835583558354,283.6183618361836,283.67836783678365,283.73837383738373,283.7983798379838,283.85838583858384,283.9183918391839,283.97839783978395,284.03840384038403,284.0984098409841,284.15841584158414,284.2184218421842,284.27842784278425,284.33843384338434,284.3984398439844,284.45844584458445,284.51845184518453,284.57845784578456,284.63846384638464,284.6984698469847,284.75847584758475,284.81848184818483,284.87848784878486,284.93849384938494,284.998499849985,285.05850585058505,285.11851185118513,285.17851785178516,285.23852385238524,285.2985298529853,285.35853585358535,285.41854185418543,285.47854785478546,285.53855385538554,285.59855985598557,285.65856585658565,285.71857185718574,285.77857785778576,285.83858385838585,285.8985898589859,285.95859585958596,286.01860186018604,286.07860786078606,286.13861386138615,286.1986198619862,286.25862586258626,286.31863186318634,286.37863786378637,286.43864386438645,286.4986498649865,286.55865586558656,286.61866186618664,286.67866786678667,286.73867386738675,286.7986798679868,286.85868586858686,286.91869186918694,286.97869786978697,287.03870387038705,287.0987098709871,287.15871587158716,287.21872187218725,287.2787278727873,287.33873387338735,287.3987398739874,287.45874587458746,287.5187518751875,287.5787578757876,287.63876387638766,287.6987698769877,287.75877587758777,287.8187818781878,287.8787878787879,287.93879387938796,287.998799879988,288.05880588058807,288.1188118811881,288.1788178817882,288.23882388238826,288.2988298829883,288.35883588358837,288.4188418841884,288.4788478847885,288.53885388538856,288.5988598859886,288.65886588658867,288.7188718871887,288.7788778877888,288.83888388838886,288.8988898889889,288.958895889589,289.018901890189,289.0789078907891,289.13891389138917,289.1989198919892,289.2589258925893,289.3189318931893,289.3789378937894,289.4389438943894,289.4989498949895,289.5589558955896,289.6189618961896,289.6789678967897,289.7389738973897,289.7989798979898,289.8589858985899,289.9189918991899,289.97899789979,290.03900390039,290.0990099009901,290.1590159015902,290.2190219021902,290.2790279027903,290.3390339033903,290.3990399039904,290.4590459045905,290.5190519051905,290.5790579057906,290.6390639063906,290.6990699069907,290.7590759075908,290.8190819081908,290.8790879087909,290.9390939093909,290.999099909991,291.0591059105911,291.1191119111911,291.1791179117912,291.2391239123912,291.2991299129913,291.35913591359133,291.4191419141914,291.4791479147915,291.5391539153915,291.5991599159916,291.65916591659163,291.7191719171917,291.7791779177918,291.8391839183918,291.8991899189919,291.95919591959193,292.019201920192,292.0792079207921,292.1392139213921,292.1992199219922,292.25922592259224,292.3192319231923,292.3792379237924,292.43924392439243,292.4992499249925,292.55925592559254,292.6192619261926,292.6792679267927,292.73927392739273,292.7992799279928,292.85928592859284,292.9192919291929,292.979297929793,293.03930393039303,293.0993099309931,293.15931593159314,293.2193219321932,293.27932793279325,293.33933393339333,293.3993399339934,293.45934593459344,293.5193519351935,293.57935793579355,293.63936393639364,293.6993699369937,293.75937593759375,293.8193819381938,293.87938793879385,293.93939393939394,293.999399939994,294.05940594059405,294.11941194119413,294.17941794179416,294.23942394239424,294.2994299429943,294.35943594359435,294.41944194419443,294.47944794479446,294.53945394539454,294.5994599459946,294.65946594659465,294.71947194719473,294.77947794779476,294.83948394839484,294.8994899489949,294.95949594959495,295.01950195019504,295.07950795079506,295.13951395139514,295.19951995199517,295.25952595259525,295.31953195319534,295.37953795379536,295.43954395439545,295.4995499549955,295.55955595559556,295.61956195619564,295.67956795679567,295.73957395739575,295.7995799579958,295.85958595859586,295.91959195919594,295.97959795979597,296.03960396039605,296.0996099609961,296.15961596159616,296.21962196219624,296.27962796279627,296.33963396339635,296.3996399639964,296.45964596459646,296.51965196519654,296.57965796579657,296.63966396639665,296.6996699669967,296.75967596759676,296.81968196819685,296.8796879687969,296.93969396939696,296.999699969997,297.05970597059707,297.1197119711971,297.1797179717972,297.23972397239726,297.2997299729973,297.35973597359737,297.4197419741974,297.4797479747975,297.53975397539756,297.5997599759976,297.65976597659767,297.7197719771977,297.7797779777978,297.83978397839786,297.8997899789979,297.95979597959797,298.019801980198,298.0798079807981,298.13981398139816,298.1998199819982,298.2598259825983,298.3198319831983,298.3798379837984,298.43984398439846,298.4998499849985,298.5598559855986,298.6198619861986,298.6798679867987,298.73987398739877,298.7998799879988,298.8598859885989,298.9198919891989,298.979897989799,299.039903990399,299.0999099909991,299.1599159915992,299.2199219921992,299.2799279927993,299.3399339933993,299.3999399939994,299.4599459945995,299.5199519951995,299.5799579957996,299.6399639963996,299.6999699969997,299.7599759975998,299.8199819981998,299.8799879987999,299.9399939993999,300.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl new file mode 100644 index 000000000000..8de28714ae8b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl @@ -0,0 +1,63 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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, filepath ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: domain +* `filepath::AbstractString`: filepath of the output file + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"./data.json\" ); +``` +""" +function gen( x, filepath ) + y = Array{Float32}( undef, length(x) ); + for i in eachindex(x) + y[i] = exp( Float32.(x[i]) ); + end + + data = Dict([ + ("x", x), + ("expected", y) + ]); + + 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 ); + +x = range( -300, stop = 300, length = 10000 ); +out = joinpath( dir, "data.json" ); +gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c index cd42d5ed66b9..2d2098b66ef9 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c @@ -17,8 +17,8 @@ * limitations under the License. */ -#include "stdlib/math/base/special/expf.h" #include "stdlib/math/base/napi/unary.h" +#include "stdlib/math/base/special/expf.h" // cppcheck-suppress shadowFunction STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_expf ) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c index 8248bd8c27b2..bab19522cc2d 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c @@ -18,63 +18,35 @@ * * ## Notice * -* * The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified according to project conventions. -* -* ```text -* Copyright (c) 2009 The Go Authors. All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are -* met: -* -* * Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above -* copyright notice, this list of conditions and the following disclaimer -* in the documentation and/or other materials provided with the -* distribution. -* * Neither the name of Google Inc. nor the names of its -* contributors may be used to endorse or promote products derived from -* this software without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -* ``` -* -* ```text -* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. +* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript. * +* e_expf.c -- float version of e_exp.c. +* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. +* ==================================================== +* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. -* ``` +* ==================================================== */ -#include "stdlib/math/base/special/expf.h" -#include "stdlib/math/base/assert/is_nan.h" -#include "stdlib/math/base/special/truncf.h" #include "stdlib/constants/float32/ninf.h" #include "stdlib/constants/float32/pinf.h" +#include "stdlib/math/base/assert/is_nan.h" +#include "stdlib/math/base/special/expf.h" #include "stdlib/math/base/special/ldexpf.h" +#include "stdlib/math/base/special/truncf.h" #include -static const float LN2_HI = 0.69314718f; -static const float LN2_LO = 1.90821484e-10f; -static const float LOG2_E = 1.44269504f; -static const float EXP_OVERFLOW = 88.722839f; -static const float EXP_UNDERFLOW = -103.97208f; -static const float NEARZERO = 1.0f / (1 << 14); -static const float NEG_NEARZERO = -NEARZERO; +static const float LN2_HI = 0.69314718; +static const float LN2_LO = 1.4286067653e-06; +static const float LOG2_E = 1.4426950216; +static const float half[ 2 ] = { 0.5, -0.5 }; +static const float EXP_OVERFLOW = 88.721679688; +static const float EXP_UNDERFLOW = -103.97208405; +static const float NEARZERO = 1.0 / ( 1 << 14 ); +static const float NEG_NEARZERO = -1.0 / ( 1 << 14 ); /* Begin auto-generated functions. The following functions are auto-generated. Do not edit directly. */ @@ -93,7 +65,12 @@ static const float NEG_NEARZERO = -NEARZERO; * @return evaluated polynomial */ static float polyval_p( const float x ) { - return 0.16666667f + (x * (-0.0027777778f + (x * (0.000066137566f + (x * (-0.000001653439f + (x * 4.1381369e-8f))))))); + static const float P1 = 1.6666625440e-1; + static const float P2 = -2.7667332906e-3; + if ( x == 0.0 ) { + return P1; + } + return P1 + x * P2; } // END: polyval_p @@ -109,17 +86,19 @@ static float polyval_p( const float x ) { * @return function value */ static float expmulti( const float hi, const float lo, const int32_t k ) { - float r; - float t; - float c; - float y; + float r; + float t; + float c; + float y; + float twom100; - r = hi - lo; - t = r * r; - c = r - (t * polyval_p( t )); - y = 1.0f - (lo - ((r * c) / (2.0f - c)) - hi); + twom100 = 7.8886090522e-31; + r = hi - lo; + t = r * r; + c = r - ( t * polyval_p( t ) ); + y = 1.0 - ( lo - ( ( r * c ) / ( 2.0 - c ) ) - hi ); - return stdlib_base_ldexpf( y, k ); + return stdlib_base_ldexpf( y, k + 100 ) * twom100 * twom100; } /** @@ -221,33 +200,31 @@ static float expmulti( const float hi, const float lo, const int32_t k ) { * // returns 1.0f */ float stdlib_base_expf( const float x ) { - float hi; - float lo; - int32_t k; + float hi; + float lo; + int32_t k; + int xsb; + xsb = ( x < 0.0 ) ? 1 : 0; if ( stdlib_base_is_nan( x ) || x == STDLIB_CONSTANT_FLOAT32_PINF ) { - return x; - } - if ( x == STDLIB_CONSTANT_FLOAT32_NINF ) { - return 0.0f; - } - if ( x > EXP_OVERFLOW ) { - return STDLIB_CONSTANT_FLOAT32_PINF; - } - if ( x < EXP_UNDERFLOW ) { - return 0.0f; - } - if ( x > NEG_NEARZERO && x < NEARZERO ) { - return 1.0f + x; - } - // Reduce and compute `r = hi - lo` for extra precision... - if ( x < 0.0f ) { - k = stdlib_base_truncf( (LOG2_E * x) - 0.5f ); - } else { - k = stdlib_base_truncf( (LOG2_E * x) + 0.5f ); - } - hi = x - (k * LN2_HI); - lo = k * LN2_LO; + return x; + } + if ( x == STDLIB_CONSTANT_FLOAT32_NINF ) { + return 0.0; + } + if ( x > EXP_OVERFLOW ) { + return STDLIB_CONSTANT_FLOAT32_PINF; + } + if ( x < EXP_UNDERFLOW ) { + return 0.0; + } + if ( x > NEG_NEARZERO && x < NEARZERO ) { + return 1.0 + x; + } + // Reduce and compute `r = hi - lo` for extra precision... + k = stdlib_base_truncf( ( LOG2_E * x ) + half[ xsb ] ); + hi = x - ( k * LN2_HI ); + lo = k * LN2_LO; - return expmulti( hi, lo, k ); + return expmulti( hi, lo, k ); } From 9b3a5c1d704a9ee156df1ed9c4eb74e39734cfb7 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 23:46:13 +0530 Subject: [PATCH 08/18] updated main.c --- .../@stdlib/math/base/special/expf/src/addon.c | 2 +- lib/node_modules/@stdlib/math/base/special/expf/src/main.c | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c index 2d2098b66ef9..7bc9aef48c76 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c @@ -21,4 +21,4 @@ #include "stdlib/math/base/special/expf.h" // cppcheck-suppress shadowFunction -STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_expf ) +STDLIB_MATH_BASE_NAPI_MODULE_C_C( stdlib_base_expf ) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c index bab19522cc2d..5b9674438313 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c @@ -97,8 +97,11 @@ static float expmulti( const float hi, const float lo, const int32_t k ) { t = r * r; c = r - ( t * polyval_p( t ) ); y = 1.0 - ( lo - ( ( r * c ) / ( 2.0 - c ) ) - hi ); - - return stdlib_base_ldexpf( y, k + 100 ) * twom100 * twom100; + if ( k >= -125 ) { + return stdlib_base_ldexpf( y, k ); + } else { + return stdlib_base_ldexpf( y, k + 100 ) * twom100 * twom100; + } } /** From 9bded14032d31dce6d75ba4148a080a14013b841 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Wed, 4 Dec 2024 23:59:14 +0530 Subject: [PATCH 09/18] updated main.c --- lib/node_modules/@stdlib/math/base/special/expf/src/addon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c index 7bc9aef48c76..b8812a179852 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c @@ -21,4 +21,4 @@ #include "stdlib/math/base/special/expf.h" // cppcheck-suppress shadowFunction -STDLIB_MATH_BASE_NAPI_MODULE_C_C( stdlib_base_expf ) +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_expf ) From 8415ab61667d5735d60d7fc245a09296b26f5b6e Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Thu, 5 Dec 2024 00:24:16 +0530 Subject: [PATCH 10/18] updated main.c values --- .../@stdlib/math/base/special/expf/lib/expmulti.js | 1 - .../@stdlib/math/base/special/expf/lib/main.js | 1 - .../@stdlib/math/base/special/expf/src/main.c | 8 ++++---- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js index ff2f7293e0d4..ed1068f6b643 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js @@ -48,7 +48,6 @@ var polyvalP = require( './polyval_p.js' ); * @param {number} hi - upper bound * @param {number} lo - lower bound * @param {integer} k - power of 2 -* @param {integer} x - power of e * @returns {number} function value */ function expmulti( hi, lo, k ) { diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js index c938711c0c40..3fc1e53acac6 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js @@ -39,7 +39,6 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' ); var truncf = require( '@stdlib/math/base/special/truncf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var PINF = require( '@stdlib/constants/float32/pinf' ); -var absf = require( '@stdlib/math/base/special/absf' ); var expmulti = require( './expmulti.js' ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c index 5b9674438313..ba7f22978911 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c @@ -39,12 +39,12 @@ #include "stdlib/math/base/special/truncf.h" #include -static const float LN2_HI = 0.69314718; +static const float LN2_HI = 6.9314575195e-01; static const float LN2_LO = 1.4286067653e-06; -static const float LOG2_E = 1.4426950216; +static const float LOG2_E = 1.4426950216e+00; static const float half[ 2 ] = { 0.5, -0.5 }; -static const float EXP_OVERFLOW = 88.721679688; -static const float EXP_UNDERFLOW = -103.97208405; +static const float EXP_OVERFLOW = 8.8721679688e+01; +static const float EXP_UNDERFLOW = -1.0397208405e+02; static const float NEARZERO = 1.0 / ( 1 << 14 ); static const float NEG_NEARZERO = -1.0 / ( 1 << 14 ); From a179c6d2d90226a988dac293e34195e664788cfb Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Thu, 5 Dec 2024 09:41:44 +0530 Subject: [PATCH 11/18] Resolved coeffiecients in evalpoly --- .../base/special/expf/benchmark/benchmark.js | 4 ++-- .../math/base/special/expf/lib/expmulti.js | 13 ++++++----- .../math/base/special/expf/lib/main.js | 23 +++++++++---------- .../math/base/special/expf/lib/polyval_p.js | 9 ++++---- .../base/special/expf/scripts/evalpoly.js | 9 +++----- .../@stdlib/math/base/special/expf/src/main.c | 9 ++------ 6 files changed, 29 insertions(+), 38 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js index f6be95756bb4..b7df014ec6cd 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js @@ -58,11 +58,11 @@ bench( pkg+'::built-in', function benchmark( b ) { b.tic(); for ( i = 0; i < b.iterations; i++ ) { x = ( randu()*100.0 ) - 50.0; - y = Math.expf( x ); // eslint-disable-line stdlib/no-builtin-math + y = Math.exp( x ); // eslint-disable-line stdlib/no-builtin-math if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } - }+ + } b.toc(); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js index ed1068f6b643..2993a503524d 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js @@ -51,22 +51,23 @@ var polyvalP = require( './polyval_p.js' ); * @returns {number} function value */ function expmulti( hi, lo, k ) { + var twom100; var r; var t; var c; var y; - var twom100; twom100 = 7.8886090522e-31; r = hi - lo; t = r * r; - c = r - ( t*polyvalP( t ) ); + c = r - ( t*polyvalP( t ) ); y = 1.0 - ( lo - ( (r*c)/(2.0-c) ) - hi ); - if (k >= -125) { - return ldexpf( y , k ); - } else { - return ldexpf( y, k+100 ) * twom100 * twom100; + + if ( k >= -125 ) { + return ldexpf( y, k ); } + + return ldexpf( y, k + 100 ) * twom100 * twom100; } diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js index 3fc1e53acac6..bfa6db12277c 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js @@ -44,17 +44,16 @@ var expmulti = require( './expmulti.js' ); // VARIABLES // -var LN2_HI = 6.9314575195e-01; -var LN2_LO = 1.4286067653e-06; -var halF = [0.5, -0.5]; +var LN2_HI = 6.9314575195e-01; +var LN2_LO = 1.4286067653e-06; +var halF = [ 0.5, -0.5 ]; var INVLN2 = 1.4426950216e+00; -var OVERFLOW = 8.8721679688e+01; +var OVERFLOW = 8.8721679688e+01; var UNDERFLOW = -1.0397208405e+02; -var NEARZERO = 1.0 / (1 << 14); +var NEARZERO = 1.0 / (1 << 14); var NEG_NEARZERO = -NEARZERO; - // MAIN // /** @@ -145,7 +144,7 @@ var NEG_NEARZERO = -NEARZERO; * * @example * var v = expf( 4.0 ); -* // returns ~54.5982 +* // returns ~54.598 * * @example * var v = expf( -9.0 ); @@ -160,10 +159,10 @@ var NEG_NEARZERO = -NEARZERO; * // returns NaN */ function expf( x ) { + var xsb; var hi; var lo; var k; - var xsb; xsb = ( x < 0.0 ) ? 1 : 0; @@ -186,10 +185,10 @@ function expf( x ) { return 1.0 + x; } // Argument reduction - - k = truncf(INVLN2 * x + halF[xsb]); - hi = x - k * LN2_HI; - lo = k * LN2_LO; + + k = truncf( (INVLN2 * x) + halF[ xsb ] ); + hi = x - (k * LN2_HI); + lo = k * LN2_LO; return expmulti( hi, lo, k ); } diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js index a8ba0a88798f..29a1747f90ba 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* Copyright (c) 2024 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. @@ -35,14 +35,13 @@ * @returns {number} evaluated polynomial */ function evalpoly( x ) { - var P1 = 1.6666625440e-1; - var P2 = -2.7667332906e-3; if ( x === 0.0 ) { - return P1; + return 0.1666662544; } - return P1 + x*P2 // eslint-disable-line max-len + return 0.1666662544 + (x * -0.0027667332906); } + // EXPORTS // module.exports = evalpoly; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js b/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js index 913a0ba35106..e471009388a7 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js +++ b/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js @@ -38,12 +38,9 @@ var compileC = require( '@stdlib/math/base/tools/evalpoly-compile-c' ); // VARIABLES // // Polynomial coefficients ordered in ascending degree... -const P = [ - 1.6666667163e-01, // Approximation of 1/6! - -2.7777778450e-03, // Approximation of 1/45! - 6.6137559770e-05, // Approximation of 1/5040! - -1.6533901999e-06, // Approximation of 1/362880! - 4.1381369442e-08 // Approximation of 1/39916800! +var P = [ + 1.6666625440e-1, + -2.7667332906e-3 ]; // Header to add to output files: diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c index ba7f22978911..26a7f1adcd3e 100644 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c @@ -53,7 +53,7 @@ static const float NEG_NEARZERO = -1.0 / ( 1 << 14 ); // BEGIN: polyval_p /** -* Evaluates a polynomial for single-precision. +* Evaluates a polynomial. * * ## Notes * @@ -65,12 +65,7 @@ static const float NEG_NEARZERO = -1.0 / ( 1 << 14 ); * @return evaluated polynomial */ static float polyval_p( const float x ) { - static const float P1 = 1.6666625440e-1; - static const float P2 = -2.7667332906e-3; - if ( x == 0.0 ) { - return P1; - } - return P1 + x * P2; + return 0.1666662544f + (x * -0.0027667332906f); } // END: polyval_p From b047b900d52b933e85e3ae5055e125d6a478056e Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Thu, 5 Dec 2024 13:21:15 +0530 Subject: [PATCH 12/18] feat(constants): add float32 ln-half constant --- .../constants/float32/ln-half/README.md | 135 ++++++++++++++++++ .../constants/float32/ln-half/docs/repl.txt | 12 ++ .../float32/ln-half/docs/types/index.d.ts | 33 +++++ .../float32/ln-half/docs/types/test.ts | 28 ++++ .../float32/ln-half/examples/index.js | 24 ++++ .../stdlib/constants/float32/ln_half.h | 27 ++++ .../constants/float32/ln-half/lib/index.js | 55 +++++++ .../constants/float32/ln-half/manifest.json | 36 +++++ .../constants/float32/ln-half/package.json | 71 +++++++++ .../constants/float32/ln-half/test/test.js | 56 ++++++++ 10 files changed, 477 insertions(+) create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/README.md create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/manifest.json create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/package.json create mode 100644 lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md new file mode 100644 index 000000000000..b67624526687 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md @@ -0,0 +1,135 @@ + + +# FLOAT32_LN_HALF + +> [Natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`. + +
+ +## Usage + +```javascript +var FLOAT32_LN_HALF = require( '@stdlib/constants/float32/ln-half' ); +``` + +#### FLOAT32_LN_HALF + +[Natural logarithm][@stdlib/math/base/special/ln] of `1/2`. + +```javascript +var bool = ( FLOAT32_LN_HALF === -0.6931471824645996 ); +// returns true +``` + +
+ + + +
+ +## Examples + + + + + +```javascript +var FLOAT32_LN_HALF = require( '@stdlib/constants/float32/ln-half' ); + +console.log( FLOAT32_LN_HALF ); +// => -0.6931471824645996 +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/constants/float32/ln_half.h" +``` + +#### STDLIB_CONSTANT_FLOAT32_LN_HALF + +Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`. + +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt new file mode 100644 index 000000000000..21890be4f2a4 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt @@ -0,0 +1,12 @@ + +{{alias}} + Natural logarithm of single-precision floating-point number `1/2`. + + Examples + -------- + > {{alias}} + -0.6931471824645996 + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts new file mode 100644 index 000000000000..e263a68e7fef --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts @@ -0,0 +1,33 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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 + +/** +* Natural logarithm of single-precision floating-point number `1/2`. +* +* @example +* var val = FLOAT32_LN_HALF; +* // returns -0.6931471824645996 +*/ +declare const FLOAT32_LN_HALF: number; + + +// EXPORTS // + +export = FLOAT32_LN_HALF; diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts new file mode 100644 index 000000000000..e597934c233b --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts @@ -0,0 +1,28 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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 FLOAT32_LN_HALF = require( './index' ); + + +// TESTS // + +// The export is a number... +{ + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + FLOAT32_LN_HALF; // $ExpectType number +} diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js b/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js new file mode 100644 index 000000000000..97686fede3bb --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js @@ -0,0 +1,24 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 FLOAT32_LN_HALF = require( './../lib' ); + +console.log( FLOAT32_LN_HALF ); +// => -0.6931471824645996 diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h new file mode 100644 index 000000000000..ef942c1caa05 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h @@ -0,0 +1,27 @@ +/** +* @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. +*/ + +#ifndef STDLIB_CONSTANTS_FLOAT32_LN_HALF_H +#define STDLIB_CONSTANTS_FLOAT32_LN_HALF_H + +/** +* Macro for the natural logarithm of single-precision floating-point number 1/2. +*/ +#define STDLIB_CONSTANT_FLOAT32_LN_HALF -0.6931471824645996f + +#endif // !STDLIB_CONSTANTS_FLOAT32_LN_HALF_H diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js new file mode 100644 index 000000000000..68801cb60db5 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js @@ -0,0 +1,55 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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'; + +/** +* Natural logarithm of single-precision floating-point number `1/2`. +* +* @module @stdlib/constants/float32/ln-half +* @type {number} +* +* @example +* var LN_HALF = require( '@stdlib/constants/float32/ln-half' ); +* // returns -0.6931471824645996 +*/ + +// MODULES // + +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); + + +// MAIN // + +/** +* Natural logarithm of single-precision floating-point number `1/2`. +* +* ```tex +* \ln (1/2) +* ``` +* +* @constant +* @type {number} +* @default -0.6931471824645996 +*/ +var FLOAT32_LN_HALF = float64ToFloat32(-0.69314718055994530941723212145817656807550013436025525412); // eslint-disable-line max-len + + +// EXPORTS // + +module.exports = FLOAT32_LN_HALF; diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/manifest.json b/lib/node_modules/@stdlib/constants/float32/ln-half/manifest.json new file mode 100644 index 000000000000..844d692f6439 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/manifest.json @@ -0,0 +1,36 @@ +{ + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [] + } + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/package.json b/lib/node_modules/@stdlib/constants/float32/ln-half/package.json new file mode 100644 index 000000000000..3ca10f04c9a3 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/package.json @@ -0,0 +1,71 @@ +{ + "name": "@stdlib/constants/float32/ln-half", + "version": "0.0.0", + "description": "Natural logarithm of single-precision floating-point number 1/2.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "constant", + "const", + "mathematics", + "math", + "ln", + "ln-half", + "lnhalf", + "natural", + "logarithm", + "log", + "ieee754", + "float", + "single", + "precision", + "floating-point", + "float32" + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js new file mode 100644 index 000000000000..cac6ffcd776b --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js @@ -0,0 +1,56 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 lnf = require( '@stdlib/math/base/special/lnf' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var FLOAT32_LN_HALF = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a number', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof FLOAT32_LN_HALF, 'number', 'main export is a number' ); + t.end(); +}); + +tape( 'export is a single-precision floating-point number equal to `-0.6931471824645996', function test( t ) { + var expected = lnf( 0.5 ); + t.equal( FLOAT32_LN_HALF, expected, 'returns expected value' ); + t.end(); +}); + +tape( 'export equals `lnf(0.5)`', function test( t ) { + var delta; + var tol; + var v; + + v = lnf( 0.5 ); + delta = absf( v - FLOAT32_LN_HALF ); + tol = EPS; + + t.ok( delta <= tol, 'equals ln(0.5) within tolerance '+tol ); + + t.end(); +}); From 1e072a9bb2e565616603c70b3539cac4ffcd4778 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Thu, 5 Dec 2024 13:42:57 +0530 Subject: [PATCH 13/18] feat(constants): add float32 ln-half constant --- .../@stdlib/math/base/special/expf/LICENSE | 222 ----------------- .../@stdlib/math/base/special/expf/README.md | 230 ------------------ .../base/special/expf/benchmark/benchmark.js | 72 ------ .../expf/benchmark/benchmark.native.js | 60 ----- .../base/special/expf/benchmark/c/Makefile | 127 ---------- .../base/special/expf/benchmark/c/benchmark.c | 132 ---------- .../special/expf/benchmark/c/cephes/Makefile | 113 --------- .../expf/benchmark/c/cephes/benchmark.c | 137 ----------- .../special/expf/benchmark/c/native/Makefile | 146 ----------- .../expf/benchmark/c/native/benchmark.c | 133 ---------- .../math/base/special/expf/binding.gyp | 170 ------------- .../equation_natural_exponential_function.svg | 17 -- .../math/base/special/expf/docs/repl.txt | 28 --- .../base/special/expf/docs/types/index.d.ts | 48 ---- .../math/base/special/expf/docs/types/test.ts | 44 ---- .../base/special/expf/examples/c/Makefile | 146 ----------- .../base/special/expf/examples/c/example.c | 33 --- .../math/base/special/expf/examples/index.js | 30 --- .../math/base/special/expf/include.gypi | 53 ---- .../include/stdlib/math/base/special/expf.h | 37 --- .../math/base/special/expf/lib/expmulti.js | 76 ------ .../math/base/special/expf/lib/index.js | 49 ---- .../math/base/special/expf/lib/main.js | 199 --------------- .../math/base/special/expf/lib/native.js | 58 ----- .../math/base/special/expf/lib/polyval_p.js | 47 ---- .../math/base/special/expf/manifest.json | 107 -------- .../math/base/special/expf/package.json | 145 ----------- .../base/special/expf/scripts/evalpoly.js | 118 --------- .../expf/scripts/fixtures/julia/REQUIRE | 2 - .../expf/scripts/fixtures/julia/data.json | 1 - .../expf/scripts/fixtures/julia/runner.jl | 63 ----- .../base/special/expf/scripts/precision.js | 60 ----- .../math/base/special/expf/src/Makefile | 70 ------ .../math/base/special/expf/src/addon.c | 24 -- .../@stdlib/math/base/special/expf/src/main.c | 228 ----------------- .../special/expf/test/fixtures/julia/REQUIRE | 2 - .../julia/medium_negative_float32.json | 1 - .../julia/medium_positive_float32.json | 1 - .../expf/test/fixtures/julia/runner.jl | 80 ------ .../julia/small_negative_float32.json | 1 - .../julia/small_positive_float32.json | 1 - .../test/fixtures/julia/tiny_float32.json | 1 - .../math/base/special/expf/test/test.js | 165 ------------- .../base/special/expf/test/test.native.js | 174 ------------- 44 files changed, 3651 deletions(-) delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/LICENSE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/README.md delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.native.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/binding.gyp delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/c/example.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/examples/index.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/include.gypi delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/include/stdlib/math/base/special/expf.h delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/index.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/main.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/native.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/manifest.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/package.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/addon.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/src/main.c delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/test.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/expf/LICENSE b/lib/node_modules/@stdlib/math/base/special/expf/LICENSE deleted file mode 100644 index bcc7f105f77d..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/LICENSE +++ /dev/null @@ -1,222 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -DEPENDENCIES & ATTRIBUTION - -The library links against the following external libraries or contains -implementations from the following external libraries, which have their own -licenses: - -* FreeBSD - -Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved. - -Developed at SunPro, a Sun Microsystems, Inc. business. -Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -* Go - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/node_modules/@stdlib/math/base/special/expf/README.md b/lib/node_modules/@stdlib/math/base/special/expf/README.md deleted file mode 100644 index b33a8f5a4e95..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/README.md +++ /dev/null @@ -1,230 +0,0 @@ - - -# expf - -> Natural [exponential function][exponential-function] of a single-precision floating-point number - -
- -The natural [exponential function][exponential-function] is defined as - - - -```math -y = e^x -``` - - - - - -where `e` is [Euler's][@stdlib/constants/float32/e] number. - -
- - - -
- -## Usage - -```javascript -var expf = require( '@stdlib/math/base/special/expf' ); -``` - -#### expf( x ) - -Evaluates the natural [exponential function][exponential-function] of a single-precision floating-point number - -```javascript -var v = expf( 4.0 ); -// returns ~54.5982 - -v = expf( -9.0 ); -// returns ~1.234e-4 - -v = expf( 0.0 ); -// returns 1.0 - -v = expf( NaN ); -// returns NaN -``` - -
- - - -
- -## Examples - - - -```javascript -var randu = require( '@stdlib/random/base/randu' ); -var expf = require( '@stdlib/math/base/special/expf' ); - -var x; -var i; - -for ( i = 0; i < 100; i++ ) { - x = (randu()*100.0) - 50.0; - console.log( 'e^%d = %d', x, expf( x ) ); -} -``` - -
- - - - - -* * * - -
- -## C APIs - - - -
- -
- - - - - -
- -### Usage - -```c -#include "stdlib/math/base/special/expf.h" -``` - -#### stdlib_base_expf( x ) - -Evaluates the natural [exponential function][exponential-function] single-precision floating-point number - -```c -float out = stdlib_base_expf( 4.0 ); -// returns ~54.5982 - -out = stdlib_base_expf( -9.0 ); -// returns ~1.234e-4 -``` - -The function accepts the following arguments: - -- **x**: `[in] float` input value. - -```c -float stdlib_base_expf( const float x ); -``` - -
- - - - - -
- -
- - - - - -
- -### Examples - -```c -#include "stdlib/math/base/special/expf.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_expf( x ); - printf( "e^%f = %f\n", x, v ); - } -} -``` - -
- - - -
- - - - - - - - - - - - - - diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js deleted file mode 100644 index b7df014ec6cd..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.js +++ /dev/null @@ -1,72 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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 expf = 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()*100.0 ) - 50.0; - y = expf( 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(); -}); - -bench( pkg+'::built-in', function benchmark( b ) { - var x; - var y; - var i; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - x = ( randu()*100.0 ) - 50.0; - y = Math.exp( x ); // eslint-disable-line stdlib/no-builtin-math - 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/expf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.native.js deleted file mode 100644 index b894f69e5776..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/benchmark.native.js +++ /dev/null @@ -1,60 +0,0 @@ -/** -* @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 expf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); -var opts = { - 'skip': ( expf 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()*100.0 ) - 50.0; - y = expf( 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/expf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile deleted file mode 100644 index e64c0050f3da..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/Makefile +++ /dev/null @@ -1,127 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2018 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - - -# VARIABLES # - -ifndef VERBOSE - QUIET := @ -else - QUIET := -endif - -# Determine the OS ([1][1], [2][2]). -# -# [1]: https://en.wikipedia.org/wiki/Uname#Examples -# [2]: http://stackoverflow.com/a/27776822/2225624 -OS ?= $(shell uname) -ifneq (, $(findstring MINGW,$(OS))) - OS := WINNT -else -ifneq (, $(findstring MSYS,$(OS))) - OS := WINNT -else -ifneq (, $(findstring CYGWIN,$(OS))) - OS := WINNT -else -ifneq (, $(findstring Windows_NT,$(OS))) - OS := WINNT -endif -endif -endif -endif - -# Define the program used for compiling C source files: -ifdef C_COMPILER - CC := $(C_COMPILER) -else - CC := gcc -endif - -# Define the command-line options when compiling C files: -CFLAGS ?= \ - -std=c99 \ - -O3 \ - -Wall \ - -pedantic - -# Determine whether to generate position independent code ([1][1], [2][2]). -# -# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options -# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option -ifeq ($(OS), WINNT) - fPIC ?= -else - fPIC ?= -fPIC -endif - -# List of C targets: -c_targets := benchmark.out - - -# RULES # - -#/ -# Compiles C source files. -# -# @param {string} [C_COMPILER] - C compiler -# @param {string} [CFLAGS] - C compiler flags -# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code -# -# @example -# make -# -# @example -# make all -#/ -all: $(c_targets) - -.PHONY: all - -#/ -# Compiles C source files. -# -# @private -# @param {string} CC - C compiler -# @param {string} CFLAGS - C compiler flags -# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code -#/ -$(c_targets): %.out: %.c - $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm - -#/ -# Runs compiled benchmarks. -# -# @example -# make run -#/ -run: $(c_targets) - $(QUIET) ./$< - -.PHONY: run - -#/ -# Removes generated files. -# -# @example -# make clean -#/ -clean: - $(QUIET) -rm -f *.o *.out - -.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c deleted file mode 100644 index 39fafe63f603..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/benchmark.c +++ /dev/null @@ -1,132 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -#include -#include -#include -#include -#include - -#define NAME "expf" -#define ITERATIONS 1000000 -#define REPEATS 3 - -/** -* Prints the TAP version. -*/ -static void print_version( void ) { - printf( "TAP version 13\n" ); -} - -/** -* Prints the TAP summary. -* -* @param total total number of tests -* @param passing total number of passing tests -*/ -static void print_summary( int total, int passing ) { - printf( "#\n" ); - printf( "1..%d\n", total ); // TAP plan - printf( "# total %d\n", total ); - printf( "# pass %d\n", passing ); - printf( "#\n" ); - printf( "# ok\n" ); -} - -/** -* Prints benchmarks results. -* -* @param elapsed elapsed time in seconds -*/ -static void print_results( double elapsed ) { - double rate = (double)ITERATIONS / elapsed; - printf( " ---\n" ); - printf( " iterations: %d\n", ITERATIONS ); - printf( " elapsed: %0.9f\n", elapsed ); - printf( " rate: %0.9f\n", rate ); - printf( " ...\n" ); -} - -/** -* Returns a clock time. -* -* @return clock time -*/ -static double tic( void ) { - struct timeval now; - gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; -} - -/** -* Generates a random number on the interval [0,1). -* -* @return random number -*/ -static double rand_double( void ) { - int r = rand(); - return (double)r / ( (double)RAND_MAX + 1.0 ); -} - -/** -* Runs a benchmark. -* -* @return elapsed time in seconds -*/ -static double benchmark( void ) { - double elapsed; - float x; - float y; - double t; - int i; - - t = tic(); - for ( i = 0; i < ITERATIONS; i++ ) { - x = ( 100.0f *(float)rand_double() ) - 50.0f; - y = expf( 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/expf/benchmark/c/cephes/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile deleted file mode 100644 index 60e93ff57ffd..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/Makefile +++ /dev/null @@ -1,113 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2018 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 := @ -endif - -# Specify the path to Cephes: -CEPHES ?= - -# Specify a list of Cephes source files: -CEPHES_SRC ?= - -# Determine the OS: -# -# [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 -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]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options -# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option -ifeq ($(OS), WINNT) - fPIC ?= -else - fPIC ?= -fPIC -endif - -# List of C targets: -c_targets := benchmark.out - - -# TARGETS # - -# Default target. -# -# This target is the default target. - -all: $(c_targets) - -.PHONY: all - - -# Compile C source. -# -# This target compiles C source files. - -$(c_targets): %.out: %.c - $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $(CEPHES_SRC) $< -lm - - -# Run a benchmark. -# -# This target runs a benchmark. - -run: $(c_targets) - $(QUIET) ./$< - -.PHONY: run - - -# Perform clean-up. -# -# This target removes generated files. - -clean: - $(QUIET) -rm -f *.o *.out - -.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c deleted file mode 100644 index 404352618a9e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/cephes/benchmark.c +++ /dev/null @@ -1,137 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -#include -#include -#include -#include -#include - -#define NAME "expf" -#define ITERATIONS 1000000 -#define REPEATS 3 - -/** -* Define prototypes for external functions. -*/ -extern float expf( float x ); - -/** -* Prints the TAP version. -*/ -static void print_version( void ) { - printf( "TAP version 13\n" ); -} - -/** -* Prints the TAP summary. -* -* @param total total number of tests -* @param passing total number of passing tests -*/ -static void print_summary( int total, int passing ) { - printf( "#\n" ); - printf( "1..%d\n", total ); // TAP plan - printf( "# total %d\n", total ); - printf( "# pass %d\n", passing ); - printf( "#\n" ); - printf( "# ok\n" ); -} - -/** -* Prints benchmarks results. -* -* @param elapsed elapsed time in seconds -*/ -static void print_results( double elapsed ) { - double rate = (double)ITERATIONS / elapsed; - printf( " ---\n" ); - printf( " iterations: %d\n", ITERATIONS ); - printf( " elapsed: %0.9f\n", elapsed ); - printf( " rate: %0.9f\n", rate ); - printf( " ...\n" ); -} - -/** -* Returns a clock time. -* -* @return clock time -*/ -static double tic( void ) { - struct timeval now; - gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; -} - -/** -* Generates a random number on the interval [0,1). -* -* @return random number -*/ -static float rand_float( void ) { - int r = rand(); - return (float)r / ( (float)RAND_MAX + 1.0f ); -} - -/** -* 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 = ( 100.0f *rand_float() ) - 50.0f; - y = expf( 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::cephes::%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/expf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/Makefile deleted file mode 100644 index d6b58c7f5d3e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/Makefile +++ /dev/null @@ -1,146 +0,0 @@ -#/ -# @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/expf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c deleted file mode 100644 index 68554fc96c46..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/benchmark/c/native/benchmark.c +++ /dev/null @@ -1,133 +0,0 @@ -/** -* @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/expf.h" -#include -#include -#include -#include -#include - -#define NAME "expf" -#define ITERATIONS 1000000 -#define REPEATS 3 - -/** -* Prints the TAP version. -*/ -static void print_version( void ) { - printf( "TAP version 13\n" ); -} - -/** -* Prints the TAP summary. -* -* @param total total number of tests -* @param passing total number of passing tests -*/ -static void print_summary( int total, int passing ) { - printf( "#\n" ); - printf( "1..%d\n", total ); // TAP plan - printf( "# total %d\n", total ); - printf( "# pass %d\n", passing ); - printf( "#\n" ); - printf( "# ok\n" ); -} - -/** -* Prints benchmarks results. -* -* @param elapsed elapsed time in seconds -*/ -static void print_results( double elapsed ) { - double rate = (double)ITERATIONS / elapsed; - printf( " ---\n" ); - printf( " iterations: %d\n", ITERATIONS ); - printf( " elapsed: %0.9f\n", elapsed ); - printf( " rate: %0.9f\n", rate ); - printf( " ...\n" ); -} - -/** -* Returns a clock time. -* -* @return clock time -*/ -static double tic( void ) { - struct timeval now; - gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; -} - -/** -* Generates a random number on the interval [0,1). -* -* @return random number -*/ -static double rand_double( void ) { - int r = rand(); - return (double)r / ( (double)RAND_MAX + 1.0 ); -} - -/** -* Runs a benchmark. -* -* @return elapsed time in seconds -*/ -static double benchmark( void ) { - double elapsed; - float x; - float y; - double t; - int i; - - t = tic(); - for ( i = 0; i < ITERATIONS; i++ ) { - x = ( 100.0f * (float)rand_double() ) - 50.0f; - y = stdlib_base_expf( 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::native::%s\n", NAME ); - elapsed = benchmark(); - print_results( elapsed ); - printf( "ok %d benchmark finished\n", i+1 ); - } - print_summary( REPEATS, REPEATS ); -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/expf/binding.gyp deleted file mode 100644 index 1058b57bab16..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/binding.gyp +++ /dev/null @@ -1,170 +0,0 @@ -# @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/expf/docs/img/equation_natural_exponential_function.svg b/lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg deleted file mode 100644 index e1bd442e986f..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/docs/img/equation_natural_exponential_function.svg +++ /dev/null @@ -1,17 +0,0 @@ - -y equals e Superscript x - - - \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt deleted file mode 100644 index 7290f2d05b0e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/docs/repl.txt +++ /dev/null @@ -1,28 +0,0 @@ - -{{alias}}( x ) - Evaluates the natural exponential function. - - Parameters - ---------- - x: number - Input value. - - Returns - ------- - y: number - Function value. - - Examples - -------- - > var y = {{alias}}( 4.0 ) - ~54.5982 - > y = {{alias}}( -9.0 ) - ~1.234e-4 - > y = {{alias}}( 0.0 ) - 1.0 - > y = {{alias}}( NaN ) - NaN - - See Also - -------- - diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts deleted file mode 100644 index 6632609df79c..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/index.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2019 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 - -/** -* Evaluates the natural exponential function. -* -* @param x - input value -* @returns function value -* -* @example -* var v = expf( 4.0 ); -* // returns ~54.5982 -* -* @example -* var v = expf( -9.0 ); -* // returns ~1.234e-4 -* -* @example -* var v = expf( 0.0 ); -* // returns 1.0 -* -* @example -* var v = expf( NaN ); -* // returns NaN -*/ -declare function expf( x: number ): number; - - -// EXPORTS // - -export = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts deleted file mode 100644 index e2ff29750af1..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/docs/types/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2019 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 expf = require( './index' ); - - -// TESTS // - -// The function returns a number... -{ - expf( 0.5 ); // $ExpectType number -} - -// The compiler throws an error if the function is provided a value other than a number... -{ - expf( true ); // $ExpectError - expf( false ); // $ExpectError - expf( null ); // $ExpectError - expf( undefined ); // $ExpectError - expf( '5' ); // $ExpectError - expf( [] ); // $ExpectError - expf( {} ); // $ExpectError - expf( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided insufficient arguments... -{ - expf(); // $ExpectError -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile deleted file mode 100644 index 91d364d19fc3..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/examples/c/Makefile +++ /dev/null @@ -1,146 +0,0 @@ -#/ -# @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/expf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/expf/examples/c/example.c deleted file mode 100644 index 7463d8e7388e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/examples/c/example.c +++ /dev/null @@ -1,33 +0,0 @@ -/** -* @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/expf.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.0f; - v = stdlib_base_expf( x ); - printf( "e^%f = %f\n", x, v ); - } -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js deleted file mode 100644 index dfc55281ab15..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/examples/index.js +++ /dev/null @@ -1,30 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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 randu = require( '@stdlib/random/base/randu' ); -var expf = require( './../lib' ); - -var x; -var i; - -for ( i = 0; i < 100; i++ ) { - x = (randu()*100.0) - 50.0; - console.log( 'e^%f = %f', x, expf( x ) ); -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/include.gypi b/lib/node_modules/@stdlib/math/base/special/expf/include.gypi deleted file mode 100644 index 3b437d524797..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/include.gypi +++ /dev/null @@ -1,53 +0,0 @@ -# @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': [ - '= -125 ) { - return ldexpf( y, k ); - } - - return ldexpf( y, k + 100 ) * twom100 * twom100; -} - - -// EXPORTS // - -module.exports = expmulti; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/index.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/index.js deleted file mode 100644 index ede607717c31..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/index.js +++ /dev/null @@ -1,49 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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'; - -/** -* Evaluate the natural exponential function. -* -* @module @stdlib/math/base/special/expf -* -* @example -* var expf = require( '@stdlib/math/base/special/expf' ); -* -* var v = expf( 4.0 ); -* // returns ~54.5982 -* -* v = expf( -9.0 ); -* // returns ~1.234e-4 -* -* v = expf( 0.0 ); -* // returns 1.0 -* -* v = expf( NaN ); -* // returns NaN -*/ - -// MODULES // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js deleted file mode 100644 index bfa6db12277c..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/main.js +++ /dev/null @@ -1,199 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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. -* -* -* ## Notice -* -* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript. -* -* e_expf.c -- float version of e_exp.c. -* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. -* ==================================================== -* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. -* Developed at SunPro, a Sun Microsystems, Inc. business. -* Permission to use, copy, modify, and distribute this -* software is freely granted, provided that this notice -* is preserved. -* ==================================================== -*/ - -'use strict'; - -// MODULES // - -var isnan = require( '@stdlib/math/base/assert/is-nan' ); -var truncf = require( '@stdlib/math/base/special/truncf' ); -var NINF = require( '@stdlib/constants/float32/ninf' ); -var PINF = require( '@stdlib/constants/float32/pinf' ); -var expmulti = require( './expmulti.js' ); - - -// VARIABLES // - -var LN2_HI = 6.9314575195e-01; -var LN2_LO = 1.4286067653e-06; -var halF = [ 0.5, -0.5 ]; -var INVLN2 = 1.4426950216e+00; -var OVERFLOW = 8.8721679688e+01; -var UNDERFLOW = -1.0397208405e+02; -var NEARZERO = 1.0 / (1 << 14); -var NEG_NEARZERO = -NEARZERO; - - -// MAIN // - -/** -* Evaluates the natural exponential function for single-precision. -* -* ## Method -* -* 1. We reduce \\( x \\) to an \\( r \\) so that \\( |r| \leq 0.5 \cdot \ln(2) \approx 0.34658 \\). Given \\( x \\), we find an \\( r \\) and integer \\( k \\) such that -* -* ```tex -* \begin{align*} -* x &= k \cdot \ln(2) + r \\ -* |r| &\leq 0.5 \cdot \ln(2) -* \end{align*} -* ``` -* -* -* -* \\( r \\) can be represented as \\( r = \mathrm{hi} - \mathrm{lo} \\) for better accuracy. -* -* -* -* 2. We approximate of \\( e^{r} \\) by a special rational function on the interval \\(\[0,0.34658]\\): -* -* ```tex -* \begin{align*} -* R\left(r^2\right) &= r \cdot \frac{ e^{r}+1 }{ e^{r}-1 } \\ -* &= 2 + \frac{r^2}{6} - \frac{r^4}{360} + \ldots -* \end{align*} -* ``` -* -* We use a special Remes algorithm on \\(\[0,0.34658]\\) to generate a polynomial of degree \\(5\\) to approximate \\(R\\). The maximum error of this polynomial approximation is bounded by \\(2^{-59}\\). In other words, -* -* ```tex -* R(z) \sim 2 + P_1 z + P_2 z^2 + P_3 z^3 + P_4 z^4 + P_5 z^5 -* ``` -* -* where \\( z = r^2 \\) and -* -* ```tex -* \left| 2 + P_1 z + \ldots + P_5 z^5 - R(z) \right| \leq 2^{-59} -* ``` -* -* -* -* The values of \\( P_1 \\) to \\( P_5 \\) are listed in the source code. -* -* -* -* The computation of \\( e^{r} \\) thus becomes -* -* ```tex -* \begin{align*} -* e^{r} &= 1 + \frac{2r}{R-r} \\ -* &= 1 + r + \frac{r \cdot R_1(r)}{2 - R_1(r)}\ \text{for better accuracy} -* \end{align*} -* ``` -* -* where -* -* ```tex -* R_1(r) = r - P_1\ r^2 + P_2\ r^4 + \ldots + P_5\ r^{10} -* ``` -* -* 3. We scale back to obtain \\( e^{x} \\). From step 1, we have -* -* ```tex -* e^{x} = 2^k e^{r} -* ``` -* -* ## Special Cases -* -* ```tex -* \begin{align*} -* e^\infty &= \infty \\ -* e^{-\infty} &= 0 \\ -* e^{\mathrm{NaN}} &= \mathrm{NaN} \\ -* e^0 &= 1\ \mathrm{is\ exact\ for\ finite\ argument\ only} -* \end{align*} -* ``` -* -* ## Notes -* -* - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values. -* -* @param {number} x - input value -* @returns {number} function value -* -* @example -* var v = expf( 4.0 ); -* // returns ~54.598 -* -* @example -* var v = expf( -9.0 ); -* // returns ~1.234e-4 -* -* @example -* var v = expf( 0.0 ); -* // returns 1.0 -* -* @example -* var v = expf( NaN ); -* // returns NaN -*/ -function expf( x ) { - var xsb; - var hi; - var lo; - var k; - - xsb = ( x < 0.0 ) ? 1 : 0; - - if ( isnan( x ) || x === PINF ) { - return x; - } - if ( x === NINF ) { - return 0.0; - } - if ( x > OVERFLOW ) { - return PINF; - } - if ( x < UNDERFLOW ) { - return 0.0; - } - if ( - x > NEG_NEARZERO && - x < NEARZERO - ) { - return 1.0 + x; - } - // Argument reduction - - k = truncf( (INVLN2 * x) + halF[ xsb ] ); - hi = x - (k * LN2_HI); - lo = k * LN2_LO; - - return expmulti( hi, lo, k ); -} - - -// EXPORTS // - -module.exports = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js deleted file mode 100644 index 42a743c27bba..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/native.js +++ /dev/null @@ -1,58 +0,0 @@ -/** -* @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 addon = require( './../src/addon.node' ); - - -// MAIN // - -/** -* Evaluates the natural exponential function for single-precision. -* -* @private -* @param {number} x - input value -* @returns {number} function value -* -* @example -* var v = expf( 4.0 ); -* // returns ~54.5982 -* -* @example -* var v = expf( -9.0 ); -* // returns ~1.234e-4 -* -* @example -* var v = expf( 0.0 ); -* // returns 1.0 -* -* @example -* var v = expf( NaN ); -* // returns NaN -*/ -function expf( x ) { - return addon( x ); -} - - -// EXPORTS // - -module.exports = expf; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js b/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js deleted file mode 100644 index 29a1747f90ba..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/lib/polyval_p.js +++ /dev/null @@ -1,47 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2024 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. -*/ - -/* This is a generated file. Do not edit directly. */ -'use strict'; - -// MAIN // - -/** -* Evaluates a polynomial. -* -* ## Notes -* -* - The implementation uses [Horner's rule][horners-method] for efficient computation. -* -* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method -* -* @private -* @param {number} x - value at which to evaluate the polynomial -* @returns {number} evaluated polynomial -*/ -function evalpoly( x ) { - if ( x === 0.0 ) { - return 0.1666662544; - } - return 0.1666662544 + (x * -0.0027667332906); -} - - -// EXPORTS // - -module.exports = evalpoly; diff --git a/lib/node_modules/@stdlib/math/base/special/expf/manifest.json b/lib/node_modules/@stdlib/math/base/special/expf/manifest.json deleted file mode 100644 index e3032fcc5c2a..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/manifest.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "options": { - "task": "build", - "wasm": false - }, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "task": "build", - "wasm": false, - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/math/base/napi/unary", - "@stdlib/math/base/assert/is-nan", - "@stdlib/constants/float32/ninf", - "@stdlib/constants/float32/pinf", - "@stdlib/math/base/special/truncf", - "@stdlib/math/base/special/ldexpf" - ] - }, - { - "task": "benchmark", - "wasm": false, - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/math/base/assert/is-nan", - "@stdlib/constants/float32/ninf", - "@stdlib/constants/float32/pinf", - "@stdlib/math/base/special/truncf", - "@stdlib/math/base/special/ldexpf" - ] - }, - { - "task": "examples", - "wasm": false, - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/math/base/assert/is-nan", - "@stdlib/constants/float32/ninf", - "@stdlib/constants/float32/pinf", - "@stdlib/math/base/special/truncf", - "@stdlib/math/base/special/ldexpf" - ] - }, - { - "task": "build", - "wasm": true, - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/math/base/assert/is-nan", - "@stdlib/constants/float32/ninf", - "@stdlib/constants/float32/pinf", - "@stdlib/math/base/special/truncf", - "@stdlib/math/base/special/ldexpf" - ] - } - ] -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/package.json b/lib/node_modules/@stdlib/math/base/special/expf/package.json deleted file mode 100644 index 200fea014583..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/package.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "name": "@stdlib/math/base/special/expf", - "version": "0.0.0", - "description": "Natural exponential function (single-precision).", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "gypfile": true, - "directories": { - "benchmark": "./benchmark", - "doc": "./docs", - "example": "./examples", - "include": "./include", - "lib": "./lib", - "scripts": "./scripts", - "src": "./src", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdmath", - "mathematics", - "math", - "special", - "function", - "math.exp", - "exp", - "natural", - "exponential", - "euler", - "power", - "number" - ], - "__stdlib__": { - "scaffold": { - "$schema": "math/base@v1.0", - "base_alias": "expf", - "alias": "expf", - "pkg_desc": "evaluate the natural exponential function (single-precision)", - "desc": "evaluates the natural exponential function using single-precision floating-point numbers", - "short_desc": "natural exponential function (single-precision)", - "parameters": [ - { - "name": "x", - "desc": "input value", - "type": { - "javascript": "number", - "jsdoc": "number", - "c": "float", - "dtype": "float32" - }, - "domain": [ - { - "min": "-infinity", - "max": "infinity" - } - ], - "rand": { - "prng": "random/base/uniform", - "parameters": [ - -10, - 10 - ] - }, - "example_values": [ - -1.2, - 2, - -3.1, - -4.7, - 5.5, - 6.7, - 8.9, - -10.2, - 11.3, - -12.4, - 13.5, - 14.6, - -15.7, - 16.8, - -17.9, - 18.1, - -19.11, - 20.12, - -21.15, - 23.78 - ] - } - ], - "returns": { - "desc": "function value", - "type": { - "javascript": "number", - "jsdoc": "number", - "c": "float", - "dtype": "float32" - } - }, - "keywords": [ - "natural", - "exponential", - "exp", - "power" - ], - "extra_keywords": [ - "math.exp" - ] - } - } -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js b/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js deleted file mode 100644 index e471009388a7..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/evalpoly.js +++ /dev/null @@ -1,118 +0,0 @@ -/** -* @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. -*/ - -/* -* This script compiles modules for evaluating polynomial functions. If any polynomial coefficients change, this script should be rerun to update the compiled files. -*/ -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var writeFileSync = require( '@stdlib/fs/write-file' ).sync; -var currentYear = require( '@stdlib/time/current-year' ); -var substringBefore = require( '@stdlib/string/substring-before' ); -var substringAfter = require( '@stdlib/string/substring-after' ); -var format = require( '@stdlib/string/format' ); -var licenseHeader = require( '@stdlib/_tools/licenses/header' ); -var compile = require( '@stdlib/math/base/tools/evalpoly-compile' ); -var compileC = require( '@stdlib/math/base/tools/evalpoly-compile-c' ); - - -// VARIABLES // - -// Polynomial coefficients ordered in ascending degree... -var P = [ - 1.6666625440e-1, - -2.7667332906e-3 -]; - -// Header to add to output files: -var header = licenseHeader( 'Apache-2.0', 'js', { - 'year': currentYear(), - 'copyright': 'The Stdlib Authors' -}); -header += '\n/* This is a generated file. Do not edit directly. */\n'; - - -// FUNCTIONS // - -/** -* Inserts a compiled function into file content. -* -* @private -* @param {string} text - source content -* @param {string} id - function identifier -* @param {string} str - function string -* @returns {string} updated content -*/ -function insert( text, id, str ) { - var before; - var after; - var begin; - var end; - - begin = '// BEGIN: '+id; - end = '// END: '+id; - - before = substringBefore( text, begin ); - after = substringAfter( text, end ); - - return format( '%s// BEGIN: %s\n\n%s\n%s%s', before, id, str, end, after ); -} - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var fpath; - var copts; - var opts; - var file; - var str; - - opts = { - 'encoding': 'utf8' - }; - - fpath = resolve( __dirname, '..', 'lib', 'polyval_p.js' ); - str = header + compile( P ); - writeFileSync( fpath, str, opts ); - - copts = { - 'dtype': 'float', - 'name': '' - }; - - fpath = resolve( __dirname, '..', 'src', 'main.c' ); - file = readFileSync( fpath, opts ); - - copts.name = 'polyval_p'; - str = compileC( P, copts ); - file = insert( file, copts.name, str ); - - writeFileSync( fpath, file, opts ); -} - -main(); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE deleted file mode 100644 index 308c3be89c85..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 1.5 -JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json deleted file mode 100644 index b12d14a013ec..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/data.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,1.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,3.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,4.0e-45,6.0e-45,6.0e-45,6.0e-45,6.0e-45,7.0e-45,7.0e-45,7.0e-45,8.0e-45,8.0e-45,8.0e-45,1.0e-44,1.0e-44,1.1e-44,1.1e-44,1.1e-44,1.3e-44,1.4e-44,1.4e-44,1.5e-44,1.5e-44,1.7e-44,1.8e-44,2.0e-44,2.1e-44,2.1e-44,2.2e-44,2.4e-44,2.7e-44,2.8e-44,3.0e-44,3.1e-44,3.4e-44,3.5e-44,3.8e-44,3.9e-44,4.2e-44,4.5e-44,4.8e-44,5.0e-44,5.3e-44,5.6e-44,6.0e-44,6.4e-44,6.7e-44,7.1e-44,7.7e-44,8.1e-44,8.5e-44,9.1e-44,9.7e-44,1.04e-43,1.1e-43,1.16e-43,1.23e-43,1.32e-43,1.39e-43,1.49e-43,1.57e-43,1.67e-43,1.77e-43,1.88e-43,1.99e-43,2.12e-43,2.26e-43,2.4e-43,2.54e-43,2.69e-43,2.86e-43,3.04e-43,3.22e-43,3.42e-43,3.64e-43,3.87e-43,4.1e-43,4.36e-43,4.62e-43,4.9e-43,5.21e-43,5.54e-43,5.89e-43,6.25e-43,6.63e-43,7.03e-43,7.47e-43,7.93e-43,8.42e-43,8.95e-43,9.5e-43,1.009e-42,1.072e-42,1.138e-42,1.208e-42,1.282e-42,1.362e-42,1.446e-42,1.536e-42,1.631e-42,1.732e-42,1.839e-42,1.952e-42,2.073e-42,2.201e-42,2.337e-42,2.482e-42,2.636e-42,2.798e-42,2.971e-42,3.156e-42,3.35e-42,3.558e-42,3.778e-42,4.01e-42,4.259e-42,4.522e-42,4.802e-42,5.1e-42,5.415e-42,5.75e-42,6.105e-42,6.482e-42,6.883e-42,7.309e-42,7.76e-42,8.241e-42,8.751e-42,9.292e-42,9.867e-42,1.0476e-41,1.1125e-41,1.1813e-41,1.2543e-41,1.3318e-41,1.4142e-41,1.5016e-41,1.5945e-41,1.6932e-41,1.7979e-41,1.9091e-41,2.0271e-41,2.1525e-41,2.2857e-41,2.4269e-41,2.577e-41,2.7365e-41,2.9056e-41,3.0854e-41,3.2761e-41,3.4787e-41,3.6938e-41,3.9224e-41,4.165e-41,4.4225e-41,4.696e-41,4.9864e-41,5.2948e-41,5.6221e-41,5.9698e-41,6.339e-41,6.7311e-41,7.1473e-41,7.5894e-41,8.0587e-41,8.5572e-41,9.0863e-41,9.6482e-41,1.02449e-40,1.08784e-40,1.15512e-40,1.22656e-40,1.30241e-40,1.38297e-40,1.46849e-40,1.55931e-40,1.65573e-40,1.75813e-40,1.86685e-40,1.9823e-40,2.10489e-40,2.23507e-40,2.37331e-40,2.52008e-40,2.67592e-40,2.8414e-40,3.01712e-40,3.2037e-40,3.40183e-40,3.61221e-40,3.83559e-40,4.07283e-40,4.3247e-40,4.59215e-40,4.87614e-40,5.17769e-40,5.49788e-40,5.83788e-40,6.19891e-40,6.58226e-40,6.98933e-40,7.42161e-40,7.88058e-40,8.36794e-40,8.88542e-40,9.43491e-40,1.00184e-39,1.063796e-39,1.129582e-39,1.199439e-39,1.273623e-39,1.352388e-39,1.436021e-39,1.524829e-39,1.619128e-39,1.719257e-39,1.82558e-39,1.938476e-39,2.058356e-39,2.18565e-39,2.320832e-39,2.464357e-39,2.616758e-39,2.778584e-39,2.950417e-39,3.132877e-39,3.326621e-39,3.532346e-39,3.750794e-39,3.98278e-39,4.229084e-39,4.490619e-39,4.768327e-39,5.063211e-39,5.376331e-39,5.708814e-39,6.061859e-39,6.436736e-39,6.83485e-39,7.257531e-39,7.706351e-39,8.182927e-39,8.688977e-39,9.22632e-39,9.796895e-39,1.0402755e-38,1.1046084e-38,1.1729196e-38,1.2454648e-38,1.322487e-38,1.4042723e-38,1.4911154e-38,1.5833291e-38,1.6812454e-38,1.785217e-38,1.8956185e-38,2.0128475e-38,2.1373424e-38,2.26952e-38,2.4098718e-38,2.5589033e-38,2.717151e-38,2.8851853e-38,3.0636112e-38,3.2530712e-38,3.4542478e-38,3.6678654e-38,3.8947235e-38,4.1355813e-38,4.3913342e-38,4.6629033e-38,4.9512667e-38,5.2574633e-38,5.5825954e-38,5.927835e-38,6.294424e-38,6.683735e-38,7.097071e-38,7.5359685e-38,8.0020084e-38,8.496869e-38,9.022333e-38,9.580293e-38,1.0172758e-37,1.0801862e-37,1.1469959e-37,1.2179285e-37,1.2932477e-37,1.3732247e-37,1.4581478e-37,1.5483226e-37,1.6440741e-37,1.745747e-37,1.8537076e-37,1.9683448e-37,2.090087e-37,2.2193424e-37,2.3565912e-37,2.5023276e-37,2.6570767e-37,2.8213956e-37,2.9958766e-37,3.1811477e-37,3.3778766e-37,3.5867987e-37,3.8086135e-37,4.044146e-37,4.2942444e-37,4.5598095e-37,4.8417974e-37,5.141224e-37,5.459168e-37,5.796774e-37,6.1553055e-37,6.5359623e-37,6.9401596e-37,7.3693533e-37,7.825089e-37,8.309009e-37,8.822855e-37,9.368479e-37,9.947844e-37,1.056304e-36,1.1216365e-36,1.1910008e-36,1.2646548e-36,1.34286365e-36,1.4259091e-36,1.5140902e-36,1.6077248e-36,1.7071498e-36,1.8127233e-36,1.9248406e-36,2.0438766e-36,2.1702742e-36,2.3044884e-36,2.4470027e-36,2.5983304e-36,2.7590165e-36,2.9296397e-36,3.1108148e-36,3.3031937e-36,3.5074968e-36,3.7244076e-36,3.9547328e-36,4.1993015e-36,4.458995e-36,4.7347483e-36,5.027555e-36,5.338469e-36,5.6686113e-36,6.0192155e-36,6.3914564e-36,6.786717e-36,7.206422e-36,7.6520815e-36,8.125302e-36,8.627788e-36,9.161348e-36,9.727904e-36,1.0329576e-35,1.0968379e-35,1.1646686e-35,1.2366941e-35,1.3131738e-35,1.3943831e-35,1.4806146e-35,1.5721789e-35,1.6694057e-35,1.7726452e-35,1.8822836e-35,1.9986878e-35,2.1222908e-35,2.2535376e-35,2.392901e-35,2.540883e-35,2.6980164e-35,2.864867e-35,3.0420365e-35,3.230187e-35,3.4299484e-35,3.6420635e-35,3.867296e-35,4.1064575e-35,4.3604093e-35,4.6300662e-35,4.916399e-35,5.2204393e-35,5.543282e-35,5.8861347e-35,6.2501454e-35,6.636667e-35,7.0470927e-35,7.482899e-35,7.945657e-35,8.4370326e-35,8.958796e-35,9.5128264e-35,1.0101196e-34,1.0725875e-34,1.1389185e-34,1.2093516e-34,1.2841403e-34,1.3635543e-34,1.4478792e-34,1.5374191e-34,1.6324962e-34,1.7334664e-34,1.8406675e-34,1.9544981e-34,2.0753683e-34,2.2037135e-34,2.3399955e-34,2.4847058e-34,2.638365e-34,2.801527e-34,2.974779e-34,3.1587696e-34,3.3541145e-34,3.5615399e-34,3.7817926e-34,4.0156664e-34,4.264004e-34,4.5276984e-34,4.8077007e-34,5.1050186e-34,5.4207646e-34,5.755996e-34,6.1119585e-34,6.4899346e-34,6.8912856e-34,7.317457e-34,7.769984e-34,8.2504955e-34,8.7607225e-34,9.302504e-34,9.877865e-34,1.0488733e-33,1.1137377e-33,1.1826135e-33,1.2557488e-33,1.333407e-33,1.4158675e-33,1.5034277e-33,1.5964027e-33,1.6951405e-33,1.7999715e-33,1.9112855e-33,2.0294833e-33,2.1549906e-33,2.2882597e-33,2.4297705e-33,2.5800325e-33,2.739587e-33,2.9090308e-33,3.0889314e-33,3.2799573e-33,3.4827965e-33,3.6981798e-33,3.926883e-33,4.1697294e-33,4.427594e-33,4.7014055e-33,4.99215e-33,5.3009153e-33,5.6287346e-33,5.976827e-33,6.346446e-33,6.738924e-33,7.155673e-33,7.598194e-33,8.068082e-33,8.567029e-33,9.096901e-33,9.659472e-33,1.0256833e-32,1.0891137e-32,1.1564668e-32,1.227985e-32,1.3039262e-32,1.3845637e-32,1.4701878e-32,1.5611192e-32,1.657662e-32,1.7601752e-32,1.8690281e-32,1.9846127e-32,2.1073453e-32,2.2376678e-32,2.3760498e-32,2.5229897e-32,2.6790163e-32,2.844714e-32,3.020637e-32,3.2074392e-32,3.405794e-32,3.616415e-32,3.840062e-32,4.0775392e-32,4.3297028e-32,4.5974604e-32,4.881814e-32,5.1837156e-32,5.504287e-32,5.8446837e-32,6.2061306e-32,6.5899307e-32,6.997465e-32,7.430203e-32,7.889702e-32,8.377617e-32,8.8957745e-32,9.445907e-32,1.0030062e-31,1.0650341e-31,1.130898e-31,1.2008351e-31,1.2750972e-31,1.3539518e-31,1.437683e-31,1.5266039e-31,1.6210122e-31,1.721259e-31,1.8277052e-31,1.9407342e-31,2.0607533e-31,2.1881945e-31,2.323517e-31,2.467208e-31,2.619805e-31,2.7818191e-31,2.9538527e-31,3.136525e-31,3.330494e-31,3.5364588e-31,3.7551607e-31,3.9873873e-31,4.2339755e-31,4.4958136e-31,4.77388e-31,5.069107e-31,5.382591e-31,5.7154614e-31,6.068917e-31,6.444231e-31,6.8427557e-31,7.2659257e-31,7.715266e-31,8.1924565e-31,8.699095e-31,9.237065e-31,9.808303e-31,1.041487e-30,1.1058946e-30,1.1742854e-30,1.2469056e-30,1.3240168e-30,1.4058968e-30,1.4928517e-30,1.5851728e-30,1.683203e-30,1.7872957e-30,1.8978258e-30,2.0151912e-30,2.1398148e-30,2.2721454e-30,2.4126595e-30,2.561883e-30,2.720315e-30,2.8885449e-30,3.0671785e-30,3.256859e-30,3.4582698e-30,3.6721364e-30,3.8992287e-30,4.1403653e-30,4.3964474e-30,4.6683327e-30,4.9570322e-30,5.263585e-30,5.589096e-30,5.9347373e-30,6.3017534e-30,6.691467e-30,7.105281e-30,7.544686e-30,8.011326e-30,8.506763e-30,9.032839e-30,9.591448e-30,1.0184603e-29,1.081444e-29,1.1483227e-29,1.2193373e-29,1.2947437e-29,1.3748237e-29,1.4598457e-29,1.5501255e-29,1.6459885e-29,1.7477798e-29,1.8558661e-29,1.9706366e-29,2.0925048e-29,2.2219097e-29,2.3593171e-29,2.5052412e-29,2.6601706e-29,2.824681e-29,2.999365e-29,3.184852e-29,3.38181e-29,3.5909478e-29,3.8130193e-29,4.0488244e-29,4.2992447e-29,4.565119e-29,4.8474354e-29,5.147211e-29,5.465525e-29,5.803524e-29,6.162426e-29,6.543523e-29,6.9481877e-29,7.377934e-29,7.834201e-29,8.318684e-29,8.8331284e-29,9.379387e-29,9.959428e-29,1.0575339e-28,1.122934e-28,1.1923786e-28,1.2661177e-28,1.3444273e-28,1.4275695e-28,1.5158532e-28,1.6095968e-28,1.7091375e-28,1.8148341e-28,1.9270672e-28,2.0462488e-28,2.172793e-28,2.307163e-28,2.4498426e-28,2.601356e-28,2.7622292e-28,2.933051e-28,3.114437e-28,3.30704e-28,3.5115676e-28,3.7287301e-28,3.9593227e-28,4.204175e-28,4.46417e-28,4.7402615e-28,5.0334092e-28,5.3446853e-28,5.675212e-28,6.0261785e-28,6.3988743e-28,6.7945937e-28,7.2147854e-28,7.6609627e-28,8.134763e-28,8.637833e-28,9.172015e-28,9.739231e-28,1.0341525e-27,1.0981108e-27,1.1660203e-27,1.2381294e-27,1.3146978e-27,1.3960015e-27,1.4823387e-27,1.5740096e-27,1.6713495e-27,1.7747092e-27,1.8844681e-27,2.0010075e-27,2.1247539e-27,2.256153e-27,2.3956783e-27,2.5438416e-27,2.701158e-27,2.8682031e-27,3.0455788e-27,3.2339237e-27,3.4339292e-27,3.6462904e-27,3.8717844e-27,4.1112237e-27,4.365487e-27,4.6354572e-27,4.922124e-27,5.226518e-27,5.5497366e-27,5.8929662e-27,6.257399e-27,6.64437e-27,7.0552715e-27,7.491584e-27,7.954909e-27,8.446857e-27,8.9692275e-27,9.523904e-27,1.01129195e-26,1.0738324e-26,1.14024035e-26,1.2107551e-26,1.2856307e-26,1.365142e-26,1.4495652e-26,1.5392092e-26,1.6343972e-26,1.7354717e-26,1.8428037e-26,1.9567665e-26,2.077777e-26,2.206271e-26,2.3427114e-26,2.4875989e-26,2.6414373e-26,2.804789e-26,2.978243e-26,3.1624358e-26,3.358007e-26,3.5656735e-26,3.786182e-26,4.0203273e-26,4.2689686e-26,4.5329704e-26,4.8132986e-26,5.110963e-26,5.427035e-26,5.7626764e-26,6.119052e-26,6.497467e-26,6.899284e-26,7.3259774e-26,7.779031e-26,8.260102e-26,8.770924e-26,9.313336e-26,9.889329e-26,1.0500906e-25,1.1150304e-25,1.1839862e-25,1.2572063e-25,1.3349596e-25,1.4175162e-25,1.5051783e-25,1.5982617e-25,1.6971079e-25,1.8020605e-25,1.9135037e-25,2.0318387e-25,2.1574917e-25,2.2909243e-25,2.4325998e-25,2.5830368e-25,2.742777e-25,2.9123958e-25,3.0925162e-25,3.283764e-25,3.4868387e-25,3.7024718e-25,3.9314552e-25,4.1745844e-25,4.4327494e-25,4.7068796e-25,4.997963e-25,5.307067e-25,5.6352673e-25,5.983764e-25,6.353812e-25,6.7467447e-25,7.164005e-25,7.6070414e-25,8.0774767e-25,8.577005e-25,9.107424e-25,9.670682e-25,1.02687375e-24,1.0903777e-24,1.157809e-24,1.2294149e-24,1.3054445e-24,1.3861758e-24,1.4718998e-24,1.5629251e-24,1.6595859e-24,1.7622182e-24,1.8711974e-24,1.986916e-24,2.109791e-24,2.2402733e-24,2.3788166e-24,2.5259273e-24,2.682136e-24,2.8480157e-24,3.0241427e-24,3.2111619e-24,3.4097467e-24,3.6206124e-24,3.8445333e-24,4.082287e-24,4.334744e-24,4.6028137e-24,4.887461e-24,5.1897313e-24,5.510675e-24,5.851467e-24,6.2133335e-24,6.597604e-24,7.005613e-24,7.438855e-24,7.898889e-24,8.387373e-24,8.9060984e-24,9.45687e-24,1.0041702e-23,1.0662702e-23,1.1322106e-23,1.2022333e-23,1.276582e-23,1.3555284e-23,1.439357e-23,1.5283699e-23,1.6228936e-23,1.7232566e-23,1.8298263e-23,1.9429867e-23,2.0631527e-23,2.1907423e-23,2.3262224e-23,2.4700808e-23,2.6228357e-23,2.785048e-23,2.9572808e-23,3.1401653e-23,3.3343595e-23,3.540563e-23,3.759533e-23,3.9920303e-23,4.238906e-23,4.5010485e-23,4.7794208e-23,5.07499e-23,5.3888376e-23,5.722095e-23,6.0759607e-23,6.4517355e-23,6.850724e-23,7.274386e-23,7.7242496e-23,8.201933e-23,8.7091904e-23,9.247785e-23,9.819687e-23,1.04269564e-22,1.1071823e-22,1.1756528e-22,1.2483575e-22,1.3255586e-22,1.4075338e-22,1.4945842e-22,1.5870124e-22,1.6851566e-22,1.7893702e-22,1.9000284e-22,2.0175378e-22,2.1423064e-22,2.274791e-22,2.4154689e-22,2.5648562e-22,2.7234722e-22,2.8918972e-22,3.0707381e-22,3.2606388e-22,3.462297e-22,3.6764124e-22,3.9037692e-22,4.1451864e-22,4.4015334e-22,4.6737507e-22,4.9627853e-22,5.269694e-22,5.5955825e-22,5.941625e-22,6.3090914e-22,6.6992587e-22,7.1135543e-22,7.553471e-22,8.020624e-22,8.516636e-22,9.043323e-22,9.60258e-22,1.0196423e-21,1.0827032e-21,1.1496598e-21,1.2207571e-21,1.2962513e-21,1.3764141e-21,1.46154e-21,1.5519246e-21,1.6478988e-21,1.7498083e-21,1.8580272e-21,1.9729314e-21,2.0949415e-21,2.2244969e-21,2.3620643e-21,2.508149e-21,2.6632578e-21,2.8279593e-21,3.0028462e-21,3.1885482e-21,3.3857476e-21,3.5951293e-21,3.8174595e-21,4.053539e-21,4.3042343e-21,4.5704172e-21,4.8530614e-21,5.1531846e-21,5.471868e-21,5.810282e-21,6.1696013e-21,6.5511424e-21,6.956279e-21,7.386469e-21,7.8432934e-21,8.328339e-21,8.843381e-21,9.390273e-21,9.971025e-21,1.0587653e-20,1.1242416e-20,1.193767e-20,1.267592e-20,1.34598765e-20,1.4292262e-20,1.5176126e-20,1.6114648e-20,1.7111212e-20,1.8169473e-20,1.929311e-20,2.0486236e-20,2.1753147e-20,2.3098406e-20,2.4526954e-20,2.6043751e-20,2.765435e-20,2.936455e-20,3.1180635e-20,3.310891e-20,3.5156433e-20,3.7330577e-20,3.9639177e-20,4.2090707e-20,4.4693683e-20,4.745763e-20,5.039251e-20,5.3508886e-20,5.68182e-20,6.0331956e-20,6.4063006e-20,6.8024794e-20,7.223187e-20,7.669883e-20,8.1442045e-20,8.6478586e-20,9.18266e-20,9.750572e-20,1.0353567e-19,1.0993853e-19,1.1673736e-19,1.2395663e-19,1.3162287e-19,1.397627e-19,1.4840591e-19,1.5758365e-19,1.6732956e-19,1.7767758e-19,1.8866553e-19,2.0033299e-19,2.1272199e-19,2.2587803e-19,2.3984678e-19,2.546794e-19,2.704293e-19,2.871532e-19,3.049125e-19,3.2376893e-19,3.4379146e-19,3.6505223e-19,3.876293e-19,4.1160107e-19,4.3705535e-19,4.6408374e-19,4.9278365e-19,5.232604e-19,5.5561985e-19,5.899806e-19,6.2646617e-19,6.652081e-19,7.0634865e-19,7.500307e-19,7.9641415e-19,8.4566603e-19,8.979637e-19,9.534994e-19,1.0124657e-18,1.0750786e-18,1.1415637e-18,1.2121649e-18,1.2871277e-18,1.3667263e-18,1.4512475e-18,1.5409956e-18,1.6363003e-18,1.7374925e-18,1.8449426e-18,1.9590375e-18,2.0801884e-18,2.20884e-18,2.3454392e-18,2.490486e-18,2.6445028e-18,2.808055e-18,2.9817109e-18,3.166106e-18,3.3619046e-18,3.5698117e-18,3.7905903e-18,4.0250083e-18,4.273923e-18,4.5382313e-18,4.818885e-18,5.116914e-18,5.433355e-18,5.7693647e-18,6.126154e-18,6.5050327e-18,6.907317e-18,7.33448e-18,7.788059e-18,8.2696885e-18,8.781137e-18,9.32418e-18,9.900807e-18,1.0513093e-17,1.1163245e-17,1.1853648e-17,1.2586702e-17,1.3365089e-17,1.4191614e-17,1.5069252e-17,1.6001227e-17,1.6990776e-17,1.804152e-17,1.9157245e-17,2.0342045e-17,2.160004e-17,2.293583e-17,2.4354229e-17,2.5860346e-17,2.7459706e-17,2.9157872e-17,3.0961053e-17,3.287575e-17,3.4908855e-17,3.706783e-17,3.9360182e-17,4.1794296e-17,4.437894e-17,4.7123606e-17,5.0037826e-17,5.313227e-17,5.641808e-17,5.990709e-17,6.361211e-17,6.754601e-17,7.1723196e-17,7.6158704e-17,8.086851e-17,8.586992e-17,9.118029e-17,9.681906e-17,1.0280655e-16,1.0916474e-16,1.1591572e-16,1.2308418e-16,1.3069595e-16,1.3877846e-16,1.4736138e-16,1.564745e-16,1.661512e-16,1.7642634e-16,1.873369e-16,1.9892296e-16,2.1122476e-16,2.2428734e-16,2.3815774e-16,2.5288685e-16,2.685259e-16,2.851321e-16,3.0276526e-16,3.214889e-16,3.4137172e-16,3.6248283e-16,3.8489953e-16,4.087025e-16,4.3397752e-16,4.608173e-16,4.893152e-16,5.1957546e-16,5.517071e-16,5.858258e-16,6.220568e-16,6.6052614e-16,7.013744e-16,7.4474885e-16,7.9080865e-16,8.397139e-16,8.916435e-16,9.467846e-16,1.0053357e-15,1.0675118e-15,1.1335289e-15,1.2036286e-15,1.2780636e-15,1.3571016e-15,1.4410331e-15,1.5301495e-15,1.6247771e-15,1.7252566e-15,1.8319571e-15,1.945249e-15,2.0655472e-15,2.1932849e-15,2.3289222e-15,2.472957e-15,2.6258898e-15,2.78828e-15,2.960713e-15,3.1438096e-15,3.338242e-15,3.5446857e-15,3.7638964e-15,3.9966636e-15,4.2438417e-15,4.5062894e-15,4.784968e-15,5.08088e-15,5.395092e-15,5.7287574e-15,6.0830357e-15,6.459223e-15,6.858675e-15,7.282829e-15,7.733244e-15,8.211484e-15,8.719299e-15,9.258517e-15,9.831121e-15,1.0439098e-14,1.1084673e-14,1.17701725e-14,1.24980635e-14,1.3270995e-14,1.4091727e-14,1.496319e-14,1.5888542e-14,1.6871155e-14,1.7914503e-14,1.9022408e-14,2.0198793e-14,2.1447969e-14,2.2774356e-14,2.4182769e-14,2.5678329e-14,2.726633e-14,2.8952592e-14,3.0743078e-14,3.2644355e-14,3.466315e-14,3.680679e-14,3.9083073e-14,4.150005e-14,4.4066584e-14,4.679175e-14,4.9685543e-14,5.27582e-14,5.6020875e-14,5.9485437e-14,6.3164135e-14,6.707047e-14,7.121824e-14,7.562252e-14,8.0299326e-14,8.52652e-14,9.0538356e-14,9.613743e-14,1.0208296e-13,1.0839598e-13,1.1509942e-13,1.2221763e-13,1.2977582e-13,1.3780169e-13,1.4632363e-13,1.5537288e-13,1.6498145e-13,1.7518425e-13,1.8601836e-13,1.975221e-13,2.0973768e-13,2.2270829e-13,2.364815e-13,2.51106e-13,2.6663489e-13,2.8312468e-13,3.006337e-13,3.192261e-13,3.389677e-13,3.5993086e-13,3.8218972e-13,4.058251e-13,4.3092298e-13,4.575722e-13,4.858703e-13,5.159175e-13,5.4782394e-13,5.817025e-13,6.176762e-13,6.558758e-13,6.964365e-13,7.39507e-13,7.852396e-13,8.3380205e-13,8.8536605e-13,9.40119e-13,9.982597e-13,1.0599942e-12,1.1255485e-12,1.1951548e-12,1.269068e-12,1.3475498e-12,1.430885e-12,1.5193767e-12,1.6133382e-12,1.7131136e-12,1.819056e-12,1.9315502e-12,2.0510052e-12,2.1778436e-12,2.3125304e-12,2.4555418e-12,2.6074026e-12,2.76865e-12,2.9398688e-12,3.1216822e-12,3.3147335e-12,3.51973e-12,3.7373975e-12,3.9685334e-12,4.2139556e-12,4.4745553e-12,4.75128e-12,5.045109e-12,5.3571193e-12,5.6884146e-12,6.040209e-12,6.413748e-12,6.8103873e-12,7.2315695e-12,7.678785e-12,8.153672e-12,8.657912e-12,9.193353e-12,9.761888e-12,1.0365583e-11,1.1006634e-11,1.16873065e-11,1.2410097e-11,1.3177563e-11,1.3992517e-11,1.4857844e-11,1.5776684e-11,1.6752377e-11,1.7788378e-11,1.8888485e-11,2.0056588e-11,2.129697e-11,2.2614017e-11,2.4012514e-11,2.5497547e-11,2.7074367e-11,2.8748757e-11,3.052664e-11,3.241453e-11,3.4419113e-11,3.654766e-11,3.880792e-11,4.1207877e-11,4.3756342e-11,4.6462324e-11,4.9335744e-11,5.238677e-11,5.5626472e-11,5.906664e-11,6.271944e-11,6.659827e-11,7.071684e-11,7.509012e-11,7.9734e-11,8.4664914e-11,8.9900934e-11,9.546059e-11,1.01364264e-10,1.0763284e-10,1.1428908e-10,1.2135717e-10,1.2886216e-10,1.3683152e-10,1.4529346e-10,1.54279e-10,1.6381993e-10,1.739509e-10,1.8470872e-10,1.961315e-10,2.0826106e-10,2.2114036e-10,2.3481658e-10,2.4933813e-10,2.6475772e-10,2.811314e-10,2.9851716e-10,3.1697867e-10,3.3658126e-10,3.5739683e-10,3.79499e-10,4.02968e-10,4.2788917e-10,4.5435072e-10,4.8244964e-10,5.1228527e-10,5.439671e-10,5.7760713e-10,6.1332756e-10,6.5125827e-10,6.915334e-10,7.343006e-10,7.797113e-10,8.2793183e-10,8.791328e-10,9.335002e-10,9.912317e-10,1.0525315e-9,1.1176243e-9,1.1867405e-9,1.2601333e-9,1.3380627e-9,1.4208111e-9,1.50868e-9,1.6019798e-9,1.7010527e-9,1.8062494e-9,1.9179516e-9,2.0365656e-9,2.1625108e-9,2.2962494e-9,2.438254e-9,2.5890456e-9,2.7491576e-9,2.9191711e-9,3.0997047e-9,3.2913967e-9,3.49495e-9,3.711085e-9,3.9405936e-9,4.184288e-9,4.443053e-9,4.7178297e-9,5.00959e-9,5.3194036e-9,5.648366e-9,5.997684e-9,6.3685937e-9,6.7624404e-9,7.1806574e-9,7.624724e-9,8.096268e-9,8.596958e-9,9.1286285e-9,9.693162e-9,1.0292607e-8,1.0929144e-8,1.16050245e-8,1.2322727e-8,1.3084789e-8,1.3894006e-8,1.47532395e-8,1.5665611e-8,1.6634436e-8,1.7663144e-8,1.8755504e-8,1.9915383e-8,2.1147033e-8,2.2454808e-8,2.3843459e-8,2.5318036e-8,2.6883756e-8,2.8546356e-8,3.031172e-8,3.218632e-8,3.417679e-8,3.6290352e-8,3.8534697e-8,4.091776e-8,4.344828e-8,4.6135213e-8,4.8988312e-8,5.201795e-8,5.5234846e-8,5.8650794e-8,6.227788e-8,6.6129395e-8,7.0218974e-8,7.456146e-8,7.917264e-8,8.4068844e-8,8.9268006e-8,9.4788525e-8,1.0065063e-7,1.0687507e-7,1.1348455e-7,1.2050279e-7,1.2795505e-7,1.3586805e-7,1.4427054e-7,1.5319269e-7,1.626666e-7,1.7272639e-7,1.8340832e-7,1.9475085e-7,2.0679465e-7,2.1958347e-7,2.3316318e-7,2.475827e-7,2.62894e-7,2.7915215e-7,2.9641578e-7,3.1474673e-7,3.3421165e-7,3.548803e-7,3.768272e-7,4.0013134e-7,4.248767e-7,4.5115237e-7,4.790526e-7,5.086786e-7,5.401369e-7,5.735406e-7,6.0901016e-7,6.466732e-7,6.866648e-7,7.2913025e-7,7.7422186e-7,8.2210215e-7,8.729435e-7,9.26929e-7,9.842531e-7,1.0451214e-6,1.1097549e-6,1.1783854e-6,1.2512605e-6,1.3286423e-6,1.4108095e-6,1.4980584e-6,1.5907013e-6,1.6890752e-6,1.7935328e-6,1.9044504e-6,2.0222274e-6,2.1472881e-6,2.280083e-6,2.421088e-6,2.5708157e-6,2.7298026e-6,2.8986221e-6,3.0778817e-6,3.2682274e-6,3.4703414e-6,3.6849578e-6,3.912847e-6,4.1548296e-6,4.411777e-6,4.684615e-6,4.9743257e-6,5.2819482e-6,5.6086e-6,5.955453e-6,6.3237567e-6,6.714837e-6,7.1301033e-6,7.571051e-6,8.03926e-6,8.536433e-6,9.064352e-6,9.62492e-6,1.0220154e-5,1.0852199e-5,1.1523332e-5,1.2235959e-5,1.2992668e-5,1.3796175e-5,1.4649372e-5,1.5555335e-5,1.6517324e-5,1.753879e-5,1.8623443e-5,1.9775172e-5,2.099813e-5,2.229672e-5,2.3675617e-5,2.5139789e-5,2.6694486e-5,2.8345354e-5,3.0098317e-5,3.195969e-5,3.3936176e-5,3.6034893e-5,3.8263403e-5,4.062969e-5,4.3142354e-5,4.5810408e-5,4.8643466e-5,5.1651725e-5,5.4846027e-5,5.8237874e-5,6.1839426e-5,6.5663764e-5,6.9724614e-5,7.4036594e-5,7.8615245e-5,8.3477054e-5,8.8639536e-5,9.4121184e-5,9.994193e-5,0.00010612264,0.00011268559,0.00011965441,0.00012705421,0.0001349115,0.00014325485,0.00015211415,0.00016152137,0.00017151034,0.00018211707,0.00019337975,0.00020533876,0.00021803753,0.00023152164,0.00024583965,0.00026104314,0.00027718683,0.00029432893,0.0003125308,0.0003318587,0.00035238185,0.0003741742,0.00039731432,0.00042188523,0.0004479759,0.00047568014,0.0005050974,0.0005363342,0.0005695027,0.00060472253,0.0006421201,0.0006818308,0.0007239973,0.00076877116,0.0008163143,0.0008667977,0.0009204027,0.0009773232,0.0010377639,0.0011019424,0.0011700894,0.0012424513,0.0013192883,0.0014008763,0.0014875109,0.0015795031,0.0016771845,0.0017809058,0.0018910425,0.0020079904,0.0021321697,0.0022640296,0.0024040441,0.0025527163,0.002710584,0.002878215,0.0030562126,0.0032452166,0.0034459108,0.0036590165,0.0038852994,0.0041255783,0.0043807165,0.004651631,0.0049393023,0.005244764,0.0055691167,0.005913525,0.0062792352,0.0066675628,0.0070799016,0.007517745,0.007982665,0.008476337,0.009000536,0.009557157,0.010148201,0.0107757915,0.011442199,0.01214982,0.012901196,0.013699045,0.014546237,0.01544582,0.01640103,0.017415319,0.018492332,0.019635955,0.020850297,0.022139743,0.023508927,0.024962785,0.026506562,0.028145801,0.029886425,0.031734686,0.033697248,0.035781186,0.037993997,0.040343665,0.04283863,0.045487892,0.048301,0.05128807,0.05445988,0.057827834,0.061404087,0.06520148,0.06923373,0.073515356,0.07806175,0.08288933,0.088015445,0.09345856,0.09923833,0.105375506,0.11189225,0.11881198,0.12615965,0.13396175,0.14224632,0.15104325,0.16038421,0.17030284,0.18083487,0.19201823,0.20389318,0.21650253,0.22989169,0.24410887,0.25920528,0.27523527,0.29225662,0.31033063,0.32952237,0.34990102,0.3715399,0.39451703,0.4189151,0.44482204,0.47233114,0.50154144,0.53255826,0.56549317,0.60046494,0.63759947,0.6770305,0.7189,0.7633589,0.8105672,0.86069506,0.91392297,0.9704426,1.0304576,1.0941842,1.1618516,1.233704,1.3099998,1.391014,1.4770384,1.5683827,1.6653762,1.7683679,1.8777288,1.9938531,2.1171587,2.24809,2.3871186,2.534745,2.691501,2.8579512,3.0346951,3.2223697,3.4216504,3.6332555,3.8579462,4.096533,4.3498745,4.6188836,4.904529,5.207839,5.5299067,5.8718925,6.235028,6.6206203,7.030059,7.4648175,7.9264646,8.416659,8.937169,9.489871,10.076752,10.699929,11.361643,12.064279,12.81037,13.6026,14.443827,15.337073,16.28556,17.292711,18.36214,19.497711,20.703505,21.983873,23.343418,24.78704,26.319946,27.947647,29.676014,31.511263,33.460007,35.529278,37.72651,40.05963,42.53703,45.16764,47.960945,50.926987,54.07647,57.420708,60.971783,64.74243,68.74631,72.99779,77.51219,82.30575,87.39578,92.800606,98.539635,104.63363,111.10449,117.97548,125.27145,133.01862,141.2449,149.97984,159.25507,169.10388,179.56169,190.66635,202.45773,214.97835,228.27315,242.39026,257.38043,273.2975,290.19904,308.14584,327.20236,347.43756,368.92416,391.73956,415.96576,441.69034,469.00583,498.01035,528.80884,561.512,596.23737,633.1105,672.264,713.83887,757.9845,804.86053,854.6356,907.48846,963.61035,1023.20294,1086.481,1153.6718,1225.0183,1300.7772,1381.2206,1466.6395,1557.3411,1653.651,1755.9178,1864.5092,1979.8162,2102.2532,2232.263,2370.3127,2516.8992,2672.5518,2837.8306,3013.3308,3199.6843,3397.5596,3607.675,3830.7847,4067.6921,4319.2505,4586.366,4870.0015,5171.1724,5490.9736,5830.5522,6191.1313,6574.01,6980.567,7412.2666,7870.6562,8357.401,8874.249,9423.06,10005.811,10624.601,11281.648,11979.34,12720.179,13506.834,14342.138,15229.1,16170.914,17170.957,18232.861,19360.438,20557.746,21829.1,23179.078,24612.545,26134.635,27750.88,29467.08,31289.414,33224.45,35279.15,37460.92,39777.582,42237.547,44849.65,47623.29,50568.457,53695.766,57016.477,60542.492,64286.63,68262.31,72483.86,76966.484,81726.33,86780.45,92147.22,97845.89,103896.98,110322.29,117144.95,124389.555,132082.06,140250.42,148923.94,158133.86,167913.33,178297.61,189324.08,201032.28,213464.73,226666.03,240683.77,255568.39,271373.53,288156.1,305976.25,324898.75,344991.5,366326.84,388981.6,413037.4,438580.5,465703.7,494504.22,525085.9,557558.8,592039.94,628653.5,667530.75,708812.9,752648.06,799194.1,848618.75,901099.94,956826.7,1.0159988e6,1.0788312e6,1.1455495e6,1.2163939e6,1.2916194e6,1.371497e6,1.4563146e6,1.5463761e6,1.6420089e6,1.7435556e6,1.8513825e6,1.9658776e6,2.0874536e6,2.216546e6,2.353624e6,2.4991792e6,2.6537362e6,2.8178515e6,2.992116e6,3.1771578e6,3.3736395e6,3.5822758e6,3.8038148e6,4.0390542e6,4.288842e6,4.554077e6,4.835715e6,5.1347655e6,5.452315e6,5.789503e6,6.147544e6,6.5277265e6,6.9314215e6,7.360082e6,7.8152445e6,8.298563e6,8.811772e6,9.356719e6,9.935358e6,1.0549801e7,1.1202222e7,1.1895013e7,1.2630625e7,1.3411754e7,1.4241165e7,1.5121868e7,1.6057066e7,1.7050068e7,1.8104514e7,1.9224134e7,2.0413032e7,2.1675418e7,2.301587e7,2.4439264e7,2.5950638e7,2.7555532e7,2.9259622e7,3.1069098e7,3.2990538e7,3.503074e7,3.7197184e7,3.9497536e7,4.1940224e7,4.4533892e7,4.728796e7,5.021244e7,5.331768e7,5.6615064e7,6.0116256e7,6.3834092e7,6.778172e7,7.197348e7,7.6424616e7,8.115087e7,8.6169576e7,9.149848e7,9.715712e7,1.0316551e8,1.0954548e8,1.16320216e8,1.23513704e8,1.3115229e8,1.3926302e8,1.4787562e8,1.5702054e8,1.66731e8,1.7704234e8,1.87991e8,1.9961714e8,2.1196187e8,2.2507046e8,2.3898928e8,2.5376886e8,2.6946298e8,2.861271e8,3.0382237e8,3.226114e8,3.4256298e8,3.6374778e8,3.862427e8,4.1012954e8,4.3549277e8,4.624254e8,4.9102275e8,5.213896e8,5.536334e8,5.878712e8,6.242276e8,6.628311e8,7.038233e8,7.473492e8,7.935668e8,8.426442e8,8.947551e8,9.500904e8,1.0088459e9,1.07123706e9,1.1374845e9,1.2078289e9,1.282526e9,1.36184e9,1.4460618e9,1.5354892e9,1.6304502e9,1.7312805e9,1.8383465e9,1.9520372e9,2.0727553e9,2.2009428e9,2.3370537e9,2.4815867e9,2.635053e9,2.7980104e9,2.9710505e9,3.1547866e9,3.3498913e9,3.5570555e9,3.7770383e9,4.010618e9,4.258643e9,4.5220147e9,4.8016655e9,5.0986204e9,5.4139295e9,5.748749e9,6.104263e9,6.4817633e9,6.882622e9,7.308258e9,7.76023e9,8.240139e9,8.749742e9,9.290844e9,9.86541e9,1.0475527e10,1.1123355e10,1.1811269e10,1.2541701e10,1.3317331e10,1.4140902e10,1.5015406e10,1.5944019e10,1.6930031e10,1.7977053e10,1.908879e10,2.026928e10,2.1522815e10,2.285383e10,2.4267205e10,2.5767938e10,2.7361532e10,2.9053626e10,3.0850361e10,3.2758274e10,3.4784113e10,3.6935303e10,3.921946e10,4.164495e10,4.4220363e10,4.6955037e10,4.985893e10,5.2942307e10,5.6216478e10,5.969302e10,6.338468e10,6.7304518e10,7.146677e10,7.588657e10,8.057954e10,8.556292e10,9.08543e10,9.6473104e10,1.0243919e11,1.08774244e11,1.15501285e11,1.2264413e11,1.3022894e11,1.3828257e11,1.4683452e11,1.5591508e11,1.6555717e11,1.7579591e11,1.866675e11,1.9821176e11,2.1046958e11,2.2348589e11,2.3730672e11,2.5198225e11,2.6756588e11,2.8411268e11,3.0168338e11,3.203401e11,3.4015124e11,3.611869e11,3.8352342e11,4.0724208e11,4.3242678e11,4.591698e11,4.8756582e11,5.1771887e11,5.4973566e11,5.837324e11,6.198329e11,6.581646e11,6.988682e11,7.420876e11,7.879798e11,8.3671174e11,8.884557e11,9.434014e11,1.0017433e12,1.0636952e12,1.1294763e12,1.1993254e12,1.2734966e12,1.3522523e12,1.435881e12,1.5246789e12,1.6189713e12,1.7190917e12,1.825404e12,1.9382943e12,2.0581624e12,2.1854476e12,2.3206001e12,2.4641156e12,2.6165015e12,2.7783114e12,2.9501334e12,3.132576e12,3.3263072e12,3.5320127e12,3.7504468e12,3.9823823e12,4.2286609e12,4.4901786e12,4.7678604e12,5.062724e12,5.375814e12,5.708276e12,6.0612873e12,6.43613e12,6.8341664e12,7.2568055e12,7.705596e12,8.1821256e12,8.6881416e12,9.225435e12,9.795954e12,1.0401775e13,1.1045043e13,1.1728114e13,1.2453404e13,1.3223574e13,1.4041347e13,1.4909693e13,1.5831768e13,1.6810838e13,1.7850488e13,1.89544e13,2.0126577e13,2.1371288e13,2.2692932e13,2.4096356e13,2.5586525e13,2.71689e13,2.884908e13,3.0633166e13,3.2527645e13,3.4539223e13,3.667527e13,3.8943345e13,4.1351756e13,4.3909036e13,4.662446e13,4.9507908e13,5.2569578e13,5.5820696e13,5.9272763e13,6.2938434e13,6.6830673e13,7.096362e13,7.53523e13,8.00124e13,8.496053e13,9.0214656e13,9.579372e13,1.017178e14,1.0800865e14,1.1468813e14,1.2178068e14,1.2931184e14,1.3730927e14,1.4580077e14,1.5481738e14,1.643916e14,1.7455792e14,1.8535364e14,1.968163e14,2.0898782e14,2.2191207e14,2.3563556e14,2.502087e14,2.6568213e14,2.8211244e14,2.9955887e14,3.180854e14,3.3775646e14,3.5864403e14,3.808233e14,4.043742e14,4.2938318e14,4.5593712e14,4.841332e14,5.14073e14,5.4586434e14,5.796239e14,6.15469e14,6.535309e14,6.939466e14,7.368645e14,7.824337e14,8.30821e14,8.822007e14,9.367578e14,9.946926e14,1.0562065e15,1.1215245e15,1.1908818e15,1.2645284e15,1.3427346e15,1.425772e15,1.5139447e15,1.6075702e15,1.7069921e15,1.812556e15,1.9246483e15,2.0436724e15,2.1700573e15,2.3042669e15,2.4467674e15,2.5980807e15,2.7587512e15,2.929358e15,3.1105275e15,3.302889e15,3.5071463e15,3.7240354e15,3.9543375e15,4.198898e15,4.4585664e15,4.734293e15,5.027072e15,5.3379765e15,5.668088e15,6.0186144e15,6.3908174e15,6.7860387e15,7.205729e15,7.651346e15,8.124521e15,8.6269583e15,9.160467e15,9.727007e15,1.0328544e16,1.0967283e16,1.1645521e16,1.2365752e16,1.3130475e16,1.3942491e16,1.4804723e16,1.5720278e16,1.6692516e16,1.7724816e16,1.8820955e16,1.9984882e16,2.1220787e16,2.253321e16,2.392671e16,2.5406387e16,2.6977572e16,2.8646027e16,3.0417558e16,3.2298642e16,3.4296057e16,3.6416993e16,3.8669244e16,4.106063e16,4.3599905e16,4.6296213e16,4.9159264e16,5.2199572e16,5.5427704e16,5.8855466e16,6.2495206e16,6.6360294e16,7.046415e16,7.48218e16,7.944893e16,8.436222e16,8.9579695e16,9.511948e16,1.0100187e17,1.0724803e17,1.1388047e17,1.2092353e17,1.2840169e17,1.3634232e17,1.44774e17,1.5372714e17,1.6323456e17,1.7332932e17,1.8404835e17,1.9543029e17,2.075169e17,2.2035015e17,2.3397705e17,2.4844668e17,2.6381113e17,2.8012684e17,2.9745043e17,3.158454e17,3.353779e17,3.5611838e17,3.7814294e17,4.0152804e17,4.2635938e17,4.5272632e17,4.807257e17,5.1045473e17,5.420223e17,5.7554208e17,6.111348e17,6.489311e17,6.8906236e17,7.316754e17,7.769237e17,8.2497024e17,8.759914e17,9.301645e17,9.876878e17,1.0487685e18,1.1136307e18,1.1824999e18,1.2556281e18,1.3332788e18,1.4157314e18,1.503289e18,1.5962555e18,1.6949711e18,1.7997917e18,1.9110944e18,2.0292882e18,2.1547836e18,2.2880399e18,2.429537e18,2.5797844e18,2.739334e18,2.9087401e18,3.0886224e18,3.2796293e18,3.4824617e18,3.6978242e18,3.9265053e18,4.1693286e18,4.4271682e18,4.7009713e18,4.9916893e18,5.3003855e18,5.628172e18,5.97623e18,6.3458363e18,6.738276e18,7.154985e18,7.5974637e18,8.067337e18,8.566238e18,9.095992e18,9.658507e18,1.0255809e19,1.0890091e19,1.1563556e19,1.227867e19,1.3038009e19,1.3844306e19,1.4700522e19,1.5609632e19,1.6574964e19,1.7599994e19,1.8688485e19,1.984422e19,2.1071426e19,2.2374527e19,2.3758214e19,2.5227566e19,2.6787692e19,2.8444298e19,3.0203351e19,3.2071188e19,3.4054666e19,3.6160677e19,3.839693e19,4.0771474e19,4.329303e19,4.597036e19,4.881326e19,5.183197e19,5.503737e19,5.8441216e19,6.205534e19,6.589297e19,6.996793e19,7.429489e19,7.888974e19,8.376844e19,8.8948855e19,9.444963e19,1.0029059e20,1.0649317e20,1.1307893e20,1.20071965e20,1.2749746e20,1.3538268e20,1.4375503e20,1.5264513e20,1.6208503e20,1.721087e20,1.8275294e20,1.9405476e20,2.0605552e20,2.187984e20,2.3232936e20,2.4669802e20,2.6195434e20,2.7815412e20,2.9535574e20,3.1362234e20,3.330174e20,3.5361188e20,3.7547995e20,3.987004e20,4.233585e20,4.4953985e20,4.7734032e20,5.0686e20,5.3820528e20,5.7149117e20,6.068334e20,6.443612e20,6.842098e20,7.2652555e20,7.7145536e20,8.1916375e20,8.698225e20,9.236141e20,9.807361e20,1.0413868e21,1.1057883e21,1.1741725e21,1.2467858e21,1.3238946e21,1.405767e21,1.4927025e21,1.5850143e21,1.6830412e21,1.787124e21,1.8976434e21,2.0149976e21,2.1396091e21,2.2719357e21,2.4124367e21,2.561627e21,2.720043e21,2.888256e21,3.0668835e21,3.256546e21,3.4579375e21,3.6717834e21,3.898854e21,4.139983e21,4.396008e21,4.6678662e21,4.956537e21,5.2630794e21,5.588559e21,5.934167e21,6.301148e21,6.690824e21,7.1046254e21,7.54399e21,8.0105256e21,8.505913e21,9.0319364e21,9.590526e21,1.0183624e22,1.08134e22,1.1482123e22,1.2192247e22,1.2946241e22,1.3746864e22,1.4596998e22,1.5499707e22,1.6458302e22,1.7476118e22,1.8556877e22,1.9704473e22,2.0923037e22,2.2217045e22,2.3590994e22,2.504991e22,2.6599048e22,2.8244095e22,2.9990767e22,3.184546e22,3.3814848e22,3.5906027e22,3.8126673e22,4.0484505e22,4.298815e22,4.5646626e22,4.846951e22,5.146716e22,5.4649993e22,5.802966e22,6.1618336e22,6.542919e22,6.9475464e22,7.377197e22,7.833418e22,8.317853e22,8.832279e22,9.378486e22,9.95847e22,1.0574323e23,1.1228261e23,1.19226855e23,1.2660009e23,1.344293e23,1.4274268e23,1.5157018e23,1.609442e23,1.7089732e23,1.8146597e23,1.926882e23,2.0460521e23,2.1725842e23,2.3069412e23,2.4496073e23,2.601096e23,2.7619636e23,2.9327691e23,3.1141375e23,3.3067223e23,3.5112167e23,3.728372e23,3.958942e23,4.2037712e23,4.463741e23,4.739806e23,5.0329253e23,5.3441716e23,5.6746663e23,6.0255994e23,6.398259e23,6.793941e23,7.214092e23,7.660226e23,8.1339506e23,8.6370034e23,9.171133e23,9.7382956e23,1.0340531e24,1.0980053e24,1.1659082e24,1.2380104e24,1.3145715e24,1.3958673e24,1.4821962e24,1.5738583e24,1.671189e24,1.7745387e24,1.8842799e24,2.0008151e24,2.1245497e24,2.2559362e24,2.3954479e24,2.5435875e24,2.7008985e24,2.8679274e24,3.045286e24,3.2336128e24,3.433599e24,3.64594e24,3.8714124e24,4.1108284e24,4.3650505e24,4.635012e24,4.9216507e24,5.2260156e24,5.549203e24,5.892377e24,6.256798e24,6.643731e24,7.054593e24,7.4908636e24,7.9541444e24,8.4460447e24,8.968366e24,9.522988e24,1.0111909e25,1.0737292e25,1.1401308e25,1.2106387e25,1.2855071e25,1.3650056e25,1.4494258e25,1.5390613e25,1.6342401e25,1.7353048e25,1.8426266e25,1.9565784e25,2.0775772e25,2.206059e25,2.342486e25,2.48736e25,2.6411831e25,2.8045194e25,2.9779566e25,3.1621197e25,3.3576844e25,3.5653307e25,3.785818e25,4.0199408e25,4.2685586e25,4.5325347e25,4.8128362e25,5.1104717e25,5.4265138e25,5.7621223e25,6.118464e25,6.4968423e25,6.8986207e25,7.3252454e25,7.778284e25,8.259308e25,8.770081e25,9.312441e25,9.888341e25,1.0499897e26,1.11492315e26,1.1838724e26,1.2570854e26,1.3348313e26,1.4173799e26,1.5050337e26,1.598108e26,1.6969383e26,1.8018874e26,1.9133197e26,2.0316434e26,2.1572844e26,2.2906953e26,2.4323659e26,2.5827884e26,2.7425132e26,2.912116e26,3.092219e26,3.283448e26,3.4865033e26,3.7021158e26,3.9310624e26,4.174183e26,4.4323235e26,4.7064274e26,4.9974823e26,5.306537e26,5.634726e26,5.983189e26,6.353201e26,6.746097e26,7.1633164e26,7.6063105e26,8.0767e26,8.57618e26,9.106549e26,9.669753e26,1.0267751e27,1.090273e27,1.15769766e27,1.22929206e27,1.305319e27,1.3860426e27,1.4717583e27,1.562775e27,1.6594264e27,1.7620488e27,1.8710175e27,1.9867251e27,2.1095882e27,2.2400581e27,2.3785878e27,2.5256845e27,2.681878e27,2.847731e27,3.023852e27,3.2108533e27,3.409419e27,3.6202644e27,3.8441492e27,4.081895e27,4.3343276e27,4.6023712e27,4.8869914e27,5.1892326e27,5.510146e27,5.850904e27,6.2127365e27,6.5969447e27,7.004913e27,7.4381115e27,7.89816e27,8.386598e27,8.905243e27,9.455961e27,1.0040737e28,1.0661677e28,1.1321018e28,1.2021132e28,1.2764544e28,1.355393e28,1.4392242e28,1.5282287e28,1.6227376e28,1.7230911e28,1.8296506e28,1.9427999e28,2.0629467e28,2.1905235e28,2.3259898e28,2.4698527e28,2.6225936e28,2.78478e28,2.9569967e28,3.1398635e28,3.334039e28,3.5402229e28,3.7591574e28,3.9916313e28,4.2385147e28,4.500633e28,4.778961e28,5.074502e28,5.38832e28,5.7215446e28,6.0753764e28,6.4510903e28,6.850039e28,7.2736594e28,7.7235366e28,8.201176e28,8.708354e28,9.246896e28,9.818743e28,1.0425954e29,1.1070716e29,1.1755353e29,1.2482328e29,1.3254361e29,1.4074039e29,1.4944407e29,1.5868598e29,1.6849946e29,1.7891981e29,1.8998458e29,2.0173362e29,2.1420923e29,2.2745637e29,2.4152458e29,2.5646098e29,2.7232104e29,2.8916193e29,3.070443e29,3.2603256e29,3.4619506e29,3.676045e29,3.903379e29,4.1448037e29,4.401127e29,4.6733015e29,4.962308e29,5.2691874e29,5.5950447e29,5.941054e29,6.308461e29,6.698589e29,7.112898e29,7.552774e29,8.019853e29,8.515817e29,9.042453e29,9.601657e29,1.01954434e30,1.082595e30,1.149545e30,1.2206352e30,1.2961317e30,1.3762871e30,1.4613996e30,1.5517754e30,1.6477404e30,1.7496401e30,1.8578414e30,1.972734e30,2.094732e30,2.2242916e30,2.3618463e30,2.5079078e30,2.6630018e30,2.8276875e30,3.0025574e30,3.1882417e30,3.385409e30,3.59477e30,3.8170778e30,4.0531647e30,4.3038206e30,4.5699778e30,4.8525947e30,5.152689e30,5.471342e30,5.809701e30,6.168985e30,6.550488e30,6.9556363e30,7.385787e30,7.8425393e30,8.327538e30,8.84253e30,9.38937e30,9.970029e30,1.0586596e31,1.1241292e31,1.1936568e31,1.267475e31,1.3458583e31,1.4290889e31,1.5174667e31,1.6113099e31,1.7109567e31,1.8167657e31,1.9291182e31,2.048419e31,2.1751138e31,2.3096274e31,2.4524596e31,2.6041246e31,2.7651693e31,2.936173e31,3.1177517e31,3.31056e31,3.5152918e31,3.7327132e31,3.9635518e31,4.208666e31,4.4689384e31,4.745307e31,5.0387665e31,5.3503744e31,5.6812526e31,6.0325925e31,6.405661e31,6.801852e31,7.2224923e31,7.669146e31,8.143422e31,8.647028e31,9.181777e31,9.749598e31,1.0352533e32,1.0992755e32,1.16726585e32,1.239452e32,1.3161022e32,1.3974926e32,1.4839165e32,1.5756849e32,1.6731286e32,1.7765981e32,1.8864667e32,2.003145e32,2.1270235e32,2.2585632e32,2.3982373e32,2.5465492e32,2.704033e32,2.871256e32,3.0488204e32,3.2373656e32,3.437571e32,3.6501854e32,3.8759202e32,4.1156152e32,4.3701334e32,4.640391e32,4.9273627e32,5.232081e32,5.5556436e32,5.899216e32,6.2640834e32,6.651467e32,7.062808e32,7.499586e32,7.963376e32,8.455847e32,8.9787745e32,9.53404e32,1.0123645e33,1.0749794e33,1.1414583e33,1.21204845e33,1.287004e33,1.366595e33,1.451108e33,1.5408476e33,1.6361368e33,1.7373187e33,1.8447581e33,1.9588567e33,2.0799964e33,2.2086277e33,2.3452138e33,2.4902467e33,2.6442486e33,2.8077743e33,2.981413e33,3.1657896e33,3.3615943e33,3.569482e33,3.790226e33,4.0246217e33,4.2735123e33,4.5377952e33,4.818422e33,5.1164028e33,5.432812e33,5.768788e33,6.1255885e33,6.5044075e33,6.906653e33,7.3337747e33,7.787311e33,8.268894e33,8.7802593e33,9.323249e33,9.8998176e33,1.0512123e34,1.1162214e34,1.1852508e34,1.2585491e34,1.3363804e34,1.4190249e34,1.5067804e34,1.5999627e34,1.6989078e34,1.8039855e34,1.9155477e34,2.034009e34,2.1597964e34,2.2933627e34,2.435189e34,2.585786e34,2.7456963e34,2.9154959e34,3.095796e34,3.2872715e34,3.490563e34,3.7064266e34,3.9356397e34,4.1790276e34,4.4374674e34,4.7118895e34,5.0032827e34,5.312696e34,5.641287e34,5.9901557e34,6.3605993e34,6.753952e34,7.17163e34,7.615138e34,8.0860743e34,8.586133e34,9.117117e34,9.680939e34,1.0279707e35,1.0915424e35,1.1590457e35,1.2307234e35,1.306834e35,1.3876513e35,1.4734665e35,1.5645886e35,1.661346e35,1.7641006e35,1.8731962e35,1.9890385e35,2.1120447e35,2.2426577e35,2.3813484e35,2.528616e35,2.6849907e35,2.8510361e35,3.027373e35,3.214592e35,3.413389e35,3.62448e35,3.8486253e35,4.086632e35,4.3393578e35,4.6077127e35,4.892663e35,5.1952354e35,5.5165615e35,5.857717e35,6.2199705e35,6.604626e35,7.01307e35,7.446772e35,7.907296e35,8.3962996e35,8.915544e35,9.466972e35,1.0052429e36,1.0674092e36,1.13341995e36,1.20351295e36,1.2779407e36,1.3569712e36,1.440889e36,1.5299966e36,1.6246147e36,1.7250974e36,1.831781e36,1.945062e36,2.0653487e36,2.193074e36,2.3286982e36,2.4727098e36,2.6256273e36,2.7880013e36,2.9604398e36,3.1435193e36,3.337921e36,3.544345e36,3.7635345e36,3.9962796e36,4.2434176e36,4.5058393e36,4.7844895e36,5.080411e36,5.394594e36,5.728207e36,6.082451e36,6.4586025e36,6.858015e36,7.282129e36,7.732471e36,8.210663e36,8.7184274e36,9.257663e36,9.830176e36,1.0438094e37,1.1083608e37,1.176904e37,1.2496862e37,1.3269694e37,1.4090319e37,1.4961693e37,1.5887077e37,1.6869566e37,1.7912814e37,1.902058e37,2.0196852e37,2.1445867e37,2.2772124e37,2.4180397e37,2.5675763e37,2.7263813e37,2.8949864e37,3.0740182e37,3.264122e37,3.465982e37,3.6803254e37,3.9079242e37,4.1495982e37,4.406218e37,4.6787077e37,4.9680865e37,5.275323e37,5.60156e37,5.947972e37,6.3158065e37,6.706389e37,7.121126e37,7.561511e37,8.0291306e37,8.525733e37,9.052983e37,9.612837e37,1.0207315e38,1.0838557e38,1.1508834e38,1.2220565e38,1.2976309e38,1.3778791e38,1.46309e38,1.5535824e38,1.649659e38,1.7516773e38,1.8600047e38,1.9750313e38,2.0971713e38,2.2268646e38,2.3645785e38,2.5108088e38,2.6661029e38,2.83098e38,3.0060537e38,3.1919544e38,3.3893513e38,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"x":[-300.0,-299.9399939993999,-299.8799879987999,-299.8199819981998,-299.7599759975998,-299.6999699969997,-299.6399639963996,-299.5799579957996,-299.5199519951995,-299.4599459945995,-299.3999399939994,-299.3399339933993,-299.2799279927993,-299.2199219921992,-299.1599159915992,-299.0999099909991,-299.039903990399,-298.979897989799,-298.9198919891989,-298.8598859885989,-298.7998799879988,-298.73987398739877,-298.6798679867987,-298.6198619861986,-298.5598559855986,-298.4998499849985,-298.43984398439846,-298.3798379837984,-298.3198319831983,-298.2598259825983,-298.1998199819982,-298.13981398139816,-298.0798079807981,-298.019801980198,-297.95979597959797,-297.8997899789979,-297.83978397839786,-297.7797779777978,-297.7197719771977,-297.65976597659767,-297.5997599759976,-297.53975397539756,-297.4797479747975,-297.4197419741974,-297.35973597359737,-297.2997299729973,-297.23972397239726,-297.1797179717972,-297.1197119711971,-297.05970597059707,-296.999699969997,-296.93969396939696,-296.8796879687969,-296.81968196819685,-296.75967596759676,-296.6996699669967,-296.63966396639665,-296.57965796579657,-296.51965196519654,-296.45964596459646,-296.3996399639964,-296.33963396339635,-296.27962796279627,-296.21962196219624,-296.15961596159616,-296.0996099609961,-296.03960396039605,-295.97959795979597,-295.91959195919594,-295.85958595859586,-295.7995799579958,-295.73957395739575,-295.67956795679567,-295.61956195619564,-295.55955595559556,-295.4995499549955,-295.43954395439545,-295.37953795379536,-295.31953195319534,-295.25952595259525,-295.19951995199517,-295.13951395139514,-295.07950795079506,-295.01950195019504,-294.95949594959495,-294.8994899489949,-294.83948394839484,-294.77947794779476,-294.71947194719473,-294.65946594659465,-294.5994599459946,-294.53945394539454,-294.47944794479446,-294.41944194419443,-294.35943594359435,-294.2994299429943,-294.23942394239424,-294.17941794179416,-294.11941194119413,-294.05940594059405,-293.999399939994,-293.93939393939394,-293.87938793879385,-293.8193819381938,-293.75937593759375,-293.6993699369937,-293.63936393639364,-293.57935793579355,-293.5193519351935,-293.45934593459344,-293.3993399339934,-293.33933393339333,-293.27932793279325,-293.2193219321932,-293.15931593159314,-293.0993099309931,-293.03930393039303,-292.979297929793,-292.9192919291929,-292.85928592859284,-292.7992799279928,-292.73927392739273,-292.6792679267927,-292.6192619261926,-292.55925592559254,-292.4992499249925,-292.43924392439243,-292.3792379237924,-292.3192319231923,-292.25922592259224,-292.1992199219922,-292.1392139213921,-292.0792079207921,-292.019201920192,-291.95919591959193,-291.8991899189919,-291.8391839183918,-291.7791779177918,-291.7191719171917,-291.65916591659163,-291.5991599159916,-291.5391539153915,-291.4791479147915,-291.4191419141914,-291.35913591359133,-291.2991299129913,-291.2391239123912,-291.1791179117912,-291.1191119111911,-291.0591059105911,-290.999099909991,-290.9390939093909,-290.8790879087909,-290.8190819081908,-290.7590759075908,-290.6990699069907,-290.6390639063906,-290.5790579057906,-290.5190519051905,-290.4590459045905,-290.3990399039904,-290.3390339033903,-290.2790279027903,-290.2190219021902,-290.1590159015902,-290.0990099009901,-290.03900390039,-289.97899789979,-289.9189918991899,-289.8589858985899,-289.7989798979898,-289.7389738973897,-289.6789678967897,-289.6189618961896,-289.5589558955896,-289.4989498949895,-289.4389438943894,-289.3789378937894,-289.3189318931893,-289.2589258925893,-289.1989198919892,-289.13891389138917,-289.0789078907891,-289.018901890189,-288.958895889589,-288.8988898889889,-288.83888388838886,-288.7788778877888,-288.7188718871887,-288.65886588658867,-288.5988598859886,-288.53885388538856,-288.4788478847885,-288.4188418841884,-288.35883588358837,-288.2988298829883,-288.23882388238826,-288.1788178817882,-288.1188118811881,-288.05880588058807,-287.998799879988,-287.93879387938796,-287.8787878787879,-287.8187818781878,-287.75877587758777,-287.6987698769877,-287.63876387638766,-287.5787578757876,-287.5187518751875,-287.45874587458746,-287.3987398739874,-287.33873387338735,-287.2787278727873,-287.21872187218725,-287.15871587158716,-287.0987098709871,-287.03870387038705,-286.97869786978697,-286.91869186918694,-286.85868586858686,-286.7986798679868,-286.73867386738675,-286.67866786678667,-286.61866186618664,-286.55865586558656,-286.4986498649865,-286.43864386438645,-286.37863786378637,-286.31863186318634,-286.25862586258626,-286.1986198619862,-286.13861386138615,-286.07860786078606,-286.01860186018604,-285.95859585958596,-285.8985898589859,-285.83858385838585,-285.77857785778576,-285.71857185718574,-285.65856585658565,-285.59855985598557,-285.53855385538554,-285.47854785478546,-285.41854185418543,-285.35853585358535,-285.2985298529853,-285.23852385238524,-285.17851785178516,-285.11851185118513,-285.05850585058505,-284.998499849985,-284.93849384938494,-284.87848784878486,-284.81848184818483,-284.75847584758475,-284.6984698469847,-284.63846384638464,-284.57845784578456,-284.51845184518453,-284.45844584458445,-284.3984398439844,-284.33843384338434,-284.27842784278425,-284.2184218421842,-284.15841584158414,-284.0984098409841,-284.03840384038403,-283.97839783978395,-283.9183918391839,-283.85838583858384,-283.7983798379838,-283.73837383738373,-283.67836783678365,-283.6183618361836,-283.55835583558354,-283.4983498349835,-283.43834383438343,-283.3783378337834,-283.3183318331833,-283.25832583258324,-283.1983198319832,-283.13831383138313,-283.0783078307831,-283.018301830183,-282.95829582958294,-282.8982898289829,-282.8382838283828,-282.7782778277828,-282.7182718271827,-282.65826582658264,-282.5982598259826,-282.5382538253825,-282.4782478247825,-282.4182418241824,-282.35823582358233,-282.2982298229823,-282.2382238223822,-282.1782178217822,-282.1182118211821,-282.05820582058203,-281.998199819982,-281.9381938193819,-281.8781878187819,-281.8181818181818,-281.75817581758173,-281.6981698169817,-281.6381638163816,-281.5781578157816,-281.5181518151815,-281.4581458145815,-281.3981398139814,-281.3381338133813,-281.2781278127813,-281.2181218121812,-281.1581158115812,-281.0981098109811,-281.038103810381,-280.978097809781,-280.9180918091809,-280.8580858085809,-280.7980798079808,-280.7380738073807,-280.6780678067807,-280.6180618061806,-280.5580558055806,-280.4980498049805,-280.4380438043804,-280.3780378037804,-280.3180318031803,-280.2580258025803,-280.1980198019802,-280.1380138013801,-280.0780078007801,-280.01800180018,-279.95799579958,-279.8979897989799,-279.8379837983798,-279.7779777977798,-279.7179717971797,-279.6579657965797,-279.5979597959796,-279.53795379537956,-279.4779477947795,-279.4179417941794,-279.3579357935794,-279.2979297929793,-279.23792379237926,-279.1779177917792,-279.1179117911791,-279.05790579057907,-278.997899789979,-278.93789378937896,-278.8778877887789,-278.8178817881788,-278.75787578757877,-278.6978697869787,-278.63786378637866,-278.5778577857786,-278.5178517851785,-278.45784578457847,-278.3978397839784,-278.33783378337836,-278.2778277827783,-278.2178217821782,-278.15781578157817,-278.0978097809781,-278.03780378037806,-277.977797779778,-277.9177917791779,-277.85778577857786,-277.7977797779778,-277.73777377737775,-277.67776777677767,-277.61776177617764,-277.55775577557756,-277.4977497749775,-277.43774377437745,-277.37773777377737,-277.31773177317734,-277.25772577257726,-277.1977197719772,-277.13771377137715,-277.07770777077707,-277.01770177017704,-276.95769576957696,-276.8976897689769,-276.83768376837685,-276.77767776777677,-276.71767176717674,-276.65766576657666,-276.5976597659766,-276.53765376537655,-276.47764776477646,-276.41764176417644,-276.35763576357635,-276.29762976297627,-276.23762376237624,-276.17761776177616,-276.11761176117614,-276.05760576057605,-275.99759975997597,-275.93759375937594,-275.87758775877586,-275.81758175817583,-275.75757575757575,-275.6975697569757,-275.63756375637564,-275.57755775577556,-275.51755175517553,-275.45754575457545,-275.3975397539754,-275.33753375337534,-275.27752775277526,-275.21752175217523,-275.15751575157515,-275.0975097509751,-275.03750375037504,-274.97749774977495,-274.9174917491749,-274.85748574857485,-274.7974797479748,-274.73747374737474,-274.67746774677465,-274.6174617461746,-274.55745574557454,-274.4974497449745,-274.43744374437443,-274.37743774377435,-274.3174317431743,-274.25742574257424,-274.1974197419742,-274.13741374137413,-274.07740774077405,-274.017401740174,-273.95739573957394,-273.8973897389739,-273.83738373837383,-273.7773777377738,-273.7173717371737,-273.65736573657364,-273.5973597359736,-273.53735373537353,-273.4773477347735,-273.4173417341734,-273.35733573357334,-273.2973297329733,-273.2373237323732,-273.1773177317732,-273.1173117311731,-273.05730573057303,-272.997299729973,-272.9372937293729,-272.8772877287729,-272.8172817281728,-272.75727572757273,-272.6972697269727,-272.6372637263726,-272.5772577257726,-272.5172517251725,-272.45724572457243,-272.3972397239724,-272.3372337233723,-272.2772277227723,-272.2172217221722,-272.15721572157213,-272.0972097209721,-272.037203720372,-271.977197719772,-271.9171917191719,-271.8571857185719,-271.7971797179718,-271.7371737173717,-271.6771677167717,-271.6171617161716,-271.5571557155716,-271.4971497149715,-271.4371437143714,-271.3771377137714,-271.3171317131713,-271.2571257125713,-271.1971197119712,-271.1371137113711,-271.0771077107711,-271.017101710171,-270.957095709571,-270.8970897089709,-270.8370837083708,-270.7770777077708,-270.7170717071707,-270.6570657065707,-270.5970597059706,-270.5370537053705,-270.4770477047705,-270.4170417041704,-270.3570357035704,-270.2970297029703,-270.2370237023702,-270.1770177017702,-270.1170117011701,-270.0570057005701,-269.99699969997,-269.93699369936996,-269.8769876987699,-269.8169816981698,-269.75697569756977,-269.6969696969697,-269.63696369636966,-269.5769576957696,-269.5169516951695,-269.45694569456947,-269.3969396939694,-269.33693369336936,-269.2769276927693,-269.2169216921692,-269.15691569156917,-269.0969096909691,-269.03690369036906,-268.976897689769,-268.9168916891689,-268.85688568856887,-268.7968796879688,-268.73687368736876,-268.6768676867687,-268.6168616861686,-268.55685568556856,-268.4968496849685,-268.43684368436845,-268.3768376837684,-268.3168316831683,-268.25682568256826,-268.1968196819682,-268.13681368136815,-268.07680768076807,-268.01680168016804,-267.95679567956796,-267.8967896789679,-267.83678367836785,-267.77677767776777,-267.71677167716774,-267.65676567656766,-267.5967596759676,-267.53675367536755,-267.47674767476747,-267.41674167416744,-267.35673567356736,-267.2967296729673,-267.23672367236725,-267.17671767176716,-267.11671167116714,-267.05670567056706,-266.996699669967,-266.93669366936695,-266.87668766876686,-266.81668166816684,-266.75667566756675,-266.69666966696667,-266.63666366636664,-266.57665766576656,-266.51665166516653,-266.45664566456645,-266.39663966396637,-266.33663366336634,-266.27662766276626,-266.21662166216623,-266.15661566156615,-266.0966096609661,-266.03660366036604,-265.97659765976596,-265.91659165916593,-265.85658565856585,-265.7965796579658,-265.73657365736574,-265.67656765676566,-265.61656165616563,-265.55655565556555,-265.4965496549655,-265.43654365436544,-265.37653765376535,-265.3165316531653,-265.25652565256524,-265.1965196519652,-265.13651365136514,-265.07650765076505,-265.016501650165,-264.95649564956494,-264.8964896489649,-264.83648364836483,-264.77647764776475,-264.7164716471647,-264.65646564656464,-264.5964596459646,-264.53645364536453,-264.47644764476445,-264.4164416441644,-264.35643564356434,-264.2964296429643,-264.23642364236423,-264.1764176417642,-264.1164116411641,-264.05640564056404,-263.996399639964,-263.9363936393639,-263.8763876387639,-263.8163816381638,-263.75637563756374,-263.6963696369637,-263.6363636363636,-263.5763576357636,-263.5163516351635,-263.45634563456343,-263.3963396339634,-263.3363336333633,-263.2763276327633,-263.2163216321632,-263.15631563156313,-263.0963096309631,-263.036303630363,-262.976297629763,-262.9162916291629,-262.85628562856283,-262.7962796279628,-262.7362736273627,-262.6762676267627,-262.6162616261626,-262.5562556255625,-262.4962496249625,-262.4362436243624,-262.3762376237624,-262.3162316231623,-262.2562256225623,-262.1962196219622,-262.1362136213621,-262.0762076207621,-262.016201620162,-261.956195619562,-261.8961896189619,-261.8361836183618,-261.7761776177618,-261.7161716171617,-261.6561656165617,-261.5961596159616,-261.5361536153615,-261.4761476147615,-261.4161416141614,-261.3561356135614,-261.2961296129613,-261.2361236123612,-261.1761176117612,-261.1161116111611,-261.0561056105611,-260.996099609961,-260.9360936093609,-260.8760876087609,-260.8160816081608,-260.7560756075608,-260.6960696069607,-260.6360636063606,-260.5760576057606,-260.5160516051605,-260.4560456045605,-260.3960396039604,-260.33603360336036,-260.2760276027603,-260.2160216021602,-260.15601560156017,-260.0960096009601,-260.03600360036006,-259.97599759976,-259.9159915991599,-259.85598559855987,-259.7959795979598,-259.73597359735976,-259.6759675967597,-259.6159615961596,-259.55595559555957,-259.4959495949595,-259.43594359435946,-259.3759375937594,-259.3159315931593,-259.25592559255927,-259.1959195919592,-259.13591359135916,-259.0759075907591,-259.015901590159,-258.95589558955896,-258.8958895889589,-258.83588358835885,-258.77587758775877,-258.7158715871587,-258.65586558655866,-258.5958595859586,-258.53585358535855,-258.47584758475847,-258.41584158415844,-258.35583558355836,-258.2958295829583,-258.23582358235825,-258.17581758175817,-258.11581158115814,-258.05580558055806,-257.995799579958,-257.93579357935795,-257.87578757875787,-257.81578157815784,-257.75577557755776,-257.6957695769577,-257.63576357635765,-257.57575757575756,-257.51575157515754,-257.45574557455745,-257.39573957395737,-257.33573357335734,-257.27572757275726,-257.21572157215724,-257.15571557155715,-257.09570957095707,-257.03570357035704,-256.97569756975696,-256.91569156915693,-256.85568556855685,-256.79567956795677,-256.73567356735674,-256.67566756675666,-256.61566156615663,-256.55565556555655,-256.4956495649565,-256.43564356435644,-256.37563756375636,-256.31563156315633,-256.25562556255625,-256.1956195619562,-256.13561356135614,-256.07560756075605,-256.01560156015603,-255.95559555955595,-255.8955895589559,-255.83558355835584,-255.77557755775578,-255.71557155715573,-255.65556555655564,-255.5955595559556,-255.53555355535553,-255.47554755475548,-255.41554155415542,-255.35553555355534,-255.2955295529553,-255.23552355235523,-255.17551755175518,-255.11551155115512,-255.05550555055507,-254.99549954995499,-254.93549354935493,-254.87548754875488,-254.81548154815482,-254.75547554755477,-254.69546954695468,-254.63546354635463,-254.57545754575457,-254.51545154515452,-254.45544554455446,-254.39543954395438,-254.33543354335433,-254.27542754275427,-254.21542154215422,-254.15541554155416,-254.0954095409541,-254.03540354035403,-253.97539753975397,-253.91539153915392,-253.85538553855386,-253.7953795379538,-253.73537353735372,-253.67536753675367,-253.6153615361536,-253.55535553555356,-253.4953495349535,-253.43534353435342,-253.37533753375337,-253.3153315331533,-253.25532553255326,-253.1953195319532,-253.13531353135315,-253.07530753075307,-253.015301530153,-252.95529552955296,-252.8952895289529,-252.83528352835285,-252.77527752775276,-252.7152715271527,-252.65526552655265,-252.5952595259526,-252.53525352535254,-252.47524752475246,-252.4152415241524,-252.35523552355235,-252.2952295229523,-252.23522352235224,-252.1752175217522,-252.1152115211521,-252.05520552055205,-251.995199519952,-251.93519351935194,-251.8751875187519,-251.8151815181518,-251.75517551755175,-251.6951695169517,-251.63516351635164,-251.57515751575158,-251.5151515151515,-251.45514551455145,-251.3951395139514,-251.33513351335134,-251.27512751275128,-251.21512151215123,-251.15511551155114,-251.0951095109511,-251.03510351035104,-250.97509750975098,-250.91509150915093,-250.85508550855084,-250.7950795079508,-250.73507350735073,-250.67506750675068,-250.61506150615062,-250.55505550555054,-250.4950495049505,-250.43504350435043,-250.37503750375038,-250.31503150315032,-250.25502550255027,-250.19501950195018,-250.13501350135013,-250.07500750075008,-250.01500150015002,-249.95499549954997,-249.89498949894988,-249.83498349834983,-249.77497749774977,-249.71497149714972,-249.65496549654966,-249.59495949594958,-249.53495349534953,-249.47494749474947,-249.41494149414942,-249.35493549354936,-249.2949294929493,-249.23492349234922,-249.17491749174917,-249.11491149114912,-249.05490549054906,-248.994899489949,-248.93489348934892,-248.87488748874887,-248.8148814881488,-248.75487548754876,-248.6948694869487,-248.63486348634862,-248.57485748574857,-248.5148514851485,-248.45484548454846,-248.3948394839484,-248.33483348334835,-248.27482748274826,-248.2148214821482,-248.15481548154816,-248.0948094809481,-248.03480348034805,-247.97479747974796,-247.9147914791479,-247.85478547854785,-247.7947794779478,-247.73477347734774,-247.67476747674766,-247.6147614761476,-247.55475547554755,-247.4947494749475,-247.43474347434744,-247.3747374737474,-247.3147314731473,-247.25472547254725,-247.1947194719472,-247.13471347134714,-247.0747074707471,-247.014701470147,-246.95469546954695,-246.8946894689469,-246.83468346834684,-246.77467746774678,-246.7146714671467,-246.65466546654665,-246.5946594659466,-246.53465346534654,-246.47464746474648,-246.41464146414643,-246.35463546354634,-246.2946294629463,-246.23462346234624,-246.17461746174618,-246.11461146114613,-246.05460546054604,-245.994599459946,-245.93459345934593,-245.87458745874588,-245.81458145814582,-245.75457545754574,-245.6945694569457,-245.63456345634563,-245.57455745574558,-245.51455145514552,-245.45454545454547,-245.39453945394538,-245.33453345334533,-245.27452745274528,-245.21452145214522,-245.15451545154517,-245.09450945094508,-245.03450345034503,-244.97449744974497,-244.91449144914492,-244.85448544854486,-244.79447944794478,-244.73447344734473,-244.67446744674467,-244.61446144614462,-244.55445544554456,-244.4944494449445,-244.43444344434442,-244.37443744374437,-244.31443144314431,-244.25442544254426,-244.1944194419442,-244.13441344134412,-244.07440744074407,-244.014401440144,-243.95439543954396,-243.8943894389439,-243.83438343834382,-243.77437743774377,-243.7143714371437,-243.65436543654366,-243.5943594359436,-243.53435343534355,-243.47434743474346,-243.4143414341434,-243.35433543354335,-243.2943294329433,-243.23432343234325,-243.17431743174316,-243.1143114311431,-243.05430543054305,-242.994299429943,-242.93429342934294,-242.87428742874286,-242.8142814281428,-242.75427542754275,-242.6942694269427,-242.63426342634264,-242.5742574257426,-242.5142514251425,-242.45424542454245,-242.3942394239424,-242.33423342334234,-242.27422742274229,-242.2142214221422,-242.15421542154215,-242.0942094209421,-242.03420342034204,-241.97419741974198,-241.9141914191419,-241.85418541854185,-241.7941794179418,-241.73417341734174,-241.67416741674168,-241.61416141614163,-241.55415541554154,-241.4941494149415,-241.43414341434143,-241.37413741374138,-241.31413141314133,-241.25412541254124,-241.1941194119412,-241.13411341134113,-241.07410741074108,-241.01410141014102,-240.95409540954094,-240.89408940894089,-240.83408340834083,-240.77407740774078,-240.71407140714072,-240.65406540654067,-240.59405940594058,-240.53405340534053,-240.47404740474047,-240.41404140414042,-240.35403540354037,-240.29402940294028,-240.23402340234023,-240.17401740174017,-240.11401140114012,-240.05400540054006,-239.99399939993998,-239.93399339933993,-239.87398739873987,-239.81398139813982,-239.75397539753976,-239.6939693969397,-239.63396339633962,-239.57395739573957,-239.51395139513951,-239.45394539453946,-239.3939393939394,-239.33393339333932,-239.27392739273927,-239.2139213921392,-239.15391539153916,-239.0939093909391,-239.03390339033902,-238.97389738973897,-238.9138913891389,-238.85388538853886,-238.7938793879388,-238.73387338733875,-238.67386738673866,-238.6138613861386,-238.55385538553855,-238.4938493849385,-238.43384338433845,-238.37383738373836,-238.3138313831383,-238.25382538253825,-238.1938193819382,-238.13381338133814,-238.07380738073806,-238.013801380138,-237.95379537953795,-237.8937893789379,-237.83378337833784,-237.7737773777378,-237.7137713771377,-237.65376537653765,-237.5937593759376,-237.53375337533754,-237.47374737473748,-237.4137413741374,-237.35373537353735,-237.2937293729373,-237.23372337233724,-237.17371737173718,-237.1137113711371,-237.05370537053705,-236.993699369937,-236.93369336933694,-236.87368736873688,-236.81368136813683,-236.75367536753674,-236.6936693669367,-236.63366336633663,-236.57365736573658,-236.51365136513652,-236.45364536453644,-236.3936393639364,-236.33363336333633,-236.27362736273628,-236.21362136213622,-236.15361536153614,-236.09360936093609,-236.03360336033603,-235.97359735973598,-235.91359135913592,-235.85358535853587,-235.79357935793578,-235.73357335733573,-235.67356735673567,-235.61356135613562,-235.55355535553556,-235.49354935493548,-235.43354335433543,-235.37353735373537,-235.31353135313532,-235.25352535253526,-235.19351935193518,-235.13351335133513,-235.07350735073507,-235.01350135013502,-234.95349534953496,-234.8934893489349,-234.83348334833482,-234.77347734773477,-234.7134713471347,-234.65346534653466,-234.5934593459346,-234.53345334533452,-234.47344734473447,-234.4134413441344,-234.35343534353436,-234.2934293429343,-234.23342334233422,-234.17341734173417,-234.1134113411341,-234.05340534053406,-233.993399339934,-233.93339333933395,-233.87338733873386,-233.8133813381338,-233.75337533753375,-233.6933693369337,-233.63336333633364,-233.57335733573356,-233.5133513351335,-233.45334533453345,-233.3933393339334,-233.33333333333334,-233.27332733273326,-233.2133213321332,-233.15331533153315,-233.0933093309331,-233.03330333033304,-232.973297329733,-232.9132913291329,-232.85328532853285,-232.7932793279328,-232.73327332733274,-232.67326732673268,-232.6132613261326,-232.55325532553255,-232.4932493249325,-232.43324332433244,-232.37323732373238,-232.3132313231323,-232.25322532253224,-232.1932193219322,-232.13321332133214,-232.07320732073208,-232.01320132013203,-231.95319531953194,-231.8931893189319,-231.83318331833183,-231.77317731773178,-231.71317131713172,-231.65316531653164,-231.5931593159316,-231.53315331533153,-231.47314731473148,-231.41314131413142,-231.35313531353134,-231.29312931293128,-231.23312331233123,-231.17311731173118,-231.11311131113112,-231.05310531053107,-230.99309930993098,-230.93309330933093,-230.87308730873087,-230.81308130813082,-230.75307530753076,-230.69306930693068,-230.63306330633063,-230.57305730573057,-230.51305130513052,-230.45304530453046,-230.39303930393038,-230.33303330333032,-230.27302730273027,-230.21302130213022,-230.15301530153016,-230.0930093009301,-230.03300330033002,-229.97299729972997,-229.9129912991299,-229.85298529852986,-229.7929792979298,-229.73297329732972,-229.67296729672967,-229.6129612961296,-229.55295529552956,-229.4929492949295,-229.43294329432942,-229.37293729372936,-229.3129312931293,-229.25292529252926,-229.1929192919292,-229.13291329132915,-229.07290729072906,-229.012901290129,-228.95289528952895,-228.8928892889289,-228.83288328832884,-228.77287728772876,-228.7128712871287,-228.65286528652865,-228.5928592859286,-228.53285328532854,-228.47284728472846,-228.4128412841284,-228.35283528352835,-228.2928292829283,-228.23282328232824,-228.1728172817282,-228.1128112811281,-228.05280528052805,-227.992799279928,-227.93279327932794,-227.87278727872788,-227.8127812781278,-227.75277527752775,-227.6927692769277,-227.63276327632764,-227.57275727572758,-227.5127512751275,-227.45274527452744,-227.3927392739274,-227.33273327332734,-227.27272727272728,-227.21272127212723,-227.15271527152714,-227.0927092709271,-227.03270327032703,-226.97269726972698,-226.91269126912692,-226.85268526852684,-226.7926792679268,-226.73267326732673,-226.67266726672668,-226.61266126612662,-226.55265526552654,-226.49264926492648,-226.43264326432643,-226.37263726372638,-226.31263126312632,-226.25262526252627,-226.19261926192618,-226.13261326132613,-226.07260726072607,-226.01260126012602,-225.95259525952596,-225.89258925892588,-225.83258325832583,-225.77257725772577,-225.71257125712572,-225.65256525652566,-225.59255925592558,-225.53255325532552,-225.47254725472547,-225.41254125412541,-225.35253525352536,-225.2925292529253,-225.23252325232522,-225.17251725172517,-225.1125112511251,-225.05250525052506,-224.992499249925,-224.93249324932492,-224.87248724872487,-224.8124812481248,-224.75247524752476,-224.6924692469247,-224.63246324632462,-224.57245724572456,-224.5124512451245,-224.45244524452445,-224.3924392439244,-224.33243324332435,-224.27242724272426,-224.2124212421242,-224.15241524152415,-224.0924092409241,-224.03240324032404,-223.97239723972396,-223.9123912391239,-223.85238523852385,-223.7923792379238,-223.73237323732374,-223.67236723672366,-223.6123612361236,-223.55235523552355,-223.4923492349235,-223.43234323432344,-223.37233723372339,-223.3123312331233,-223.25232523252325,-223.1923192319232,-223.13231323132314,-223.07230723072308,-223.012301230123,-222.95229522952295,-222.8922892289229,-222.83228322832284,-222.77227722772278,-222.7122712271227,-222.65226522652264,-222.5922592259226,-222.53225322532253,-222.47224722472248,-222.41224122412243,-222.35223522352234,-222.2922292229223,-222.23222322232223,-222.17221722172218,-222.11221122112212,-222.05220522052204,-221.99219921992199,-221.93219321932193,-221.87218721872188,-221.81218121812182,-221.75217521752174,-221.69216921692168,-221.63216321632163,-221.57215721572157,-221.51215121512152,-221.45214521452147,-221.39213921392138,-221.33213321332133,-221.27212721272127,-221.21212121212122,-221.15211521152116,-221.09210921092108,-221.03210321032103,-220.97209720972097,-220.91209120912092,-220.85208520852086,-220.79207920792078,-220.73207320732072,-220.67206720672067,-220.61206120612061,-220.55205520552056,-220.4920492049205,-220.43204320432042,-220.37203720372037,-220.3120312031203,-220.25202520252026,-220.1920192019202,-220.13201320132012,-220.07200720072007,-220.01200120012,-219.95199519951996,-219.8919891989199,-219.83198319831982,-219.77197719771976,-219.7119711971197,-219.65196519651965,-219.5919591959196,-219.53195319531955,-219.47194719471946,-219.4119411941194,-219.35193519351935,-219.2919291929193,-219.23192319231924,-219.17191719171916,-219.1119111911191,-219.05190519051905,-218.991899189919,-218.93189318931894,-218.87188718871886,-218.8118811881188,-218.75187518751875,-218.6918691869187,-218.63186318631864,-218.57185718571859,-218.5118511851185,-218.45184518451845,-218.3918391839184,-218.33183318331834,-218.27182718271828,-218.2118211821182,-218.15181518151815,-218.0918091809181,-218.03180318031804,-217.97179717971798,-217.9117911791179,-217.85178517851784,-217.7917791779178,-217.73177317731773,-217.67176717671768,-217.61176117611762,-217.55175517551754,-217.4917491749175,-217.43174317431743,-217.37173717371738,-217.31173117311732,-217.25172517251724,-217.19171917191719,-217.13171317131713,-217.07170717071708,-217.01170117011702,-216.95169516951694,-216.89168916891688,-216.83168316831683,-216.77167716771677,-216.71167116711672,-216.65166516651666,-216.59165916591658,-216.53165316531653,-216.47164716471647,-216.41164116411642,-216.35163516351636,-216.29162916291628,-216.23162316231623,-216.17161716171617,-216.11161116111612,-216.05160516051606,-215.99159915991598,-215.93159315931592,-215.87158715871587,-215.8115811581158,-215.75157515751576,-215.6915691569157,-215.63156315631562,-215.57155715571557,-215.5115511551155,-215.45154515451546,-215.3915391539154,-215.33153315331532,-215.27152715271527,-215.2115211521152,-215.15151515151516,-215.0915091509151,-215.03150315031502,-214.97149714971496,-214.9114911491149,-214.85148514851485,-214.7914791479148,-214.73147314731474,-214.67146714671466,-214.6114611461146,-214.55145514551455,-214.4914491449145,-214.43144314431444,-214.37143714371436,-214.3114311431143,-214.25142514251425,-214.1914191419142,-214.13141314131414,-214.07140714071406,-214.011401140114,-213.95139513951395,-213.8913891389139,-213.83138313831384,-213.77137713771378,-213.7113711371137,-213.65136513651365,-213.5913591359136,-213.53135313531354,-213.47134713471348,-213.4113411341134,-213.35133513351334,-213.2913291329133,-213.23132313231324,-213.17131713171318,-213.1113111311131,-213.05130513051304,-212.991299129913,-212.93129312931293,-212.87128712871288,-212.81128112811282,-212.75127512751274,-212.6912691269127,-212.63126312631263,-212.57125712571258,-212.51125112511252,-212.45124512451244,-212.39123912391238,-212.33123312331233,-212.27122712271228,-212.21122112211222,-212.15121512151214,-212.09120912091208,-212.03120312031203,-211.97119711971197,-211.91119111911192,-211.85118511851186,-211.79117911791178,-211.73117311731173,-211.67116711671167,-211.61116111611162,-211.55115511551156,-211.49114911491148,-211.43114311431142,-211.37113711371137,-211.31113111311132,-211.25112511251126,-211.19111911191118,-211.13111311131112,-211.07110711071107,-211.011101110111,-210.95109510951096,-210.8910891089109,-210.83108310831082,-210.77107710771077,-210.7110711071107,-210.65106510651066,-210.5910591059106,-210.53105310531052,-210.47104710471046,-210.4110411041104,-210.35103510351036,-210.2910291029103,-210.23102310231022,-210.17101710171016,-210.1110111011101,-210.05100510051005,-209.99099909991,-209.93099309930994,-209.87098709870986,-209.8109810981098,-209.75097509750975,-209.6909690969097,-209.63096309630964,-209.57095709570956,-209.5109510951095,-209.45094509450945,-209.3909390939094,-209.33093309330934,-209.27092709270926,-209.2109210921092,-209.15091509150915,-209.0909090909091,-209.03090309030904,-208.97089708970898,-208.9108910891089,-208.85088508850885,-208.7908790879088,-208.73087308730874,-208.67086708670868,-208.6108610861086,-208.55085508550854,-208.4908490849085,-208.43084308430844,-208.37083708370838,-208.3108310831083,-208.25082508250824,-208.1908190819082,-208.13081308130813,-208.07080708070808,-208.01080108010802,-207.95079507950794,-207.8907890789079,-207.83078307830783,-207.77077707770778,-207.71077107710772,-207.65076507650764,-207.59075907590758,-207.53075307530753,-207.47074707470748,-207.41074107410742,-207.35073507350734,-207.29072907290728,-207.23072307230723,-207.17071707170717,-207.11071107110712,-207.05070507050706,-206.99069906990698,-206.93069306930693,-206.87068706870687,-206.81068106810682,-206.75067506750676,-206.69066906690668,-206.63066306630662,-206.57065706570657,-206.51065106510652,-206.45064506450646,-206.39063906390638,-206.33063306330632,-206.27062706270627,-206.2106210621062,-206.15061506150616,-206.0906090609061,-206.03060306030602,-205.97059705970597,-205.9105910591059,-205.85058505850586,-205.7905790579058,-205.73057305730572,-205.67056705670566,-205.6105610561056,-205.55055505550555,-205.4905490549055,-205.43054305430542,-205.37053705370536,-205.3105310531053,-205.25052505250525,-205.1905190519052,-205.13051305130514,-205.07050705070506,-205.010501050105,-204.95049504950495,-204.8904890489049,-204.83048304830484,-204.77047704770476,-204.7104710471047,-204.65046504650465,-204.5904590459046,-204.53045304530454,-204.47044704470446,-204.4104410441044,-204.35043504350435,-204.2904290429043,-204.23042304230424,-204.17041704170418,-204.1104110411041,-204.05040504050405,-203.990399039904,-203.93039303930394,-203.87038703870388,-203.8103810381038,-203.75037503750374,-203.6903690369037,-203.63036303630363,-203.57035703570358,-203.5103510351035,-203.45034503450344,-203.3903390339034,-203.33033303330333,-203.27032703270328,-203.21032103210322,-203.15031503150314,-203.0903090309031,-203.03030303030303,-202.97029702970298,-202.91029102910292,-202.85028502850284,-202.79027902790278,-202.73027302730273,-202.67026702670267,-202.61026102610262,-202.55025502550254,-202.49024902490248,-202.43024302430243,-202.37023702370237,-202.31023102310232,-202.25022502250226,-202.19021902190218,-202.13021302130213,-202.07020702070207,-202.01020102010202,-201.95019501950196,-201.89018901890188,-201.83018301830182,-201.77017701770177,-201.71017101710171,-201.65016501650166,-201.59015901590158,-201.53015301530152,-201.47014701470147,-201.4101410141014,-201.35013501350136,-201.2901290129013,-201.23012301230122,-201.17011701170117,-201.1101110111011,-201.05010501050106,-200.990099009901,-200.93009300930092,-200.87008700870086,-200.8100810081008,-200.75007500750075,-200.6900690069007,-200.63006300630062,-200.57005700570056,-200.5100510051005,-200.45004500450045,-200.3900390039004,-200.33003300330034,-200.27002700270026,-200.2100210021002,-200.15001500150015,-200.0900090009001,-200.03000300030004,-199.96999699969996,-199.9099909990999,-199.84998499849985,-199.7899789978998,-199.72997299729974,-199.66996699669966,-199.6099609960996,-199.54995499549955,-199.4899489948995,-199.42994299429944,-199.36993699369938,-199.3099309930993,-199.24992499249925,-199.1899189918992,-199.12991299129914,-199.06990699069908,-199.009900990099,-198.94989498949894,-198.8898889888989,-198.82988298829883,-198.76987698769878,-198.7098709870987,-198.64986498649864,-198.5898589858986,-198.52985298529853,-198.46984698469848,-198.40984098409842,-198.34983498349834,-198.28982898289829,-198.22982298229823,-198.16981698169818,-198.10981098109812,-198.04980498049804,-197.98979897989798,-197.92979297929793,-197.86978697869787,-197.80978097809782,-197.74977497749774,-197.68976897689768,-197.62976297629763,-197.56975697569757,-197.50975097509752,-197.44974497449746,-197.38973897389738,-197.32973297329733,-197.26972697269727,-197.20972097209722,-197.14971497149716,-197.08970897089708,-197.02970297029702,-196.96969696969697,-196.9096909690969,-196.84968496849686,-196.78967896789678,-196.72967296729672,-196.66966696669667,-196.6096609660966,-196.54965496549656,-196.4896489648965,-196.42964296429642,-196.36963696369637,-196.3096309630963,-196.24962496249626,-196.1896189618962,-196.12961296129612,-196.06960696069606,-196.009600960096,-195.94959495949595,-195.8895889588959,-195.82958295829582,-195.76957695769576,-195.7095709570957,-195.64956495649565,-195.5895589558956,-195.52955295529554,-195.46954695469546,-195.4095409540954,-195.34953495349535,-195.2895289528953,-195.22952295229524,-195.16951695169516,-195.1095109510951,-195.04950495049505,-194.989498949895,-194.92949294929494,-194.86948694869486,-194.8094809480948,-194.74947494749475,-194.6894689468947,-194.62946294629464,-194.56945694569458,-194.5094509450945,-194.44944494449445,-194.3894389438944,-194.32943294329434,-194.26942694269428,-194.2094209420942,-194.14941494149414,-194.0894089408941,-194.02940294029403,-193.96939693969398,-193.9093909390939,-193.84938493849384,-193.7893789378938,-193.72937293729373,-193.66936693669368,-193.60936093609362,-193.54935493549354,-193.48934893489348,-193.42934293429343,-193.36933693369338,-193.30933093309332,-193.24932493249324,-193.18931893189318,-193.12931293129313,-193.06930693069307,-193.00930093009302,-192.94929492949294,-192.88928892889288,-192.82928292829283,-192.76927692769277,-192.70927092709272,-192.64926492649266,-192.58925892589258,-192.52925292529252,-192.46924692469247,-192.40924092409242,-192.34923492349236,-192.28922892289228,-192.22922292229222,-192.16921692169217,-192.1092109210921,-192.04920492049206,-191.98919891989198,-191.92919291929192,-191.86918691869187,-191.8091809180918,-191.74917491749176,-191.6891689168917,-191.62916291629162,-191.56915691569156,-191.5091509150915,-191.44914491449146,-191.3891389138914,-191.32913291329132,-191.26912691269126,-191.2091209120912,-191.14911491149115,-191.0891089108911,-191.02910291029102,-190.96909690969096,-190.9090909090909,-190.84908490849085,-190.7890789078908,-190.72907290729074,-190.66906690669066,-190.6090609060906,-190.54905490549055,-190.4890489048905,-190.42904290429044,-190.36903690369036,-190.3090309030903,-190.24902490249025,-190.1890189018902,-190.12901290129014,-190.06900690069006,-190.00900090009,-189.94899489948995,-189.8889888988899,-189.82898289828984,-189.76897689768978,-189.7089708970897,-189.64896489648964,-189.5889588958896,-189.52895289528954,-189.46894689468948,-189.4089408940894,-189.34893489348934,-189.2889288928893,-189.22892289228923,-189.16891689168918,-189.1089108910891,-189.04890489048904,-188.988898889889,-188.92889288928893,-188.86888688868888,-188.80888088808882,-188.74887488748874,-188.68886888688868,-188.62886288628863,-188.56885688568858,-188.50885088508852,-188.44884488448844,-188.38883888388838,-188.32883288328833,-188.26882688268827,-188.20882088208822,-188.14881488148814,-188.08880888088808,-188.02880288028803,-187.96879687968797,-187.90879087908792,-187.84878487848786,-187.78877887788778,-187.72877287728772,-187.66876687668767,-187.60876087608762,-187.54875487548756,-187.48874887488748,-187.42874287428742,-187.36873687368737,-187.3087308730873,-187.24872487248726,-187.18871887188718,-187.12871287128712,-187.06870687068707,-187.008700870087,-186.94869486948696,-186.8886888688869,-186.82868286828682,-186.76867686768676,-186.7086708670867,-186.64866486648666,-186.5886588658866,-186.52865286528652,-186.46864686468646,-186.4086408640864,-186.34863486348635,-186.2886288628863,-186.22862286228622,-186.16861686168616,-186.1086108610861,-186.04860486048605,-185.988598859886,-185.92859285928594,-185.86858685868586,-185.8085808580858,-185.74857485748575,-185.6885688568857,-185.62856285628564,-185.56855685568556,-185.5085508550855,-185.44854485448545,-185.3885388538854,-185.32853285328534,-185.26852685268526,-185.2085208520852,-185.14851485148515,-185.0885088508851,-185.02850285028504,-184.96849684968498,-184.9084908490849,-184.84848484848484,-184.7884788478848,-184.72847284728473,-184.66846684668468,-184.6084608460846,-184.54845484548454,-184.4884488448845,-184.42844284428443,-184.36843684368438,-184.3084308430843,-184.24842484248424,-184.1884188418842,-184.12841284128413,-184.06840684068408,-184.00840084008402,-183.94839483948394,-183.88838883888388,-183.82838283828383,-183.76837683768377,-183.70837083708372,-183.64836483648364,-183.58835883588358,-183.52835283528353,-183.46834683468347,-183.40834083408342,-183.34833483348334,-183.28832883288328,-183.22832283228323,-183.16831683168317,-183.10831083108312,-183.04830483048306,-182.98829882988298,-182.92829282928292,-182.86828682868287,-182.80828082808281,-182.74827482748276,-182.68826882688268,-182.62826282628262,-182.56825682568257,-182.5082508250825,-182.44824482448246,-182.38823882388238,-182.32823282328232,-182.26822682268227,-182.2082208220822,-182.14821482148216,-182.0882088208821,-182.02820282028202,-181.96819681968196,-181.9081908190819,-181.84818481848185,-181.7881788178818,-181.72817281728172,-181.66816681668166,-181.6081608160816,-181.54815481548155,-181.4881488148815,-181.42814281428141,-181.36813681368136,-181.3081308130813,-181.24812481248125,-181.1881188118812,-181.12811281128114,-181.06810681068106,-181.008100810081,-180.94809480948095,-180.8880888088809,-180.82808280828084,-180.76807680768076,-180.7080708070807,-180.64806480648065,-180.5880588058806,-180.52805280528054,-180.46804680468045,-180.4080408040804,-180.34803480348035,-180.2880288028803,-180.22802280228024,-180.16801680168018,-180.1080108010801,-180.04800480048004,-179.98799879988,-179.92799279927993,-179.86798679867988,-179.8079807980798,-179.74797479747974,-179.6879687968797,-179.62796279627963,-179.56795679567958,-179.5079507950795,-179.44794479447944,-179.38793879387939,-179.32793279327933,-179.26792679267928,-179.20792079207922,-179.14791479147914,-179.08790879087908,-179.02790279027903,-178.96789678967897,-178.90789078907892,-178.84788478847884,-178.78787878787878,-178.72787278727873,-178.66786678667867,-178.60786078607862,-178.54785478547853,-178.48784878487848,-178.42784278427843,-178.36783678367837,-178.30783078307832,-178.24782478247826,-178.18781878187818,-178.12781278127812,-178.06780678067807,-178.00780078007801,-177.94779477947796,-177.88778877887788,-177.82778277827782,-177.76777677767777,-177.7077707770777,-177.64776477647766,-177.58775877587757,-177.52775277527752,-177.46774677467747,-177.4077407740774,-177.34773477347736,-177.2877287728773,-177.22772277227722,-177.16771677167716,-177.1077107710771,-177.04770477047705,-176.987698769877,-176.92769276927692,-176.86768676867686,-176.8076807680768,-176.74767476747675,-176.6876687668767,-176.62766276627661,-176.56765676567656,-176.5076507650765,-176.44764476447645,-176.3876387638764,-176.32763276327634,-176.26762676267626,-176.2076207620762,-176.14761476147615,-176.0876087608761,-176.02760276027604,-175.96759675967596,-175.9075907590759,-175.84758475847585,-175.7875787578758,-175.72757275727574,-175.66756675667565,-175.6075607560756,-175.54755475547555,-175.4875487548755,-175.42754275427544,-175.36753675367538,-175.3075307530753,-175.24752475247524,-175.1875187518752,-175.12751275127513,-175.06750675067508,-175.007500750075,-174.94749474947494,-174.8874887488749,-174.82748274827483,-174.76747674767478,-174.7074707470747,-174.64746474647464,-174.58745874587459,-174.52745274527453,-174.46744674467448,-174.40744074407442,-174.34743474347434,-174.28742874287428,-174.22742274227423,-174.16741674167417,-174.10741074107412,-174.04740474047404,-173.98739873987398,-173.92739273927393,-173.86738673867387,-173.80738073807382,-173.74737473747373,-173.68736873687368,-173.62736273627362,-173.56735673567357,-173.50735073507352,-173.44734473447346,-173.38733873387338,-173.32733273327332,-173.26732673267327,-173.2073207320732,-173.14731473147316,-173.08730873087308,-173.02730273027302,-172.96729672967297,-172.9072907290729,-172.84728472847286,-172.78727872787277,-172.72727272727272,-172.66726672667266,-172.6072607260726,-172.54725472547256,-172.4872487248725,-172.42724272427242,-172.36723672367236,-172.3072307230723,-172.24722472247225,-172.1872187218722,-172.12721272127212,-172.06720672067206,-172.007200720072,-171.94719471947195,-171.8871887188719,-171.8271827182718,-171.76717671767176,-171.7071707170717,-171.64716471647165,-171.5871587158716,-171.52715271527154,-171.46714671467146,-171.4071407140714,-171.34713471347135,-171.2871287128713,-171.22712271227124,-171.16711671167116,-171.1071107110711,-171.04710471047105,-170.987098709871,-170.92709270927094,-170.86708670867085,-170.8070807080708,-170.74707470747074,-170.6870687068707,-170.62706270627064,-170.56705670567058,-170.5070507050705,-170.44704470447044,-170.3870387038704,-170.32703270327033,-170.26702670267028,-170.2070207020702,-170.14701470147014,-170.0870087008701,-170.02700270027003,-169.96699669966998,-169.9069906990699,-169.84698469846984,-169.78697869786978,-169.72697269726973,-169.66696669666968,-169.60696069606962,-169.54695469546954,-169.48694869486948,-169.42694269426943,-169.36693669366937,-169.30693069306932,-169.24692469246924,-169.18691869186918,-169.12691269126913,-169.06690669066907,-169.00690069006902,-168.94689468946893,-168.88688868886888,-168.82688268826882,-168.76687668766877,-168.70687068706872,-168.64686468646866,-168.58685868586858,-168.52685268526852,-168.46684668466847,-168.4068406840684,-168.34683468346836,-168.28682868286828,-168.22682268226822,-168.16681668166817,-168.1068106810681,-168.04680468046806,-167.98679867986797,-167.92679267926792,-167.86678667866786,-167.8067806780678,-167.74677467746776,-167.6867686768677,-167.62676267626762,-167.56675667566756,-167.5067506750675,-167.44674467446745,-167.3867386738674,-167.32673267326732,-167.26672667266726,-167.2067206720672,-167.14671467146715,-167.0867086708671,-167.026702670267,-166.96669666966696,-166.9066906690669,-166.84668466846685,-166.7866786678668,-166.72667266726674,-166.66666666666666,-166.6066606660666,-166.54665466546655,-166.4866486648665,-166.42664266426644,-166.36663666366636,-166.3066306630663,-166.24662466246625,-166.1866186618662,-166.12661266126614,-166.06660666066605,-166.006600660066,-165.94659465946594,-165.8865886588659,-165.82658265826583,-165.76657665766578,-165.7065706570657,-165.64656465646564,-165.5865586558656,-165.52655265526553,-165.46654665466548,-165.4065406540654,-165.34653465346534,-165.2865286528653,-165.22652265226523,-165.16651665166518,-165.1065106510651,-165.04650465046504,-164.98649864986498,-164.92649264926493,-164.86648664866487,-164.80648064806482,-164.74647464746474,-164.68646864686468,-164.62646264626463,-164.56645664566457,-164.50645064506452,-164.44644464446444,-164.38643864386438,-164.32643264326433,-164.26642664266427,-164.20642064206422,-164.14641464146413,-164.08640864086408,-164.02640264026402,-163.96639663966397,-163.90639063906391,-163.84638463846386,-163.78637863786378,-163.72637263726372,-163.66636663666367,-163.6063606360636,-163.54635463546356,-163.48634863486348,-163.42634263426342,-163.36633663366337,-163.3063306330633,-163.24632463246326,-163.18631863186317,-163.12631263126312,-163.06630663066306,-163.006300630063,-162.94629462946295,-162.8862886288629,-162.82628262826282,-162.76627662766276,-162.7062706270627,-162.64626462646265,-162.5862586258626,-162.52625262526252,-162.46624662466246,-162.4062406240624,-162.34623462346235,-162.2862286228623,-162.2262226222622,-162.16621662166216,-162.1062106210621,-162.04620462046205,-161.986198619862,-161.92619261926194,-161.86618661866186,-161.8061806180618,-161.74617461746175,-161.6861686168617,-161.62616261626164,-161.56615661566155,-161.5061506150615,-161.44614461446145,-161.3861386138614,-161.32613261326134,-161.26612661266125,-161.2061206120612,-161.14611461146114,-161.0861086108611,-161.02610261026103,-160.96609660966098,-160.9060906090609,-160.84608460846084,-160.7860786078608,-160.72607260726073,-160.66606660666068,-160.6060606060606,-160.54605460546054,-160.48604860486049,-160.42604260426043,-160.36603660366038,-160.3060306030603,-160.24602460246024,-160.18601860186018,-160.12601260126013,-160.06600660066007,-160.00600060006002,-159.94599459945994,-159.88598859885988,-159.82598259825983,-159.76597659765977,-159.70597059705972,-159.64596459645963,-159.58595859585958,-159.52595259525953,-159.46594659465947,-159.40594059405942,-159.34593459345933,-159.28592859285928,-159.22592259225922,-159.16591659165917,-159.10591059105911,-159.04590459045906,-158.98589858985898,-158.92589258925892,-158.86588658865887,-158.8058805880588,-158.74587458745876,-158.68586858685867,-158.62586258625862,-158.56585658565857,-158.5058505850585,-158.44584458445846,-158.38583858385837,-158.32583258325832,-158.26582658265826,-158.2058205820582,-158.14581458145815,-158.0858085808581,-158.02580258025802,-157.96579657965796,-157.9057905790579,-157.84578457845785,-157.7857785778578,-157.72577257725771,-157.66576657665766,-157.6057605760576,-157.54575457545755,-157.4857485748575,-157.4257425742574,-157.36573657365736,-157.3057305730573,-157.24572457245725,-157.1857185718572,-157.12571257125714,-157.06570657065706,-157.005700570057,-156.94569456945695,-156.8856885688569,-156.82568256825684,-156.76567656765675,-156.7056705670567,-156.64566456645665,-156.5856585658566,-156.52565256525654,-156.46564656465645,-156.4056405640564,-156.34563456345634,-156.2856285628563,-156.22562256225623,-156.16561656165618,-156.1056105610561,-156.04560456045604,-155.985598559856,-155.92559255925593,-155.86558655865588,-155.8055805580558,-155.74557455745574,-155.68556855685569,-155.62556255625563,-155.56555655565558,-155.5055505550555,-155.44554455445544,-155.38553855385538,-155.32553255325533,-155.26552655265527,-155.20552055205522,-155.14551455145514,-155.08550855085508,-155.02550255025503,-154.96549654965497,-154.90549054905492,-154.84548454845483,-154.78547854785478,-154.72547254725472,-154.66546654665467,-154.60546054605462,-154.54545454545453,-154.48544854485448,-154.42544254425442,-154.36543654365437,-154.3054305430543,-154.24542454245426,-154.18541854185418,-154.12541254125412,-154.06540654065407,-154.005400540054,-153.94539453945396,-153.88538853885387,-153.82538253825382,-153.76537653765376,-153.7053705370537,-153.64536453645366,-153.58535853585357,-153.52535253525352,-153.46534653465346,-153.4053405340534,-153.34533453345335,-153.2853285328533,-153.22532253225322,-153.16531653165316,-153.1053105310531,-153.04530453045305,-152.985298529853,-152.9252925292529,-152.86528652865286,-152.8052805280528,-152.74527452745275,-152.6852685268527,-152.6252625262526,-152.56525652565256,-152.5052505250525,-152.44524452445245,-152.3852385238524,-152.32523252325234,-152.26522652265226,-152.2052205220522,-152.14521452145215,-152.0852085208521,-152.02520252025204,-151.96519651965195,-151.9051905190519,-151.84518451845184,-151.7851785178518,-151.72517251725174,-151.66516651665165,-151.6051605160516,-151.54515451545154,-151.4851485148515,-151.42514251425143,-151.36513651365138,-151.3051305130513,-151.24512451245124,-151.1851185118512,-151.12511251125113,-151.06510651065108,-151.005100510051,-150.94509450945094,-150.88508850885088,-150.82508250825083,-150.76507650765078,-150.7050705070507,-150.64506450645064,-150.58505850585058,-150.52505250525053,-150.46504650465047,-150.40504050405042,-150.34503450345034,-150.28502850285028,-150.22502250225023,-150.16501650165017,-150.10501050105012,-150.04500450045003,-149.98499849984998,-149.92499249924992,-149.86498649864987,-149.80498049804982,-149.74497449744973,-149.68496849684968,-149.62496249624962,-149.56495649564957,-149.5049504950495,-149.44494449444946,-149.38493849384938,-149.32493249324932,-149.26492649264927,-149.2049204920492,-149.14491449144916,-149.08490849084907,-149.02490249024902,-148.96489648964896,-148.9048904890489,-148.84488448844886,-148.78487848784877,-148.72487248724872,-148.66486648664866,-148.6048604860486,-148.54485448544855,-148.4848484848485,-148.42484248424842,-148.36483648364836,-148.3048304830483,-148.24482448244825,-148.1848184818482,-148.1248124812481,-148.06480648064806,-148.004800480048,-147.94479447944795,-147.8847884788479,-147.8247824782478,-147.76477647764776,-147.7047704770477,-147.64476447644765,-147.5847584758476,-147.52475247524754,-147.46474647464746,-147.4047404740474,-147.34473447344735,-147.2847284728473,-147.22472247224724,-147.16471647164715,-147.1047104710471,-147.04470447044704,-146.984698469847,-146.92469246924693,-146.86468646864685,-146.8046804680468,-146.74467446744674,-146.6846684668467,-146.62466246624663,-146.56465646564658,-146.5046504650465,-146.44464446444644,-146.3846384638464,-146.32463246324633,-146.26462646264628,-146.2046204620462,-146.14461446144614,-146.08460846084608,-146.02460246024603,-145.96459645964597,-145.9045904590459,-145.84458445844584,-145.78457845784578,-145.72457245724573,-145.66456645664567,-145.60456045604562,-145.54455445544554,-145.48454845484548,-145.42454245424543,-145.36453645364537,-145.30453045304532,-145.24452445244523,-145.18451845184518,-145.12451245124512,-145.06450645064507,-145.00450045004501,-144.94449444944493,-144.88448844884488,-144.82448244824482,-144.76447644764477,-144.7044704470447,-144.64446444644466,-144.58445844584458,-144.52445244524452,-144.46444644464447,-144.4044404440444,-144.34443444344436,-144.28442844284427,-144.22442244224422,-144.16441644164416,-144.1044104410441,-144.04440444044405,-143.98439843984397,-143.92439243924392,-143.86438643864386,-143.8043804380438,-143.74437443744375,-143.6843684368437,-143.62436243624362,-143.56435643564356,-143.5043504350435,-143.44434443444345,-143.3843384338434,-143.3243324332433,-143.26432643264326,-143.2043204320432,-143.14431443144315,-143.0843084308431,-143.024302430243,-142.96429642964296,-142.9042904290429,-142.84428442844285,-142.7842784278428,-142.72427242724274,-142.66426642664266,-142.6042604260426,-142.54425442544255,-142.4842484248425,-142.42424242424244,-142.36423642364235,-142.3042304230423,-142.24422442244224,-142.1842184218422,-142.12421242124213,-142.06420642064205,-142.004200420042,-141.94419441944194,-141.8841884188419,-141.82418241824183,-141.76417641764178,-141.7041704170417,-141.64416441644164,-141.58415841584159,-141.52415241524153,-141.46414641464148,-141.4041404140414,-141.34413441344134,-141.28412841284128,-141.22412241224123,-141.16411641164117,-141.1041104110411,-141.04410441044104,-140.98409840984098,-140.92409240924093,-140.86408640864087,-140.80408040804082,-140.74407440744073,-140.68406840684068,-140.62406240624063,-140.56405640564057,-140.50405040504052,-140.44404440444043,-140.38403840384038,-140.32403240324032,-140.26402640264027,-140.20402040204021,-140.14401440144013,-140.08400840084008,-140.02400240024002,-139.96399639963997,-139.9039903990399,-139.84398439843986,-139.78397839783977,-139.72397239723972,-139.66396639663967,-139.6039603960396,-139.54395439543956,-139.48394839483947,-139.42394239423942,-139.36393639363936,-139.3039303930393,-139.24392439243925,-139.18391839183917,-139.12391239123912,-139.06390639063906,-139.003900390039,-138.94389438943895,-138.8838883888389,-138.82388238823881,-138.76387638763876,-138.7038703870387,-138.64386438643865,-138.5838583858386,-138.5238523852385,-138.46384638463846,-138.4038403840384,-138.34383438343835,-138.2838283828383,-138.2238223822382,-138.16381638163816,-138.1038103810381,-138.04380438043805,-137.983798379838,-137.92379237923794,-137.86378637863785,-137.8037803780378,-137.74377437743775,-137.6837683768377,-137.62376237623764,-137.56375637563755,-137.5037503750375,-137.44374437443744,-137.3837383738374,-137.32373237323733,-137.26372637263725,-137.2037203720372,-137.14371437143714,-137.0837083708371,-137.02370237023703,-136.96369636963698,-136.9036903690369,-136.84368436843684,-136.78367836783679,-136.72367236723673,-136.66366636663668,-136.6036603660366,-136.54365436543654,-136.48364836483648,-136.42364236423643,-136.36363636363637,-136.3036303630363,-136.24362436243624,-136.18361836183618,-136.12361236123613,-136.06360636063607,-136.00360036003602,-135.94359435943593,-135.88358835883588,-135.82358235823583,-135.76357635763577,-135.70357035703572,-135.64356435643563,-135.58355835583558,-135.52355235523552,-135.46354635463547,-135.4035403540354,-135.34353435343533,-135.28352835283528,-135.22352235223522,-135.16351635163517,-135.1035103510351,-135.04350435043506,-134.98349834983497,-134.92349234923492,-134.86348634863486,-134.8034803480348,-134.74347434743476,-134.68346834683467,-134.62346234623462,-134.56345634563456,-134.5034503450345,-134.44344434443445,-134.38343834383437,-134.32343234323432,-134.26342634263426,-134.2034203420342,-134.14341434143415,-134.0834083408341,-134.02340234023401,-133.96339633963396,-133.9033903390339,-133.84338433843385,-133.7833783378338,-133.7233723372337,-133.66336633663366,-133.6033603360336,-133.54335433543355,-133.4833483348335,-133.4233423342334,-133.36333633363336,-133.3033303330333,-133.24332433243325,-133.1833183318332,-133.12331233123314,-133.06330633063305,-133.003300330033,-132.94329432943294,-132.8832883288329,-132.82328232823284,-132.76327632763275,-132.7032703270327,-132.64326432643264,-132.5832583258326,-132.52325232523253,-132.46324632463245,-132.4032403240324,-132.34323432343234,-132.2832283228323,-132.22322232223223,-132.16321632163218,-132.1032103210321,-132.04320432043204,-131.98319831983198,-131.92319231923193,-131.86318631863188,-131.8031803180318,-131.74317431743174,-131.68316831683168,-131.62316231623163,-131.56315631563157,-131.5031503150315,-131.44314431443144,-131.38313831383138,-131.32313231323133,-131.26312631263127,-131.20312031203122,-131.14311431143113,-131.08310831083108,-131.02310231023102,-130.96309630963097,-130.90309030903092,-130.84308430843083,-130.78307830783078,-130.72307230723072,-130.66306630663067,-130.6030603060306,-130.54305430543053,-130.48304830483048,-130.42304230423042,-130.36303630363037,-130.3030303030303,-130.24302430243026,-130.18301830183017,-130.12301230123012,-130.06300630063006,-130.00300030003,-129.94299429942996,-129.88298829882987,-129.82298229822982,-129.76297629762976,-129.7029702970297,-129.64296429642965,-129.58295829582957,-129.52295229522952,-129.46294629462946,-129.4029402940294,-129.34293429342935,-129.2829282928293,-129.2229222922292,-129.16291629162916,-129.1029102910291,-129.04290429042905,-128.982898289829,-128.9228922892289,-128.86288628862886,-128.8028802880288,-128.74287428742875,-128.6828682868287,-128.6228622862286,-128.56285628562856,-128.5028502850285,-128.44284428442845,-128.3828382838284,-128.32283228322834,-128.26282628262825,-128.2028202820282,-128.14281428142814,-128.0828082808281,-128.02280228022803,-127.96279627962797,-127.9027902790279,-127.84278427842784,-127.78277827782779,-127.72277227722772,-127.66276627662766,-127.60276027602761,-127.54275427542754,-127.48274827482749,-127.42274227422742,-127.36273627362736,-127.30273027302731,-127.24272427242724,-127.18271827182718,-127.12271227122713,-127.06270627062706,-127.002700270027,-126.94269426942694,-126.88268826882688,-126.82268226822683,-126.76267626762676,-126.7026702670267,-126.64266426642665,-126.58265826582658,-126.52265226522653,-126.46264626462646,-126.4026402640264,-126.34263426342635,-126.28262826282628,-126.22262226222622,-126.16261626162617,-126.1026102610261,-126.04260426042605,-125.98259825982598,-125.92259225922592,-125.86258625862587,-125.8025802580258,-125.74257425742574,-125.68256825682569,-125.62256225622562,-125.56255625562557,-125.5025502550255,-125.44254425442544,-125.38253825382539,-125.32253225322532,-125.26252625262526,-125.20252025202521,-125.14251425142514,-125.08250825082509,-125.02250225022502,-124.96249624962496,-124.90249024902491,-124.84248424842484,-124.78247824782478,-124.72247224722473,-124.66246624662466,-124.6024602460246,-124.54245424542454,-124.48244824482448,-124.42244224422443,-124.36243624362436,-124.3024302430243,-124.24242424242425,-124.18241824182418,-124.12241224122413,-124.06240624062406,-124.002400240024,-123.94239423942395,-123.88238823882388,-123.82238223822382,-123.76237623762377,-123.7023702370237,-123.64236423642365,-123.58235823582358,-123.52235223522352,-123.46234623462347,-123.4023402340234,-123.34233423342334,-123.28232823282329,-123.22232223222322,-123.16231623162317,-123.1023102310231,-123.04230423042304,-122.98229822982299,-122.92229222922292,-122.86228622862286,-122.80228022802281,-122.74227422742274,-122.68226822682269,-122.62226222622262,-122.56225622562256,-122.50225022502251,-122.44224422442244,-122.38223822382238,-122.32223222322233,-122.26222622262226,-122.2022202220222,-122.14221422142214,-122.08220822082208,-122.02220222022203,-121.96219621962196,-121.9021902190219,-121.84218421842185,-121.78217821782178,-121.72217221722173,-121.66216621662166,-121.6021602160216,-121.54215421542155,-121.48214821482148,-121.42214221422142,-121.36213621362137,-121.3021302130213,-121.24212421242125,-121.18211821182118,-121.12211221122112,-121.06210621062107,-121.002100210021,-120.94209420942094,-120.88208820882089,-120.82208220822082,-120.76207620762077,-120.7020702070207,-120.64206420642064,-120.58205820582059,-120.52205220522052,-120.46204620462046,-120.40204020402041,-120.34203420342034,-120.28202820282029,-120.22202220222022,-120.16201620162016,-120.10201020102011,-120.04200420042004,-119.98199819981998,-119.92199219921993,-119.86198619861986,-119.8019801980198,-119.74197419741974,-119.68196819681968,-119.62196219621963,-119.56195619561956,-119.5019501950195,-119.44194419441945,-119.38193819381938,-119.32193219321933,-119.26192619261926,-119.2019201920192,-119.14191419141915,-119.08190819081908,-119.02190219021902,-118.96189618961897,-118.9018901890189,-118.84188418841885,-118.78187818781878,-118.72187218721872,-118.66186618661867,-118.6018601860186,-118.54185418541854,-118.48184818481849,-118.42184218421842,-118.36183618361837,-118.3018301830183,-118.24182418241824,-118.18181818181819,-118.12181218121812,-118.06180618061806,-118.00180018001801,-117.94179417941794,-117.88178817881789,-117.82178217821782,-117.76177617761776,-117.7017701770177,-117.64176417641764,-117.58175817581758,-117.52175217521753,-117.46174617461746,-117.4017401740174,-117.34173417341734,-117.28172817281728,-117.22172217221723,-117.16171617161716,-117.1017101710171,-117.04170417041705,-116.98169816981698,-116.92169216921693,-116.86168616861686,-116.8016801680168,-116.74167416741675,-116.68166816681668,-116.62166216621662,-116.56165616561657,-116.5016501650165,-116.44164416441645,-116.38163816381638,-116.32163216321632,-116.26162616261627,-116.2016201620162,-116.14161416141614,-116.08160816081609,-116.02160216021602,-115.96159615961597,-115.9015901590159,-115.84158415841584,-115.78157815781579,-115.72157215721572,-115.66156615661566,-115.60156015601561,-115.54155415541554,-115.48154815481548,-115.42154215421542,-115.36153615361536,-115.3015301530153,-115.24152415241524,-115.18151815181518,-115.12151215121513,-115.06150615061506,-115.001500150015,-114.94149414941494,-114.88148814881488,-114.82148214821483,-114.76147614761476,-114.7014701470147,-114.64146414641465,-114.58145814581458,-114.52145214521452,-114.46144614461446,-114.4014401440144,-114.34143414341435,-114.28142814281428,-114.22142214221422,-114.16141614161417,-114.1014101410141,-114.04140414041404,-113.98139813981398,-113.92139213921392,-113.86138613861387,-113.8013801380138,-113.74137413741374,-113.68136813681369,-113.62136213621362,-113.56135613561356,-113.5013501350135,-113.44134413441344,-113.38133813381339,-113.32133213321332,-113.26132613261326,-113.20132013201321,-113.14131413141314,-113.08130813081308,-113.02130213021302,-112.96129612961296,-112.9012901290129,-112.84128412841284,-112.78127812781278,-112.72127212721273,-112.66126612661266,-112.6012601260126,-112.54125412541254,-112.48124812481248,-112.42124212421243,-112.36123612361236,-112.3012301230123,-112.24122412241225,-112.18121812181218,-112.12121212121212,-112.06120612061206,-112.001200120012,-111.94119411941195,-111.88118811881188,-111.82118211821182,-111.76117611761177,-111.7011701170117,-111.64116411641164,-111.58115811581158,-111.52115211521152,-111.46114611461147,-111.4011401140114,-111.34113411341134,-111.28112811281129,-111.22112211221122,-111.16111611161116,-111.1011101110111,-111.04110411041104,-110.98109810981099,-110.92109210921092,-110.86108610861086,-110.80108010801081,-110.74107410741074,-110.68106810681068,-110.62106210621062,-110.56105610561056,-110.5010501050105,-110.44104410441044,-110.38103810381038,-110.32103210321033,-110.26102610261026,-110.2010201020102,-110.14101410141014,-110.08100810081008,-110.02100210021003,-109.96099609960996,-109.9009900990099,-109.84098409840985,-109.78097809780978,-109.72097209720972,-109.66096609660966,-109.6009600960096,-109.54095409540955,-109.48094809480948,-109.42094209420942,-109.36093609360937,-109.3009300930093,-109.24092409240924,-109.18091809180918,-109.12091209120912,-109.06090609060907,-109.000900090009,-108.94089408940894,-108.88088808880889,-108.82088208820882,-108.76087608760876,-108.7008700870087,-108.64086408640864,-108.58085808580859,-108.52085208520852,-108.46084608460846,-108.40084008400841,-108.34083408340834,-108.28082808280828,-108.22082208220822,-108.16081608160816,-108.1008100810081,-108.04080408040804,-107.98079807980798,-107.92079207920793,-107.86078607860786,-107.8007800780078,-107.74077407740774,-107.68076807680768,-107.62076207620763,-107.56075607560756,-107.5007500750075,-107.44074407440745,-107.38073807380738,-107.32073207320732,-107.26072607260726,-107.2007200720072,-107.14071407140715,-107.08070807080708,-107.02070207020702,-106.96069606960697,-106.9006900690069,-106.84068406840684,-106.78067806780678,-106.72067206720672,-106.66066606660667,-106.6006600660066,-106.54065406540654,-106.48064806480649,-106.42064206420642,-106.36063606360636,-106.3006300630063,-106.24062406240624,-106.18061806180619,-106.12061206120612,-106.06060606060606,-106.00060006000601,-105.94059405940594,-105.88058805880588,-105.82058205820582,-105.76057605760576,-105.7005700570057,-105.64056405640564,-105.58055805580558,-105.52055205520553,-105.46054605460546,-105.4005400540054,-105.34053405340534,-105.28052805280528,-105.22052205220523,-105.16051605160516,-105.1005100510051,-105.04050405040505,-104.98049804980498,-104.92049204920492,-104.86048604860486,-104.8004800480048,-104.74047404740475,-104.68046804680468,-104.62046204620462,-104.56045604560457,-104.5004500450045,-104.44044404440444,-104.38043804380438,-104.32043204320432,-104.26042604260427,-104.2004200420042,-104.14041404140414,-104.08040804080409,-104.02040204020402,-103.96039603960396,-103.9003900390039,-103.84038403840384,-103.78037803780379,-103.72037203720372,-103.66036603660366,-103.60036003600361,-103.54035403540354,-103.48034803480348,-103.42034203420341,-103.36033603360336,-103.3003300330033,-103.24032403240324,-103.18031803180318,-103.12031203120313,-103.06030603060306,-103.000300030003,-102.94029402940293,-102.88028802880288,-102.82028202820283,-102.76027602760276,-102.7002700270027,-102.64026402640265,-102.58025802580258,-102.52025202520252,-102.46024602460245,-102.4002400240024,-102.34023402340235,-102.28022802280228,-102.22022202220222,-102.16021602160217,-102.1002100210021,-102.04020402040204,-101.98019801980197,-101.92019201920192,-101.86018601860187,-101.8001800180018,-101.74017401740174,-101.68016801680169,-101.62016201620162,-101.56015601560156,-101.5001500150015,-101.44014401440144,-101.38013801380139,-101.32013201320132,-101.26012601260126,-101.20012001200121,-101.14011401140114,-101.08010801080108,-101.02010201020101,-100.96009600960096,-100.9000900090009,-100.84008400840084,-100.78007800780078,-100.72007200720073,-100.66006600660066,-100.6000600060006,-100.54005400540053,-100.48004800480048,-100.42004200420043,-100.36003600360036,-100.3000300030003,-100.24002400240025,-100.18001800180018,-100.12001200120012,-100.06000600060005,-100.0,-99.93999399939995,-99.87998799879988,-99.81998199819982,-99.75997599759975,-99.6999699969997,-99.63996399639964,-99.57995799579957,-99.51995199519952,-99.45994599459947,-99.3999399939994,-99.33993399339934,-99.27992799279927,-99.21992199219922,-99.15991599159916,-99.0999099909991,-99.03990399039904,-98.97989798979899,-98.91989198919892,-98.85988598859886,-98.79987998799879,-98.73987398739874,-98.67986798679868,-98.61986198619861,-98.55985598559856,-98.4998499849985,-98.43984398439844,-98.37983798379838,-98.31983198319831,-98.25982598259826,-98.1998199819982,-98.13981398139813,-98.07980798079808,-98.01980198019803,-97.95979597959796,-97.8997899789979,-97.83978397839783,-97.77977797779778,-97.71977197719772,-97.65976597659765,-97.5997599759976,-97.53975397539755,-97.47974797479748,-97.41974197419742,-97.35973597359735,-97.2997299729973,-97.23972397239724,-97.17971797179717,-97.11971197119712,-97.05970597059707,-96.999699969997,-96.93969396939694,-96.87968796879687,-96.81968196819682,-96.75967596759676,-96.6996699669967,-96.63966396639664,-96.57965796579659,-96.51965196519652,-96.45964596459646,-96.39963996399639,-96.33963396339634,-96.27962796279628,-96.21962196219621,-96.15961596159616,-96.0996099609961,-96.03960396039604,-95.97959795979598,-95.91959195919591,-95.85958595859586,-95.7995799579958,-95.73957395739573,-95.67956795679568,-95.61956195619562,-95.55955595559556,-95.4995499549955,-95.43954395439543,-95.37953795379538,-95.31953195319532,-95.25952595259525,-95.1995199519952,-95.13951395139514,-95.07950795079508,-95.01950195019502,-94.95949594959495,-94.8994899489949,-94.83948394839484,-94.77947794779477,-94.71947194719472,-94.65946594659466,-94.5994599459946,-94.53945394539454,-94.47944794479447,-94.41944194419442,-94.35943594359436,-94.2994299429943,-94.23942394239424,-94.17941794179418,-94.11941194119412,-94.05940594059406,-93.99939993999399,-93.93939393939394,-93.87938793879388,-93.81938193819381,-93.75937593759376,-93.6993699369937,-93.63936393639364,-93.57935793579358,-93.51935193519351,-93.45934593459346,-93.3993399339934,-93.33933393339333,-93.27932793279328,-93.21932193219322,-93.15931593159316,-93.0993099309931,-93.03930393039303,-92.97929792979298,-92.91929192919292,-92.85928592859285,-92.7992799279928,-92.73927392739274,-92.67926792679268,-92.61926192619262,-92.55925592559255,-92.4992499249925,-92.43924392439244,-92.37923792379237,-92.31923192319232,-92.25922592259226,-92.1992199219922,-92.13921392139214,-92.07920792079207,-92.01920192019202,-91.95919591959196,-91.8991899189919,-91.83918391839184,-91.77917791779178,-91.71917191719172,-91.65916591659166,-91.59915991599159,-91.53915391539154,-91.47914791479148,-91.41914191419141,-91.35913591359136,-91.2991299129913,-91.23912391239124,-91.17911791179118,-91.11911191119111,-91.05910591059106,-90.999099909991,-90.93909390939093,-90.87908790879088,-90.81908190819082,-90.75907590759076,-90.6990699069907,-90.63906390639063,-90.57905790579058,-90.51905190519052,-90.45904590459045,-90.3990399039904,-90.33903390339034,-90.27902790279028,-90.21902190219022,-90.15901590159015,-90.0990099009901,-90.03900390039004,-89.97899789978997,-89.91899189918992,-89.85898589858986,-89.7989798979898,-89.73897389738974,-89.67896789678967,-89.61896189618962,-89.55895589558956,-89.4989498949895,-89.43894389438944,-89.37893789378938,-89.31893189318932,-89.25892589258926,-89.19891989198919,-89.13891389138914,-89.07890789078908,-89.01890189018901,-88.95889588958896,-88.8988898889889,-88.83888388838884,-88.77887788778878,-88.71887188718871,-88.65886588658866,-88.5988598859886,-88.53885388538853,-88.47884788478848,-88.41884188418842,-88.35883588358836,-88.2988298829883,-88.23882388238823,-88.17881788178818,-88.11881188118812,-88.05880588058805,-87.998799879988,-87.93879387938794,-87.87878787878788,-87.81878187818782,-87.75877587758775,-87.6987698769877,-87.63876387638764,-87.57875787578757,-87.51875187518752,-87.45874587458746,-87.3987398739874,-87.33873387338734,-87.27872787278727,-87.21872187218722,-87.15871587158716,-87.0987098709871,-87.03870387038704,-86.97869786978698,-86.91869186918692,-86.85868586858686,-86.79867986798679,-86.73867386738674,-86.67866786678668,-86.61866186618661,-86.55865586558656,-86.4986498649865,-86.43864386438644,-86.37863786378638,-86.31863186318631,-86.25862586258626,-86.1986198619862,-86.13861386138613,-86.07860786078608,-86.01860186018602,-85.95859585958596,-85.8985898589859,-85.83858385838583,-85.77857785778578,-85.71857185718572,-85.65856585658565,-85.5985598559856,-85.53855385538554,-85.47854785478548,-85.41854185418542,-85.35853585358535,-85.2985298529853,-85.23852385238524,-85.17851785178517,-85.11851185118512,-85.05850585058506,-84.998499849985,-84.93849384938494,-84.87848784878487,-84.81848184818482,-84.75847584758476,-84.6984698469847,-84.63846384638464,-84.57845784578458,-84.51845184518452,-84.45844584458446,-84.39843984398439,-84.33843384338434,-84.27842784278428,-84.21842184218421,-84.15841584158416,-84.0984098409841,-84.03840384038403,-83.97839783978398,-83.91839183918391,-83.85838583858386,-83.7983798379838,-83.73837383738373,-83.67836783678368,-83.61836183618362,-83.55835583558355,-83.4983498349835,-83.43834383438343,-83.37833783378338,-83.31833183318332,-83.25832583258325,-83.1983198319832,-83.13831383138314,-83.07830783078307,-83.01830183018302,-82.95829582958295,-82.8982898289829,-82.83828382838284,-82.77827782778277,-82.71827182718272,-82.65826582658266,-82.5982598259826,-82.53825382538254,-82.47824782478247,-82.41824182418242,-82.35823582358236,-82.2982298229823,-82.23822382238224,-82.17821782178218,-82.11821182118211,-82.05820582058206,-81.99819981998199,-81.93819381938194,-81.87818781878188,-81.81818181818181,-81.75817581758176,-81.6981698169817,-81.63816381638163,-81.57815781578158,-81.51815181518151,-81.45814581458146,-81.3981398139814,-81.33813381338133,-81.27812781278128,-81.21812181218122,-81.15811581158115,-81.0981098109811,-81.03810381038103,-80.97809780978098,-80.91809180918092,-80.85808580858085,-80.7980798079808,-80.73807380738074,-80.67806780678067,-80.61806180618062,-80.55805580558055,-80.4980498049805,-80.43804380438044,-80.37803780378037,-80.31803180318032,-80.25802580258026,-80.1980198019802,-80.13801380138014,-80.07800780078007,-80.01800180018002,-79.95799579957996,-79.89798979897989,-79.83798379837984,-79.77797779777978,-79.71797179717971,-79.65796579657966,-79.59795979597959,-79.53795379537954,-79.47794779477948,-79.41794179417941,-79.35793579357936,-79.2979297929793,-79.23792379237923,-79.17791779177918,-79.11791179117911,-79.05790579057906,-78.997899789979,-78.93789378937893,-78.87788778877888,-78.81788178817882,-78.75787578757875,-78.6978697869787,-78.63786378637863,-78.57785778577858,-78.51785178517852,-78.45784578457845,-78.3978397839784,-78.33783378337834,-78.27782778277827,-78.21782178217822,-78.15781578157815,-78.0978097809781,-78.03780378037804,-77.97779777977797,-77.91779177917792,-77.85778577857786,-77.7977797779778,-77.73777377737774,-77.67776777677767,-77.61776177617762,-77.55775577557756,-77.49774977497749,-77.43774377437744,-77.37773777377738,-77.31773177317731,-77.25772577257726,-77.19771977197719,-77.13771377137714,-77.07770777077708,-77.01770177017701,-76.95769576957696,-76.8976897689769,-76.83768376837683,-76.77767776777678,-76.71767176717671,-76.65766576657666,-76.5976597659766,-76.53765376537653,-76.47764776477648,-76.41764176417642,-76.35763576357635,-76.2976297629763,-76.23762376237623,-76.17761776177618,-76.11761176117612,-76.05760576057605,-75.997599759976,-75.93759375937594,-75.87758775877587,-75.81758175817582,-75.75757575757575,-75.6975697569757,-75.63756375637564,-75.57755775577557,-75.51755175517552,-75.45754575457546,-75.3975397539754,-75.33753375337534,-75.27752775277527,-75.21752175217522,-75.15751575157516,-75.09750975097509,-75.03750375037504,-74.97749774977498,-74.91749174917491,-74.85748574857486,-74.79747974797479,-74.73747374737474,-74.67746774677468,-74.61746174617461,-74.55745574557456,-74.4974497449745,-74.43744374437443,-74.37743774377438,-74.31743174317431,-74.25742574257426,-74.1974197419742,-74.13741374137413,-74.07740774077408,-74.01740174017402,-73.95739573957395,-73.8973897389739,-73.83738373837383,-73.77737773777378,-73.71737173717372,-73.65736573657365,-73.5973597359736,-73.53735373537354,-73.47734773477347,-73.41734173417342,-73.35733573357335,-73.2973297329733,-73.23732373237324,-73.17731773177317,-73.11731173117312,-73.05730573057306,-72.997299729973,-72.93729372937294,-72.87728772877287,-72.81728172817282,-72.75727572757276,-72.69726972697269,-72.63726372637264,-72.57725772577258,-72.51725172517251,-72.45724572457246,-72.39723972397239,-72.33723372337234,-72.27722772277228,-72.21722172217221,-72.15721572157216,-72.0972097209721,-72.03720372037203,-71.97719771977198,-71.91719171917191,-71.85718571857186,-71.7971797179718,-71.73717371737173,-71.67716771677168,-71.61716171617162,-71.55715571557155,-71.4971497149715,-71.43714371437143,-71.37713771377138,-71.31713171317132,-71.25712571257125,-71.1971197119712,-71.13711371137114,-71.07710771077107,-71.01710171017102,-70.95709570957095,-70.8970897089709,-70.83708370837084,-70.77707770777077,-70.71707170717072,-70.65706570657066,-70.5970597059706,-70.53705370537054,-70.47704770477047,-70.41704170417042,-70.35703570357036,-70.29702970297029,-70.23702370237024,-70.17701770177018,-70.11701170117011,-70.05700570057006,-69.99699969996999,-69.93699369936994,-69.87698769876988,-69.81698169816981,-69.75697569756976,-69.6969696969697,-69.63696369636963,-69.57695769576958,-69.51695169516951,-69.45694569456946,-69.3969396939694,-69.33693369336933,-69.27692769276928,-69.21692169216922,-69.15691569156915,-69.0969096909691,-69.03690369036903,-68.97689768976898,-68.91689168916892,-68.85688568856885,-68.7968796879688,-68.73687368736874,-68.67686768676867,-68.61686168616862,-68.55685568556855,-68.4968496849685,-68.43684368436844,-68.37683768376837,-68.31683168316832,-68.25682568256826,-68.1968196819682,-68.13681368136814,-68.07680768076807,-68.01680168016802,-67.95679567956796,-67.89678967896789,-67.83678367836784,-67.77677767776778,-67.71677167716771,-67.65676567656766,-67.59675967596759,-67.53675367536754,-67.47674767476748,-67.41674167416741,-67.35673567356736,-67.2967296729673,-67.23672367236723,-67.17671767176718,-67.11671167116711,-67.05670567056706,-66.996699669967,-66.93669366936693,-66.87668766876688,-66.81668166816682,-66.75667566756675,-66.6966696669667,-66.63666366636663,-66.57665766576658,-66.51665166516652,-66.45664566456645,-66.3966396639664,-66.33663366336634,-66.27662766276627,-66.21662166216622,-66.15661566156615,-66.0966096609661,-66.03660366036604,-65.97659765976597,-65.91659165916592,-65.85658565856586,-65.7965796579658,-65.73657365736574,-65.67656765676567,-65.61656165616562,-65.55655565556556,-65.49654965496549,-65.43654365436544,-65.37653765376538,-65.31653165316531,-65.25652565256526,-65.19651965196519,-65.13651365136514,-65.07650765076508,-65.01650165016501,-64.95649564956496,-64.8964896489649,-64.83648364836483,-64.77647764776478,-64.71647164716471,-64.65646564656466,-64.5964596459646,-64.53645364536453,-64.47644764476448,-64.41644164416442,-64.35643564356435,-64.2964296429643,-64.23642364236423,-64.17641764176417,-64.11641164116412,-64.05640564056405,-63.996399639964,-63.936393639363935,-63.87638763876387,-63.81638163816382,-63.75637563756376,-63.696369636963695,-63.63636363636363,-63.57635763576358,-63.51635163516352,-63.456345634563455,-63.39633963396339,-63.33633363336334,-63.27632763276328,-63.216321632163215,-63.15631563156315,-63.0963096309631,-63.03630363036304,-62.976297629762975,-62.91629162916291,-62.85628562856286,-62.7962796279628,-62.736273627362735,-62.67626762676267,-62.61626162616262,-62.55625562556256,-62.496249624962495,-62.43624362436243,-62.37623762376238,-62.31623162316232,-62.256225622562255,-62.19621962196219,-62.13621362136214,-62.07620762076208,-62.016201620162015,-61.95619561956195,-61.8961896189619,-61.83618361836184,-61.776177617761775,-61.71617161716171,-61.65616561656166,-61.5961596159616,-61.536153615361535,-61.47614761476147,-61.41614161416142,-61.35613561356136,-61.296129612961295,-61.23612361236123,-61.17611761176118,-61.11611161116112,-61.056105610561055,-60.99609960996099,-60.93609360936094,-60.876087608760876,-60.816081608160815,-60.75607560756075,-60.6960696069607,-60.636063606360636,-60.576057605760575,-60.51605160516051,-60.45604560456046,-60.396039603960396,-60.336033603360335,-60.27602760276027,-60.21602160216022,-60.156015601560156,-60.096009600960095,-60.03600360036003,-59.97599759975998,-59.915991599159916,-59.855985598559855,-59.79597959795979,-59.73597359735974,-59.675967596759676,-59.615961596159615,-59.55595559555955,-59.4959495949595,-59.435943594359436,-59.375937593759375,-59.31593159315931,-59.25592559255926,-59.195919591959196,-59.135913591359135,-59.07590759075907,-59.01590159015902,-58.955895589558956,-58.895889588958894,-58.83588358835883,-58.77587758775878,-58.715871587158716,-58.655865586558654,-58.59585958595859,-58.53585358535854,-58.475847584758476,-58.415841584158414,-58.35583558355835,-58.2958295829583,-58.235823582358236,-58.175817581758174,-58.11581158115811,-58.05580558055806,-57.995799579957996,-57.935793579357934,-57.87578757875787,-57.81578157815782,-57.755775577557756,-57.695769576957694,-57.63576357635763,-57.57575757575758,-57.515751575157516,-57.455745574557454,-57.39573957395739,-57.33573357335734,-57.275727572757276,-57.215721572157214,-57.15571557155715,-57.0957095709571,-57.035703570357036,-56.975697569756974,-56.91569156915691,-56.85568556855686,-56.795679567956796,-56.735673567356734,-56.67566756675667,-56.61566156615662,-56.555655565556556,-56.495649564956494,-56.43564356435643,-56.37563756375638,-56.315631563156316,-56.255625562556254,-56.19561956195619,-56.13561356135614,-56.075607560756076,-56.015601560156014,-55.95559555955595,-55.8955895589559,-55.835583558355836,-55.775577557755774,-55.71557155715571,-55.65556555655566,-55.595559555955596,-55.535553555355534,-55.47554755475547,-55.41554155415542,-55.355535553555356,-55.295529552955294,-55.23552355235523,-55.17551755175518,-55.115511551155116,-55.055505550555054,-54.99549954995499,-54.93549354935494,-54.875487548754876,-54.815481548154814,-54.75547554755475,-54.6954695469547,-54.635463546354636,-54.575457545754574,-54.51545154515451,-54.45544554455446,-54.395439543954396,-54.335433543354334,-54.27542754275427,-54.21542154215422,-54.155415541554156,-54.095409540954094,-54.03540354035403,-53.97539753975398,-53.915391539153916,-53.855385538553854,-53.79537953795379,-53.73537353735374,-53.675367536753676,-53.615361536153614,-53.55535553555355,-53.4953495349535,-53.435343534353436,-53.375337533753374,-53.31533153315331,-53.25532553255326,-53.195319531953196,-53.135313531353134,-53.07530753075307,-53.01530153015302,-52.955295529552956,-52.895289528952894,-52.83528352835283,-52.77527752775278,-52.715271527152716,-52.655265526552654,-52.59525952595259,-52.53525352535254,-52.475247524752476,-52.415241524152414,-52.35523552355235,-52.2952295229523,-52.235223522352236,-52.175217521752174,-52.11521152115211,-52.05520552055206,-51.995199519951996,-51.935193519351934,-51.87518751875187,-51.81518151815182,-51.755175517551756,-51.695169516951694,-51.63516351635163,-51.57515751575158,-51.515151515151516,-51.455145514551454,-51.39513951395139,-51.33513351335134,-51.275127512751276,-51.215121512151214,-51.15511551155115,-51.0951095109511,-51.035103510351036,-50.975097509750974,-50.91509150915091,-50.85508550855086,-50.795079507950796,-50.735073507350734,-50.67506750675067,-50.61506150615062,-50.555055505550555,-50.495049504950494,-50.43504350435043,-50.37503750375038,-50.315031503150315,-50.255025502550254,-50.19501950195019,-50.13501350135014,-50.075007500750075,-50.015001500150014,-49.95499549954995,-49.8949894989499,-49.834983498349835,-49.774977497749774,-49.71497149714971,-49.65496549654966,-49.594959495949595,-49.534953495349534,-49.47494749474947,-49.41494149414942,-49.354935493549355,-49.294929492949294,-49.23492349234923,-49.17491749174918,-49.114911491149115,-49.054905490549054,-48.99489948994899,-48.93489348934894,-48.874887488748875,-48.814881488148814,-48.75487548754875,-48.6948694869487,-48.634863486348635,-48.57485748574857,-48.51485148514851,-48.45484548454846,-48.394839483948395,-48.33483348334833,-48.27482748274827,-48.21482148214822,-48.154815481548155,-48.09480948094809,-48.03480348034803,-47.97479747974798,-47.914791479147915,-47.85478547854785,-47.79477947794779,-47.73477347734774,-47.674767476747675,-47.61476147614761,-47.55475547554755,-47.4947494749475,-47.434743474347435,-47.37473747374737,-47.31473147314731,-47.25472547254726,-47.194719471947195,-47.13471347134713,-47.07470747074707,-47.01470147014702,-46.954695469546955,-46.89468946894689,-46.83468346834683,-46.77467746774678,-46.714671467146715,-46.65466546654665,-46.59465946594659,-46.53465346534654,-46.474647464746475,-46.41464146414641,-46.35463546354635,-46.2946294629463,-46.234623462346235,-46.17461746174617,-46.11461146114611,-46.05460546054606,-45.994599459945995,-45.93459345934593,-45.87458745874587,-45.81458145814582,-45.754575457545755,-45.69456945694569,-45.63456345634563,-45.57455745574558,-45.514551455145515,-45.45454545454545,-45.39453945394539,-45.33453345334534,-45.274527452745275,-45.21452145214521,-45.15451545154515,-45.0945094509451,-45.034503450345035,-44.97449744974497,-44.91449144914491,-44.85448544854486,-44.794479447944795,-44.73447344734473,-44.67446744674467,-44.61446144614462,-44.554455445544555,-44.49444944494449,-44.43444344434443,-44.37443744374438,-44.314431443144315,-44.25442544254425,-44.19441944194419,-44.13441344134414,-44.074407440744075,-44.01440144014401,-43.95439543954395,-43.8943894389439,-43.834383438343835,-43.77437743774377,-43.71437143714371,-43.65436543654366,-43.594359435943595,-43.53435343534353,-43.47434743474347,-43.41434143414342,-43.354335433543355,-43.29432943294329,-43.23432343234323,-43.17431743174318,-43.114311431143115,-43.05430543054305,-42.99429942994299,-42.93429342934294,-42.874287428742875,-42.81428142814281,-42.75427542754275,-42.6942694269427,-42.634263426342635,-42.57425742574257,-42.51425142514251,-42.45424542454246,-42.394239423942395,-42.33423342334233,-42.27422742274227,-42.21422142214222,-42.154215421542155,-42.09420942094209,-42.03420342034203,-41.97419741974198,-41.914191419141915,-41.85418541854185,-41.79417941794179,-41.73417341734174,-41.674167416741675,-41.61416141614161,-41.55415541554155,-41.494149414941496,-41.434143414341435,-41.37413741374137,-41.31413141314131,-41.254125412541256,-41.194119411941195,-41.13411341134113,-41.07410741074107,-41.014101410141016,-40.954095409540955,-40.89408940894089,-40.83408340834083,-40.774077407740776,-40.714071407140715,-40.65406540654065,-40.59405940594059,-40.534053405340536,-40.474047404740475,-40.41404140414041,-40.35403540354035,-40.294029402940296,-40.234023402340235,-40.17401740174017,-40.11401140114011,-40.054005400540056,-39.993999399939995,-39.93399339933993,-39.87398739873987,-39.813981398139816,-39.753975397539755,-39.69396939693969,-39.63396339633963,-39.573957395739576,-39.513951395139514,-39.45394539453945,-39.39393939393939,-39.333933393339336,-39.273927392739274,-39.21392139213921,-39.15391539153915,-39.093909390939096,-39.033903390339034,-38.97389738973897,-38.91389138913891,-38.853885388538856,-38.793879387938794,-38.73387338733873,-38.67386738673867,-38.613861386138616,-38.553855385538554,-38.49384938493849,-38.43384338433843,-38.373837383738376,-38.313831383138314,-38.25382538253825,-38.19381938193819,-38.133813381338136,-38.073807380738074,-38.01380138013801,-37.95379537953795,-37.893789378937896,-37.833783378337834,-37.77377737773777,-37.71377137713771,-37.653765376537656,-37.593759375937594,-37.53375337533753,-37.47374737473747,-37.413741374137416,-37.353735373537354,-37.29372937293729,-37.23372337233723,-37.173717371737176,-37.113711371137114,-37.05370537053705,-36.99369936993699,-36.933693369336936,-36.873687368736874,-36.81368136813681,-36.75367536753675,-36.693669366936696,-36.633663366336634,-36.57365736573657,-36.51365136513651,-36.453645364536456,-36.393639363936394,-36.33363336333633,-36.27362736273627,-36.213621362136216,-36.153615361536154,-36.09360936093609,-36.03360336033603,-35.973597359735976,-35.913591359135914,-35.85358535853585,-35.79357935793579,-35.733573357335736,-35.673567356735674,-35.61356135613561,-35.55355535553555,-35.493549354935496,-35.433543354335434,-35.37353735373537,-35.31353135313531,-35.253525352535256,-35.193519351935194,-35.13351335133513,-35.07350735073507,-35.013501350135016,-34.953495349534954,-34.89348934893489,-34.83348334833483,-34.773477347734776,-34.713471347134714,-34.65346534653465,-34.59345934593459,-34.533453345334536,-34.473447344734474,-34.41344134413441,-34.35343534353435,-34.293429342934296,-34.233423342334234,-34.17341734173417,-34.11341134113411,-34.053405340534056,-33.993399339933994,-33.93339333933393,-33.87338733873387,-33.813381338133816,-33.753375337533754,-33.69336933693369,-33.63336333633363,-33.573357335733576,-33.513351335133514,-33.45334533453345,-33.39333933393339,-33.333333333333336,-33.273327332733274,-33.21332133213321,-33.15331533153315,-33.093309330933096,-33.033303330333034,-32.97329732973297,-32.91329132913291,-32.853285328532856,-32.793279327932794,-32.73327332733273,-32.67326732673267,-32.613261326132616,-32.553255325532554,-32.49324932493249,-32.43324332433243,-32.373237323732376,-32.313231323132314,-32.25322532253225,-32.19321932193219,-32.133213321332136,-32.073207320732074,-32.01320132013201,-31.953195319531954,-31.893189318931892,-31.833183318331834,-31.773177317731772,-31.713171317131714,-31.653165316531652,-31.593159315931594,-31.533153315331532,-31.473147314731474,-31.413141314131412,-31.353135313531354,-31.293129312931292,-31.233123312331234,-31.173117311731172,-31.113111311131114,-31.053105310531052,-30.993099309930994,-30.933093309330932,-30.873087308730874,-30.813081308130812,-30.753075307530754,-30.693069306930692,-30.633063306330634,-30.573057305730572,-30.513051305130514,-30.453045304530452,-30.393039303930394,-30.333033303330332,-30.273027302730274,-30.213021302130212,-30.153015301530154,-30.093009300930092,-30.033003300330034,-29.972997299729972,-29.912991299129914,-29.852985298529852,-29.792979297929794,-29.732973297329732,-29.672967296729674,-29.612961296129612,-29.552955295529554,-29.492949294929492,-29.432943294329434,-29.372937293729372,-29.312931293129314,-29.252925292529252,-29.192919291929194,-29.13291329132913,-29.072907290729074,-29.01290129012901,-28.952895289528954,-28.89288928892889,-28.832883288328834,-28.77287728772877,-28.712871287128714,-28.65286528652865,-28.592859285928593,-28.53285328532853,-28.472847284728473,-28.41284128412841,-28.352835283528353,-28.29282928292829,-28.232823282328233,-28.17281728172817,-28.112811281128113,-28.05280528052805,-27.992799279927993,-27.93279327932793,-27.872787278727873,-27.81278127812781,-27.752775277527753,-27.69276927692769,-27.632763276327633,-27.57275727572757,-27.512751275127513,-27.45274527452745,-27.392739273927393,-27.33273327332733,-27.272727272727273,-27.21272127212721,-27.152715271527153,-27.09270927092709,-27.032703270327033,-26.97269726972697,-26.912691269126913,-26.85268526852685,-26.792679267926793,-26.73267326732673,-26.672667266726673,-26.61266126612661,-26.552655265526553,-26.49264926492649,-26.432643264326433,-26.37263726372637,-26.312631263126313,-26.25262526252625,-26.192619261926193,-26.13261326132613,-26.072607260726073,-26.01260126012601,-25.952595259525953,-25.89258925892589,-25.832583258325833,-25.77257725772577,-25.712571257125713,-25.65256525652565,-25.592559255925593,-25.53255325532553,-25.472547254725473,-25.41254125412541,-25.352535253525353,-25.29252925292529,-25.232523252325233,-25.17251725172517,-25.112511251125113,-25.05250525052505,-24.992499249924993,-24.93249324932493,-24.872487248724873,-24.81248124812481,-24.752475247524753,-24.69246924692469,-24.632463246324633,-24.57245724572457,-24.512451245124513,-24.45244524452445,-24.392439243924393,-24.33243324332433,-24.272427242724273,-24.21242124212421,-24.152415241524153,-24.09240924092409,-24.032403240324033,-23.97239723972397,-23.912391239123913,-23.85238523852385,-23.792379237923793,-23.73237323732373,-23.672367236723673,-23.61236123612361,-23.552355235523553,-23.49234923492349,-23.432343234323433,-23.37233723372337,-23.312331233123313,-23.25232523252325,-23.192319231923193,-23.13231323132313,-23.072307230723073,-23.01230123012301,-22.952295229522953,-22.89228922892289,-22.832283228322833,-22.77227722772277,-22.712271227122713,-22.65226522652265,-22.592259225922593,-22.53225322532253,-22.472247224722473,-22.41224122412241,-22.352235223522353,-22.29222922292229,-22.232223222322233,-22.17221722172217,-22.112211221122113,-22.05220522052205,-21.992199219921993,-21.93219321932193,-21.872187218721873,-21.81218121812181,-21.752175217521753,-21.69216921692169,-21.632163216321633,-21.57215721572157,-21.512151215121513,-21.45214521452145,-21.392139213921393,-21.33213321332133,-21.272127212721273,-21.21212121212121,-21.152115211521153,-21.09210921092109,-21.032103210321033,-20.97209720972097,-20.912091209120913,-20.85208520852085,-20.792079207920793,-20.73207320732073,-20.672067206720673,-20.61206120612061,-20.552055205520553,-20.49204920492049,-20.432043204320433,-20.37203720372037,-20.312031203120313,-20.25202520252025,-20.192019201920193,-20.13201320132013,-20.072007200720073,-20.01200120012001,-19.951995199519953,-19.89198919891989,-19.831983198319833,-19.77197719771977,-19.711971197119713,-19.65196519651965,-19.591959195919593,-19.53195319531953,-19.471947194719473,-19.41194119411941,-19.351935193519353,-19.29192919291929,-19.231923192319233,-19.17191719171917,-19.111911191119113,-19.05190519051905,-18.991899189918993,-18.93189318931893,-18.871887188718873,-18.81188118811881,-18.751875187518753,-18.69186918691869,-18.631863186318633,-18.57185718571857,-18.511851185118513,-18.45184518451845,-18.391839183918393,-18.33183318331833,-18.271827182718273,-18.21182118211821,-18.151815181518153,-18.09180918091809,-18.031803180318033,-17.97179717971797,-17.911791179117913,-17.85178517851785,-17.791779177917793,-17.73177317731773,-17.671767176717672,-17.61176117611761,-17.551755175517552,-17.49174917491749,-17.431743174317432,-17.37173717371737,-17.311731173117312,-17.25172517251725,-17.191719171917192,-17.13171317131713,-17.071707170717072,-17.01170117011701,-16.951695169516952,-16.89168916891689,-16.831683168316832,-16.77167716771677,-16.711671167116712,-16.65166516651665,-16.591659165916592,-16.53165316531653,-16.471647164716472,-16.41164116411641,-16.351635163516352,-16.29162916291629,-16.231623162316232,-16.17161716171617,-16.111611161116112,-16.05160516051605,-15.991599159915992,-15.931593159315932,-15.871587158715872,-15.811581158115812,-15.751575157515752,-15.691569156915692,-15.631563156315632,-15.571557155715572,-15.511551155115512,-15.451545154515452,-15.391539153915392,-15.331533153315332,-15.271527152715272,-15.211521152115212,-15.151515151515152,-15.091509150915092,-15.031503150315032,-14.971497149714972,-14.911491149114912,-14.851485148514852,-14.791479147914792,-14.731473147314732,-14.671467146714672,-14.611461146114612,-14.551455145514552,-14.491449144914492,-14.431443144314432,-14.371437143714372,-14.311431143114312,-14.251425142514252,-14.191419141914192,-14.131413141314132,-14.071407140714072,-14.011401140114012,-13.951395139513952,-13.891389138913892,-13.831383138313832,-13.771377137713772,-13.711371137113712,-13.651365136513652,-13.591359135913592,-13.531353135313532,-13.471347134713472,-13.411341134113412,-13.351335133513352,-13.291329132913292,-13.231323132313232,-13.171317131713172,-13.111311131113112,-13.051305130513052,-12.991299129912992,-12.931293129312932,-12.871287128712872,-12.811281128112812,-12.751275127512752,-12.691269126912692,-12.631263126312632,-12.571257125712572,-12.511251125112512,-12.451245124512452,-12.391239123912392,-12.331233123312332,-12.271227122712272,-12.211221122112212,-12.151215121512152,-12.091209120912092,-12.031203120312032,-11.971197119711972,-11.911191119111912,-11.851185118511852,-11.791179117911792,-11.731173117311732,-11.671167116711672,-11.611161116111612,-11.551155115511552,-11.491149114911492,-11.431143114311432,-11.371137113711372,-11.311131113111312,-11.251125112511252,-11.191119111911192,-11.131113111311132,-11.071107110711072,-11.011101110111012,-10.951095109510952,-10.891089108910892,-10.831083108310832,-10.771077107710772,-10.711071107110712,-10.651065106510652,-10.591059105910592,-10.531053105310532,-10.471047104710472,-10.411041104110412,-10.351035103510352,-10.291029102910292,-10.231023102310232,-10.171017101710172,-10.111011101110112,-10.051005100510052,-9.990999099909992,-9.930993099309932,-9.870987098709872,-9.810981098109812,-9.750975097509752,-9.690969096909692,-9.630963096309632,-9.570957095709572,-9.510951095109512,-9.450945094509452,-9.390939093909392,-9.330933093309332,-9.270927092709272,-9.210921092109212,-9.150915091509152,-9.090909090909092,-9.030903090309032,-8.970897089708972,-8.910891089108912,-8.850885088508852,-8.790879087908792,-8.730873087308732,-8.670867086708672,-8.610861086108612,-8.550855085508552,-8.490849084908492,-8.430843084308432,-8.370837083708372,-8.310831083108312,-8.250825082508252,-8.190819081908192,-8.130813081308132,-8.070807080708072,-8.010801080108012,-7.950795079507951,-7.890789078907891,-7.830783078307831,-7.770777077707771,-7.710771077107711,-7.650765076507651,-7.590759075907591,-7.530753075307531,-7.470747074707471,-7.410741074107411,-7.350735073507351,-7.290729072907291,-7.230723072307231,-7.170717071707171,-7.110711071107111,-7.050705070507051,-6.990699069906991,-6.930693069306931,-6.870687068706871,-6.810681068106811,-6.750675067506751,-6.690669066906691,-6.630663066306631,-6.570657065706571,-6.510651065106511,-6.450645064506451,-6.390639063906391,-6.330633063306331,-6.270627062706271,-6.210621062106211,-6.150615061506151,-6.0906090609060906,-6.0306030603060305,-5.9705970597059705,-5.9105910591059105,-5.8505850585058505,-5.7905790579057905,-5.7305730573057305,-5.6705670567056705,-5.6105610561056105,-5.5505550555055505,-5.4905490549054905,-5.4305430543054305,-5.3705370537053705,-5.3105310531053105,-5.2505250525052505,-5.1905190519051905,-5.1305130513051305,-5.0705070507050705,-5.0105010501050105,-4.9504950495049505,-4.8904890489048904,-4.83048304830483,-4.77047704770477,-4.71047104710471,-4.65046504650465,-4.59045904590459,-4.53045304530453,-4.47044704470447,-4.41044104410441,-4.35043504350435,-4.29042904290429,-4.23042304230423,-4.17041704170417,-4.11041104110411,-4.05040504050405,-3.9903990399039904,-3.9303930393039304,-3.8703870387038704,-3.8103810381038103,-3.7503750375037503,-3.6903690369036903,-3.6303630363036303,-3.5703570357035703,-3.5103510351035103,-3.4503450345034503,-3.3903390339033903,-3.3303330333033303,-3.2703270327032703,-3.2103210321032103,-3.1503150315031503,-3.0903090309030903,-3.0303030303030303,-2.9702970297029703,-2.9102910291029103,-2.8502850285028503,-2.7902790279027903,-2.7302730273027302,-2.6702670267026702,-2.6102610261026102,-2.5502550255025502,-2.4902490249024902,-2.43024302430243,-2.37023702370237,-2.31023102310231,-2.25022502250225,-2.19021902190219,-2.13021302130213,-2.07020702070207,-2.01020102010201,-1.9501950195019502,-1.8901890189018902,-1.8301830183018302,-1.7701770177017702,-1.7101710171017102,-1.6501650165016502,-1.5901590159015901,-1.5301530153015301,-1.4701470147014701,-1.4101410141014101,-1.3501350135013501,-1.2901290129012901,-1.2301230123012301,-1.17011701170117,-1.11011101110111,-1.05010501050105,-0.9900990099009901,-0.9300930093009301,-0.8700870087008701,-0.8100810081008101,-0.7500750075007501,-0.6900690069006901,-0.6300630063006301,-0.57005700570057,-0.51005100510051,-0.45004500450045004,-0.39003900390039004,-0.33003300330033003,-0.27002700270027,-0.21002100210021002,-0.15001500150015,-0.09000900090009001,-0.030003000300030003,0.030003000300030003,0.09000900090009001,0.15001500150015,0.21002100210021002,0.27002700270027,0.33003300330033003,0.39003900390039004,0.45004500450045004,0.51005100510051,0.57005700570057,0.6300630063006301,0.6900690069006901,0.7500750075007501,0.8100810081008101,0.8700870087008701,0.9300930093009301,0.9900990099009901,1.05010501050105,1.11011101110111,1.17011701170117,1.2301230123012301,1.2901290129012901,1.3501350135013501,1.4101410141014101,1.4701470147014701,1.5301530153015301,1.5901590159015901,1.6501650165016502,1.7101710171017102,1.7701770177017702,1.8301830183018302,1.8901890189018902,1.9501950195019502,2.01020102010201,2.07020702070207,2.13021302130213,2.19021902190219,2.25022502250225,2.31023102310231,2.37023702370237,2.43024302430243,2.4902490249024902,2.5502550255025502,2.6102610261026102,2.6702670267026702,2.7302730273027302,2.7902790279027903,2.8502850285028503,2.9102910291029103,2.9702970297029703,3.0303030303030303,3.0903090309030903,3.1503150315031503,3.2103210321032103,3.2703270327032703,3.3303330333033303,3.3903390339033903,3.4503450345034503,3.5103510351035103,3.5703570357035703,3.6303630363036303,3.6903690369036903,3.7503750375037503,3.8103810381038103,3.8703870387038704,3.9303930393039304,3.9903990399039904,4.05040504050405,4.11041104110411,4.17041704170417,4.23042304230423,4.29042904290429,4.35043504350435,4.41044104410441,4.47044704470447,4.53045304530453,4.59045904590459,4.65046504650465,4.71047104710471,4.77047704770477,4.83048304830483,4.8904890489048904,4.9504950495049505,5.0105010501050105,5.0705070507050705,5.1305130513051305,5.1905190519051905,5.2505250525052505,5.3105310531053105,5.3705370537053705,5.4305430543054305,5.4905490549054905,5.5505550555055505,5.6105610561056105,5.6705670567056705,5.7305730573057305,5.7905790579057905,5.8505850585058505,5.9105910591059105,5.9705970597059705,6.0306030603060305,6.0906090609060906,6.150615061506151,6.210621062106211,6.270627062706271,6.330633063306331,6.390639063906391,6.450645064506451,6.510651065106511,6.570657065706571,6.630663066306631,6.690669066906691,6.750675067506751,6.810681068106811,6.870687068706871,6.930693069306931,6.990699069906991,7.050705070507051,7.110711071107111,7.170717071707171,7.230723072307231,7.290729072907291,7.350735073507351,7.410741074107411,7.470747074707471,7.530753075307531,7.590759075907591,7.650765076507651,7.710771077107711,7.770777077707771,7.830783078307831,7.890789078907891,7.950795079507951,8.010801080108012,8.070807080708072,8.130813081308132,8.190819081908192,8.250825082508252,8.310831083108312,8.370837083708372,8.430843084308432,8.490849084908492,8.550855085508552,8.610861086108612,8.670867086708672,8.730873087308732,8.790879087908792,8.850885088508852,8.910891089108912,8.970897089708972,9.030903090309032,9.090909090909092,9.150915091509152,9.210921092109212,9.270927092709272,9.330933093309332,9.390939093909392,9.450945094509452,9.510951095109512,9.570957095709572,9.630963096309632,9.690969096909692,9.750975097509752,9.810981098109812,9.870987098709872,9.930993099309932,9.990999099909992,10.051005100510052,10.111011101110112,10.171017101710172,10.231023102310232,10.291029102910292,10.351035103510352,10.411041104110412,10.471047104710472,10.531053105310532,10.591059105910592,10.651065106510652,10.711071107110712,10.771077107710772,10.831083108310832,10.891089108910892,10.951095109510952,11.011101110111012,11.071107110711072,11.131113111311132,11.191119111911192,11.251125112511252,11.311131113111312,11.371137113711372,11.431143114311432,11.491149114911492,11.551155115511552,11.611161116111612,11.671167116711672,11.731173117311732,11.791179117911792,11.851185118511852,11.911191119111912,11.971197119711972,12.031203120312032,12.091209120912092,12.151215121512152,12.211221122112212,12.271227122712272,12.331233123312332,12.391239123912392,12.451245124512452,12.511251125112512,12.571257125712572,12.631263126312632,12.691269126912692,12.751275127512752,12.811281128112812,12.871287128712872,12.931293129312932,12.991299129912992,13.051305130513052,13.111311131113112,13.171317131713172,13.231323132313232,13.291329132913292,13.351335133513352,13.411341134113412,13.471347134713472,13.531353135313532,13.591359135913592,13.651365136513652,13.711371137113712,13.771377137713772,13.831383138313832,13.891389138913892,13.951395139513952,14.011401140114012,14.071407140714072,14.131413141314132,14.191419141914192,14.251425142514252,14.311431143114312,14.371437143714372,14.431443144314432,14.491449144914492,14.551455145514552,14.611461146114612,14.671467146714672,14.731473147314732,14.791479147914792,14.851485148514852,14.911491149114912,14.971497149714972,15.031503150315032,15.091509150915092,15.151515151515152,15.211521152115212,15.271527152715272,15.331533153315332,15.391539153915392,15.451545154515452,15.511551155115512,15.571557155715572,15.631563156315632,15.691569156915692,15.751575157515752,15.811581158115812,15.871587158715872,15.931593159315932,15.991599159915992,16.05160516051605,16.111611161116112,16.17161716171617,16.231623162316232,16.29162916291629,16.351635163516352,16.41164116411641,16.471647164716472,16.53165316531653,16.591659165916592,16.65166516651665,16.711671167116712,16.77167716771677,16.831683168316832,16.89168916891689,16.951695169516952,17.01170117011701,17.071707170717072,17.13171317131713,17.191719171917192,17.25172517251725,17.311731173117312,17.37173717371737,17.431743174317432,17.49174917491749,17.551755175517552,17.61176117611761,17.671767176717672,17.73177317731773,17.791779177917793,17.85178517851785,17.911791179117913,17.97179717971797,18.031803180318033,18.09180918091809,18.151815181518153,18.21182118211821,18.271827182718273,18.33183318331833,18.391839183918393,18.45184518451845,18.511851185118513,18.57185718571857,18.631863186318633,18.69186918691869,18.751875187518753,18.81188118811881,18.871887188718873,18.93189318931893,18.991899189918993,19.05190519051905,19.111911191119113,19.17191719171917,19.231923192319233,19.29192919291929,19.351935193519353,19.41194119411941,19.471947194719473,19.53195319531953,19.591959195919593,19.65196519651965,19.711971197119713,19.77197719771977,19.831983198319833,19.89198919891989,19.951995199519953,20.01200120012001,20.072007200720073,20.13201320132013,20.192019201920193,20.25202520252025,20.312031203120313,20.37203720372037,20.432043204320433,20.49204920492049,20.552055205520553,20.61206120612061,20.672067206720673,20.73207320732073,20.792079207920793,20.85208520852085,20.912091209120913,20.97209720972097,21.032103210321033,21.09210921092109,21.152115211521153,21.21212121212121,21.272127212721273,21.33213321332133,21.392139213921393,21.45214521452145,21.512151215121513,21.57215721572157,21.632163216321633,21.69216921692169,21.752175217521753,21.81218121812181,21.872187218721873,21.93219321932193,21.992199219921993,22.05220522052205,22.112211221122113,22.17221722172217,22.232223222322233,22.29222922292229,22.352235223522353,22.41224122412241,22.472247224722473,22.53225322532253,22.592259225922593,22.65226522652265,22.712271227122713,22.77227722772277,22.832283228322833,22.89228922892289,22.952295229522953,23.01230123012301,23.072307230723073,23.13231323132313,23.192319231923193,23.25232523252325,23.312331233123313,23.37233723372337,23.432343234323433,23.49234923492349,23.552355235523553,23.61236123612361,23.672367236723673,23.73237323732373,23.792379237923793,23.85238523852385,23.912391239123913,23.97239723972397,24.032403240324033,24.09240924092409,24.152415241524153,24.21242124212421,24.272427242724273,24.33243324332433,24.392439243924393,24.45244524452445,24.512451245124513,24.57245724572457,24.632463246324633,24.69246924692469,24.752475247524753,24.81248124812481,24.872487248724873,24.93249324932493,24.992499249924993,25.05250525052505,25.112511251125113,25.17251725172517,25.232523252325233,25.29252925292529,25.352535253525353,25.41254125412541,25.472547254725473,25.53255325532553,25.592559255925593,25.65256525652565,25.712571257125713,25.77257725772577,25.832583258325833,25.89258925892589,25.952595259525953,26.01260126012601,26.072607260726073,26.13261326132613,26.192619261926193,26.25262526252625,26.312631263126313,26.37263726372637,26.432643264326433,26.49264926492649,26.552655265526553,26.61266126612661,26.672667266726673,26.73267326732673,26.792679267926793,26.85268526852685,26.912691269126913,26.97269726972697,27.032703270327033,27.09270927092709,27.152715271527153,27.21272127212721,27.272727272727273,27.33273327332733,27.392739273927393,27.45274527452745,27.512751275127513,27.57275727572757,27.632763276327633,27.69276927692769,27.752775277527753,27.81278127812781,27.872787278727873,27.93279327932793,27.992799279927993,28.05280528052805,28.112811281128113,28.17281728172817,28.232823282328233,28.29282928292829,28.352835283528353,28.41284128412841,28.472847284728473,28.53285328532853,28.592859285928593,28.65286528652865,28.712871287128714,28.77287728772877,28.832883288328834,28.89288928892889,28.952895289528954,29.01290129012901,29.072907290729074,29.13291329132913,29.192919291929194,29.252925292529252,29.312931293129314,29.372937293729372,29.432943294329434,29.492949294929492,29.552955295529554,29.612961296129612,29.672967296729674,29.732973297329732,29.792979297929794,29.852985298529852,29.912991299129914,29.972997299729972,30.033003300330034,30.093009300930092,30.153015301530154,30.213021302130212,30.273027302730274,30.333033303330332,30.393039303930394,30.453045304530452,30.513051305130514,30.573057305730572,30.633063306330634,30.693069306930692,30.753075307530754,30.813081308130812,30.873087308730874,30.933093309330932,30.993099309930994,31.053105310531052,31.113111311131114,31.173117311731172,31.233123312331234,31.293129312931292,31.353135313531354,31.413141314131412,31.473147314731474,31.533153315331532,31.593159315931594,31.653165316531652,31.713171317131714,31.773177317731772,31.833183318331834,31.893189318931892,31.953195319531954,32.01320132013201,32.073207320732074,32.133213321332136,32.19321932193219,32.25322532253225,32.313231323132314,32.373237323732376,32.43324332433243,32.49324932493249,32.553255325532554,32.613261326132616,32.67326732673267,32.73327332733273,32.793279327932794,32.853285328532856,32.91329132913291,32.97329732973297,33.033303330333034,33.093309330933096,33.15331533153315,33.21332133213321,33.273327332733274,33.333333333333336,33.39333933393339,33.45334533453345,33.513351335133514,33.573357335733576,33.63336333633363,33.69336933693369,33.753375337533754,33.813381338133816,33.87338733873387,33.93339333933393,33.993399339933994,34.053405340534056,34.11341134113411,34.17341734173417,34.233423342334234,34.293429342934296,34.35343534353435,34.41344134413441,34.473447344734474,34.533453345334536,34.59345934593459,34.65346534653465,34.713471347134714,34.773477347734776,34.83348334833483,34.89348934893489,34.953495349534954,35.013501350135016,35.07350735073507,35.13351335133513,35.193519351935194,35.253525352535256,35.31353135313531,35.37353735373537,35.433543354335434,35.493549354935496,35.55355535553555,35.61356135613561,35.673567356735674,35.733573357335736,35.79357935793579,35.85358535853585,35.913591359135914,35.973597359735976,36.03360336033603,36.09360936093609,36.153615361536154,36.213621362136216,36.27362736273627,36.33363336333633,36.393639363936394,36.453645364536456,36.51365136513651,36.57365736573657,36.633663366336634,36.693669366936696,36.75367536753675,36.81368136813681,36.873687368736874,36.933693369336936,36.99369936993699,37.05370537053705,37.113711371137114,37.173717371737176,37.23372337233723,37.29372937293729,37.353735373537354,37.413741374137416,37.47374737473747,37.53375337533753,37.593759375937594,37.653765376537656,37.71377137713771,37.77377737773777,37.833783378337834,37.893789378937896,37.95379537953795,38.01380138013801,38.073807380738074,38.133813381338136,38.19381938193819,38.25382538253825,38.313831383138314,38.373837383738376,38.43384338433843,38.49384938493849,38.553855385538554,38.613861386138616,38.67386738673867,38.73387338733873,38.793879387938794,38.853885388538856,38.91389138913891,38.97389738973897,39.033903390339034,39.093909390939096,39.15391539153915,39.21392139213921,39.273927392739274,39.333933393339336,39.39393939393939,39.45394539453945,39.513951395139514,39.573957395739576,39.63396339633963,39.69396939693969,39.753975397539755,39.813981398139816,39.87398739873987,39.93399339933993,39.993999399939995,40.054005400540056,40.11401140114011,40.17401740174017,40.234023402340235,40.294029402940296,40.35403540354035,40.41404140414041,40.474047404740475,40.534053405340536,40.59405940594059,40.65406540654065,40.714071407140715,40.774077407740776,40.83408340834083,40.89408940894089,40.954095409540955,41.014101410141016,41.07410741074107,41.13411341134113,41.194119411941195,41.254125412541256,41.31413141314131,41.37413741374137,41.434143414341435,41.494149414941496,41.55415541554155,41.61416141614161,41.674167416741675,41.73417341734174,41.79417941794179,41.85418541854185,41.914191419141915,41.97419741974198,42.03420342034203,42.09420942094209,42.154215421542155,42.21422142214222,42.27422742274227,42.33423342334233,42.394239423942395,42.45424542454246,42.51425142514251,42.57425742574257,42.634263426342635,42.6942694269427,42.75427542754275,42.81428142814281,42.874287428742875,42.93429342934294,42.99429942994299,43.05430543054305,43.114311431143115,43.17431743174318,43.23432343234323,43.29432943294329,43.354335433543355,43.41434143414342,43.47434743474347,43.53435343534353,43.594359435943595,43.65436543654366,43.71437143714371,43.77437743774377,43.834383438343835,43.8943894389439,43.95439543954395,44.01440144014401,44.074407440744075,44.13441344134414,44.19441944194419,44.25442544254425,44.314431443144315,44.37443744374438,44.43444344434443,44.49444944494449,44.554455445544555,44.61446144614462,44.67446744674467,44.73447344734473,44.794479447944795,44.85448544854486,44.91449144914491,44.97449744974497,45.034503450345035,45.0945094509451,45.15451545154515,45.21452145214521,45.274527452745275,45.33453345334534,45.39453945394539,45.45454545454545,45.514551455145515,45.57455745574558,45.63456345634563,45.69456945694569,45.754575457545755,45.81458145814582,45.87458745874587,45.93459345934593,45.994599459945995,46.05460546054606,46.11461146114611,46.17461746174617,46.234623462346235,46.2946294629463,46.35463546354635,46.41464146414641,46.474647464746475,46.53465346534654,46.59465946594659,46.65466546654665,46.714671467146715,46.77467746774678,46.83468346834683,46.89468946894689,46.954695469546955,47.01470147014702,47.07470747074707,47.13471347134713,47.194719471947195,47.25472547254726,47.31473147314731,47.37473747374737,47.434743474347435,47.4947494749475,47.55475547554755,47.61476147614761,47.674767476747675,47.73477347734774,47.79477947794779,47.85478547854785,47.914791479147915,47.97479747974798,48.03480348034803,48.09480948094809,48.154815481548155,48.21482148214822,48.27482748274827,48.33483348334833,48.394839483948395,48.45484548454846,48.51485148514851,48.57485748574857,48.634863486348635,48.6948694869487,48.75487548754875,48.814881488148814,48.874887488748875,48.93489348934894,48.99489948994899,49.054905490549054,49.114911491149115,49.17491749174918,49.23492349234923,49.294929492949294,49.354935493549355,49.41494149414942,49.47494749474947,49.534953495349534,49.594959495949595,49.65496549654966,49.71497149714971,49.774977497749774,49.834983498349835,49.8949894989499,49.95499549954995,50.015001500150014,50.075007500750075,50.13501350135014,50.19501950195019,50.255025502550254,50.315031503150315,50.37503750375038,50.43504350435043,50.495049504950494,50.555055505550555,50.61506150615062,50.67506750675067,50.735073507350734,50.795079507950796,50.85508550855086,50.91509150915091,50.975097509750974,51.035103510351036,51.0951095109511,51.15511551155115,51.215121512151214,51.275127512751276,51.33513351335134,51.39513951395139,51.455145514551454,51.515151515151516,51.57515751575158,51.63516351635163,51.695169516951694,51.755175517551756,51.81518151815182,51.87518751875187,51.935193519351934,51.995199519951996,52.05520552055206,52.11521152115211,52.175217521752174,52.235223522352236,52.2952295229523,52.35523552355235,52.415241524152414,52.475247524752476,52.53525352535254,52.59525952595259,52.655265526552654,52.715271527152716,52.77527752775278,52.83528352835283,52.895289528952894,52.955295529552956,53.01530153015302,53.07530753075307,53.135313531353134,53.195319531953196,53.25532553255326,53.31533153315331,53.375337533753374,53.435343534353436,53.4953495349535,53.55535553555355,53.615361536153614,53.675367536753676,53.73537353735374,53.79537953795379,53.855385538553854,53.915391539153916,53.97539753975398,54.03540354035403,54.095409540954094,54.155415541554156,54.21542154215422,54.27542754275427,54.335433543354334,54.395439543954396,54.45544554455446,54.51545154515451,54.575457545754574,54.635463546354636,54.6954695469547,54.75547554755475,54.815481548154814,54.875487548754876,54.93549354935494,54.99549954995499,55.055505550555054,55.115511551155116,55.17551755175518,55.23552355235523,55.295529552955294,55.355535553555356,55.41554155415542,55.47554755475547,55.535553555355534,55.595559555955596,55.65556555655566,55.71557155715571,55.775577557755774,55.835583558355836,55.8955895589559,55.95559555955595,56.015601560156014,56.075607560756076,56.13561356135614,56.19561956195619,56.255625562556254,56.315631563156316,56.37563756375638,56.43564356435643,56.495649564956494,56.555655565556556,56.61566156615662,56.67566756675667,56.735673567356734,56.795679567956796,56.85568556855686,56.91569156915691,56.975697569756974,57.035703570357036,57.0957095709571,57.15571557155715,57.215721572157214,57.275727572757276,57.33573357335734,57.39573957395739,57.455745574557454,57.515751575157516,57.57575757575758,57.63576357635763,57.695769576957694,57.755775577557756,57.81578157815782,57.87578757875787,57.935793579357934,57.995799579957996,58.05580558055806,58.11581158115811,58.175817581758174,58.235823582358236,58.2958295829583,58.35583558355835,58.415841584158414,58.475847584758476,58.53585358535854,58.59585958595859,58.655865586558654,58.715871587158716,58.77587758775878,58.83588358835883,58.895889588958894,58.955895589558956,59.01590159015902,59.07590759075907,59.135913591359135,59.195919591959196,59.25592559255926,59.31593159315931,59.375937593759375,59.435943594359436,59.4959495949595,59.55595559555955,59.615961596159615,59.675967596759676,59.73597359735974,59.79597959795979,59.855985598559855,59.915991599159916,59.97599759975998,60.03600360036003,60.096009600960095,60.156015601560156,60.21602160216022,60.27602760276027,60.336033603360335,60.396039603960396,60.45604560456046,60.51605160516051,60.576057605760575,60.636063606360636,60.6960696069607,60.75607560756075,60.816081608160815,60.876087608760876,60.93609360936094,60.99609960996099,61.056105610561055,61.11611161116112,61.17611761176118,61.23612361236123,61.296129612961295,61.35613561356136,61.41614161416142,61.47614761476147,61.536153615361535,61.5961596159616,61.65616561656166,61.71617161716171,61.776177617761775,61.83618361836184,61.8961896189619,61.95619561956195,62.016201620162015,62.07620762076208,62.13621362136214,62.19621962196219,62.256225622562255,62.31623162316232,62.37623762376238,62.43624362436243,62.496249624962495,62.55625562556256,62.61626162616262,62.67626762676267,62.736273627362735,62.7962796279628,62.85628562856286,62.91629162916291,62.976297629762975,63.03630363036304,63.0963096309631,63.15631563156315,63.216321632163215,63.27632763276328,63.33633363336334,63.39633963396339,63.456345634563455,63.51635163516352,63.57635763576358,63.63636363636363,63.696369636963695,63.75637563756376,63.81638163816382,63.87638763876387,63.936393639363935,63.996399639964,64.05640564056405,64.11641164116412,64.17641764176417,64.23642364236423,64.2964296429643,64.35643564356435,64.41644164416442,64.47644764476448,64.53645364536453,64.5964596459646,64.65646564656466,64.71647164716471,64.77647764776478,64.83648364836483,64.8964896489649,64.95649564956496,65.01650165016501,65.07650765076508,65.13651365136514,65.19651965196519,65.25652565256526,65.31653165316531,65.37653765376538,65.43654365436544,65.49654965496549,65.55655565556556,65.61656165616562,65.67656765676567,65.73657365736574,65.7965796579658,65.85658565856586,65.91659165916592,65.97659765976597,66.03660366036604,66.0966096609661,66.15661566156615,66.21662166216622,66.27662766276627,66.33663366336634,66.3966396639664,66.45664566456645,66.51665166516652,66.57665766576658,66.63666366636663,66.6966696669667,66.75667566756675,66.81668166816682,66.87668766876688,66.93669366936693,66.996699669967,67.05670567056706,67.11671167116711,67.17671767176718,67.23672367236723,67.2967296729673,67.35673567356736,67.41674167416741,67.47674767476748,67.53675367536754,67.59675967596759,67.65676567656766,67.71677167716771,67.77677767776778,67.83678367836784,67.89678967896789,67.95679567956796,68.01680168016802,68.07680768076807,68.13681368136814,68.1968196819682,68.25682568256826,68.31683168316832,68.37683768376837,68.43684368436844,68.4968496849685,68.55685568556855,68.61686168616862,68.67686768676867,68.73687368736874,68.7968796879688,68.85688568856885,68.91689168916892,68.97689768976898,69.03690369036903,69.0969096909691,69.15691569156915,69.21692169216922,69.27692769276928,69.33693369336933,69.3969396939694,69.45694569456946,69.51695169516951,69.57695769576958,69.63696369636963,69.6969696969697,69.75697569756976,69.81698169816981,69.87698769876988,69.93699369936994,69.99699969996999,70.05700570057006,70.11701170117011,70.17701770177018,70.23702370237024,70.29702970297029,70.35703570357036,70.41704170417042,70.47704770477047,70.53705370537054,70.5970597059706,70.65706570657066,70.71707170717072,70.77707770777077,70.83708370837084,70.8970897089709,70.95709570957095,71.01710171017102,71.07710771077107,71.13711371137114,71.1971197119712,71.25712571257125,71.31713171317132,71.37713771377138,71.43714371437143,71.4971497149715,71.55715571557155,71.61716171617162,71.67716771677168,71.73717371737173,71.7971797179718,71.85718571857186,71.91719171917191,71.97719771977198,72.03720372037203,72.0972097209721,72.15721572157216,72.21722172217221,72.27722772277228,72.33723372337234,72.39723972397239,72.45724572457246,72.51725172517251,72.57725772577258,72.63726372637264,72.69726972697269,72.75727572757276,72.81728172817282,72.87728772877287,72.93729372937294,72.997299729973,73.05730573057306,73.11731173117312,73.17731773177317,73.23732373237324,73.2973297329733,73.35733573357335,73.41734173417342,73.47734773477347,73.53735373537354,73.5973597359736,73.65736573657365,73.71737173717372,73.77737773777378,73.83738373837383,73.8973897389739,73.95739573957395,74.01740174017402,74.07740774077408,74.13741374137413,74.1974197419742,74.25742574257426,74.31743174317431,74.37743774377438,74.43744374437443,74.4974497449745,74.55745574557456,74.61746174617461,74.67746774677468,74.73747374737474,74.79747974797479,74.85748574857486,74.91749174917491,74.97749774977498,75.03750375037504,75.09750975097509,75.15751575157516,75.21752175217522,75.27752775277527,75.33753375337534,75.3975397539754,75.45754575457546,75.51755175517552,75.57755775577557,75.63756375637564,75.6975697569757,75.75757575757575,75.81758175817582,75.87758775877587,75.93759375937594,75.997599759976,76.05760576057605,76.11761176117612,76.17761776177618,76.23762376237623,76.2976297629763,76.35763576357635,76.41764176417642,76.47764776477648,76.53765376537653,76.5976597659766,76.65766576657666,76.71767176717671,76.77767776777678,76.83768376837683,76.8976897689769,76.95769576957696,77.01770177017701,77.07770777077708,77.13771377137714,77.19771977197719,77.25772577257726,77.31773177317731,77.37773777377738,77.43774377437744,77.49774977497749,77.55775577557756,77.61776177617762,77.67776777677767,77.73777377737774,77.7977797779778,77.85778577857786,77.91779177917792,77.97779777977797,78.03780378037804,78.0978097809781,78.15781578157815,78.21782178217822,78.27782778277827,78.33783378337834,78.3978397839784,78.45784578457845,78.51785178517852,78.57785778577858,78.63786378637863,78.6978697869787,78.75787578757875,78.81788178817882,78.87788778877888,78.93789378937893,78.997899789979,79.05790579057906,79.11791179117911,79.17791779177918,79.23792379237923,79.2979297929793,79.35793579357936,79.41794179417941,79.47794779477948,79.53795379537954,79.59795979597959,79.65796579657966,79.71797179717971,79.77797779777978,79.83798379837984,79.89798979897989,79.95799579957996,80.01800180018002,80.07800780078007,80.13801380138014,80.1980198019802,80.25802580258026,80.31803180318032,80.37803780378037,80.43804380438044,80.4980498049805,80.55805580558055,80.61806180618062,80.67806780678067,80.73807380738074,80.7980798079808,80.85808580858085,80.91809180918092,80.97809780978098,81.03810381038103,81.0981098109811,81.15811581158115,81.21812181218122,81.27812781278128,81.33813381338133,81.3981398139814,81.45814581458146,81.51815181518151,81.57815781578158,81.63816381638163,81.6981698169817,81.75817581758176,81.81818181818181,81.87818781878188,81.93819381938194,81.99819981998199,82.05820582058206,82.11821182118211,82.17821782178218,82.23822382238224,82.2982298229823,82.35823582358236,82.41824182418242,82.47824782478247,82.53825382538254,82.5982598259826,82.65826582658266,82.71827182718272,82.77827782778277,82.83828382838284,82.8982898289829,82.95829582958295,83.01830183018302,83.07830783078307,83.13831383138314,83.1983198319832,83.25832583258325,83.31833183318332,83.37833783378338,83.43834383438343,83.4983498349835,83.55835583558355,83.61836183618362,83.67836783678368,83.73837383738373,83.7983798379838,83.85838583858386,83.91839183918391,83.97839783978398,84.03840384038403,84.0984098409841,84.15841584158416,84.21842184218421,84.27842784278428,84.33843384338434,84.39843984398439,84.45844584458446,84.51845184518452,84.57845784578458,84.63846384638464,84.6984698469847,84.75847584758476,84.81848184818482,84.87848784878487,84.93849384938494,84.998499849985,85.05850585058506,85.11851185118512,85.17851785178517,85.23852385238524,85.2985298529853,85.35853585358535,85.41854185418542,85.47854785478548,85.53855385538554,85.5985598559856,85.65856585658565,85.71857185718572,85.77857785778578,85.83858385838583,85.8985898589859,85.95859585958596,86.01860186018602,86.07860786078608,86.13861386138613,86.1986198619862,86.25862586258626,86.31863186318631,86.37863786378638,86.43864386438644,86.4986498649865,86.55865586558656,86.61866186618661,86.67866786678668,86.73867386738674,86.79867986798679,86.85868586858686,86.91869186918692,86.97869786978698,87.03870387038704,87.0987098709871,87.15871587158716,87.21872187218722,87.27872787278727,87.33873387338734,87.3987398739874,87.45874587458746,87.51875187518752,87.57875787578757,87.63876387638764,87.6987698769877,87.75877587758775,87.81878187818782,87.87878787878788,87.93879387938794,87.998799879988,88.05880588058805,88.11881188118812,88.17881788178818,88.23882388238823,88.2988298829883,88.35883588358836,88.41884188418842,88.47884788478848,88.53885388538853,88.5988598859886,88.65886588658866,88.71887188718871,88.77887788778878,88.83888388838884,88.8988898889889,88.95889588958896,89.01890189018901,89.07890789078908,89.13891389138914,89.19891989198919,89.25892589258926,89.31893189318932,89.37893789378938,89.43894389438944,89.4989498949895,89.55895589558956,89.61896189618962,89.67896789678967,89.73897389738974,89.7989798979898,89.85898589858986,89.91899189918992,89.97899789978997,90.03900390039004,90.0990099009901,90.15901590159015,90.21902190219022,90.27902790279028,90.33903390339034,90.3990399039904,90.45904590459045,90.51905190519052,90.57905790579058,90.63906390639063,90.6990699069907,90.75907590759076,90.81908190819082,90.87908790879088,90.93909390939093,90.999099909991,91.05910591059106,91.11911191119111,91.17911791179118,91.23912391239124,91.2991299129913,91.35913591359136,91.41914191419141,91.47914791479148,91.53915391539154,91.59915991599159,91.65916591659166,91.71917191719172,91.77917791779178,91.83918391839184,91.8991899189919,91.95919591959196,92.01920192019202,92.07920792079207,92.13921392139214,92.1992199219922,92.25922592259226,92.31923192319232,92.37923792379237,92.43924392439244,92.4992499249925,92.55925592559255,92.61926192619262,92.67926792679268,92.73927392739274,92.7992799279928,92.85928592859285,92.91929192919292,92.97929792979298,93.03930393039303,93.0993099309931,93.15931593159316,93.21932193219322,93.27932793279328,93.33933393339333,93.3993399339934,93.45934593459346,93.51935193519351,93.57935793579358,93.63936393639364,93.6993699369937,93.75937593759376,93.81938193819381,93.87938793879388,93.93939393939394,93.99939993999399,94.05940594059406,94.11941194119412,94.17941794179418,94.23942394239424,94.2994299429943,94.35943594359436,94.41944194419442,94.47944794479447,94.53945394539454,94.5994599459946,94.65946594659466,94.71947194719472,94.77947794779477,94.83948394839484,94.8994899489949,94.95949594959495,95.01950195019502,95.07950795079508,95.13951395139514,95.1995199519952,95.25952595259525,95.31953195319532,95.37953795379538,95.43954395439543,95.4995499549955,95.55955595559556,95.61956195619562,95.67956795679568,95.73957395739573,95.7995799579958,95.85958595859586,95.91959195919591,95.97959795979598,96.03960396039604,96.0996099609961,96.15961596159616,96.21962196219621,96.27962796279628,96.33963396339634,96.39963996399639,96.45964596459646,96.51965196519652,96.57965796579659,96.63966396639664,96.6996699669967,96.75967596759676,96.81968196819682,96.87968796879687,96.93969396939694,96.999699969997,97.05970597059707,97.11971197119712,97.17971797179717,97.23972397239724,97.2997299729973,97.35973597359735,97.41974197419742,97.47974797479748,97.53975397539755,97.5997599759976,97.65976597659765,97.71977197719772,97.77977797779778,97.83978397839783,97.8997899789979,97.95979597959796,98.01980198019803,98.07980798079808,98.13981398139813,98.1998199819982,98.25982598259826,98.31983198319831,98.37983798379838,98.43984398439844,98.4998499849985,98.55985598559856,98.61986198619861,98.67986798679868,98.73987398739874,98.79987998799879,98.85988598859886,98.91989198919892,98.97989798979899,99.03990399039904,99.0999099909991,99.15991599159916,99.21992199219922,99.27992799279927,99.33993399339934,99.3999399939994,99.45994599459947,99.51995199519952,99.57995799579957,99.63996399639964,99.6999699969997,99.75997599759975,99.81998199819982,99.87998799879988,99.93999399939995,100.0,100.06000600060005,100.12001200120012,100.18001800180018,100.24002400240025,100.3000300030003,100.36003600360036,100.42004200420043,100.48004800480048,100.54005400540053,100.6000600060006,100.66006600660066,100.72007200720073,100.78007800780078,100.84008400840084,100.9000900090009,100.96009600960096,101.02010201020101,101.08010801080108,101.14011401140114,101.20012001200121,101.26012601260126,101.32013201320132,101.38013801380139,101.44014401440144,101.5001500150015,101.56015601560156,101.62016201620162,101.68016801680169,101.74017401740174,101.8001800180018,101.86018601860187,101.92019201920192,101.98019801980197,102.04020402040204,102.1002100210021,102.16021602160217,102.22022202220222,102.28022802280228,102.34023402340235,102.4002400240024,102.46024602460245,102.52025202520252,102.58025802580258,102.64026402640265,102.7002700270027,102.76027602760276,102.82028202820283,102.88028802880288,102.94029402940293,103.000300030003,103.06030603060306,103.12031203120313,103.18031803180318,103.24032403240324,103.3003300330033,103.36033603360336,103.42034203420341,103.48034803480348,103.54035403540354,103.60036003600361,103.66036603660366,103.72037203720372,103.78037803780379,103.84038403840384,103.9003900390039,103.96039603960396,104.02040204020402,104.08040804080409,104.14041404140414,104.2004200420042,104.26042604260427,104.32043204320432,104.38043804380438,104.44044404440444,104.5004500450045,104.56045604560457,104.62046204620462,104.68046804680468,104.74047404740475,104.8004800480048,104.86048604860486,104.92049204920492,104.98049804980498,105.04050405040505,105.1005100510051,105.16051605160516,105.22052205220523,105.28052805280528,105.34053405340534,105.4005400540054,105.46054605460546,105.52055205520553,105.58055805580558,105.64056405640564,105.7005700570057,105.76057605760576,105.82058205820582,105.88058805880588,105.94059405940594,106.00060006000601,106.06060606060606,106.12061206120612,106.18061806180619,106.24062406240624,106.3006300630063,106.36063606360636,106.42064206420642,106.48064806480649,106.54065406540654,106.6006600660066,106.66066606660667,106.72067206720672,106.78067806780678,106.84068406840684,106.9006900690069,106.96069606960697,107.02070207020702,107.08070807080708,107.14071407140715,107.2007200720072,107.26072607260726,107.32073207320732,107.38073807380738,107.44074407440745,107.5007500750075,107.56075607560756,107.62076207620763,107.68076807680768,107.74077407740774,107.8007800780078,107.86078607860786,107.92079207920793,107.98079807980798,108.04080408040804,108.1008100810081,108.16081608160816,108.22082208220822,108.28082808280828,108.34083408340834,108.40084008400841,108.46084608460846,108.52085208520852,108.58085808580859,108.64086408640864,108.7008700870087,108.76087608760876,108.82088208820882,108.88088808880889,108.94089408940894,109.000900090009,109.06090609060907,109.12091209120912,109.18091809180918,109.24092409240924,109.3009300930093,109.36093609360937,109.42094209420942,109.48094809480948,109.54095409540955,109.6009600960096,109.66096609660966,109.72097209720972,109.78097809780978,109.84098409840985,109.9009900990099,109.96099609960996,110.02100210021003,110.08100810081008,110.14101410141014,110.2010201020102,110.26102610261026,110.32103210321033,110.38103810381038,110.44104410441044,110.5010501050105,110.56105610561056,110.62106210621062,110.68106810681068,110.74107410741074,110.80108010801081,110.86108610861086,110.92109210921092,110.98109810981099,111.04110411041104,111.1011101110111,111.16111611161116,111.22112211221122,111.28112811281129,111.34113411341134,111.4011401140114,111.46114611461147,111.52115211521152,111.58115811581158,111.64116411641164,111.7011701170117,111.76117611761177,111.82118211821182,111.88118811881188,111.94119411941195,112.001200120012,112.06120612061206,112.12121212121212,112.18121812181218,112.24122412241225,112.3012301230123,112.36123612361236,112.42124212421243,112.48124812481248,112.54125412541254,112.6012601260126,112.66126612661266,112.72127212721273,112.78127812781278,112.84128412841284,112.9012901290129,112.96129612961296,113.02130213021302,113.08130813081308,113.14131413141314,113.20132013201321,113.26132613261326,113.32133213321332,113.38133813381339,113.44134413441344,113.5013501350135,113.56135613561356,113.62136213621362,113.68136813681369,113.74137413741374,113.8013801380138,113.86138613861387,113.92139213921392,113.98139813981398,114.04140414041404,114.1014101410141,114.16141614161417,114.22142214221422,114.28142814281428,114.34143414341435,114.4014401440144,114.46144614461446,114.52145214521452,114.58145814581458,114.64146414641465,114.7014701470147,114.76147614761476,114.82148214821483,114.88148814881488,114.94149414941494,115.001500150015,115.06150615061506,115.12151215121513,115.18151815181518,115.24152415241524,115.3015301530153,115.36153615361536,115.42154215421542,115.48154815481548,115.54155415541554,115.60156015601561,115.66156615661566,115.72157215721572,115.78157815781579,115.84158415841584,115.9015901590159,115.96159615961597,116.02160216021602,116.08160816081609,116.14161416141614,116.2016201620162,116.26162616261627,116.32163216321632,116.38163816381638,116.44164416441645,116.5016501650165,116.56165616561657,116.62166216621662,116.68166816681668,116.74167416741675,116.8016801680168,116.86168616861686,116.92169216921693,116.98169816981698,117.04170417041705,117.1017101710171,117.16171617161716,117.22172217221723,117.28172817281728,117.34173417341734,117.4017401740174,117.46174617461746,117.52175217521753,117.58175817581758,117.64176417641764,117.7017701770177,117.76177617761776,117.82178217821782,117.88178817881789,117.94179417941794,118.00180018001801,118.06180618061806,118.12181218121812,118.18181818181819,118.24182418241824,118.3018301830183,118.36183618361837,118.42184218421842,118.48184818481849,118.54185418541854,118.6018601860186,118.66186618661867,118.72187218721872,118.78187818781878,118.84188418841885,118.9018901890189,118.96189618961897,119.02190219021902,119.08190819081908,119.14191419141915,119.2019201920192,119.26192619261926,119.32193219321933,119.38193819381938,119.44194419441945,119.5019501950195,119.56195619561956,119.62196219621963,119.68196819681968,119.74197419741974,119.8019801980198,119.86198619861986,119.92199219921993,119.98199819981998,120.04200420042004,120.10201020102011,120.16201620162016,120.22202220222022,120.28202820282029,120.34203420342034,120.40204020402041,120.46204620462046,120.52205220522052,120.58205820582059,120.64206420642064,120.7020702070207,120.76207620762077,120.82208220822082,120.88208820882089,120.94209420942094,121.002100210021,121.06210621062107,121.12211221122112,121.18211821182118,121.24212421242125,121.3021302130213,121.36213621362137,121.42214221422142,121.48214821482148,121.54215421542155,121.6021602160216,121.66216621662166,121.72217221722173,121.78217821782178,121.84218421842185,121.9021902190219,121.96219621962196,122.02220222022203,122.08220822082208,122.14221422142214,122.2022202220222,122.26222622262226,122.32223222322233,122.38223822382238,122.44224422442244,122.50225022502251,122.56225622562256,122.62226222622262,122.68226822682269,122.74227422742274,122.80228022802281,122.86228622862286,122.92229222922292,122.98229822982299,123.04230423042304,123.1023102310231,123.16231623162317,123.22232223222322,123.28232823282329,123.34233423342334,123.4023402340234,123.46234623462347,123.52235223522352,123.58235823582358,123.64236423642365,123.7023702370237,123.76237623762377,123.82238223822382,123.88238823882388,123.94239423942395,124.002400240024,124.06240624062406,124.12241224122413,124.18241824182418,124.24242424242425,124.3024302430243,124.36243624362436,124.42244224422443,124.48244824482448,124.54245424542454,124.6024602460246,124.66246624662466,124.72247224722473,124.78247824782478,124.84248424842484,124.90249024902491,124.96249624962496,125.02250225022502,125.08250825082509,125.14251425142514,125.20252025202521,125.26252625262526,125.32253225322532,125.38253825382539,125.44254425442544,125.5025502550255,125.56255625562557,125.62256225622562,125.68256825682569,125.74257425742574,125.8025802580258,125.86258625862587,125.92259225922592,125.98259825982598,126.04260426042605,126.1026102610261,126.16261626162617,126.22262226222622,126.28262826282628,126.34263426342635,126.4026402640264,126.46264626462646,126.52265226522653,126.58265826582658,126.64266426642665,126.7026702670267,126.76267626762676,126.82268226822683,126.88268826882688,126.94269426942694,127.002700270027,127.06270627062706,127.12271227122713,127.18271827182718,127.24272427242724,127.30273027302731,127.36273627362736,127.42274227422742,127.48274827482749,127.54275427542754,127.60276027602761,127.66276627662766,127.72277227722772,127.78277827782779,127.84278427842784,127.9027902790279,127.96279627962797,128.02280228022803,128.0828082808281,128.14281428142814,128.2028202820282,128.26282628262825,128.32283228322834,128.3828382838284,128.44284428442845,128.5028502850285,128.56285628562856,128.6228622862286,128.6828682868287,128.74287428742875,128.8028802880288,128.86288628862886,128.9228922892289,128.982898289829,129.04290429042905,129.1029102910291,129.16291629162916,129.2229222922292,129.2829282928293,129.34293429342935,129.4029402940294,129.46294629462946,129.52295229522952,129.58295829582957,129.64296429642965,129.7029702970297,129.76297629762976,129.82298229822982,129.88298829882987,129.94299429942996,130.00300030003,130.06300630063006,130.12301230123012,130.18301830183017,130.24302430243026,130.3030303030303,130.36303630363037,130.42304230423042,130.48304830483048,130.54305430543053,130.6030603060306,130.66306630663067,130.72307230723072,130.78307830783078,130.84308430843083,130.90309030903092,130.96309630963097,131.02310231023102,131.08310831083108,131.14311431143113,131.20312031203122,131.26312631263127,131.32313231323133,131.38313831383138,131.44314431443144,131.5031503150315,131.56315631563157,131.62316231623163,131.68316831683168,131.74317431743174,131.8031803180318,131.86318631863188,131.92319231923193,131.98319831983198,132.04320432043204,132.1032103210321,132.16321632163218,132.22322232223223,132.2832283228323,132.34323432343234,132.4032403240324,132.46324632463245,132.52325232523253,132.5832583258326,132.64326432643264,132.7032703270327,132.76327632763275,132.82328232823284,132.8832883288329,132.94329432943294,133.003300330033,133.06330633063305,133.12331233123314,133.1833183318332,133.24332433243325,133.3033303330333,133.36333633363336,133.4233423342334,133.4833483348335,133.54335433543355,133.6033603360336,133.66336633663366,133.7233723372337,133.7833783378338,133.84338433843385,133.9033903390339,133.96339633963396,134.02340234023401,134.0834083408341,134.14341434143415,134.2034203420342,134.26342634263426,134.32343234323432,134.38343834383437,134.44344434443445,134.5034503450345,134.56345634563456,134.62346234623462,134.68346834683467,134.74347434743476,134.8034803480348,134.86348634863486,134.92349234923492,134.98349834983497,135.04350435043506,135.1035103510351,135.16351635163517,135.22352235223522,135.28352835283528,135.34353435343533,135.4035403540354,135.46354635463547,135.52355235523552,135.58355835583558,135.64356435643563,135.70357035703572,135.76357635763577,135.82358235823583,135.88358835883588,135.94359435943593,136.00360036003602,136.06360636063607,136.12361236123613,136.18361836183618,136.24362436243624,136.3036303630363,136.36363636363637,136.42364236423643,136.48364836483648,136.54365436543654,136.6036603660366,136.66366636663668,136.72367236723673,136.78367836783679,136.84368436843684,136.9036903690369,136.96369636963698,137.02370237023703,137.0837083708371,137.14371437143714,137.2037203720372,137.26372637263725,137.32373237323733,137.3837383738374,137.44374437443744,137.5037503750375,137.56375637563755,137.62376237623764,137.6837683768377,137.74377437743775,137.8037803780378,137.86378637863785,137.92379237923794,137.983798379838,138.04380438043805,138.1038103810381,138.16381638163816,138.2238223822382,138.2838283828383,138.34383438343835,138.4038403840384,138.46384638463846,138.5238523852385,138.5838583858386,138.64386438643865,138.7038703870387,138.76387638763876,138.82388238823881,138.8838883888389,138.94389438943895,139.003900390039,139.06390639063906,139.12391239123912,139.18391839183917,139.24392439243925,139.3039303930393,139.36393639363936,139.42394239423942,139.48394839483947,139.54395439543956,139.6039603960396,139.66396639663967,139.72397239723972,139.78397839783977,139.84398439843986,139.9039903990399,139.96399639963997,140.02400240024002,140.08400840084008,140.14401440144013,140.20402040204021,140.26402640264027,140.32403240324032,140.38403840384038,140.44404440444043,140.50405040504052,140.56405640564057,140.62406240624063,140.68406840684068,140.74407440744073,140.80408040804082,140.86408640864087,140.92409240924093,140.98409840984098,141.04410441044104,141.1041104110411,141.16411641164117,141.22412241224123,141.28412841284128,141.34413441344134,141.4041404140414,141.46414641464148,141.52415241524153,141.58415841584159,141.64416441644164,141.7041704170417,141.76417641764178,141.82418241824183,141.8841884188419,141.94419441944194,142.004200420042,142.06420642064205,142.12421242124213,142.1842184218422,142.24422442244224,142.3042304230423,142.36423642364235,142.42424242424244,142.4842484248425,142.54425442544255,142.6042604260426,142.66426642664266,142.72427242724274,142.7842784278428,142.84428442844285,142.9042904290429,142.96429642964296,143.024302430243,143.0843084308431,143.14431443144315,143.2043204320432,143.26432643264326,143.3243324332433,143.3843384338434,143.44434443444345,143.5043504350435,143.56435643564356,143.62436243624362,143.6843684368437,143.74437443744375,143.8043804380438,143.86438643864386,143.92439243924392,143.98439843984397,144.04440444044405,144.1044104410441,144.16441644164416,144.22442244224422,144.28442844284427,144.34443444344436,144.4044404440444,144.46444644464447,144.52445244524452,144.58445844584458,144.64446444644466,144.7044704470447,144.76447644764477,144.82448244824482,144.88448844884488,144.94449444944493,145.00450045004501,145.06450645064507,145.12451245124512,145.18451845184518,145.24452445244523,145.30453045304532,145.36453645364537,145.42454245424543,145.48454845484548,145.54455445544554,145.60456045604562,145.66456645664567,145.72457245724573,145.78457845784578,145.84458445844584,145.9045904590459,145.96459645964597,146.02460246024603,146.08460846084608,146.14461446144614,146.2046204620462,146.26462646264628,146.32463246324633,146.3846384638464,146.44464446444644,146.5046504650465,146.56465646564658,146.62466246624663,146.6846684668467,146.74467446744674,146.8046804680468,146.86468646864685,146.92469246924693,146.984698469847,147.04470447044704,147.1047104710471,147.16471647164715,147.22472247224724,147.2847284728473,147.34473447344735,147.4047404740474,147.46474647464746,147.52475247524754,147.5847584758476,147.64476447644765,147.7047704770477,147.76477647764776,147.8247824782478,147.8847884788479,147.94479447944795,148.004800480048,148.06480648064806,148.1248124812481,148.1848184818482,148.24482448244825,148.3048304830483,148.36483648364836,148.42484248424842,148.4848484848485,148.54485448544855,148.6048604860486,148.66486648664866,148.72487248724872,148.78487848784877,148.84488448844886,148.9048904890489,148.96489648964896,149.02490249024902,149.08490849084907,149.14491449144916,149.2049204920492,149.26492649264927,149.32493249324932,149.38493849384938,149.44494449444946,149.5049504950495,149.56495649564957,149.62496249624962,149.68496849684968,149.74497449744973,149.80498049804982,149.86498649864987,149.92499249924992,149.98499849984998,150.04500450045003,150.10501050105012,150.16501650165017,150.22502250225023,150.28502850285028,150.34503450345034,150.40504050405042,150.46504650465047,150.52505250525053,150.58505850585058,150.64506450645064,150.7050705070507,150.76507650765078,150.82508250825083,150.88508850885088,150.94509450945094,151.005100510051,151.06510651065108,151.12511251125113,151.1851185118512,151.24512451245124,151.3051305130513,151.36513651365138,151.42514251425143,151.4851485148515,151.54515451545154,151.6051605160516,151.66516651665165,151.72517251725174,151.7851785178518,151.84518451845184,151.9051905190519,151.96519651965195,152.02520252025204,152.0852085208521,152.14521452145215,152.2052205220522,152.26522652265226,152.32523252325234,152.3852385238524,152.44524452445245,152.5052505250525,152.56525652565256,152.6252625262526,152.6852685268527,152.74527452745275,152.8052805280528,152.86528652865286,152.9252925292529,152.985298529853,153.04530453045305,153.1053105310531,153.16531653165316,153.22532253225322,153.2853285328533,153.34533453345335,153.4053405340534,153.46534653465346,153.52535253525352,153.58535853585357,153.64536453645366,153.7053705370537,153.76537653765376,153.82538253825382,153.88538853885387,153.94539453945396,154.005400540054,154.06540654065407,154.12541254125412,154.18541854185418,154.24542454245426,154.3054305430543,154.36543654365437,154.42544254425442,154.48544854485448,154.54545454545453,154.60546054605462,154.66546654665467,154.72547254725472,154.78547854785478,154.84548454845483,154.90549054905492,154.96549654965497,155.02550255025503,155.08550855085508,155.14551455145514,155.20552055205522,155.26552655265527,155.32553255325533,155.38553855385538,155.44554455445544,155.5055505550555,155.56555655565558,155.62556255625563,155.68556855685569,155.74557455745574,155.8055805580558,155.86558655865588,155.92559255925593,155.985598559856,156.04560456045604,156.1056105610561,156.16561656165618,156.22562256225623,156.2856285628563,156.34563456345634,156.4056405640564,156.46564656465645,156.52565256525654,156.5856585658566,156.64566456645665,156.7056705670567,156.76567656765675,156.82568256825684,156.8856885688569,156.94569456945695,157.005700570057,157.06570657065706,157.12571257125714,157.1857185718572,157.24572457245725,157.3057305730573,157.36573657365736,157.4257425742574,157.4857485748575,157.54575457545755,157.6057605760576,157.66576657665766,157.72577257725771,157.7857785778578,157.84578457845785,157.9057905790579,157.96579657965796,158.02580258025802,158.0858085808581,158.14581458145815,158.2058205820582,158.26582658265826,158.32583258325832,158.38583858385837,158.44584458445846,158.5058505850585,158.56585658565857,158.62586258625862,158.68586858685867,158.74587458745876,158.8058805880588,158.86588658865887,158.92589258925892,158.98589858985898,159.04590459045906,159.10591059105911,159.16591659165917,159.22592259225922,159.28592859285928,159.34593459345933,159.40594059405942,159.46594659465947,159.52595259525953,159.58595859585958,159.64596459645963,159.70597059705972,159.76597659765977,159.82598259825983,159.88598859885988,159.94599459945994,160.00600060006002,160.06600660066007,160.12601260126013,160.18601860186018,160.24602460246024,160.3060306030603,160.36603660366038,160.42604260426043,160.48604860486049,160.54605460546054,160.6060606060606,160.66606660666068,160.72607260726073,160.7860786078608,160.84608460846084,160.9060906090609,160.96609660966098,161.02610261026103,161.0861086108611,161.14611461146114,161.2061206120612,161.26612661266125,161.32613261326134,161.3861386138614,161.44614461446145,161.5061506150615,161.56615661566155,161.62616261626164,161.6861686168617,161.74617461746175,161.8061806180618,161.86618661866186,161.92619261926194,161.986198619862,162.04620462046205,162.1062106210621,162.16621662166216,162.2262226222622,162.2862286228623,162.34623462346235,162.4062406240624,162.46624662466246,162.52625262526252,162.5862586258626,162.64626462646265,162.7062706270627,162.76627662766276,162.82628262826282,162.8862886288629,162.94629462946295,163.006300630063,163.06630663066306,163.12631263126312,163.18631863186317,163.24632463246326,163.3063306330633,163.36633663366337,163.42634263426342,163.48634863486348,163.54635463546356,163.6063606360636,163.66636663666367,163.72637263726372,163.78637863786378,163.84638463846386,163.90639063906391,163.96639663966397,164.02640264026402,164.08640864086408,164.14641464146413,164.20642064206422,164.26642664266427,164.32643264326433,164.38643864386438,164.44644464446444,164.50645064506452,164.56645664566457,164.62646264626463,164.68646864686468,164.74647464746474,164.80648064806482,164.86648664866487,164.92649264926493,164.98649864986498,165.04650465046504,165.1065106510651,165.16651665166518,165.22652265226523,165.2865286528653,165.34653465346534,165.4065406540654,165.46654665466548,165.52655265526553,165.5865586558656,165.64656465646564,165.7065706570657,165.76657665766578,165.82658265826583,165.8865886588659,165.94659465946594,166.006600660066,166.06660666066605,166.12661266126614,166.1866186618662,166.24662466246625,166.3066306630663,166.36663666366636,166.42664266426644,166.4866486648665,166.54665466546655,166.6066606660666,166.66666666666666,166.72667266726674,166.7866786678668,166.84668466846685,166.9066906690669,166.96669666966696,167.026702670267,167.0867086708671,167.14671467146715,167.2067206720672,167.26672667266726,167.32673267326732,167.3867386738674,167.44674467446745,167.5067506750675,167.56675667566756,167.62676267626762,167.6867686768677,167.74677467746776,167.8067806780678,167.86678667866786,167.92679267926792,167.98679867986797,168.04680468046806,168.1068106810681,168.16681668166817,168.22682268226822,168.28682868286828,168.34683468346836,168.4068406840684,168.46684668466847,168.52685268526852,168.58685868586858,168.64686468646866,168.70687068706872,168.76687668766877,168.82688268826882,168.88688868886888,168.94689468946893,169.00690069006902,169.06690669066907,169.12691269126913,169.18691869186918,169.24692469246924,169.30693069306932,169.36693669366937,169.42694269426943,169.48694869486948,169.54695469546954,169.60696069606962,169.66696669666968,169.72697269726973,169.78697869786978,169.84698469846984,169.9069906990699,169.96699669966998,170.02700270027003,170.0870087008701,170.14701470147014,170.2070207020702,170.26702670267028,170.32703270327033,170.3870387038704,170.44704470447044,170.5070507050705,170.56705670567058,170.62706270627064,170.6870687068707,170.74707470747074,170.8070807080708,170.86708670867085,170.92709270927094,170.987098709871,171.04710471047105,171.1071107110711,171.16711671167116,171.22712271227124,171.2871287128713,171.34713471347135,171.4071407140714,171.46714671467146,171.52715271527154,171.5871587158716,171.64716471647165,171.7071707170717,171.76717671767176,171.8271827182718,171.8871887188719,171.94719471947195,172.007200720072,172.06720672067206,172.12721272127212,172.1872187218722,172.24722472247225,172.3072307230723,172.36723672367236,172.42724272427242,172.4872487248725,172.54725472547256,172.6072607260726,172.66726672667266,172.72727272727272,172.78727872787277,172.84728472847286,172.9072907290729,172.96729672967297,173.02730273027302,173.08730873087308,173.14731473147316,173.2073207320732,173.26732673267327,173.32733273327332,173.38733873387338,173.44734473447346,173.50735073507352,173.56735673567357,173.62736273627362,173.68736873687368,173.74737473747373,173.80738073807382,173.86738673867387,173.92739273927393,173.98739873987398,174.04740474047404,174.10741074107412,174.16741674167417,174.22742274227423,174.28742874287428,174.34743474347434,174.40744074407442,174.46744674467448,174.52745274527453,174.58745874587459,174.64746474647464,174.7074707470747,174.76747674767478,174.82748274827483,174.8874887488749,174.94749474947494,175.007500750075,175.06750675067508,175.12751275127513,175.1875187518752,175.24752475247524,175.3075307530753,175.36753675367538,175.42754275427544,175.4875487548755,175.54755475547555,175.6075607560756,175.66756675667565,175.72757275727574,175.7875787578758,175.84758475847585,175.9075907590759,175.96759675967596,176.02760276027604,176.0876087608761,176.14761476147615,176.2076207620762,176.26762676267626,176.32763276327634,176.3876387638764,176.44764476447645,176.5076507650765,176.56765676567656,176.62766276627661,176.6876687668767,176.74767476747675,176.8076807680768,176.86768676867686,176.92769276927692,176.987698769877,177.04770477047705,177.1077107710771,177.16771677167716,177.22772277227722,177.2877287728773,177.34773477347736,177.4077407740774,177.46774677467747,177.52775277527752,177.58775877587757,177.64776477647766,177.7077707770777,177.76777677767777,177.82778277827782,177.88778877887788,177.94779477947796,178.00780078007801,178.06780678067807,178.12781278127812,178.18781878187818,178.24782478247826,178.30783078307832,178.36783678367837,178.42784278427843,178.48784878487848,178.54785478547853,178.60786078607862,178.66786678667867,178.72787278727873,178.78787878787878,178.84788478847884,178.90789078907892,178.96789678967897,179.02790279027903,179.08790879087908,179.14791479147914,179.20792079207922,179.26792679267928,179.32793279327933,179.38793879387939,179.44794479447944,179.5079507950795,179.56795679567958,179.62796279627963,179.6879687968797,179.74797479747974,179.8079807980798,179.86798679867988,179.92799279927993,179.98799879988,180.04800480048004,180.1080108010801,180.16801680168018,180.22802280228024,180.2880288028803,180.34803480348035,180.4080408040804,180.46804680468045,180.52805280528054,180.5880588058806,180.64806480648065,180.7080708070807,180.76807680768076,180.82808280828084,180.8880888088809,180.94809480948095,181.008100810081,181.06810681068106,181.12811281128114,181.1881188118812,181.24812481248125,181.3081308130813,181.36813681368136,181.42814281428141,181.4881488148815,181.54815481548155,181.6081608160816,181.66816681668166,181.72817281728172,181.7881788178818,181.84818481848185,181.9081908190819,181.96819681968196,182.02820282028202,182.0882088208821,182.14821482148216,182.2082208220822,182.26822682268227,182.32823282328232,182.38823882388238,182.44824482448246,182.5082508250825,182.56825682568257,182.62826282628262,182.68826882688268,182.74827482748276,182.80828082808281,182.86828682868287,182.92829282928292,182.98829882988298,183.04830483048306,183.10831083108312,183.16831683168317,183.22832283228323,183.28832883288328,183.34833483348334,183.40834083408342,183.46834683468347,183.52835283528353,183.58835883588358,183.64836483648364,183.70837083708372,183.76837683768377,183.82838283828383,183.88838883888388,183.94839483948394,184.00840084008402,184.06840684068408,184.12841284128413,184.1884188418842,184.24842484248424,184.3084308430843,184.36843684368438,184.42844284428443,184.4884488448845,184.54845484548454,184.6084608460846,184.66846684668468,184.72847284728473,184.7884788478848,184.84848484848484,184.9084908490849,184.96849684968498,185.02850285028504,185.0885088508851,185.14851485148515,185.2085208520852,185.26852685268526,185.32853285328534,185.3885388538854,185.44854485448545,185.5085508550855,185.56855685568556,185.62856285628564,185.6885688568857,185.74857485748575,185.8085808580858,185.86858685868586,185.92859285928594,185.988598859886,186.04860486048605,186.1086108610861,186.16861686168616,186.22862286228622,186.2886288628863,186.34863486348635,186.4086408640864,186.46864686468646,186.52865286528652,186.5886588658866,186.64866486648666,186.7086708670867,186.76867686768676,186.82868286828682,186.8886888688869,186.94869486948696,187.008700870087,187.06870687068707,187.12871287128712,187.18871887188718,187.24872487248726,187.3087308730873,187.36873687368737,187.42874287428742,187.48874887488748,187.54875487548756,187.60876087608762,187.66876687668767,187.72877287728772,187.78877887788778,187.84878487848786,187.90879087908792,187.96879687968797,188.02880288028803,188.08880888088808,188.14881488148814,188.20882088208822,188.26882688268827,188.32883288328833,188.38883888388838,188.44884488448844,188.50885088508852,188.56885688568858,188.62886288628863,188.68886888688868,188.74887488748874,188.80888088808882,188.86888688868888,188.92889288928893,188.988898889889,189.04890489048904,189.1089108910891,189.16891689168918,189.22892289228923,189.2889288928893,189.34893489348934,189.4089408940894,189.46894689468948,189.52895289528954,189.5889588958896,189.64896489648964,189.7089708970897,189.76897689768978,189.82898289828984,189.8889888988899,189.94899489948995,190.00900090009,190.06900690069006,190.12901290129014,190.1890189018902,190.24902490249025,190.3090309030903,190.36903690369036,190.42904290429044,190.4890489048905,190.54905490549055,190.6090609060906,190.66906690669066,190.72907290729074,190.7890789078908,190.84908490849085,190.9090909090909,190.96909690969096,191.02910291029102,191.0891089108911,191.14911491149115,191.2091209120912,191.26912691269126,191.32913291329132,191.3891389138914,191.44914491449146,191.5091509150915,191.56915691569156,191.62916291629162,191.6891689168917,191.74917491749176,191.8091809180918,191.86918691869187,191.92919291929192,191.98919891989198,192.04920492049206,192.1092109210921,192.16921692169217,192.22922292229222,192.28922892289228,192.34923492349236,192.40924092409242,192.46924692469247,192.52925292529252,192.58925892589258,192.64926492649266,192.70927092709272,192.76927692769277,192.82928292829283,192.88928892889288,192.94929492949294,193.00930093009302,193.06930693069307,193.12931293129313,193.18931893189318,193.24932493249324,193.30933093309332,193.36933693369338,193.42934293429343,193.48934893489348,193.54935493549354,193.60936093609362,193.66936693669368,193.72937293729373,193.7893789378938,193.84938493849384,193.9093909390939,193.96939693969398,194.02940294029403,194.0894089408941,194.14941494149414,194.2094209420942,194.26942694269428,194.32943294329434,194.3894389438944,194.44944494449445,194.5094509450945,194.56945694569458,194.62946294629464,194.6894689468947,194.74947494749475,194.8094809480948,194.86948694869486,194.92949294929494,194.989498949895,195.04950495049505,195.1095109510951,195.16951695169516,195.22952295229524,195.2895289528953,195.34953495349535,195.4095409540954,195.46954695469546,195.52955295529554,195.5895589558956,195.64956495649565,195.7095709570957,195.76957695769576,195.82958295829582,195.8895889588959,195.94959495949595,196.009600960096,196.06960696069606,196.12961296129612,196.1896189618962,196.24962496249626,196.3096309630963,196.36963696369637,196.42964296429642,196.4896489648965,196.54965496549656,196.6096609660966,196.66966696669667,196.72967296729672,196.78967896789678,196.84968496849686,196.9096909690969,196.96969696969697,197.02970297029702,197.08970897089708,197.14971497149716,197.20972097209722,197.26972697269727,197.32973297329733,197.38973897389738,197.44974497449746,197.50975097509752,197.56975697569757,197.62976297629763,197.68976897689768,197.74977497749774,197.80978097809782,197.86978697869787,197.92979297929793,197.98979897989798,198.04980498049804,198.10981098109812,198.16981698169818,198.22982298229823,198.28982898289829,198.34983498349834,198.40984098409842,198.46984698469848,198.52985298529853,198.5898589858986,198.64986498649864,198.7098709870987,198.76987698769878,198.82988298829883,198.8898889888989,198.94989498949894,199.009900990099,199.06990699069908,199.12991299129914,199.1899189918992,199.24992499249925,199.3099309930993,199.36993699369938,199.42994299429944,199.4899489948995,199.54995499549955,199.6099609960996,199.66996699669966,199.72997299729974,199.7899789978998,199.84998499849985,199.9099909990999,199.96999699969996,200.03000300030004,200.0900090009001,200.15001500150015,200.2100210021002,200.27002700270026,200.33003300330034,200.3900390039004,200.45004500450045,200.5100510051005,200.57005700570056,200.63006300630062,200.6900690069007,200.75007500750075,200.8100810081008,200.87008700870086,200.93009300930092,200.990099009901,201.05010501050106,201.1101110111011,201.17011701170117,201.23012301230122,201.2901290129013,201.35013501350136,201.4101410141014,201.47014701470147,201.53015301530152,201.59015901590158,201.65016501650166,201.71017101710171,201.77017701770177,201.83018301830182,201.89018901890188,201.95019501950196,202.01020102010202,202.07020702070207,202.13021302130213,202.19021902190218,202.25022502250226,202.31023102310232,202.37023702370237,202.43024302430243,202.49024902490248,202.55025502550254,202.61026102610262,202.67026702670267,202.73027302730273,202.79027902790278,202.85028502850284,202.91029102910292,202.97029702970298,203.03030303030303,203.0903090309031,203.15031503150314,203.21032103210322,203.27032703270328,203.33033303330333,203.3903390339034,203.45034503450344,203.5103510351035,203.57035703570358,203.63036303630363,203.6903690369037,203.75037503750374,203.8103810381038,203.87038703870388,203.93039303930394,203.990399039904,204.05040504050405,204.1104110411041,204.17041704170418,204.23042304230424,204.2904290429043,204.35043504350435,204.4104410441044,204.47044704470446,204.53045304530454,204.5904590459046,204.65046504650465,204.7104710471047,204.77047704770476,204.83048304830484,204.8904890489049,204.95049504950495,205.010501050105,205.07050705070506,205.13051305130514,205.1905190519052,205.25052505250525,205.3105310531053,205.37053705370536,205.43054305430542,205.4905490549055,205.55055505550555,205.6105610561056,205.67056705670566,205.73057305730572,205.7905790579058,205.85058505850586,205.9105910591059,205.97059705970597,206.03060306030602,206.0906090609061,206.15061506150616,206.2106210621062,206.27062706270627,206.33063306330632,206.39063906390638,206.45064506450646,206.51065106510652,206.57065706570657,206.63066306630662,206.69066906690668,206.75067506750676,206.81068106810682,206.87068706870687,206.93069306930693,206.99069906990698,207.05070507050706,207.11071107110712,207.17071707170717,207.23072307230723,207.29072907290728,207.35073507350734,207.41074107410742,207.47074707470748,207.53075307530753,207.59075907590758,207.65076507650764,207.71077107710772,207.77077707770778,207.83078307830783,207.8907890789079,207.95079507950794,208.01080108010802,208.07080708070808,208.13081308130813,208.1908190819082,208.25082508250824,208.3108310831083,208.37083708370838,208.43084308430844,208.4908490849085,208.55085508550854,208.6108610861086,208.67086708670868,208.73087308730874,208.7908790879088,208.85088508850885,208.9108910891089,208.97089708970898,209.03090309030904,209.0909090909091,209.15091509150915,209.2109210921092,209.27092709270926,209.33093309330934,209.3909390939094,209.45094509450945,209.5109510951095,209.57095709570956,209.63096309630964,209.6909690969097,209.75097509750975,209.8109810981098,209.87098709870986,209.93099309930994,209.99099909991,210.05100510051005,210.1110111011101,210.17101710171016,210.23102310231022,210.2910291029103,210.35103510351036,210.4110411041104,210.47104710471046,210.53105310531052,210.5910591059106,210.65106510651066,210.7110711071107,210.77107710771077,210.83108310831082,210.8910891089109,210.95109510951096,211.011101110111,211.07110711071107,211.13111311131112,211.19111911191118,211.25112511251126,211.31113111311132,211.37113711371137,211.43114311431142,211.49114911491148,211.55115511551156,211.61116111611162,211.67116711671167,211.73117311731173,211.79117911791178,211.85118511851186,211.91119111911192,211.97119711971197,212.03120312031203,212.09120912091208,212.15121512151214,212.21122112211222,212.27122712271228,212.33123312331233,212.39123912391238,212.45124512451244,212.51125112511252,212.57125712571258,212.63126312631263,212.6912691269127,212.75127512751274,212.81128112811282,212.87128712871288,212.93129312931293,212.991299129913,213.05130513051304,213.1113111311131,213.17131713171318,213.23132313231324,213.2913291329133,213.35133513351334,213.4113411341134,213.47134713471348,213.53135313531354,213.5913591359136,213.65136513651365,213.7113711371137,213.77137713771378,213.83138313831384,213.8913891389139,213.95139513951395,214.011401140114,214.07140714071406,214.13141314131414,214.1914191419142,214.25142514251425,214.3114311431143,214.37143714371436,214.43144314431444,214.4914491449145,214.55145514551455,214.6114611461146,214.67146714671466,214.73147314731474,214.7914791479148,214.85148514851485,214.9114911491149,214.97149714971496,215.03150315031502,215.0915091509151,215.15151515151516,215.2115211521152,215.27152715271527,215.33153315331532,215.3915391539154,215.45154515451546,215.5115511551155,215.57155715571557,215.63156315631562,215.6915691569157,215.75157515751576,215.8115811581158,215.87158715871587,215.93159315931592,215.99159915991598,216.05160516051606,216.11161116111612,216.17161716171617,216.23162316231623,216.29162916291628,216.35163516351636,216.41164116411642,216.47164716471647,216.53165316531653,216.59165916591658,216.65166516651666,216.71167116711672,216.77167716771677,216.83168316831683,216.89168916891688,216.95169516951694,217.01170117011702,217.07170717071708,217.13171317131713,217.19171917191719,217.25172517251724,217.31173117311732,217.37173717371738,217.43174317431743,217.4917491749175,217.55175517551754,217.61176117611762,217.67176717671768,217.73177317731773,217.7917791779178,217.85178517851784,217.9117911791179,217.97179717971798,218.03180318031804,218.0918091809181,218.15181518151815,218.2118211821182,218.27182718271828,218.33183318331834,218.3918391839184,218.45184518451845,218.5118511851185,218.57185718571859,218.63186318631864,218.6918691869187,218.75187518751875,218.8118811881188,218.87188718871886,218.93189318931894,218.991899189919,219.05190519051905,219.1119111911191,219.17191719171916,219.23192319231924,219.2919291929193,219.35193519351935,219.4119411941194,219.47194719471946,219.53195319531955,219.5919591959196,219.65196519651965,219.7119711971197,219.77197719771976,219.83198319831982,219.8919891989199,219.95199519951996,220.01200120012,220.07200720072007,220.13201320132012,220.1920192019202,220.25202520252026,220.3120312031203,220.37203720372037,220.43204320432042,220.4920492049205,220.55205520552056,220.61206120612061,220.67206720672067,220.73207320732072,220.79207920792078,220.85208520852086,220.91209120912092,220.97209720972097,221.03210321032103,221.09210921092108,221.15211521152116,221.21212121212122,221.27212721272127,221.33213321332133,221.39213921392138,221.45214521452147,221.51215121512152,221.57215721572157,221.63216321632163,221.69216921692168,221.75217521752174,221.81218121812182,221.87218721872188,221.93219321932193,221.99219921992199,222.05220522052204,222.11221122112212,222.17221722172218,222.23222322232223,222.2922292229223,222.35223522352234,222.41224122412243,222.47224722472248,222.53225322532253,222.5922592259226,222.65226522652264,222.7122712271227,222.77227722772278,222.83228322832284,222.8922892289229,222.95229522952295,223.012301230123,223.07230723072308,223.13231323132314,223.1923192319232,223.25232523252325,223.3123312331233,223.37233723372339,223.43234323432344,223.4923492349235,223.55235523552355,223.6123612361236,223.67236723672366,223.73237323732374,223.7923792379238,223.85238523852385,223.9123912391239,223.97239723972396,224.03240324032404,224.0924092409241,224.15241524152415,224.2124212421242,224.27242724272426,224.33243324332435,224.3924392439244,224.45244524452445,224.5124512451245,224.57245724572456,224.63246324632462,224.6924692469247,224.75247524752476,224.8124812481248,224.87248724872487,224.93249324932492,224.992499249925,225.05250525052506,225.1125112511251,225.17251725172517,225.23252325232522,225.2925292529253,225.35253525352536,225.41254125412541,225.47254725472547,225.53255325532552,225.59255925592558,225.65256525652566,225.71257125712572,225.77257725772577,225.83258325832583,225.89258925892588,225.95259525952596,226.01260126012602,226.07260726072607,226.13261326132613,226.19261926192618,226.25262526252627,226.31263126312632,226.37263726372638,226.43264326432643,226.49264926492648,226.55265526552654,226.61266126612662,226.67266726672668,226.73267326732673,226.7926792679268,226.85268526852684,226.91269126912692,226.97269726972698,227.03270327032703,227.0927092709271,227.15271527152714,227.21272127212723,227.27272727272728,227.33273327332734,227.3927392739274,227.45274527452744,227.5127512751275,227.57275727572758,227.63276327632764,227.6927692769277,227.75277527752775,227.8127812781278,227.87278727872788,227.93279327932794,227.992799279928,228.05280528052805,228.1128112811281,228.1728172817282,228.23282328232824,228.2928292829283,228.35283528352835,228.4128412841284,228.47284728472846,228.53285328532854,228.5928592859286,228.65286528652865,228.7128712871287,228.77287728772876,228.83288328832884,228.8928892889289,228.95289528952895,229.012901290129,229.07290729072906,229.13291329132915,229.1929192919292,229.25292529252926,229.3129312931293,229.37293729372936,229.43294329432942,229.4929492949295,229.55295529552956,229.6129612961296,229.67296729672967,229.73297329732972,229.7929792979298,229.85298529852986,229.9129912991299,229.97299729972997,230.03300330033002,230.0930093009301,230.15301530153016,230.21302130213022,230.27302730273027,230.33303330333032,230.39303930393038,230.45304530453046,230.51305130513052,230.57305730573057,230.63306330633063,230.69306930693068,230.75307530753076,230.81308130813082,230.87308730873087,230.93309330933093,230.99309930993098,231.05310531053107,231.11311131113112,231.17311731173118,231.23312331233123,231.29312931293128,231.35313531353134,231.41314131413142,231.47314731473148,231.53315331533153,231.5931593159316,231.65316531653164,231.71317131713172,231.77317731773178,231.83318331833183,231.8931893189319,231.95319531953194,232.01320132013203,232.07320732073208,232.13321332133214,232.1932193219322,232.25322532253224,232.3132313231323,232.37323732373238,232.43324332433244,232.4932493249325,232.55325532553255,232.6132613261326,232.67326732673268,232.73327332733274,232.7932793279328,232.85328532853285,232.9132913291329,232.973297329733,233.03330333033304,233.0933093309331,233.15331533153315,233.2133213321332,233.27332733273326,233.33333333333334,233.3933393339334,233.45334533453345,233.5133513351335,233.57335733573356,233.63336333633364,233.6933693369337,233.75337533753375,233.8133813381338,233.87338733873386,233.93339333933395,233.993399339934,234.05340534053406,234.1134113411341,234.17341734173417,234.23342334233422,234.2934293429343,234.35343534353436,234.4134413441344,234.47344734473447,234.53345334533452,234.5934593459346,234.65346534653466,234.7134713471347,234.77347734773477,234.83348334833482,234.8934893489349,234.95349534953496,235.01350135013502,235.07350735073507,235.13351335133513,235.19351935193518,235.25352535253526,235.31353135313532,235.37353735373537,235.43354335433543,235.49354935493548,235.55355535553556,235.61356135613562,235.67356735673567,235.73357335733573,235.79357935793578,235.85358535853587,235.91359135913592,235.97359735973598,236.03360336033603,236.09360936093609,236.15361536153614,236.21362136213622,236.27362736273628,236.33363336333633,236.3936393639364,236.45364536453644,236.51365136513652,236.57365736573658,236.63366336633663,236.6936693669367,236.75367536753674,236.81368136813683,236.87368736873688,236.93369336933694,236.993699369937,237.05370537053705,237.1137113711371,237.17371737173718,237.23372337233724,237.2937293729373,237.35373537353735,237.4137413741374,237.47374737473748,237.53375337533754,237.5937593759376,237.65376537653765,237.7137713771377,237.7737773777378,237.83378337833784,237.8937893789379,237.95379537953795,238.013801380138,238.07380738073806,238.13381338133814,238.1938193819382,238.25382538253825,238.3138313831383,238.37383738373836,238.43384338433845,238.4938493849385,238.55385538553855,238.6138613861386,238.67386738673866,238.73387338733875,238.7938793879388,238.85388538853886,238.9138913891389,238.97389738973897,239.03390339033902,239.0939093909391,239.15391539153916,239.2139213921392,239.27392739273927,239.33393339333932,239.3939393939394,239.45394539453946,239.51395139513951,239.57395739573957,239.63396339633962,239.6939693969397,239.75397539753976,239.81398139813982,239.87398739873987,239.93399339933993,239.99399939993998,240.05400540054006,240.11401140114012,240.17401740174017,240.23402340234023,240.29402940294028,240.35403540354037,240.41404140414042,240.47404740474047,240.53405340534053,240.59405940594058,240.65406540654067,240.71407140714072,240.77407740774078,240.83408340834083,240.89408940894089,240.95409540954094,241.01410141014102,241.07410741074108,241.13411341134113,241.1941194119412,241.25412541254124,241.31413141314133,241.37413741374138,241.43414341434143,241.4941494149415,241.55415541554154,241.61416141614163,241.67416741674168,241.73417341734174,241.7941794179418,241.85418541854185,241.9141914191419,241.97419741974198,242.03420342034204,242.0942094209421,242.15421542154215,242.2142214221422,242.27422742274229,242.33423342334234,242.3942394239424,242.45424542454245,242.5142514251425,242.5742574257426,242.63426342634264,242.6942694269427,242.75427542754275,242.8142814281428,242.87428742874286,242.93429342934294,242.994299429943,243.05430543054305,243.1143114311431,243.17431743174316,243.23432343234325,243.2943294329433,243.35433543354335,243.4143414341434,243.47434743474346,243.53435343534355,243.5943594359436,243.65436543654366,243.7143714371437,243.77437743774377,243.83438343834382,243.8943894389439,243.95439543954396,244.014401440144,244.07440744074407,244.13441344134412,244.1944194419442,244.25442544254426,244.31443144314431,244.37443744374437,244.43444344434442,244.4944494449445,244.55445544554456,244.61446144614462,244.67446744674467,244.73447344734473,244.79447944794478,244.85448544854486,244.91449144914492,244.97449744974497,245.03450345034503,245.09450945094508,245.15451545154517,245.21452145214522,245.27452745274528,245.33453345334533,245.39453945394538,245.45454545454547,245.51455145514552,245.57455745574558,245.63456345634563,245.6945694569457,245.75457545754574,245.81458145814582,245.87458745874588,245.93459345934593,245.994599459946,246.05460546054604,246.11461146114613,246.17461746174618,246.23462346234624,246.2946294629463,246.35463546354634,246.41464146414643,246.47464746474648,246.53465346534654,246.5946594659466,246.65466546654665,246.7146714671467,246.77467746774678,246.83468346834684,246.8946894689469,246.95469546954695,247.014701470147,247.0747074707471,247.13471347134714,247.1947194719472,247.25472547254725,247.3147314731473,247.3747374737474,247.43474347434744,247.4947494749475,247.55475547554755,247.6147614761476,247.67476747674766,247.73477347734774,247.7947794779478,247.85478547854785,247.9147914791479,247.97479747974796,248.03480348034805,248.0948094809481,248.15481548154816,248.2148214821482,248.27482748274826,248.33483348334835,248.3948394839484,248.45484548454846,248.5148514851485,248.57485748574857,248.63486348634862,248.6948694869487,248.75487548754876,248.8148814881488,248.87488748874887,248.93489348934892,248.994899489949,249.05490549054906,249.11491149114912,249.17491749174917,249.23492349234922,249.2949294929493,249.35493549354936,249.41494149414942,249.47494749474947,249.53495349534953,249.59495949594958,249.65496549654966,249.71497149714972,249.77497749774977,249.83498349834983,249.89498949894988,249.95499549954997,250.01500150015002,250.07500750075008,250.13501350135013,250.19501950195018,250.25502550255027,250.31503150315032,250.37503750375038,250.43504350435043,250.4950495049505,250.55505550555054,250.61506150615062,250.67506750675068,250.73507350735073,250.7950795079508,250.85508550855084,250.91509150915093,250.97509750975098,251.03510351035104,251.0951095109511,251.15511551155114,251.21512151215123,251.27512751275128,251.33513351335134,251.3951395139514,251.45514551455145,251.5151515151515,251.57515751575158,251.63516351635164,251.6951695169517,251.75517551755175,251.8151815181518,251.8751875187519,251.93519351935194,251.995199519952,252.05520552055205,252.1152115211521,252.1752175217522,252.23522352235224,252.2952295229523,252.35523552355235,252.4152415241524,252.47524752475246,252.53525352535254,252.5952595259526,252.65526552655265,252.7152715271527,252.77527752775276,252.83528352835285,252.8952895289529,252.95529552955296,253.015301530153,253.07530753075307,253.13531353135315,253.1953195319532,253.25532553255326,253.3153315331533,253.37533753375337,253.43534353435342,253.4953495349535,253.55535553555356,253.6153615361536,253.67536753675367,253.73537353735372,253.7953795379538,253.85538553855386,253.91539153915392,253.97539753975397,254.03540354035403,254.0954095409541,254.15541554155416,254.21542154215422,254.27542754275427,254.33543354335433,254.39543954395438,254.45544554455446,254.51545154515452,254.57545754575457,254.63546354635463,254.69546954695468,254.75547554755477,254.81548154815482,254.87548754875488,254.93549354935493,254.99549954995499,255.05550555055507,255.11551155115512,255.17551755175518,255.23552355235523,255.2955295529553,255.35553555355534,255.41554155415542,255.47554755475548,255.53555355535553,255.5955595559556,255.65556555655564,255.71557155715573,255.77557755775578,255.83558355835584,255.8955895589559,255.95559555955595,256.01560156015603,256.07560756075605,256.13561356135614,256.1956195619562,256.25562556255625,256.31563156315633,256.37563756375636,256.43564356435644,256.4956495649565,256.55565556555655,256.61566156615663,256.67566756675666,256.73567356735674,256.79567956795677,256.85568556855685,256.91569156915693,256.97569756975696,257.03570357035704,257.09570957095707,257.15571557155715,257.21572157215724,257.27572757275726,257.33573357335734,257.39573957395737,257.45574557455745,257.51575157515754,257.57575757575756,257.63576357635765,257.6957695769577,257.75577557755776,257.81578157815784,257.87578757875787,257.93579357935795,257.995799579958,258.05580558055806,258.11581158115814,258.17581758175817,258.23582358235825,258.2958295829583,258.35583558355836,258.41584158415844,258.47584758475847,258.53585358535855,258.5958595859586,258.65586558655866,258.7158715871587,258.77587758775877,258.83588358835885,258.8958895889589,258.95589558955896,259.015901590159,259.0759075907591,259.13591359135916,259.1959195919592,259.25592559255927,259.3159315931593,259.3759375937594,259.43594359435946,259.4959495949595,259.55595559555957,259.6159615961596,259.6759675967597,259.73597359735976,259.7959795979598,259.85598559855987,259.9159915991599,259.97599759976,260.03600360036006,260.0960096009601,260.15601560156017,260.2160216021602,260.2760276027603,260.33603360336036,260.3960396039604,260.4560456045605,260.5160516051605,260.5760576057606,260.6360636063606,260.6960696069607,260.7560756075608,260.8160816081608,260.8760876087609,260.9360936093609,260.996099609961,261.0561056105611,261.1161116111611,261.1761176117612,261.2361236123612,261.2961296129613,261.3561356135614,261.4161416141614,261.4761476147615,261.5361536153615,261.5961596159616,261.6561656165617,261.7161716171617,261.7761776177618,261.8361836183618,261.8961896189619,261.956195619562,262.016201620162,262.0762076207621,262.1362136213621,262.1962196219622,262.2562256225623,262.3162316231623,262.3762376237624,262.4362436243624,262.4962496249625,262.5562556255625,262.6162616261626,262.6762676267627,262.7362736273627,262.7962796279628,262.85628562856283,262.9162916291629,262.976297629763,263.036303630363,263.0963096309631,263.15631563156313,263.2163216321632,263.2763276327633,263.3363336333633,263.3963396339634,263.45634563456343,263.5163516351635,263.5763576357636,263.6363636363636,263.6963696369637,263.75637563756374,263.8163816381638,263.8763876387639,263.9363936393639,263.996399639964,264.05640564056404,264.1164116411641,264.1764176417642,264.23642364236423,264.2964296429643,264.35643564356434,264.4164416441644,264.47644764476445,264.53645364536453,264.5964596459646,264.65646564656464,264.7164716471647,264.77647764776475,264.83648364836483,264.8964896489649,264.95649564956494,265.016501650165,265.07650765076505,265.13651365136514,265.1965196519652,265.25652565256524,265.3165316531653,265.37653765376535,265.43654365436544,265.4965496549655,265.55655565556555,265.61656165616563,265.67656765676566,265.73657365736574,265.7965796579658,265.85658565856585,265.91659165916593,265.97659765976596,266.03660366036604,266.0966096609661,266.15661566156615,266.21662166216623,266.27662766276626,266.33663366336634,266.39663966396637,266.45664566456645,266.51665166516653,266.57665766576656,266.63666366636664,266.69666966696667,266.75667566756675,266.81668166816684,266.87668766876686,266.93669366936695,266.996699669967,267.05670567056706,267.11671167116714,267.17671767176716,267.23672367236725,267.2967296729673,267.35673567356736,267.41674167416744,267.47674767476747,267.53675367536755,267.5967596759676,267.65676567656766,267.71677167716774,267.77677767776777,267.83678367836785,267.8967896789679,267.95679567956796,268.01680168016804,268.07680768076807,268.13681368136815,268.1968196819682,268.25682568256826,268.3168316831683,268.3768376837684,268.43684368436845,268.4968496849685,268.55685568556856,268.6168616861686,268.6768676867687,268.73687368736876,268.7968796879688,268.85688568856887,268.9168916891689,268.976897689769,269.03690369036906,269.0969096909691,269.15691569156917,269.2169216921692,269.2769276927693,269.33693369336936,269.3969396939694,269.45694569456947,269.5169516951695,269.5769576957696,269.63696369636966,269.6969696969697,269.75697569756977,269.8169816981698,269.8769876987699,269.93699369936996,269.99699969997,270.0570057005701,270.1170117011701,270.1770177017702,270.2370237023702,270.2970297029703,270.3570357035704,270.4170417041704,270.4770477047705,270.5370537053705,270.5970597059706,270.6570657065707,270.7170717071707,270.7770777077708,270.8370837083708,270.8970897089709,270.957095709571,271.017101710171,271.0771077107711,271.1371137113711,271.1971197119712,271.2571257125713,271.3171317131713,271.3771377137714,271.4371437143714,271.4971497149715,271.5571557155716,271.6171617161716,271.6771677167717,271.7371737173717,271.7971797179718,271.8571857185719,271.9171917191719,271.977197719772,272.037203720372,272.0972097209721,272.15721572157213,272.2172217221722,272.2772277227723,272.3372337233723,272.3972397239724,272.45724572457243,272.5172517251725,272.5772577257726,272.6372637263726,272.6972697269727,272.75727572757273,272.8172817281728,272.8772877287729,272.9372937293729,272.997299729973,273.05730573057303,273.1173117311731,273.1773177317732,273.2373237323732,273.2973297329733,273.35733573357334,273.4173417341734,273.4773477347735,273.53735373537353,273.5973597359736,273.65736573657364,273.7173717371737,273.7773777377738,273.83738373837383,273.8973897389739,273.95739573957394,274.017401740174,274.07740774077405,274.13741374137413,274.1974197419742,274.25742574257424,274.3174317431743,274.37743774377435,274.43744374437443,274.4974497449745,274.55745574557454,274.6174617461746,274.67746774677465,274.73747374737474,274.7974797479748,274.85748574857485,274.9174917491749,274.97749774977495,275.03750375037504,275.0975097509751,275.15751575157515,275.21752175217523,275.27752775277526,275.33753375337534,275.3975397539754,275.45754575457545,275.51755175517553,275.57755775577556,275.63756375637564,275.6975697569757,275.75757575757575,275.81758175817583,275.87758775877586,275.93759375937594,275.99759975997597,276.05760576057605,276.11761176117614,276.17761776177616,276.23762376237624,276.29762976297627,276.35763576357635,276.41764176417644,276.47764776477646,276.53765376537655,276.5976597659766,276.65766576657666,276.71767176717674,276.77767776777677,276.83768376837685,276.8976897689769,276.95769576957696,277.01770177017704,277.07770777077707,277.13771377137715,277.1977197719772,277.25772577257726,277.31773177317734,277.37773777377737,277.43774377437745,277.4977497749775,277.55775577557756,277.61776177617764,277.67776777677767,277.73777377737775,277.7977797779778,277.85778577857786,277.9177917791779,277.977797779778,278.03780378037806,278.0978097809781,278.15781578157817,278.2178217821782,278.2778277827783,278.33783378337836,278.3978397839784,278.45784578457847,278.5178517851785,278.5778577857786,278.63786378637866,278.6978697869787,278.75787578757877,278.8178817881788,278.8778877887789,278.93789378937896,278.997899789979,279.05790579057907,279.1179117911791,279.1779177917792,279.23792379237926,279.2979297929793,279.3579357935794,279.4179417941794,279.4779477947795,279.53795379537956,279.5979597959796,279.6579657965797,279.7179717971797,279.7779777977798,279.8379837983798,279.8979897989799,279.95799579958,280.01800180018,280.0780078007801,280.1380138013801,280.1980198019802,280.2580258025803,280.3180318031803,280.3780378037804,280.4380438043804,280.4980498049805,280.5580558055806,280.6180618061806,280.6780678067807,280.7380738073807,280.7980798079808,280.8580858085809,280.9180918091809,280.978097809781,281.038103810381,281.0981098109811,281.1581158115812,281.2181218121812,281.2781278127813,281.3381338133813,281.3981398139814,281.4581458145815,281.5181518151815,281.5781578157816,281.6381638163816,281.6981698169817,281.75817581758173,281.8181818181818,281.8781878187819,281.9381938193819,281.998199819982,282.05820582058203,282.1182118211821,282.1782178217822,282.2382238223822,282.2982298229823,282.35823582358233,282.4182418241824,282.4782478247825,282.5382538253825,282.5982598259826,282.65826582658264,282.7182718271827,282.7782778277828,282.8382838283828,282.8982898289829,282.95829582958294,283.018301830183,283.0783078307831,283.13831383138313,283.1983198319832,283.25832583258324,283.3183318331833,283.3783378337834,283.43834383438343,283.4983498349835,283.55835583558354,283.6183618361836,283.67836783678365,283.73837383738373,283.7983798379838,283.85838583858384,283.9183918391839,283.97839783978395,284.03840384038403,284.0984098409841,284.15841584158414,284.2184218421842,284.27842784278425,284.33843384338434,284.3984398439844,284.45844584458445,284.51845184518453,284.57845784578456,284.63846384638464,284.6984698469847,284.75847584758475,284.81848184818483,284.87848784878486,284.93849384938494,284.998499849985,285.05850585058505,285.11851185118513,285.17851785178516,285.23852385238524,285.2985298529853,285.35853585358535,285.41854185418543,285.47854785478546,285.53855385538554,285.59855985598557,285.65856585658565,285.71857185718574,285.77857785778576,285.83858385838585,285.8985898589859,285.95859585958596,286.01860186018604,286.07860786078606,286.13861386138615,286.1986198619862,286.25862586258626,286.31863186318634,286.37863786378637,286.43864386438645,286.4986498649865,286.55865586558656,286.61866186618664,286.67866786678667,286.73867386738675,286.7986798679868,286.85868586858686,286.91869186918694,286.97869786978697,287.03870387038705,287.0987098709871,287.15871587158716,287.21872187218725,287.2787278727873,287.33873387338735,287.3987398739874,287.45874587458746,287.5187518751875,287.5787578757876,287.63876387638766,287.6987698769877,287.75877587758777,287.8187818781878,287.8787878787879,287.93879387938796,287.998799879988,288.05880588058807,288.1188118811881,288.1788178817882,288.23882388238826,288.2988298829883,288.35883588358837,288.4188418841884,288.4788478847885,288.53885388538856,288.5988598859886,288.65886588658867,288.7188718871887,288.7788778877888,288.83888388838886,288.8988898889889,288.958895889589,289.018901890189,289.0789078907891,289.13891389138917,289.1989198919892,289.2589258925893,289.3189318931893,289.3789378937894,289.4389438943894,289.4989498949895,289.5589558955896,289.6189618961896,289.6789678967897,289.7389738973897,289.7989798979898,289.8589858985899,289.9189918991899,289.97899789979,290.03900390039,290.0990099009901,290.1590159015902,290.2190219021902,290.2790279027903,290.3390339033903,290.3990399039904,290.4590459045905,290.5190519051905,290.5790579057906,290.6390639063906,290.6990699069907,290.7590759075908,290.8190819081908,290.8790879087909,290.9390939093909,290.999099909991,291.0591059105911,291.1191119111911,291.1791179117912,291.2391239123912,291.2991299129913,291.35913591359133,291.4191419141914,291.4791479147915,291.5391539153915,291.5991599159916,291.65916591659163,291.7191719171917,291.7791779177918,291.8391839183918,291.8991899189919,291.95919591959193,292.019201920192,292.0792079207921,292.1392139213921,292.1992199219922,292.25922592259224,292.3192319231923,292.3792379237924,292.43924392439243,292.4992499249925,292.55925592559254,292.6192619261926,292.6792679267927,292.73927392739273,292.7992799279928,292.85928592859284,292.9192919291929,292.979297929793,293.03930393039303,293.0993099309931,293.15931593159314,293.2193219321932,293.27932793279325,293.33933393339333,293.3993399339934,293.45934593459344,293.5193519351935,293.57935793579355,293.63936393639364,293.6993699369937,293.75937593759375,293.8193819381938,293.87938793879385,293.93939393939394,293.999399939994,294.05940594059405,294.11941194119413,294.17941794179416,294.23942394239424,294.2994299429943,294.35943594359435,294.41944194419443,294.47944794479446,294.53945394539454,294.5994599459946,294.65946594659465,294.71947194719473,294.77947794779476,294.83948394839484,294.8994899489949,294.95949594959495,295.01950195019504,295.07950795079506,295.13951395139514,295.19951995199517,295.25952595259525,295.31953195319534,295.37953795379536,295.43954395439545,295.4995499549955,295.55955595559556,295.61956195619564,295.67956795679567,295.73957395739575,295.7995799579958,295.85958595859586,295.91959195919594,295.97959795979597,296.03960396039605,296.0996099609961,296.15961596159616,296.21962196219624,296.27962796279627,296.33963396339635,296.3996399639964,296.45964596459646,296.51965196519654,296.57965796579657,296.63966396639665,296.6996699669967,296.75967596759676,296.81968196819685,296.8796879687969,296.93969396939696,296.999699969997,297.05970597059707,297.1197119711971,297.1797179717972,297.23972397239726,297.2997299729973,297.35973597359737,297.4197419741974,297.4797479747975,297.53975397539756,297.5997599759976,297.65976597659767,297.7197719771977,297.7797779777978,297.83978397839786,297.8997899789979,297.95979597959797,298.019801980198,298.0798079807981,298.13981398139816,298.1998199819982,298.2598259825983,298.3198319831983,298.3798379837984,298.43984398439846,298.4998499849985,298.5598559855986,298.6198619861986,298.6798679867987,298.73987398739877,298.7998799879988,298.8598859885989,298.9198919891989,298.979897989799,299.039903990399,299.0999099909991,299.1599159915992,299.2199219921992,299.2799279927993,299.3399339933993,299.3999399939994,299.4599459945995,299.5199519951995,299.5799579957996,299.6399639963996,299.6999699969997,299.7599759975998,299.8199819981998,299.8799879987999,299.9399939993999,300.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl deleted file mode 100644 index 8de28714ae8b..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/fixtures/julia/runner.jl +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env julia -# -# @license Apache-2.0 -# -# Copyright (c) 2018 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, filepath ) - -Generate fixture data and write to file. - -# Arguments - -* `x`: domain -* `filepath::AbstractString`: filepath of the output file - -# Examples - -``` julia -julia> x = range( -1000, stop = 1000, length = 2001 ); -julia> gen( x, \"./data.json\" ); -``` -""" -function gen( x, filepath ) - y = Array{Float32}( undef, length(x) ); - for i in eachindex(x) - y[i] = exp( Float32.(x[i]) ); - end - - data = Dict([ - ("x", x), - ("expected", y) - ]); - - 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 ); - -x = range( -300, stop = 300, length = 10000 ); -out = joinpath( dir, "data.json" ); -gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js b/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js deleted file mode 100644 index b7326f339a00..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/scripts/precision.js +++ /dev/null @@ -1,60 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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'; - -// TODO: clean-up - -// MODULES // - -var divide = require( 'compute-divide' ); -var mean = require( 'compute-mean' ); -var subtract = require( 'compute-subtract' ); -var absf = require( '@stdlib/math/base/special/absf' ); -var expf = require( './../lib' ); - - -// FIXTURES // - -var data = require( './fixtures/julia/data.json' ); - - -// MAIN // - -var customErrs; -var nativeErrs; -var yexpected; -var ycustom; -var ynative; -var x; -var i; - -x = data.x; -yexpected = data.expected; -ycustom = new Array( x.length ); -ynative = new Array( x.length ); -for ( i = 0; i < x.length; i++ ) { - ycustom[ i ] = expf( x[ i ] ); - ynative[ i ] = Math.expf( x[ i ] ); -} - -customErrs = absf( divide( subtract( ycustom, yexpected ), yexpected ) ); -nativeErrs = absf( divide( subtract( ynative, yexpected ), yexpected ) ); - -console.log( 'The mean relative error of Math.expf compared to Julia is %d', mean( nativeErrs ) ); -console.log( 'The mean relative error of this module compared to Julia is %d', mean( customErrs ) ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/expf/src/Makefile deleted file mode 100644 index f79b87238713..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -#/ -# @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/expf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c deleted file mode 100644 index b8812a179852..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/addon.c +++ /dev/null @@ -1,24 +0,0 @@ - -/** -* @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/napi/unary.h" -#include "stdlib/math/base/special/expf.h" - -// cppcheck-suppress shadowFunction -STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_expf ) diff --git a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c b/lib/node_modules/@stdlib/math/base/special/expf/src/main.c deleted file mode 100644 index 26a7f1adcd3e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/src/main.c +++ /dev/null @@ -1,228 +0,0 @@ -/** -* @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. -* -* -* ## Notice -* -* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript. -* -* e_expf.c -- float version of e_exp.c. -* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. -* ==================================================== -* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. -* Developed at SunPro, a Sun Microsystems, Inc. business. -* Permission to use, copy, modify, and distribute this -* software is freely granted, provided that this notice -* is preserved. -* ==================================================== -*/ - -#include "stdlib/constants/float32/ninf.h" -#include "stdlib/constants/float32/pinf.h" -#include "stdlib/math/base/assert/is_nan.h" -#include "stdlib/math/base/special/expf.h" -#include "stdlib/math/base/special/ldexpf.h" -#include "stdlib/math/base/special/truncf.h" -#include - -static const float LN2_HI = 6.9314575195e-01; -static const float LN2_LO = 1.4286067653e-06; -static const float LOG2_E = 1.4426950216e+00; -static const float half[ 2 ] = { 0.5, -0.5 }; -static const float EXP_OVERFLOW = 8.8721679688e+01; -static const float EXP_UNDERFLOW = -1.0397208405e+02; -static const float NEARZERO = 1.0 / ( 1 << 14 ); -static const float NEG_NEARZERO = -1.0 / ( 1 << 14 ); - -/* Begin auto-generated functions. The following functions are auto-generated. Do not edit directly. */ - -// BEGIN: polyval_p - -/** -* Evaluates a polynomial. -* -* ## Notes -* -* - The implementation uses [Horner's rule][horners-method] for efficient computation. -* -* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method -* -* @param x value at which to evaluate the polynomial -* @return evaluated polynomial -*/ -static float polyval_p( const float x ) { - return 0.1666662544f + (x * -0.0027667332906f); -} - -// END: polyval_p - -/* End auto-generated functions. */ - -/** -* Computes \\(e^{r} 2^k\\) where \\(r = \mathrm{hi} - \mathrm{lo}\\) and \\(|r| \leq \ln(2)/2\\). -* -* @param hi upper bound -* @param lo lower bound -* @param k power of 2 -* @return function value -*/ -static float expmulti( const float hi, const float lo, const int32_t k ) { - float r; - float t; - float c; - float y; - float twom100; - - twom100 = 7.8886090522e-31; - r = hi - lo; - t = r * r; - c = r - ( t * polyval_p( t ) ); - y = 1.0 - ( lo - ( ( r * c ) / ( 2.0 - c ) ) - hi ); - if ( k >= -125 ) { - return stdlib_base_ldexpf( y, k ); - } else { - return stdlib_base_ldexpf( y, k + 100 ) * twom100 * twom100; - } -} - -/** -* Evaluates the natural exponential function. -* -* ## Method -* -* 1. We reduce \\( x \\) to an \\( r \\) so that \\( |r| \leq 0.5 \cdot \ln(2) \approx 0.34658 \\). Given \\( x \\), we find an \\( r \\) and integer \\( k \\) such that -* -* ```tex -* \begin{align*} -* x &= k \cdot \ln(2) + r \\ -* |r| &\leq 0.5 \cdot \ln(2) -* \end{align*} -* ``` -* -* -* -* \\( r \\) can be represented as \\( r = \mathrm{hi} - \mathrm{lo} \\) for better accuracy. -* -* -* -* 2. We approximate of \\( e^{r} \\) by a special rational function on the interval \\(\[0,0.34658]\\): -* -* ```tex -* \begin{align*} -* R\left(r^2\right) &= r \cdot \frac{ e^{r}+1 }{ e^{r}-1 } \\ -* &= 2 + \frac{r^2}{6} - \frac{r^4}{360} + \ldots -* \end{align*} -* ``` -* -* We use a special Remes algorithm on \\(\[0,0.34658]\\) to generate a polynomial of degree \\(5\\) to approximate \\(R\\). The maximum error of this polynomial approximation is bounded by \\(2^{-59}\\). In other words, -* -* ```tex -* R(z) \sim 2 + P_1 z + P_2 z^2 + P_3 z^3 + P_4 z^4 + P_5 z^5 -* ``` -* -* where \\( z = r^2 \\) and -* -* ```tex -* \left| 2 + P_1 z + \ldots + P_5 z^5 - R(z) \right| \leq 2^{-59} -* ``` -* -* -* -* The values of \\( P_1 \\) to \\( P_5 \\) are listed in the source code. -* -* -* -* The computation of \\( e^{r} \\) thus becomes -* -* ```tex -* \begin{align*} -* e^{r} &= 1 + \frac{2r}{R-r} \\ -* &= 1 + r + \frac{r \cdot R_1(r)}{2 - R_1(r)}\ \text{for better accuracy} -* \end{align*} -* ``` -* -* where -* -* ```tex -* R_1(r) = r - P_1\ r^2 + P_2\ r^4 + \ldots + P_5\ r^{10} -* ``` -* -* 3. We scale back to obtain \\( e^{x} \\). From step 1, we have -* -* ```tex -* e^{x} = 2^k e^{r} -* ``` -* -* -* ## Special Cases -* -* ```tex -* \begin{align*} -* e^\infty &= \infty \\ -* e^{-\infty} &= 0 \\ -* e^{\mathrm{NaN}} &= \mathrm{NaN} \\ -* e^0 &= 1\ \mathrm{is\ exact\ for\ finite\ argument\ only} -* \end{align*} -* ``` -* -* ## Notes -* -* - According to an error analysis, the error is always less than \\(1\\) ulp (unit in the last place). -* -* - For an IEEE double, -* -* - if \\(x > 7.09782712893383973096\mbox{e+}02\\), then \\(e^{x}\\) overflows -* - if \\(x < -7.45133219101941108420\mbox{e+}02\\), then \\(e^{x}\\) underflows -* -* - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values. -* -* @param x input value -* @return output value -* -* @example -* double out = stdlib_base_expf( 0.0f ); -* // returns 1.0f -*/ -float stdlib_base_expf( const float x ) { - float hi; - float lo; - int32_t k; - int xsb; - - xsb = ( x < 0.0 ) ? 1 : 0; - if ( stdlib_base_is_nan( x ) || x == STDLIB_CONSTANT_FLOAT32_PINF ) { - return x; - } - if ( x == STDLIB_CONSTANT_FLOAT32_NINF ) { - return 0.0; - } - if ( x > EXP_OVERFLOW ) { - return STDLIB_CONSTANT_FLOAT32_PINF; - } - if ( x < EXP_UNDERFLOW ) { - return 0.0; - } - if ( x > NEG_NEARZERO && x < NEARZERO ) { - return 1.0 + x; - } - // Reduce and compute `r = hi - lo` for extra precision... - k = stdlib_base_truncf( ( LOG2_E * x ) + half[ xsb ] ); - hi = x - ( k * LN2_HI ); - lo = k * LN2_LO; - - return expmulti( hi, lo, k ); -} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE deleted file mode 100644 index 308c3be89c85..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/REQUIRE +++ /dev/null @@ -1,2 +0,0 @@ -julia 1.5 -JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json deleted file mode 100644 index d46efac5d01c..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_negative_float32.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[1.8189001e-38,1.9835017e-38,2.1630152e-38,2.3587575e-38,2.5722134e-38,2.804986e-38,3.0588232e-38,3.3356315e-38,3.6375175e-38,3.9666948e-38,4.3256612e-38,4.717112e-38,5.1439873e-38,5.6095356e-38,6.117171e-38,6.6707446e-38,7.2744144e-38,7.932713e-38,8.650584e-38,9.433491e-38,1.0287175e-37,1.1218114e-37,1.2233297e-37,1.3340351e-37,1.4547587e-37,1.5864192e-37,1.7299823e-37,1.8865372e-37,2.0572595e-37,2.2434313e-37,2.4464694e-37,2.6678629e-37,2.9092911e-37,3.1725677e-37,3.4596694e-37,3.7727524e-37,4.1141993e-37,4.486514e-37,4.8925213e-37,5.33527e-37,5.818086e-37,6.344594e-37,6.918801e-37,7.544918e-37,8.227696e-37,8.9722625e-37,9.784208e-37,1.0669711e-36,1.1635267e-36,1.2688202e-36,1.3836421e-36,1.5088549e-36,1.6453988e-36,1.794313e-36,1.9566894e-36,2.13376e-36,2.3268548e-36,2.5374237e-36,2.7670691e-36,3.017475e-36,3.290542e-36,3.5883196e-36,3.913045e-36,4.267156e-36,4.653348e-36,5.0744532e-36,5.533666e-36,6.034435e-36,6.580522e-36,7.1760264e-36,7.825481e-36,8.5336485e-36,9.305902e-36,1.014804e-35,1.10663875e-35,1.2067933e-35,1.3160021e-35,1.4350938e-35,1.5649627e-35,1.706584e-35,1.8610215e-35,2.0294502e-35,2.2131055e-35,2.4133806e-35,2.6317795e-35,2.8699425e-35,3.1296822e-35,3.412903e-35,3.7217537e-35,4.058554e-35,4.4258332e-35,4.826349e-35,5.26315e-35,5.739439e-35,6.25883e-35,6.825223e-35,7.442872e-35,8.1164154e-35,8.850978e-35,9.651949e-35,1.0525402e-34,1.1477899e-34,1.2516592e-34,1.3649386e-34,1.4884587e-34,1.6231569e-34,1.7700446e-34,1.9302249e-34,2.1049006e-34,2.2954014e-34,2.5031238e-34,2.7296441e-34,2.9766635e-34,3.2460367e-34,3.539787e-34,3.86015e-34,4.209474e-34,4.5904106e-34,5.00582e-34,5.458822e-34,5.952864e-34,6.491569e-34,7.079024e-34,7.71964e-34,8.41823e-34,9.180038e-34,1.00108625e-33,1.0916796e-33,1.19047125e-33,1.298203e-33,1.4156839e-33,1.5438081e-33,1.683515e-33,1.8358649e-33,2.0020015e-33,2.183173e-33,2.3807392e-33,2.5962042e-33,2.8311478e-33,3.0873525e-33,3.366743e-33,3.6714164e-33,4.0036614e-33,4.3660064e-33,4.7611084e-33,5.191965e-33,5.6618123e-33,6.174178e-33,6.732963e-33,7.342262e-33,8.0067005e-33,8.731267e-33,9.521404e-33,1.0383044e-32,1.1322744e-32,1.2347397e-32,1.3464775e-32,1.468327e-32,1.6012035e-32,1.7461178e-32,1.9041328e-32,2.0764474e-32,2.2643556e-32,2.4692687e-32,2.6927252e-32,2.936426e-32,3.202158e-32,3.4919373e-32,3.8079405e-32,4.1525405e-32,4.528325e-32,4.9381536e-32,5.385032e-32,5.872351e-32,6.4037694e-32,6.9832787e-32,7.615289e-32,8.3044356e-32,9.0559456e-32,9.875464e-32,1.0769145e-31,1.1743699e-31,1.2806543e-31,1.3965472e-31,1.5229278e-31,1.6607454e-31,1.8110345e-31,1.9749243e-31,2.1536615e-31,2.3485573e-31,2.56109e-31,2.792856e-31,3.0455958e-31,3.3212326e-31,3.6217877e-31,3.9495416e-31,4.3069553e-31,4.6967135e-31,5.121743e-31,5.585278e-31,6.090718e-31,6.641898e-31,7.242957e-31,7.898409e-31,8.613241e-31,9.392697e-31,1.024269e-30,1.1169603e-30,1.2180396e-30,1.3282662e-30,1.4484788e-30,1.579559e-30,1.7225013e-30,1.878379e-30,2.0483632e-30,2.2337298e-30,2.43589e-30,2.6563259e-30,2.8967104e-30,3.1588482e-30,3.4447085e-30,3.756466e-30,4.096408e-30,4.4671125e-30,4.871364e-30,5.3121985e-30,5.7929264e-30,6.317206e-30,6.8888814e-30,7.512291e-30,8.192117e-30,8.933463e-30,9.741971e-30,1.0623572e-29,1.1584952e-29,1.2633333e-29,1.3776588e-29,1.5023301e-29,1.6382959e-29,1.7865537e-29,1.948228e-29,2.1245329e-29,2.3167926e-29,2.526451e-29,2.7551033e-29,3.0044266e-29,3.2763123e-29,3.5728023e-29,3.8961232e-29,4.2487357e-29,4.6332253e-29,5.052509e-29,5.5097365e-29,6.0083405e-29,6.5520654e-29,7.1450496e-29,7.791641e-29,8.496746e-29,9.26566e-29,1.0104156e-28,1.1018532e-28,1.2015747e-28,1.3103113e-28,1.4288879e-28,1.5581952e-28,1.6992107e-28,1.8529808e-28,2.0206664e-28,2.2035352e-28,2.4029443e-28,2.6204087e-28,2.8575427e-28,3.1161364e-28,3.3981443e-28,3.7056594e-28,4.0410035e-28,4.406711e-28,4.8054966e-28,5.24037e-28,5.71462e-28,6.2317643e-28,6.7957083e-28,7.4107146e-28,8.081347e-28,8.812703e-28,9.610209e-28,1.0479886e-27,1.1428307e-27,1.2462513e-27,1.3590308e-27,1.4820221e-27,1.6161378e-27,1.7623902e-27,1.9218851e-27,2.0958062e-27,2.2854664e-27,2.4922993e-27,2.7178402e-27,2.9638026e-27,3.232012e-27,3.524493e-27,3.843457e-27,4.1912708e-27,4.57056e-27,4.9841923e-27,5.435237e-27,5.927099e-27,6.463497e-27,7.048411e-27,7.686258e-27,8.381858e-27,9.140375e-27,9.967534e-27,1.0869588e-26,1.1853231e-26,1.292594e-26,1.4095673e-26,1.5371263e-26,1.676235e-26,1.827926e-26,1.9933443e-26,2.1737403e-26,2.370453e-26,2.5849675e-26,2.8189048e-26,3.0740017e-26,3.352184e-26,3.655554e-26,3.9863634e-26,4.3471262e-26,4.7405197e-26,5.169513e-26,5.6373504e-26,6.1475024e-26,6.703821e-26,7.3105114e-26,7.972077e-26,8.6935103e-26,9.480266e-26,1.03381836e-25,1.1273738e-25,1.2294003e-25,1.3406549e-25,1.4619831e-25,1.5942854e-25,1.7385603e-25,1.8958986e-25,2.0674681e-25,2.2545637e-25,2.4586001e-25,2.6810912e-25,2.9237167e-25,3.1883108e-25,3.4768371e-25,3.7914736e-25,4.134599e-25,4.5087596e-25,4.916799e-25,5.361745e-25,5.8469567e-25,6.3761014e-25,6.9531073e-25,7.582329e-25,8.268524e-25,9.016785e-25,9.832759e-25,1.0722616e-24,1.169296e-24,1.2751115e-24,1.3905081e-24,1.5163421e-24,1.6535636e-24,1.8032098e-24,1.9663914e-24,2.1443484e-24,2.3384013e-24,2.550015e-24,2.7807893e-24,3.0324371e-24,3.3068576e-24,3.6061258e-24,3.932462e-24,4.2883307e-24,4.676421e-24,5.0996142e-24,5.561104e-24,6.0643796e-24,6.613176e-24,7.211663e-24,7.864283e-24,8.575962e-24,9.35208e-24,1.0198397e-23,1.1121301e-23,1.212777e-23,1.32252736e-23,1.4422095e-23,1.5727283e-23,1.7150526e-23,1.8702564e-23,2.0395131e-23,2.224079e-23,2.4253563e-23,2.644839e-23,2.884184e-23,3.1452004e-23,3.4298252e-23,3.7402076e-23,4.0786936e-23,4.447795e-23,4.8502987e-23,5.2892467e-23,5.767897e-23,6.289864e-23,6.859091e-23,7.479805e-23,8.156722e-23,8.894865e-23,9.699806e-23,1.05776314e-22,1.1534854e-22,1.2578701e-22,1.3717064e-22,1.495839e-22,1.6312052e-22,1.778828e-22,1.939803e-22,2.1153457e-22,2.3067828e-22,2.5155353e-22,2.7431892e-22,2.9914343e-22,3.2621443e-22,3.5573659e-22,3.8792898e-22,4.2303465e-22,4.6131894e-22,5.03066e-22,5.4859104e-22,5.982381e-22,6.5237565e-22,7.1141243e-22,7.757947e-22,8.460003e-22,9.225591e-22,1.00605e-21,1.0970926e-21,1.1963786e-21,1.304645e-21,1.4227089e-21,1.5514629e-21,1.6918626e-21,1.8449678e-21,2.0119359e-21,2.1940063e-21,2.3925529e-21,2.609077e-21,2.8451857e-21,3.102661e-21,3.3834494e-21,3.6896347e-21,4.023544e-21,4.3876548e-21,4.784716e-21,5.217729e-21,5.6899077e-21,6.204816e-21,6.766347e-21,7.378668e-21,8.046401e-21,8.774594e-21,9.568652e-21,1.0434567e-20,1.1378887e-20,1.240862e-20,1.3531591e-20,1.4756133e-20,1.609149e-20,1.7547758e-20,1.9135743e-20,2.0867432e-20,2.275592e-20,2.4815216e-20,2.7060871e-20,2.950986e-20,3.2180357e-20,3.509252e-20,3.8268364e-20,4.1731462e-20,4.5508127e-20,4.9626387e-20,5.4117332e-20,5.9014904e-20,6.4355466e-20,7.0179315e-20,7.6530485e-20,8.345612e-20,9.1008485e-20,9.9244684e-20,1.08225836e-19,1.1801974e-19,1.2870044e-19,1.4034719e-19,1.5304792e-19,1.6689863e-19,1.8200213e-19,1.9847319e-19,2.1643403e-19,2.3602025e-19,2.5737988e-19,2.8067148e-19,3.0607086e-19,3.3377004e-19,3.639746e-19,3.9691248e-19,4.3283275e-19,4.72002e-19,5.147158e-19,5.612972e-19,6.1209184e-19,6.6748564e-19,7.2788983e-19,7.9376024e-19,8.6559493e-19,9.43927e-19,1.0293477e-18,1.1225029e-18,1.2240838e-18,1.3348573e-18,1.455661e-18,1.587391e-18,1.7310421e-18,1.8877e-18,2.0585277e-18,2.2448228e-18,2.447968e-18,2.6694971e-18,2.9110845e-18,3.1745231e-18,3.461802e-18,3.7750923e-18,4.1167195e-18,4.4892622e-18,4.895537e-18,5.3385587e-18,5.821672e-18,6.348529e-18,6.9230393e-18,7.549569e-18,8.232767e-18,8.977792e-18,9.790276e-18,1.0676247e-17,1.1642395e-17,1.2696022e-17,1.38449496e-17,1.509785e-17,1.6464193e-17,1.795412e-17,1.957888e-17,2.1350753e-17,2.3282891e-17,2.5389975e-17,2.7687643e-17,3.0193237e-17,3.29257e-17,3.5905313e-17,3.9154568e-17,4.2698024e-17,4.6561987e-17,5.0775615e-17,5.537077e-17,6.038155e-17,6.584578e-17,7.1804776e-17,7.830275e-17,8.538876e-17,9.3116377e-17,1.0154295e-16,1.1073251e-16,1.2075326e-16,1.3168083e-16,1.4359784e-16,1.5659274e-16,1.707636e-16,1.8621757e-16,2.0306935e-16,2.2144611e-16,2.4148682e-16,2.633402e-16,2.8717117e-16,3.1315994e-16,3.4149936e-16,3.7240479e-16,4.0610558e-16,4.4285612e-16,4.8293425e-16,5.266374e-16,5.742955e-16,6.262688e-16,6.82943e-16,7.44746e-16,8.1214493e-16,8.8564e-16,9.657861e-16,1.053189e-15,1.1484974e-15,1.2524354e-15,1.3657747e-15,1.4893705e-15,1.6241574e-15,1.7711356e-15,1.9314147e-15,2.106206e-15,2.2968073e-15,2.5046572e-15,2.7313266e-15,2.9784982e-15,3.2480376e-15,3.5419824e-15,3.8625143e-15,4.2120687e-15,4.5932403e-15,5.0089056e-15,5.462208e-15,5.9565106e-15,6.4955454e-15,7.083387e-15,7.724399e-15,8.423419e-15,9.185732e-15,1.0016995e-14,1.09234834e-14,1.19120505e-14,1.2990032e-14,1.4165593e-14,1.5447538e-14,1.6845464e-14,1.836993e-14,2.0032356e-14,2.1845227e-14,2.3822112e-14,2.5977945e-14,2.8328875e-14,3.0892498e-14,3.368818e-14,3.6736866e-14,4.0061446e-14,4.368681e-14,4.7640338e-14,5.1951655e-14,5.6653023e-14,6.177996e-14,6.7370866e-14,7.346774e-14,8.0116205e-14,8.7366495e-14,9.527291e-14,1.0389464e-13,1.1329681e-13,1.2354984e-13,1.3473075e-13,1.4692322e-13,1.6021934e-13,1.7471875e-13,1.9052992e-13,2.0777233e-13,2.2657513e-13,2.4707908e-13,2.69439e-13,2.9382248e-13,3.2041256e-13,3.4940833e-13,3.8102879e-13,4.155108e-13,4.5311246e-13,4.941178e-13,5.388341e-13,5.8759703e-13,6.4077167e-13,6.987597e-13,7.6199545e-13,8.309522e-13,9.06151e-13,9.881551e-13,1.0775803e-12,1.175096e-12,1.2814388e-12,1.3974054e-12,1.5238637e-12,1.661769e-12,1.8121543e-12,1.976149e-12,2.1549808e-12,2.3500004e-12,2.5626688e-12,2.7945777e-12,3.047479e-12,3.323267e-12,3.6240132e-12,3.9519685e-12,4.3096104e-12,4.699618e-12,5.12491e-12,5.5886996e-12,6.094461e-12,6.645992e-12,7.2474214e-12,7.903293e-12,8.618517e-12,9.398451e-12,1.0248984e-11,1.1176488e-11,1.2187928e-11,1.3290875e-11,1.44936615e-11,1.5805296e-11,1.7235597e-11,1.879537e-11,2.0496297e-11,2.2351152e-11,2.4373822e-11,2.6579582e-11,2.8984959e-11,3.1607956e-11,3.4468383e-11,3.7587676e-11,4.0989174e-11,4.4698575e-11,4.874367e-11,5.315483e-11,5.796508e-11,6.3210756e-11,6.8931146e-11,7.516908e-11,8.1971666e-11,8.9389864e-11,9.747939e-11,1.06300795e-10,1.1592071e-10,1.264112e-10,1.3785079e-10,1.5032589e-10,1.6392995e-10,1.7876516e-10,1.949425e-10,2.1258426e-10,2.3182252e-10,2.528013e-10,2.756791e-10,3.0062727e-10,3.2783318e-10,3.5750047e-10,3.8985323e-10,4.2513384e-10,4.6360635e-10,5.0556137e-10,5.513133e-10,6.0120553e-10,6.556117e-10,7.149426e-10,7.796429e-10,8.501967e-10,9.271371e-10,1.0110404e-9,1.1025366e-9,1.2023107e-9,1.3111164e-9,1.4297686e-9,1.5591557e-9,1.7002548e-9,1.854123e-9,2.0219157e-9,2.2048892e-9,2.4044253e-9,2.622019e-9,2.8592988e-9,3.1180571e-9,3.4002323e-9,3.7079437e-9,4.0434944e-9,4.4094186e-9,4.8084585e-9,5.2436e-9,5.7181313e-9,6.235606e-9,6.7999104e-9,7.4152684e-9,8.086329e-9,8.818119e-9,9.616115e-9,1.0486346e-8,1.143533e-8,1.2470171e-8,1.3598686e-8,1.4829328e-8,1.617134e-8,1.7634767e-8,1.9230662e-8,2.0970981e-8,2.2868752e-8,2.493831e-8,2.7195155e-8,2.9656237e-8,3.233998e-8,3.5266655e-8,3.8458186e-8,4.1938463e-8,4.5733774e-8,4.987255e-8,5.4385872e-8,5.9307524e-8,6.467469e-8,7.052756e-8,7.6909956e-8,8.3870084e-8,9.146009e-8,9.9736965e-8,1.0876267e-7,1.1860538e-7,1.293387e-7,1.4104349e-7,1.5380738e-7,1.677265e-7,1.829051e-7,1.9945747e-7,2.175076e-7,2.3719119e-7,2.586563e-7,2.820637e-7,3.0758966e-7,3.3542534e-7,3.6578035e-7,3.9888204e-7,4.349793e-7,4.7434372e-7,5.1726994e-7,5.640814e-7,6.151286e-7,6.7079594e-7,7.315004e-7,7.976983e-7,8.6988774e-7,9.4860917e-7,1.0344555e-6,1.1280698e-6,1.2301557e-6,1.3414813e-6,1.46288e-6,1.5952666e-6,1.7396319e-6,1.8970636e-6,2.0687405e-6,2.2559534e-6,2.4601109e-6,2.682741e-6,2.9255216e-6,3.1902698e-6,3.4789803e-6,3.7938144e-6,4.1371395e-6,4.511539e-6,4.9198156e-6,5.365045e-6,5.8505607e-6,6.3800194e-6,6.9573866e-6,7.5870025e-6,8.273605e-6,9.022334e-6,9.838829e-6,1.0729204e-5,1.1700167e-5,1.27589865e-5,1.3913625e-5,1.5172768e-5,1.6545844e-5,1.8043196e-5,1.9676036e-5,2.1456639e-5,2.3398405e-5,2.5515868e-5,2.782498e-5,3.0343033e-5,3.3088992e-5,3.6083416e-5,3.9348823e-5,4.290978e-5,4.6792946e-5,5.1027575e-5,5.564537e-5,6.068112e-5,6.617252e-5,7.216088e-5,7.869123e-5,8.581248e-5,9.357827e-5,0.00010204673,0.00011128167,0.00012135223,0.00013233413,0.00014430999,0.00015736948,0.00017161097,0.0001871411,0.00020407683,0.00022254499,0.00024268443,0.0002646467,0.00028859617,0.0003147133,0.00034319362,0.00037425148,0.00040812,0.00044505345,0.00048532928,0.0005292497,0.000577145,0.00062937464,0.00068633095,0.00074844155,0.00081617304,0.0008900335,0.0009705785,0.0010584126,0.0011541954,0.0012586461,0.0013725493,0.0014967604,0.0016322114,0.001779921,0.0019409978,0.0021166515,0.0023082013,0.0025170858,0.0027448721,0.0029932738,0.003264155,0.00355955,0.0038816773,0.004232956,0.004616024,0.005033756,0.005489294,0.0059860568,0.0065277745,0.007118516,0.007762718,0.008465214,0.009231287,0.010066687,0.010977688,0.011971132,0.013054479,0.014235865,0.015524155,0.016929038,0.01846106,0.020131724,0.021953575,0.023940295,0.02610681,0.028469387,0.031045765,0.0338553,0.03691909,0.040260144,0.04390354,0.047876664,0.052209336,0.056934092,0.062086437,0.06770505,0.07383211,0.08051366,0.087799884,0.095745474,0.10441009,0.11385885,0.12416269,0.13539897,0.1476521,0.16101411,0.17558533,0.1914752,0.20880306,0.227699,0.24830495,0.2707757,0.29527995,0.3220018,0.35114184,0.38291895,0.41757178,0.4553606,0.49656916,0.54150695,0.59051144,0.6439507,0.702226],"x":[-86.9,-86.81337,-86.72673,-86.6401,-86.55347,-86.466835,-86.3802,-86.29357,-86.20693,-86.1203,-86.03367,-85.94704,-85.860405,-85.773766,-85.68713,-85.6005,-85.51387,-85.42724,-85.34061,-85.25397,-85.167336,-85.0807,-84.99407,-84.90744,-84.82081,-84.73417,-84.64754,-84.560905,-84.47427,-84.38764,-84.301,-84.21437,-84.12774,-84.04111,-83.954475,-83.86784,-83.781204,-83.69457,-83.60794,-83.52131,-83.43468,-83.348045,-83.261406,-83.174774,-83.08814,-83.00151,-82.91488,-82.82824,-82.74161,-82.654976,-82.568344,-82.48171,-82.39508,-82.30844,-82.22181,-82.13518,-82.048546,-81.961914,-81.875275,-81.78864,-81.70201,-81.61538,-81.52875,-81.442116,-81.35548,-81.268845,-81.18221,-81.09558,-81.00895,-80.92232,-80.83568,-80.74905,-80.662415,-80.57578,-80.48915,-80.40251,-80.31588,-80.22925,-80.14262,-80.055984,-79.96935,-79.88271,-79.79608,-79.70945,-79.62282,-79.53619,-79.44955,-79.362915,-79.27628,-79.18965,-79.10302,-79.01639,-78.92975,-78.84312,-78.756485,-78.66985,-78.58322,-78.49659,-78.40995,-78.32332,-78.23669,-78.150055,-78.06342,-77.97678,-77.89015,-77.80352,-77.71689,-77.63026,-77.543625,-77.456985,-77.37035,-77.28372,-77.19709,-77.11046,-77.02383,-76.93719,-76.850555,-76.76392,-76.67729,-76.59066,-76.50402,-76.41739,-76.33076,-76.244125,-76.15749,-76.07086,-75.98422,-75.89759,-75.81096,-75.72433,-75.637695,-75.551056,-75.464424,-75.37779,-75.29116,-75.20453,-75.1179,-75.03126,-74.944626,-74.857994,-74.77136,-74.68473,-74.5981,-74.51146,-74.42483,-74.338196,-74.251564,-74.16493,-74.07829,-73.99166,-73.90503,-73.8184,-73.731766,-73.645134,-73.558495,-73.47186,-73.38523,-73.2986,-73.21197,-73.12533,-73.0387,-72.952065,-72.86543,-72.7788,-72.69217,-72.60553,-72.5189,-72.43227,-72.345634,-72.259,-72.17237,-72.08573,-71.9991,-71.91247,-71.825836,-71.739204,-71.652565,-71.56593,-71.4793,-71.39267,-71.30604,-71.219406,-71.13277,-71.046135,-70.9595,-70.87287,-70.78624,-70.69961,-70.61297,-70.52634,-70.439705,-70.35307,-70.26644,-70.1798,-70.09317,-70.00654,-69.91991,-69.833275,-69.74664,-69.66,-69.57337,-69.48674,-69.40011,-69.31348,-69.22684,-69.140205,-69.05357,-68.96694,-68.88031,-68.79368,-68.70704,-68.62041,-68.533775,-68.44714,-68.36051,-68.27388,-68.18724,-68.10061,-68.01398,-67.927345,-67.84071,-67.754074,-67.66744,-67.58081,-67.49418,-67.40755,-67.320915,-67.234276,-67.147644,-67.06101,-66.97438,-66.88775,-66.80111,-66.71448,-66.627846,-66.541214,-66.45458,-66.36795,-66.28131,-66.19468,-66.10805,-66.021416,-65.934784,-65.84815,-65.76151,-65.67488,-65.58825,-65.50162,-65.414986,-65.32835,-65.241714,-65.15508,-65.06845,-64.98182,-64.89519,-64.80855,-64.72192,-64.635284,-64.54865,-64.46202,-64.37539,-64.28875,-64.20212,-64.115486,-64.028854,-63.94222,-63.855587,-63.768955,-63.68232,-63.595688,-63.509052,-63.42242,-63.33579,-63.249153,-63.16252,-63.07589,-62.989254,-62.902622,-62.81599,-62.729355,-62.642723,-62.55609,-62.469456,-62.382824,-62.29619,-62.209557,-62.122925,-62.03629,-61.949657,-61.863026,-61.77639,-61.68976,-61.603127,-61.51649,-61.42986,-61.343227,-61.25659,-61.16996,-61.083324,-60.996693,-60.91006,-60.823425,-60.736794,-60.65016,-60.563526,-60.476894,-60.390263,-60.303627,-60.216995,-60.130363,-60.043728,-59.957096,-59.870464,-59.78383,-59.697197,-59.61056,-59.52393,-59.437298,-59.350662,-59.26403,-59.1774,-59.090763,-59.00413,-58.9175,-58.830864,-58.744232,-58.6576,-58.570965,-58.484333,-58.397697,-58.311066,-58.224434,-58.1378,-58.051167,-57.964535,-57.8779,-57.791267,-57.704636,-57.618,-57.53137,-57.444736,-57.3581,-57.27147,-57.184834,-57.0982,-57.01157,-56.924934,-56.838303,-56.75167,-56.665035,-56.578403,-56.49177,-56.405136,-56.318504,-56.231873,-56.145237,-56.058605,-55.97197,-55.885338,-55.798706,-55.71207,-55.62544,-55.538807,-55.45217,-55.36554,-55.278908,-55.192272,-55.10564,-55.01901,-54.932373,-54.84574,-54.75911,-54.672474,-54.585842,-54.499207,-54.412575,-54.325943,-54.239307,-54.152676,-54.066044,-53.97941,-53.892776,-53.806145,-53.71951,-53.632877,-53.546246,-53.45961,-53.37298,-53.286343,-53.19971,-53.11308,-53.026443,-52.93981,-52.85318,-52.766544,-52.679913,-52.59328,-52.506645,-52.420013,-52.33338,-52.246746,-52.160114,-52.07348,-51.986847,-51.900215,-51.81358,-51.726948,-51.640316,-51.55368,-51.46705,-51.380417,-51.29378,-51.20715,-51.120518,-51.033882,-50.94725,-50.860615,-50.773983,-50.68735,-50.600716,-50.514084,-50.427452,-50.340816,-50.254185,-50.167553,-50.080917,-49.994286,-49.907654,-49.82102,-49.734386,-49.64775,-49.56112,-49.474487,-49.38785,-49.30122,-49.21459,-49.127953,-49.04132,-48.95469,-48.868053,-48.78142,-48.69479,-48.608154,-48.521523,-48.43489,-48.348255,-48.261623,-48.174988,-48.088356,-48.001724,-47.91509,-47.828457,-47.741825,-47.65519,-47.568558,-47.481926,-47.39529,-47.30866,-47.222027,-47.13539,-47.04876,-46.962124,-46.875492,-46.78886,-46.702225,-46.615593,-46.52896,-46.442326,-46.355694,-46.269062,-46.182426,-46.095795,-46.009163,-45.922527,-45.835896,-45.74926,-45.66263,-45.575996,-45.48936,-45.40273,-45.316097,-45.22946,-45.14283,-45.0562,-44.969563,-44.88293,-44.7963,-44.709663,-44.62303,-44.536396,-44.449764,-44.363132,-44.276497,-44.189865,-44.103233,-44.016598,-43.929966,-43.843334,-43.7567,-43.670067,-43.583435,-43.4968,-43.410168,-43.323536,-43.2369,-43.15027,-43.063633,-42.977,-42.89037,-42.803734,-42.717102,-42.63047,-42.543835,-42.457203,-42.37057,-42.283936,-42.197304,-42.110672,-42.024036,-41.937405,-41.85077,-41.764137,-41.677505,-41.59087,-41.50424,-41.417606,-41.33097,-41.24434,-41.157707,-41.07107,-40.98444,-40.897808,-40.811172,-40.72454,-40.637905,-40.551273,-40.46464,-40.378006,-40.291374,-40.204742,-40.118107,-40.031475,-39.944843,-39.858208,-39.771576,-39.684944,-39.59831,-39.511677,-39.42504,-39.33841,-39.251778,-39.165142,-39.07851,-38.99188,-38.905243,-38.81861,-38.73198,-38.645344,-38.558712,-38.47208,-38.385445,-38.298813,-38.212177,-38.125546,-38.038914,-37.95228,-37.865646,-37.779015,-37.69238,-37.605747,-37.519115,-37.43248,-37.345848,-37.259216,-37.17258,-37.08595,-36.999317,-36.91268,-36.82605,-36.739414,-36.652782,-36.56615,-36.479515,-36.392883,-36.30625,-36.219616,-36.132984,-36.046352,-35.959717,-35.873085,-35.786453,-35.699818,-35.613186,-35.52655,-35.43992,-35.353287,-35.26665,-35.18002,-35.093388,-35.006752,-34.92012,-34.83349,-34.746853,-34.66022,-34.57359,-34.486954,-34.400322,-34.313686,-34.227055,-34.140423,-34.053787,-33.967155,-33.880524,-33.793888,-33.707256,-33.620625,-33.53399,-33.447357,-33.360725,-33.27409,-33.187458,-33.100822,-33.01419,-32.92756,-32.840923,-32.75429,-32.66766,-32.581024,-32.494392,-32.40776,-32.321125,-32.234493,-32.14786,-32.061226,-31.974594,-31.88796,-31.801327,-31.714695,-31.628061,-31.541428,-31.454794,-31.368162,-31.281528,-31.194895,-31.108263,-31.02163,-30.934996,-30.848362,-30.76173,-30.675097,-30.588463,-30.501831,-30.415197,-30.328564,-30.24193,-30.155298,-30.068665,-29.98203,-29.8954,-29.808765,-29.722132,-29.635498,-29.548866,-29.462233,-29.375599,-29.288967,-29.202333,-29.1157,-29.029068,-28.942434,-28.8558,-28.769167,-28.682535,-28.595901,-28.509268,-28.422636,-28.336002,-28.249369,-28.162735,-28.076103,-27.98947,-27.902836,-27.816204,-27.72957,-27.642937,-27.556303,-27.469671,-27.383038,-27.296404,-27.209772,-27.123138,-27.036505,-26.949871,-26.86324,-26.776606,-26.689972,-26.60334,-26.516706,-26.430073,-26.34344,-26.256807,-26.170174,-26.08354,-25.996908,-25.910275,-25.82364,-25.737007,-25.650375,-25.563742,-25.477108,-25.390476,-25.303843,-25.217209,-25.130575,-25.043943,-24.95731,-24.870676,-24.784044,-24.69741,-24.610777,-24.524143,-24.437511,-24.350878,-24.264244,-24.177612,-24.090979,-24.004345,-23.917713,-23.83108,-23.744446,-23.657812,-23.57118,-23.484547,-23.397913,-23.311281,-23.224648,-23.138014,-23.05138,-22.964748,-22.878115,-22.791481,-22.70485,-22.618216,-22.531582,-22.444948,-22.358316,-22.271683,-22.18505,-22.098417,-22.011784,-21.92515,-21.838516,-21.751884,-21.66525,-21.578617,-21.491985,-21.405352,-21.318718,-21.232084,-21.145452,-21.058819,-20.972185,-20.885553,-20.79892,-20.712286,-20.625652,-20.53902,-20.452387,-20.365753,-20.279121,-20.192488,-20.105854,-20.01922,-19.932589,-19.845955,-19.759321,-19.67269,-19.586056,-19.499422,-19.412788,-19.326157,-19.239523,-19.15289,-19.066257,-18.979624,-18.89299,-18.806356,-18.719725,-18.633091,-18.546457,-18.459826,-18.373192,-18.286558,-18.199926,-18.113293,-18.026659,-17.940025,-17.853394,-17.76676,-17.680126,-17.593494,-17.50686,-17.420227,-17.333593,-17.246962,-17.160328,-17.073694,-16.987062,-16.900429,-16.813795,-16.727161,-16.64053,-16.553896,-16.467262,-16.38063,-16.293997,-16.207363,-16.12073,-16.034098,-15.947464,-15.860831,-15.774198,-15.687565,-15.600931,-15.514298,-15.427665,-15.341032,-15.254399,-15.167766,-15.081133,-14.994499,-14.9078665,-14.821233,-14.7346,-14.647967,-14.561334,-14.474701,-14.388067,-14.3014345,-14.214801,-14.128168,-14.041535,-13.954902,-13.868269,-13.781635,-13.695003,-13.60837,-13.521736,-13.435103,-13.34847,-13.261837,-13.175203,-13.088571,-13.001938,-12.915304,-12.828671,-12.742038,-12.655405,-12.568771,-12.482139,-12.395506,-12.308872,-12.2222395,-12.135606,-12.048973,-11.962339,-11.875707,-11.789074,-11.70244,-11.615808,-11.529174,-11.442541,-11.355907,-11.269275,-11.182642,-11.096008,-11.009376,-10.922742,-10.836109,-10.749476,-10.662843,-10.57621,-10.489576,-10.402944,-10.31631,-10.229677,-10.143044,-10.056411,-9.969778,-9.883144,-9.796512,-9.709878,-9.623245,-9.5366125,-9.449979,-9.363346,-9.276712,-9.19008,-9.103446,-9.016813,-8.930181,-8.843547,-8.756914,-8.67028,-8.583648,-8.497014,-8.410381,-8.323749,-8.237115,-8.150482,-8.0638485,-7.977216,-7.8905826,-7.8039494,-7.717316,-7.630683,-7.54405,-7.457417,-7.370784,-7.2841506,-7.1975174,-7.110884,-7.0242515,-6.9376183,-6.850985,-6.764352,-6.6777186,-6.5910854,-6.504452,-6.4178195,-6.3311863,-6.244553,-6.15792,-6.0712867,-5.9846535,-5.8980207,-5.8113875,-5.7247543,-5.638121,-5.551488,-5.4648547,-5.3782215,-5.291589,-5.2049556,-5.1183224,-5.031689,-4.945056,-4.8584228,-4.77179,-4.685157,-4.5985236,-4.5118904,-4.425257,-4.338624,-4.251991,-4.165358,-4.078725,-3.9920917,-3.9054585,-3.8188252,-3.7321923,-3.645559,-3.5589259,-3.472293,-3.3856597,-3.2990265,-3.2123933,-3.1257603,-3.039127,-2.952494,-2.865861,-2.7792277,-2.6925945,-2.6059616,-2.5193284,-2.4326952,-2.346062,-2.259429,-2.1727958,-2.0861626,-1.9995295,-1.9128964,-1.8262633,-1.7396301,-1.652997,-1.5663638,-1.4797307,-1.3930976,-1.3064644,-1.2198313,-1.1331981,-1.046565,-0.9599319,-0.8732988,-0.7866657,-0.70003253,-0.6133994,-0.52676624,-0.44013312,-0.3535]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json deleted file mode 100644 index b663a3be8fc3..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/medium_positive_float32.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[1.4240429,1.5557472,1.6996323,1.8568246,2.0285552,2.2161684,2.4211333,2.6450546,2.8896856,3.1569412,3.4489145,3.7678914,4.1163692,4.497076,4.9129934,5.367377,5.863785,6.406104,6.9985795,7.6458516,8.352986,9.125522,9.969505,10.891546,11.898865,12.999345,14.201604,15.515055,16.949982,18.517618,20.230246,22.101261,24.14532,26.378428,28.818066,31.483335,34.395115,37.576183,41.051456,44.848145,48.995975,53.527424,58.477978,63.886364,69.79498,76.25006,83.30211,91.006424,99.423225,108.618515,118.66419,129.639,141.62885,154.72751,169.03769,184.67128,201.75085,220.41005,240.79486,263.0651,287.3949,313.975,343.01324,374.73727,409.39536,447.25864,488.62396,533.81476,583.1853,637.122,696.04675,760.4216,830.7498,907.5828,991.52185,1083.2235,1183.407,1292.8553,1412.4268,1543.0563,1685.7678,1841.6785,2012.0076,2198.0908,2401.383,2623.4783,2866.1143,3131.1907,3420.7798,3737.155,4082.791,4460.3936,4872.919,5323.5923,5815.952,6353.848,6941.492,7583.4785,8284.847,9051.082,9888.184,10802.705,11801.797,12893.302,14085.757,15388.497,16811.723,18366.56,20065.217,21920.975,23948.365,26163.262,28582.98,31226.516,34114.543,37269.67,40716.61,44482.297,48596.3,53090.793,58000.97,63365.266,69225.625,75628.05,82622.61,90264.08,98612.17,107732.45,117696.234,128581.53,140473.56,153465.31,167658.75,183164.9,200105.16,218612.16,238830.56,260919.12,285050.6,311413.88,340215.4,371680.34,406055.7,443610.3,484638.2,529460.6,578427.94,631924.6,690369.06,754218.75,823972.9,900179.2,983433.44,1.0743876e6,1.1737538e6,1.2823088e6,1.4009049e6,1.5304694e6,1.672017e6,1.8266558e6,1.9955945e6,2.1801598e6,2.3817948e6,2.6020782e6,2.842735e6,3.1056462e6,3.3928762e6,3.7066708e6,4.0494872e6,4.4240095e6,4.8331655e6,5.2801675e6,5.7685105e6,6.302019e6,6.88487e6,7.5216195e6,8.2172665e6,8.977251e6,9.807515e6,1.0714587e7,1.1705528e7,1.2788143e7,1.3970858e7,1.5262957e7,1.6674588e7,1.8216742e7,1.9901562e7,2.1742164e7,2.3752994e7,2.5949846e7,2.8349826e7,3.0971768e7,3.3836268e7,3.6965624e7,4.0384476e7,4.4119452e7,4.8199852e7,5.265773e7,5.7527796e7,6.284839e7,6.866094e7,7.501107e7,8.194865e7,8.95277e7,9.780788e7,1.0685367e8,1.1673606e8,1.2753268e8,1.3932758e8,1.5221363e8,1.6629115e8,1.8167064e8,1.9847288e8,2.168287e8,2.3688262e8,2.5879078e8,2.8272512e8,3.0887366e8,3.3743994e8,3.6864886e8,4.0274346e8,4.3999133e8,4.8068496e8,5.2514125e8,5.737102e8,6.2677e8,6.84737e8,7.4806656e8,8.172517e8,8.928372e8,9.754115e8,1.0656227e9,1.1641793e9,1.2718488e9,1.3894789e9,1.5179853e9,1.6583766e9,1.8117555e9,1.9793162e9,2.162378e9,2.3623662e9,2.5808504e9,2.8195466e9,3.080313e9,3.365197e9,3.6764352e9,4.0164513e9,4.3879224e9,4.793741e9,5.2370913e9,5.7214566e9,6.250607e9,6.8287094e9,7.460265e9,8.1502295e9,8.904023e9,9.727515e9,1.0627187e10,1.1610045e10,1.2683805e10,1.3856896e10,1.5138456e10,1.6538572e10,1.8068146e10,1.9739185e10,2.1564811e10,2.355924e10,2.573817e10,2.8118573e10,3.071913e10,3.356026e10,3.666409e10,4.005506e10,4.3759563e10,4.780668e10,5.2228194e10,5.7058537e10,6.233573e10,6.810087e10,7.43992e10,8.128019e10,8.879741e10,9.701005e10,1.0598206e11,1.1578384e11,1.26492385e11,1.3819108e11,1.50972e11,1.649347e11,1.8018873e11,1.9685392e11,2.1506002e11,2.3495036e11,2.566798e11,2.804189e11,3.0635413e11,3.346874e11,3.6564104e11,3.9945824e11,4.3640226e11,4.7676398e11,5.2085765e11,5.690293e11,6.216573e11,6.7915153e11,7.4196445e11,8.105853e11,8.855525e11,9.6745495e11,1.0569303e12,1.1546831e12,1.2614743e12,1.3781421e12,1.505603e12,1.6448491e12,1.7969768e12,1.9631709e12,2.1447353e12,2.3430963e12,2.5597981e12,2.7965472e12,3.055187e12,3.3377466e12,3.646446e12,3.9836889e12,4.35213e12,4.754638e12,5.1943723e12,5.6747864e12,6.1996207e12,6.773007e12,7.399411e12,8.0837476e12,8.831392e12,9.648166e12,1.05405e13,1.1515342e13,1.2580342e13,1.3743865e13,1.501497e13,1.6403665e13,1.7920764e13,1.957817e13,2.1388906e13,2.3367063e13,2.5528222e13,2.7889209e13,3.046855e13,3.3286508e13,3.636502e13,3.972825e13,4.340261e13,4.7416716e13,5.1802167e13,5.6593102e13,6.1827136e13,6.7545365e13,7.379232e13,8.061718e13,8.807309e13,9.621855e13,1.0511735e14,1.148396e14,1.25460575e14,1.3706384e14,1.4974023e14,1.63589e14,1.7871926e14,1.9524816e14,2.1330576e14,2.330334e14,2.5458556e14,2.7813205e14,3.0385518e14,3.3195732e14,3.6265848e14,3.961991e14,4.328433e14,4.7287496e14,5.1660897e14,5.643877e14,6.165853e14,6.7361294e14,7.3591225e14,8.0397325e14,8.78329e14,9.595615e14,1.04831085e15,1.1452642e15,1.2511844e15,1.3669005e15,1.4933188e15,1.631435e15,1.7823188e15,1.9471571e15,2.1272405e15,2.323979e15,2.5389227e15,2.7737355e15,3.0302653e15,3.3105203e15,3.616695e15,3.951201e15,4.3166292e15,4.715854e15,5.152001e15,5.6284854e15,6.149061e15,6.717759e15,7.3390533e15,8.017808e15,8.759337e15,9.569483e15,1.0454521e16,1.142141e16,1.2477722e16,1.3631729e16,1.489252e16,1.6269859e16,1.7774583e16,1.941847e16,2.1214394e16,2.31765e16,2.5319988e16,2.7661715e16,3.0220017e16,3.3014924e16,3.6068457e16,3.940426e16,4.3048573e16,4.7029935e16,5.1379513e16,5.613136e16,6.1322925e16,6.699439e16,7.319039e16,7.995942e16,8.73545e16,9.543387e16,1.042601e17,1.1390263e17,1.24436945e17,1.3594553e17,1.4851908e17,1.622549e17,1.772611e17,1.9365514e17,2.115654e17,2.3113296e17,2.5250937e17,2.7586278e17,3.0137603e17,3.292489e17,3.5970093e17,3.92968e17,4.2931177e17,4.690168e17,5.1239396e17,5.59785e17,6.115569e17,6.6811693e17,7.299079e17,7.974137e17,8.711661e17,9.517361e17,1.0397577e18,1.13592e18,1.2409759e18,1.3557532e18,1.4811404e18,1.6181242e18,1.7677768e18,1.9312703e18,2.1098924e18,2.3050265e18,2.5182076e18,2.7511048e18,3.0055417e18,3.2835224e18,3.5872e18,3.9189635e18,4.28141e18,4.6773774e18,5.109986e18,5.5825845e18,6.0988915e18,6.662949e18,7.2791743e18,7.9524207e18,8.6879033e18,9.491407e18,1.0369223e19,1.1328223e19,1.2375964e19,1.3520559e19,1.4771012e19,1.6137114e19,1.762956e19,1.9260108e19,2.1041385e19,2.2987404e19,2.5113402e19,2.7436023e19,2.9973567e19,3.274568e19,3.5774174e19,3.908276e19,4.2697344e19,4.66464e19,5.0960504e19,5.56736e19,6.082259e19,6.6447785e19,7.259351e19,7.930734e19,8.664211e19,9.465522e19,1.0340944e20,1.1297373e20,1.2342214e20,1.3483688e20,1.4730731e20,1.6093107e20,1.758155e20,1.9207585e20,2.0984003e20,2.2924715e20,2.5044915e20,2.7361306e20,2.9891826e20,3.265638e20,3.5676616e20,3.8976178e20,4.2581063e20,4.6519186e20,5.0821528e20,5.5521773e20,6.0656725e20,6.626658e20,7.239554e20,7.909106e20,8.640582e20,9.4397095e20,1.03127435e21,1.1266564e21,1.2308556e21,1.3446917e21,1.4690559e21,1.6049219e21,1.7533604e21,1.9155204e21,2.0926779e21,2.2862198e21,2.4976615e21,2.728669e21,2.9810308e21,3.2567325e21,3.557932e21,3.8869887e21,4.2464942e21,4.6392326e21,5.0682936e21,5.537036e21,6.0491303e21,6.608612e21,7.219811e21,7.8875374e21,8.6170186e21,9.4139666e21,1.0284659e22,1.1235839e22,1.227499e22,1.3410245e22,1.4650497e22,1.6005513e22,1.7485787e22,1.9102966e22,2.086971e22,2.2799851e22,2.4908597e22,2.7212276e22,2.9729013e22,3.247851e22,3.5482294e22,3.876403e22,4.2349135e22,4.6265808e22,5.054472e22,5.521936e22,6.0326573e22,6.5905893e22,7.200122e22,7.866028e22,8.593519e22,9.38833e22,1.0256612e23,1.1205198e23,1.2241514e23,1.3373674e23,1.4610599e23,1.5961865e23,1.7438102e23,1.9050871e23,2.0812797e23,2.2737761e23,2.4840668e23,2.7138066e23,2.9647939e23,3.238994e23,3.5385665e23,3.865832e23,4.2233648e23,4.6139638e23,5.0406878e23,5.5068982e23,6.0162056e23,6.572616e23,7.180487e23,7.844576e23,8.5701166e23,9.3627264e23,1.0228641e24,1.11746405e24,1.220813e24,1.3337254e24,1.4570755e24,1.5918335e24,1.7390547e24,1.8998917e24,2.0756116e24,2.2675752e24,2.4772925e24,2.7064057e24,2.9567087e24,3.230173e24,3.5289166e24,3.8552894e24,4.211847e24,4.6013812e24,5.02696e24,5.4918805e24,5.999799e24,6.554692e24,7.1609044e24,7.8231835e24,8.5467455e24,9.3371936e24,1.0200747e25,1.1144166e25,1.2174837e25,1.3300882e25,1.4531018e25,1.5874924e25,1.7343121e25,1.8947105e25,2.0699513e25,2.2613914e25,2.470537e25,2.6990252e25,2.9486454e25,3.2213641e25,3.519293e25,3.8447758e25,4.200361e25,4.588833e25,5.0132513e25,5.4769033e25,5.9834366e25,6.536817e25,7.141376e25,7.801879e25,8.523438e25,9.31173e25,1.0172928e26,1.1113775e26,1.2141682e26,1.3264609e26,1.449139e26,1.5831632e26,1.7295826e26,1.8895507e26,2.0643063e26,2.2552244e26,2.4637995e26,2.6916648e26,2.9406154e26,3.212579e26,3.5096956e26,3.8342908e26,4.1889062e26,4.576336e26,4.99958e26,5.4619677e26,5.9671196e26,6.51899e26,7.1219285e26,7.780602e26,8.500193e26,9.286337e26,1.0145186e27,1.1083509e27,1.21085705e27,1.3228436e27,1.4451871e27,1.5788458e27,1.7248724e27,1.8843978e27,2.0586769e27,2.2490741e27,2.4570805e27,2.6843345e27,2.932596e27,3.203818e27,3.5001242e27,3.8238344e27,4.1774987e27,4.563856e27,4.9859454e27,5.4470726e27,5.9508464e27,6.501212e27,7.1024793e27,7.759354e27,8.477045e27,9.261047e27,1.0117558e28,1.1053283e28,1.2075549e28,1.319236e28,1.4412461e28,1.57454e28,1.7201619e28,1.8792516e28,2.0530706e28,2.2429494e28,2.4503892e28,2.6770142e28,2.9245986e28,3.195081e28,3.490579e28,3.8134063e28,4.1660906e28,4.5513927e28,4.9723676e28,5.4322383e28,5.9346405e28,6.483508e28,7.083137e28,7.738223e28,8.4538955e28,9.235756e28,1.0089928e29,1.1023098e29,1.20426645e29,1.3156434e29,1.4373211e29,1.5702521e29,1.7154774e29,1.8741339e29,2.0474638e29,2.236824e29,2.4436973e29,2.6697036e29,2.916634e29,3.1863798e29,3.481073e29,3.8030215e29,4.154745e29,4.5389977e29,4.9587885e29,5.4174036e29,5.918434e29,6.465802e29,7.063847e29,7.71715e29,8.4308726e29,9.210604e29,1.006245e30,1.0993079e30,1.2009777e30,1.3120505e30,1.433396e30,1.565964e30,1.7108056e30,1.86903e30,2.041888e30,2.2307326e30,2.4370426e30,2.662433e30,2.9086692e30,3.177678e30,3.4715668e30,3.7926357e30,4.1434303e30,4.526637e30,4.9452842e30,5.40265e30,5.902316e30,6.448194e30,7.044557e30,7.696075e30,8.407849e30,9.185451e30,1.00349704e31,1.0963141e31,1.1977071e31,1.3084775e31,1.4294924e31,1.5616994e31,1.7061337e31,1.8639259e31,2.0363117e31,2.2246406e31,2.4303872e31,2.6551826e31,2.9007479e31,3.1690245e31,3.4621128e31,3.7823072e31,4.132115e31,4.514275e31,4.931779e31,5.3878966e31,5.886198e31,6.4306333e31,7.0253726e31,7.6751165e31,8.384952e31,9.160437e31,1.0007643e32,1.0933202e32,1.1944363e32,1.3049041e32,1.4255885e32,1.5574465e32,1.7014875e32,1.85885e32,2.0307664e32,2.2185824e32,2.4237686e32,2.6479315e32,2.8928264e32,3.1603702e32,3.452658e32,3.772007e32,4.120862e32,4.5019813e32,4.9183485e32,5.3732234e32,5.8701678e32,6.413072e32,7.0061874e32,7.654156e32,8.362054e32,9.13549e32,9.980389e32,1.09034285e33,1.1911835e33,1.3013504e33,1.4217064e33,1.5531932e33,1.6968409e33,1.8537736e33,2.0252204e33,2.2125405e33,2.417168e33,2.6407205e33,2.8849484e33,3.1517638e33,3.4432556e33,3.761706e33,4.1096087e33,4.489687e33,4.904917e33,5.3585906e33,5.854182e33,6.3956074e33,6.987107e33,7.6333116e33,8.339281e33,9.1105423e33,9.953133e33,1.0873652e34,1.1879305e34,1.2978066e34,1.4178346e34,1.5489634e34,1.6922198e34,1.8487253e34,2.0197052e34,2.2064984e34,2.4105669e34,2.633509e34,2.87707e34,3.1431805e34,3.4338785e34,3.751462e34,4.098417e34,4.4774603e34,4.8915596e34,5.343957e34,5.8381945e34,6.378142e34,6.9680263e34,7.612524e34,8.316571e34,9.085731e34,9.926028e34,1.084404e35,1.1846954e35,1.29426235e35,1.4139626e35,1.5447334e35,1.6875985e35,1.8436766e35,2.0142049e35,2.2004893e35,2.4040023e35,2.6263371e35,2.8692348e35,3.1345969e35,3.424501e35,3.7412172e35,4.087225e35,4.465233e35,4.8782384e35,5.329404e35,5.8222954e35,6.3607724e35,6.949051e35,7.591735e35,8.293859e35,9.060919e35,9.898922e35,1.0814426e36,1.1814692e36,1.2907377e36,1.410112e36,1.5405267e36,1.6830027e36,1.8386557e36,2.0087044e36,2.19448e36,2.3974372e36,2.619165e36,2.861421e36,3.1260603e36,3.4151753e36,3.7310288e36,4.076094e36,4.4530727e36,4.8649166e36,5.3148498e36,5.8063956e36,6.3434016e36,6.930126e36,7.571061e36,8.2712725e36,9.036244e36,9.871964e36,1.0784975e37,1.1782427e37,1.2872129e37,1.4062611e37,1.5363196e37,1.6784195e37,1.8336486e37,2.0032341e37,2.188504e37,2.3909082e37,2.612032e37,2.8536067e37,3.1175235e37,3.4058486e37,3.7208395e37,4.0649937e37,4.4409456e37,4.851668e37,5.300376e37,5.790583e37,6.3261267e37,6.9112006e37,7.550385e37,8.2486846e37,9.011567e37,9.84508e37,1.0755605e38,1.175034e38,1.2837074e38,1.4024315e38,1.5321358e38,1.6738359e38,1.8286412e38,1.9977636e38,2.1825272e38,2.3843972e38,2.604919e38,2.8458356e38,3.1090336e38,3.3965734e38],"x":[0.3535,0.44195595,0.5304119,0.6188679,0.70732385,0.79577976,0.88423574,0.9726917,1.0611477,1.1496036,1.2380595,1.3265156,1.4149715,1.5034274,1.5918834,1.6803393,1.7687953,1.8572513,1.9457072,2.0341632,2.1226192,2.211075,2.299531,2.387987,2.476443,2.564899,2.653355,2.7418108,2.8302667,2.9187226,3.0071788,3.0956347,3.1840906,3.2725465,3.3610024,3.4494584,3.5379145,3.6263704,3.7148263,3.8032823,3.8917382,3.980194,4.0686502,4.157106,4.245562,4.334018,4.422474,4.51093,4.5993857,4.687842,4.7762976,4.8647537,4.95321,5.0416656,5.1301217,5.2185774,5.3070335,5.3954897,5.4839454,5.5724015,5.660857,5.7493134,5.837769,5.926225,6.0146813,6.103137,6.191593,6.280049,6.368505,6.456961,6.545417,6.633873,6.7223287,6.810785,6.899241,6.9876966,7.076153,7.1646085,7.2530646,7.3415203,7.4299765,7.5184326,7.6068883,7.6953444,7.7838,7.8722563,7.9607124,8.049169,8.137624,8.22608,8.314536,8.402992,8.491448,8.579904,8.66836,8.756816,8.845272,8.933727,9.022183,9.11064,9.199096,9.287552,9.376007,9.464463,9.552919,9.641376,9.729832,9.818287,9.906743,9.995199,10.083655,10.1721115,10.260567,10.349023,10.437479,10.525935,10.614391,10.702847,10.791303,10.879759,10.968215,11.056671,11.145126,11.2335825,11.322039,11.410495,11.49895,11.587406,11.675862,11.764318,11.852775,11.94123,12.029686,12.118142,12.206598,12.295054,12.38351,12.471966,12.560422,12.648878,12.737334,12.825789,12.914246,13.002702,13.091158,13.179614,13.268069,13.356525,13.444982,13.533438,13.621893,13.710349,13.798805,13.887261,13.975718,14.064173,14.152629,14.241085,14.329541,14.417997,14.506453,14.594909,14.683365,14.771821,14.860277,14.948732,15.037189,15.125645,15.214101,15.302557,15.391012,15.479468,15.5679245,15.656381,15.744837,15.833292,15.921748,16.010204,16.09866,16.187117,16.275572,16.364029,16.452484,16.54094,16.629396,16.717852,16.806309,16.894764,16.98322,17.071676,17.160131,17.248587,17.337044,17.425499,17.513956,17.602411,17.690866,17.779324,17.867779,17.956236,18.044691,18.133146,18.221603,18.310059,18.398516,18.48697,18.575426,18.663883,18.752338,18.840796,18.92925,19.017706,19.106163,19.194618,19.283075,19.37153,19.459986,19.548443,19.636898,19.725355,19.81381,19.902266,19.990723,20.079178,20.167635,20.25609,20.344545,20.433002,20.521458,20.609915,20.69837,20.786825,20.875282,20.963737,21.052195,21.14065,21.229105,21.317562,21.406017,21.494474,21.58293,21.671385,21.759842,21.848297,21.936752,22.02521,22.113665,22.202122,22.290577,22.379032,22.46749,22.555944,22.644402,22.732857,22.821312,22.90977,22.998224,23.086681,23.175137,23.263592,23.352049,23.440504,23.528961,23.617416,23.705872,23.794329,23.882784,23.971241,24.059696,24.148151,24.236609,24.325064,24.41352,24.501976,24.590431,24.678888,24.767344,24.8558,24.944256,25.032711,25.121168,25.209623,25.29808,25.386536,25.47499,25.563448,25.651903,25.74036,25.828815,25.91727,26.005728,26.094183,26.18264,26.271095,26.35955,26.448008,26.536463,26.624918,26.713375,26.80183,26.890287,26.978743,27.067198,27.155655,27.24411,27.332567,27.421022,27.509478,27.597935,27.68639,27.774847,27.863302,27.951757,28.040215,28.12867,28.217127,28.305582,28.394037,28.482494,28.57095,28.659407,28.747862,28.836317,28.924774,29.01323,29.101686,29.190142,29.278597,29.367054,29.45551,29.543966,29.632421,29.720877,29.809334,29.897789,29.986246,30.074701,30.163157,30.251614,30.340069,30.428526,30.516981,30.605436,30.693893,30.782349,30.870806,30.95926,31.047716,31.136173,31.224628,31.313084,31.40154,31.489996,31.578453,31.666908,31.755363,31.84382,31.932276,32.020733,32.109188,32.197643,32.2861,32.374557,32.463013,32.551468,32.639923,32.72838,32.816837,32.905293,32.993748,33.082203,33.17066,33.259117,33.347572,33.436028,33.524483,33.612938,33.701397,33.789852,33.878307,33.966763,34.055218,34.143677,34.232132,34.320587,34.409042,34.497498,34.585957,34.67441,34.762867,34.851322,34.939777,35.028236,35.11669,35.205147,35.293602,35.382057,35.470516,35.55897,35.647427,35.73588,35.824337,35.912796,36.00125,36.089706,36.17816,36.266617,36.355076,36.44353,36.531986,36.62044,36.708897,36.797356,36.88581,36.974266,37.06272,37.151176,37.239635,37.32809,37.416546,37.505,37.593456,37.681915,37.77037,37.858826,37.94728,38.035736,38.124195,38.21265,38.301105,38.38956,38.478016,38.56647,38.65493,38.743385,38.83184,38.920296,39.00875,39.09721,39.185665,39.27412,39.362576,39.45103,39.53949,39.627945,39.7164,39.804855,39.89331,39.98177,40.070225,40.15868,40.247135,40.33559,40.42405,40.512505,40.60096,40.689415,40.77787,40.86633,40.954784,41.04324,41.131695,41.22015,41.30861,41.397064,41.48552,41.573975,41.66243,41.75089,41.839344,41.9278,42.016254,42.10471,42.19317,42.281624,42.37008,42.458534,42.54699,42.63545,42.723904,42.81236,42.900814,42.98927,43.07773,43.166183,43.25464,43.343094,43.43155,43.520008,43.608463,43.69692,43.785374,43.87383,43.962288,44.050743,44.1392,44.227654,44.31611,44.404568,44.493023,44.58148,44.669933,44.75839,44.846848,44.935303,45.023758,45.112213,45.20067,45.289127,45.377583,45.466038,45.554493,45.64295,45.731407,45.819862,45.908318,45.996773,46.085228,46.173687,46.262142,46.350597,46.439053,46.527508,46.615967,46.704422,46.792877,46.881332,46.969788,47.058247,47.1467,47.235157,47.323612,47.412067,47.500526,47.58898,47.677437,47.765892,47.854347,47.942802,48.03126,48.119717,48.20817,48.296627,48.385082,48.47354,48.561996,48.65045,48.738907,48.827362,48.91582,49.004276,49.09273,49.181187,49.26964,49.3581,49.446556,49.53501,49.623466,49.71192,49.80038,49.888836,49.97729,50.065746,50.1542,50.24266,50.331116,50.41957,50.508026,50.59648,50.68494,50.773396,50.86185,50.950306,51.03876,51.12722,51.215675,51.30413,51.392586,51.48104,51.5695,51.657955,51.74641,51.834866,51.92332,52.01178,52.100235,52.18869,52.277145,52.3656,52.45406,52.542515,52.63097,52.719425,52.80788,52.89634,52.984795,53.07325,53.161705,53.25016,53.33862,53.427074,53.51553,53.603985,53.69244,53.7809,53.869354,53.95781,54.046265,54.13472,54.22318,54.311634,54.40009,54.488544,54.577,54.66546,54.753914,54.84237,54.930824,55.01928,55.10774,55.196194,55.28465,55.373104,55.46156,55.55002,55.638474,55.72693,55.815384,55.90384,55.9923,56.080753,56.16921,56.257664,56.34612,56.434578,56.523033,56.61149,56.699944,56.7884,56.876858,56.965313,57.05377,57.142223,57.23068,57.319134,57.407593,57.496048,57.584503,57.67296,57.761414,57.849873,57.938328,58.026783,58.11524,58.203693,58.292152,58.380608,58.469063,58.557518,58.645973,58.734432,58.822887,58.911343,58.999798,59.088253,59.176712,59.265167,59.353622,59.442078,59.530533,59.61899,59.707447,59.795902,59.884357,59.972813,60.06127,60.149727,60.238182,60.326637,60.415092,60.50355,60.592007,60.68046,60.768917,60.857372,60.94583,61.034286,61.12274,61.211197,61.299652,61.38811,61.476566,61.56502,61.653477,61.741932,61.83039,61.918846,62.0073,62.095757,62.18421,62.27267,62.361126,62.44958,62.538036,62.62649,62.71495,62.803406,62.89186,62.980316,63.06877,63.15723,63.245686,63.33414,63.422596,63.51105,63.59951,63.687965,63.77642,63.864876,63.95333,64.04179,64.13024,64.2187,64.30716,64.395615,64.48407,64.572525,64.66098,64.749435,64.83789,64.926346,65.0148,65.10326,65.19172,65.280174,65.36863,65.457085,65.54554,65.633995,65.72245,65.810905,65.89936,65.987816,66.07628,66.164734,66.25319,66.341644,66.4301,66.518555,66.60701,66.695465,66.78392,66.872375,66.96084,67.04929,67.13775,67.226204,67.31466,67.403114,67.49157,67.580025,67.66848,67.756935,67.8454,67.93385,68.02231,68.11076,68.19922,68.287674,68.37613,68.464584,68.55304,68.641495,68.72996,68.81841,68.90687,68.99532,69.08378,69.17223,69.26069,69.349144,69.4376,69.526054,69.61452,69.70297,69.79143,69.87988,69.96834,70.05679,70.14525,70.2337,70.32216,70.410614,70.49908,70.58753,70.67599,70.76444,70.8529,70.94135,71.02981,71.11826,71.20672,71.29517,71.38363,71.47209,71.56055,71.649,71.73746,71.82591,71.91437,72.00282,72.09128,72.17973,72.26819,72.35665,72.44511,72.53356,72.62202,72.71047,72.79893,72.88738,72.97584,73.06429,73.15275,73.24121,73.329666,73.41812,73.50658,73.59503,73.68349,73.77194,73.8604,73.94885,74.03731,74.12577,74.214226,74.30268,74.391136,74.47959,74.56805,74.6565,74.74496,74.83341,74.92187,75.01033,75.098785,75.18724,75.275696,75.36415,75.45261,75.54106,75.62952,75.71797,75.80643,75.89489,75.983345,76.0718,76.160255,76.24871,76.337166,76.42562,76.51408,76.60253,76.69099,76.77945,76.867905,76.95636,77.044815,77.13327,77.221725,77.31018,77.398636,77.48709,77.57555,77.66401,77.752464,77.84092,77.929375,78.01783,78.106285,78.19474,78.283195,78.37165,78.460106,78.54857,78.637024,78.72548,78.813934,78.90239,78.990845,79.0793,79.167755,79.25621,79.344666,79.43313,79.52158,79.61004,79.698494,79.78695,79.875404,79.96386,80.052315,80.14077,80.229225,80.31769,80.40614,80.4946,80.58305,80.67151,80.759964,80.84842,80.936874,81.02533,81.113785,81.20224,81.2907,81.37916,81.46761,81.55607,81.64452,81.73298,81.821434,81.90989,81.998344,82.0868,82.17526,82.26372,82.35217,82.44063,82.52908,82.61754,82.70599,82.79445,82.882904,82.97136,83.05982,83.14828,83.23673,83.32519,83.41364,83.5021,83.59055,83.67901,83.76746,83.85592,83.94438,84.03284,84.12129,84.20975,84.2982,84.38666,84.47511,84.56357,84.65202,84.74048,84.82894,84.9174,85.00585,85.09431,85.18276,85.27122,85.35967,85.44813,85.53658,85.62504,85.7135,85.801956,85.89041,85.97887,86.06732,86.15578,86.24423,86.33269,86.42114,86.5096,86.59806,86.686516,86.77497,86.86343,86.95188,87.04034,87.12879,87.21725,87.3057,87.39416,87.48262,87.571075,87.65953,87.747986,87.83644,87.9249,88.01335,88.10181,88.19026,88.27872,88.36718,88.455635,88.54409,88.632545,88.721]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl deleted file mode 100644 index 1c80b3f1b54e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/runner.jl +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/env julia -# -# @license Apache-2.0 -# -# Copyright (c) 2018 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import JSON - -""" - gen( domain, filepath ) - -Generate fixture data and write to file. - -# Arguments - -* `domain`: domain -* `filepath::AbstractString`: filepath of the output file - -# Examples - -``` julia -julia> x = range( -100, stop = 100, length = 2001 ); -julia> gen( x, \"./data.json\" ); -``` -""" -function gen( domain, filepath ) - x = collect( domain ); - y = exp.( x ); - data = Dict([ - ("x", x), - ("expected", y) - ]); - 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 ); - -# Medium negative values: -x = Float32.(range( -86.9, stop = -0.3535, length = 1000 )); -out = joinpath( dir, "./medium_negative_float32.json" ); -gen( x, out ); - -# Medium positive_float32 values: -x = Float32.(range( 0.3535, stop = 88.721, length = 1000 )); -out = joinpath( dir, "./medium_positive_float32.json" ); -gen( x, out ); - -# Small negative_float32 values: -x = Float32.(range( -0.3535, stop = -2.0^-14, length = 1000 )); -out = joinpath( dir, "./small_negative_float32.json" ); -gen( x, out ); - -# Small positive_float32 values: -x = Float32.(range( 2.0^-14, stop = 0.3535, length = 1000 )); -out = joinpath( dir, "./small_positive_float32.json" ); -gen( x, out ); - -# Tiny values: -x = Float32.(range( -2.0^-14, stop = 2.0^-14, length = 1000 )); -out = joinpath( dir, "./tiny_float32.json" ); -gen( x, out ); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json deleted file mode 100644 index e6482626928e..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_negative_float32.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[0.702226,0.7024745,0.702723,0.7029717,0.7032205,0.7034693,0.70371825,0.7039673,0.70421636,0.70446557,0.70471483,0.7049642,0.70521367,0.7054632,0.7057128,0.70596254,0.70621234,0.70646226,0.70671225,0.7069623,0.70721245,0.7074627,0.70771307,0.7079635,0.708214,0.7084646,0.70871526,0.7089661,0.70921695,0.7094679,0.709719,0.7099701,0.7102213,0.71047264,0.71072406,0.7109755,0.7112271,0.71147877,0.71173054,0.7119824,0.7122343,0.7124864,0.7127385,0.7129907,0.713243,0.7134954,0.71374786,0.7140004,0.71425307,0.7145058,0.71475863,0.71501154,0.71526456,0.71551764,0.71577084,0.71602416,0.7162775,0.716531,0.71678454,0.71703815,0.7172919,0.7175457,0.7177996,0.7180536,0.7183077,0.7185619,0.71881616,0.7190705,0.71932495,0.71957946,0.7198341,0.72008884,0.72034365,0.7205985,0.7208535,0.7211086,0.7213637,0.721619,0.72187436,0.7221298,0.7223853,0.722641,0.72289664,0.72315246,0.72340834,0.72366434,0.7239204,0.7241766,0.7244328,0.7246892,0.7249456,0.72520214,0.72545874,0.72571546,0.72597224,0.72622913,0.72648615,0.7267432,0.72700036,0.7272576,0.727515,0.72777236,0.7280299,0.7282875,0.72854525,0.72880304,0.72906095,0.7293189,0.729577,0.72983515,0.7300934,0.73035175,0.7306102,0.7308687,0.7311273,0.73138607,0.73164487,0.73190373,0.7321627,0.7324218,0.732681,0.73294026,0.7331996,0.73345906,0.7337186,0.7339783,0.73423797,0.7344978,0.73475766,0.73501766,0.7352778,0.73553795,0.73579824,0.7360586,0.73631907,0.7365796,0.73684025,0.73710096,0.7373618,0.73762274,0.73788375,0.7381448,0.738406,0.7386673,0.73892874,0.73919016,0.7394517,0.73971343,0.73997515,0.740237,0.74049896,0.740761,0.74102306,0.74128526,0.7415476,0.74181,0.74207246,0.7423351,0.74259776,0.74286056,0.7431234,0.7433863,0.7436494,0.7439126,0.7441758,0.7444391,0.7447026,0.7449661,0.74522966,0.74549335,0.74575716,0.7460211,0.746285,0.7465491,0.7468133,0.7470776,0.74734193,0.7476064,0.7478709,0.74813557,0.7484003,0.7486651,0.74893004,0.74919504,0.74946016,0.74972534,0.74999064,0.750256,0.75052154,0.7507871,0.75105274,0.7513185,0.7515844,0.7518503,0.7521164,0.7523825,0.7526488,0.7529151,0.7531815,0.753448,0.7537146,0.75398135,0.75424814,0.75451505,0.754782,0.7550491,0.7553163,0.7555835,0.7558509,0.75611836,0.7563859,0.7566536,0.75692135,0.75718915,0.75745714,0.7577251,0.7579933,0.7582615,0.75852984,0.75879824,0.75906676,0.75933534,0.75960404,0.7598728,0.7601417,0.76041067,0.7606797,0.7609489,0.7612182,0.76148754,0.761757,0.76202655,0.7622962,0.762566,0.7628358,0.7631057,0.76337576,0.7636459,0.7639161,0.7641864,0.7644568,0.7647273,0.76499796,0.7652686,0.7655394,0.7658103,0.7660813,0.76635236,0.76662356,0.7668948,0.7671662,0.76743764,0.76770926,0.7679809,0.7682526,0.7685245,0.76879644,0.7690685,0.76934063,0.76961285,0.7698852,0.77015764,0.77043015,0.7707027,0.7709755,0.7712483,0.7715212,0.7717942,0.7720673,0.77234054,0.7726138,0.77288723,0.7731607,0.7734343,0.773708,0.77398175,0.77425563,0.7745296,0.7748037,0.7750778,0.77535206,0.7756265,0.7759009,0.77617544,0.77645016,0.7767249,0.7769997,0.77727467,0.77754974,0.7778248,0.7781001,0.77837545,0.7786509,0.7789264,0.77920204,0.7794778,0.77975357,0.7800295,0.7803055,0.78058165,0.78085786,0.7811341,0.7814106,0.7816871,0.78196365,0.7822404,0.7825172,0.78279406,0.7830711,0.78334814,0.78362536,0.78390265,0.78418005,0.7844575,0.7847351,0.7850128,0.78529054,0.7855684,0.7858464,0.78612447,0.78640264,0.78668094,0.7869593,0.78723776,0.78751636,0.787795,0.7880738,0.78835267,0.7886316,0.7889107,0.7891898,0.78946906,0.78974843,0.7900279,0.79030746,0.7905871,0.79086685,0.79114676,0.79142666,0.79170674,0.7919869,0.79226714,0.79254746,0.7928279,0.79310846,0.7933891,0.7936699,0.7939507,0.79423165,0.7945127,0.79479384,0.79507506,0.7953564,0.79563785,0.7959194,0.79620105,0.7964828,0.7967646,0.79704654,0.7973286,0.7976107,0.797893,0.79817533,0.79845774,0.79874027,0.7990229,0.7993057,0.7995885,0.79987144,0.80015445,0.8004376,0.8007209,0.8010042,0.80128765,0.8015712,0.8018548,0.80213857,0.8024224,0.80270636,0.8029904,0.8032745,0.80355877,0.8038431,0.8041276,0.8044121,0.80469674,0.80498147,0.8052663,0.8055513,0.8058363,0.80612147,0.80640674,0.80669206,0.8069775,0.8072631,0.80754876,0.8078345,0.80812037,0.8084063,0.8086924,0.80897856,0.8092648,0.8095512,0.80983764,0.81012416,0.81041086,0.8106976,0.8109845,0.8112715,0.81155854,0.8118457,0.812133,0.81242037,0.81270784,0.81299543,0.8132831,0.8135709,0.81385875,0.81414676,0.8144348,0.8147231,0.8150113,0.81529975,0.81558824,0.81587684,0.81616557,0.81645435,0.81674325,0.8170323,0.81732136,0.81761056,0.8178999,0.8181893,0.8184788,0.81876844,0.8190582,0.81934804,0.81963795,0.819928,0.82021815,0.82050836,0.8207987,0.82108915,0.82137966,0.82167035,0.8219611,0.822252,0.8225429,0.82283396,0.8231251,0.8234164,0.82370776,0.8239992,0.8242908,0.8245825,0.8248743,0.82516617,0.82545817,0.82575023,0.8260424,0.8263347,0.82662714,0.8269197,0.8272123,0.827505,0.8277978,0.8280907,0.82838374,0.8286769,0.8289701,0.82926345,0.8295569,0.82985044,0.83014405,0.83043784,0.8307317,0.8310256,0.8313197,0.83161384,0.8319081,0.8322025,0.832497,0.83279157,0.83308625,0.83338106,0.8336759,0.83397096,0.83426607,0.8345612,0.83485657,0.835152,0.8354475,0.8357431,0.8360389,0.8363347,0.83663064,0.8369267,0.8372229,0.8375191,0.83781546,0.83811194,0.83840847,0.8387052,0.83900195,0.83929884,0.83959585,0.8398929,0.8401901,0.8404874,0.84078485,0.84108233,0.84138,0.8416777,0.84197557,0.8422735,0.8425715,0.8428697,0.8431679,0.8434663,0.8437647,0.84406334,0.844362,0.84466076,0.8449597,0.84525865,0.84555775,0.84585696,0.8461563,0.8464557,0.8467552,0.84705484,0.8473546,0.8476544,0.84795433,0.84825444,0.84855455,0.84885484,0.84915525,0.8494557,0.8497563,0.85005695,0.8503578,0.85065866,0.85095966,0.8512608,0.851562,0.8518634,0.8521648,0.85246634,0.85276794,0.8530697,0.8533716,0.8536736,0.85397565,0.85427785,0.8545801,0.85488254,0.85518503,0.85548764,0.8557904,0.85609317,0.85639614,0.85669917,0.8570023,0.8573055,0.8576089,0.85791236,0.858216,0.8585197,0.8588234,0.85912734,0.8594313,0.8597354,0.8600397,0.860344,0.86064845,0.860953,0.8612577,0.86156243,0.86186725,0.86217225,0.86247736,0.86278254,0.86308783,0.86339325,0.8636987,0.8640044,0.8643101,0.864616,0.8649219,0.86522794,0.8655341,0.8658404,0.8661468,0.8664533,0.86675984,0.86706656,0.8673734,0.8676803,0.86798733,0.8682945,0.86860174,0.8689091,0.86921656,0.8695241,0.86983186,0.8701396,0.8704475,0.87075555,0.87106365,0.8713719,0.87168026,0.8719887,0.8722972,0.8726059,0.8729147,0.87322354,0.8735326,0.87384164,0.8741509,0.8744602,0.8747696,0.87507915,0.87538886,0.87569857,0.87600845,0.87631845,0.8766285,0.87693876,0.87724906,0.8775595,0.87786996,0.8781806,0.8784914,0.87880224,0.8791132,0.8794243,0.87973547,0.8800468,0.88035816,0.8806697,0.8809813,0.88129306,0.8816049,0.8819169,0.882229,0.8825411,0.88285345,0.88316584,0.88347834,0.88379097,0.8841037,0.8844165,0.8847295,0.88504255,0.8853558,0.88566905,0.88598245,0.8862959,0.88660955,0.8869233,0.88723713,0.88755107,0.8878651,0.8881793,0.8884936,0.888808,0.88912255,0.88943714,0.88975185,0.89006674,0.8903817,0.89069676,0.8910119,0.8913272,0.89164263,0.8919581,0.8922737,0.8925895,0.89290535,0.8932213,0.89353734,0.89385355,0.89416987,0.89448625,0.89480275,0.8951194,0.89543617,0.89575297,0.89606994,0.89638704,0.89670426,0.89702153,0.8973389,0.8976565,0.89797413,0.8982919,0.89860976,0.8989277,0.8992458,0.899564,0.8998823,0.9002007,0.9005193,0.90083796,0.9011567,0.9014756,0.9017946,0.9021137,0.9024329,0.9027522,0.9030717,0.90339124,0.9037109,0.9040307,0.9043506,0.9046706,0.90499073,0.9053109,0.9056313,0.90595174,0.90627235,0.906593,0.9069138,0.9072347,0.90755576,0.9078769,0.9081982,0.90851957,0.908841,0.90916264,0.9094843,0.9098062,0.9101281,0.91045016,0.9107723,0.9110946,0.911417,0.9117395,0.9120621,0.91238487,0.91270775,0.9130307,0.9133538,0.913677,0.9140003,0.9143237,0.9146472,0.9149709,0.91529465,0.91561854,0.91594255,0.9162667,0.91659087,0.91691524,0.91723967,0.9175643,0.91788894,0.9182137,0.91853863,0.91886365,0.9191888,0.91951406,0.91983944,0.92016494,0.92049056,0.92081624,0.9211421,0.9214681,0.9217941,0.92212033,0.9224466,0.922773,0.9230995,0.9234262,0.92375296,0.92407984,0.9244068,0.92473394,0.92506117,0.92538846,0.9257159,0.9260435,0.9263712,0.926699,0.9270269,0.92735493,0.9276831,0.92801136,0.9283397,0.92866826,0.92899686,0.9293256,0.9296544,0.9299834,0.93031245,0.93064165,0.93097097,0.9313004,0.93162996,0.9319596,0.93228936,0.9326193,0.9329493,0.93327945,0.93360966,0.93394005,0.9342705,0.9346011,0.9349318,0.9352627,0.9355936,0.93592465,0.9362559,0.93658715,0.93691856,0.9372501,0.9375818,0.93791354,0.9382454,0.9385774,0.93890953,0.93924177,0.9395741,0.9399066,0.9402392,0.9405719,0.94090474,0.9412377,0.94157076,0.9419039,0.9422372,0.9425706,0.9429042,0.94323784,0.94357157,0.9439055,0.9442395,0.9445736,0.94490784,0.9452422,0.94557667,0.9459113,0.94624597,0.9465808,0.9469158,0.94725084,0.94758606,0.94792134,0.9482568,0.9485923,0.948928,0.94926375,0.9495997,0.9499357,0.95027184,0.9506081,0.9509445,0.95128095,0.9516176,0.9519543,0.9522912,0.95262814,0.95296526,0.95330244,0.9536398,0.9539772,0.9543148,0.9546525,0.9549903,0.9553282,0.9556663,0.95600444,0.95634276,0.95668113,0.9570197,0.9573583,0.9576971,0.95803595,0.958375,0.9587141,0.95905334,0.9593927,0.9597322,0.9600718,0.96041155,0.96075135,0.96109134,0.96143144,0.96177167,0.96211195,0.9624524,0.962793,0.9631337,0.96347445,0.9638154,0.96415645,0.9644976,0.9648389,0.96518034,0.9655219,0.9658635,0.9662053,0.9665472,0.9668892,0.96723133,0.96757364,0.967916,0.9682585,0.9686011,0.9689439,0.96928674,0.9696297,0.96997285,0.97031605,0.97065943,0.9710029,0.9713465,0.9716902,0.97203404,0.972378,0.97272205,0.9730663,0.9734106,0.97375506,0.97409964,0.9744443,0.97478914,0.9751341,0.9754791,0.9758243,0.9761696,0.976515,0.9768606,0.97720623,0.977552,0.97789794,0.97824395,0.97859013,0.9789364,0.9792828,0.97962934,0.979976,0.9803227,0.9806696,0.98101664,0.9813638,0.98171103,0.98205847,0.98240596,0.9827536,0.9831013,0.9834492,0.9837972,0.98414534,0.98449355,0.98484194,0.98519045,0.985539,0.98588777,0.98623663,0.9865856,0.9869347,0.98728395,0.98763335,0.9879828,0.9883324,0.98868215,0.989032,0.98938197,0.989732,0.99008226,0.9904326,0.9907831,0.9911337,0.9914844,0.99183524,0.9921862,0.9925373,0.9928885,0.9932399,0.9935913,0.9939429,0.99429464,0.99464643,0.9949984,0.9953505,0.9957027,0.99605507,0.9964075,0.9967601,0.9971128,0.9974656,0.9978186,0.9981717,0.9985249,0.99887824,0.9992317,0.9995853,0.99993896],"x":[-0.3535,-0.3531462,-0.3527924,-0.35243863,-0.35208482,-0.35173103,-0.35137725,-0.35102347,-0.35066965,-0.35031587,-0.3499621,-0.34960827,-0.3492545,-0.3489007,-0.3485469,-0.3481931,-0.34783933,-0.3474855,-0.34713173,-0.34677795,-0.34642413,-0.34607035,-0.34571657,-0.34536275,-0.34500897,-0.3446552,-0.3443014,-0.3439476,-0.3435938,-0.34324002,-0.3428862,-0.34253243,-0.34217864,-0.34182483,-0.34147105,-0.34111726,-0.34076345,-0.34040967,-0.34005588,-0.33970207,-0.3393483,-0.3389945,-0.3386407,-0.3382869,-0.33793312,-0.33757934,-0.33722553,-0.33687174,-0.33651796,-0.33616415,-0.33581036,-0.33545658,-0.33510277,-0.33474898,-0.3343952,-0.3340414,-0.3336876,-0.33333382,-0.33298,-0.33262622,-0.33227244,-0.33191863,-0.33156484,-0.33121106,-0.33085728,-0.33050346,-0.33014968,-0.3297959,-0.32944208,-0.3290883,-0.32873452,-0.3283807,-0.32802692,-0.32767314,-0.32731932,-0.32696554,-0.32661176,-0.32625794,-0.32590416,-0.32555038,-0.3251966,-0.32484278,-0.324489,-0.3241352,-0.3237814,-0.32342762,-0.32307383,-0.32272002,-0.32236624,-0.32201245,-0.32165864,-0.32130486,-0.32095107,-0.32059726,-0.32024348,-0.3198897,-0.31953588,-0.3191821,-0.3188283,-0.31847453,-0.31812072,-0.31776693,-0.31741315,-0.31705934,-0.31670555,-0.31635177,-0.31599796,-0.31564417,-0.3152904,-0.31493658,-0.3145828,-0.314229,-0.3138752,-0.31352141,-0.31316763,-0.31281382,-0.31246004,-0.31210625,-0.31175247,-0.31139866,-0.31104487,-0.3106911,-0.31033728,-0.3099835,-0.3096297,-0.3092759,-0.3089221,-0.30856833,-0.30821452,-0.30786073,-0.30750695,-0.30715314,-0.30679935,-0.30644557,-0.30609176,-0.30573797,-0.3053842,-0.3050304,-0.3046766,-0.3043228,-0.30396903,-0.3036152,-0.30326143,-0.30290765,-0.30255383,-0.30220005,-0.30184627,-0.30149245,-0.30113867,-0.3007849,-0.30043107,-0.3000773,-0.2997235,-0.29936972,-0.2990159,-0.29866213,-0.29830834,-0.29795453,-0.29760075,-0.29724696,-0.29689315,-0.29653937,-0.29618558,-0.29583177,-0.295478,-0.2951242,-0.2947704,-0.2944166,-0.29406282,-0.293709,-0.29335523,-0.29300144,-0.29264766,-0.29229385,-0.29194006,-0.29158628,-0.29123247,-0.29087868,-0.2905249,-0.2901711,-0.2898173,-0.28946352,-0.2891097,-0.28875592,-0.28840214,-0.28804833,-0.28769454,-0.28734076,-0.28698695,-0.28663316,-0.28627938,-0.2859256,-0.28557178,-0.285218,-0.28486422,-0.2845104,-0.28415662,-0.28380284,-0.28344902,-0.28309524,-0.28274146,-0.28238764,-0.28203386,-0.28168008,-0.28132626,-0.28097248,-0.2806187,-0.2802649,-0.2799111,-0.27955732,-0.27920353,-0.27884972,-0.27849594,-0.27814215,-0.27778834,-0.27743456,-0.27708077,-0.27672696,-0.27637318,-0.2760194,-0.27566558,-0.2753118,-0.274958,-0.2746042,-0.27425042,-0.27389663,-0.27354285,-0.27318904,-0.27283525,-0.27248147,-0.27212766,-0.27177387,-0.2714201,-0.27106628,-0.2707125,-0.2703587,-0.2700049,-0.26965111,-0.26929733,-0.26894352,-0.26858974,-0.26823595,-0.26788214,-0.26752836,-0.26717457,-0.2668208,-0.26646698,-0.2661132,-0.2657594,-0.2654056,-0.2650518,-0.26469803,-0.26434422,-0.26399043,-0.26363665,-0.26328284,-0.26292905,-0.26257527,-0.26222146,-0.26186767,-0.2615139,-0.26116008,-0.2608063,-0.2604525,-0.26009873,-0.2597449,-0.25939113,-0.25903735,-0.25868353,-0.25832975,-0.25797597,-0.25762215,-0.25726837,-0.2569146,-0.25656077,-0.256207,-0.2558532,-0.2554994,-0.2551456,-0.25479183,-0.25443804,-0.25408423,-0.25373045,-0.25337666,-0.25302285,-0.25266907,-0.25231528,-0.25196147,-0.2516077,-0.2512539,-0.2509001,-0.2505463,-0.25019252,-0.24983872,-0.24948493,-0.24913114,-0.24877734,-0.24842355,-0.24806976,-0.24771596,-0.24736217,-0.24700838,-0.24665459,-0.2463008,-0.245947,-0.2455932,-0.24523942,-0.24488562,-0.24453183,-0.24417804,-0.24382424,-0.24347045,-0.24311666,-0.24276286,-0.24240908,-0.24205528,-0.24170148,-0.2413477,-0.2409939,-0.2406401,-0.24028632,-0.23993252,-0.23957874,-0.23922494,-0.23887114,-0.23851736,-0.23816356,-0.23780976,-0.23745598,-0.23710218,-0.2367484,-0.2363946,-0.2360408,-0.23568702,-0.23533322,-0.23497942,-0.23462564,-0.23427184,-0.23391804,-0.23356426,-0.23321046,-0.23285668,-0.23250288,-0.23214908,-0.2317953,-0.2314415,-0.2310877,-0.23073392,-0.23038012,-0.23002633,-0.22967254,-0.22931874,-0.22896495,-0.22861116,-0.22825736,-0.22790357,-0.22754978,-0.22719598,-0.2268422,-0.2264884,-0.22613461,-0.22578081,-0.22542702,-0.22507323,-0.22471943,-0.22436564,-0.22401185,-0.22365806,-0.22330427,-0.22295047,-0.22259668,-0.22224289,-0.2218891,-0.2215353,-0.22118151,-0.22082771,-0.22047393,-0.22012013,-0.21976633,-0.21941255,-0.21905875,-0.21870495,-0.21835117,-0.21799737,-0.21764357,-0.21728979,-0.21693599,-0.21658221,-0.21622841,-0.21587461,-0.21552083,-0.21516703,-0.21481323,-0.21445945,-0.21410565,-0.21375187,-0.21339807,-0.21304427,-0.21269049,-0.21233669,-0.21198289,-0.21162911,-0.21127531,-0.21092153,-0.21056773,-0.21021393,-0.20986015,-0.20950635,-0.20915255,-0.20879877,-0.20844497,-0.20809117,-0.20773739,-0.20738359,-0.2070298,-0.206676,-0.20632221,-0.20596842,-0.20561463,-0.20526083,-0.20490704,-0.20455325,-0.20419946,-0.20384566,-0.20349187,-0.20313808,-0.20278428,-0.20243049,-0.2020767,-0.2017229,-0.20136912,-0.20101532,-0.20066153,-0.20030774,-0.19995394,-0.19960015,-0.19924636,-0.19889256,-0.19853877,-0.19818498,-0.19783118,-0.1974774,-0.1971236,-0.1967698,-0.19641602,-0.19606222,-0.19570842,-0.19535464,-0.19500084,-0.19464706,-0.19429326,-0.19393946,-0.19358568,-0.19323188,-0.19287808,-0.1925243,-0.1921705,-0.1918167,-0.19146292,-0.19110912,-0.19075534,-0.19040154,-0.19004774,-0.18969396,-0.18934016,-0.18898636,-0.18863258,-0.18827878,-0.187925,-0.1875712,-0.1872174,-0.18686362,-0.18650982,-0.18615602,-0.18580224,-0.18544844,-0.18509465,-0.18474086,-0.18438706,-0.18403327,-0.18367948,-0.18332568,-0.1829719,-0.1826181,-0.1822643,-0.18191051,-0.18155672,-0.18120293,-0.18084913,-0.18049534,-0.18014155,-0.17978776,-0.17943396,-0.17908017,-0.17872638,-0.17837259,-0.1780188,-0.177665,-0.17731121,-0.17695741,-0.17660362,-0.17624983,-0.17589603,-0.17554225,-0.17518845,-0.17483465,-0.17448087,-0.17412707,-0.17377327,-0.17341949,-0.17306569,-0.1727119,-0.17235811,-0.17200431,-0.17165053,-0.17129673,-0.17094293,-0.17058915,-0.17023535,-0.16988155,-0.16952777,-0.16917397,-0.16882019,-0.16846639,-0.16811259,-0.16775881,-0.16740501,-0.16705121,-0.16669743,-0.16634363,-0.16598983,-0.16563605,-0.16528225,-0.16492847,-0.16457467,-0.16422087,-0.16386709,-0.16351329,-0.16315949,-0.1628057,-0.16245191,-0.16209812,-0.16174433,-0.16139053,-0.16103674,-0.16068295,-0.16032915,-0.15997536,-0.15962157,-0.15926778,-0.15891398,-0.15856019,-0.1582064,-0.1578526,-0.1574988,-0.15714502,-0.15679123,-0.15643743,-0.15608364,-0.15572985,-0.15537606,-0.15502226,-0.15466847,-0.15431468,-0.15396088,-0.15360709,-0.1532533,-0.1528995,-0.15254572,-0.15219192,-0.15183812,-0.15148434,-0.15113054,-0.15077674,-0.15042296,-0.15006916,-0.14971538,-0.14936158,-0.14900778,-0.148654,-0.1483002,-0.1479464,-0.14759262,-0.14723882,-0.14688502,-0.14653124,-0.14617744,-0.14582366,-0.14546986,-0.14511606,-0.14476228,-0.14440848,-0.14405468,-0.1437009,-0.1433471,-0.14299332,-0.14263952,-0.14228572,-0.14193194,-0.14157814,-0.14122434,-0.14087056,-0.14051676,-0.14016297,-0.13980918,-0.13945538,-0.1391016,-0.1387478,-0.138394,-0.13804021,-0.13768642,-0.13733262,-0.13697883,-0.13662504,-0.13627125,-0.13591745,-0.13556366,-0.13520987,-0.13485608,-0.13450228,-0.1341485,-0.1337947,-0.13344091,-0.13308711,-0.13273332,-0.13237953,-0.13202573,-0.13167194,-0.13131815,-0.13096435,-0.13061056,-0.13025677,-0.12990297,-0.12954919,-0.12919539,-0.1288416,-0.12848781,-0.12813401,-0.12778021,-0.12742643,-0.12707263,-0.12671885,-0.12636505,-0.12601125,-0.12565747,-0.12530367,-0.12494988,-0.12459609,-0.12424229,-0.1238885,-0.12353471,-0.12318092,-0.12282712,-0.12247333,-0.12211954,-0.12176574,-0.12141195,-0.12105816,-0.12070437,-0.12035057,-0.11999678,-0.11964299,-0.1192892,-0.1189354,-0.11858161,-0.11822782,-0.11787403,-0.11752023,-0.11716644,-0.11681265,-0.116458856,-0.11610506,-0.11575127,-0.115397476,-0.115043685,-0.11468989,-0.114336096,-0.113982305,-0.11362851,-0.113274716,-0.112920925,-0.112567134,-0.112213336,-0.111859545,-0.111505754,-0.11115196,-0.110798165,-0.110444374,-0.11009058,-0.10973679,-0.109382994,-0.1090292,-0.10867541,-0.10832162,-0.107967824,-0.10761403,-0.10726024,-0.10690645,-0.10655265,-0.10619886,-0.10584507,-0.10549128,-0.10513748,-0.10478369,-0.1044299,-0.1040761,-0.10372231,-0.10336852,-0.10301473,-0.10266093,-0.10230714,-0.10195335,-0.10159956,-0.10124576,-0.10089197,-0.10053818,-0.10018439,-0.09983059,-0.0994768,-0.09912301,-0.09876922,-0.09841542,-0.09806163,-0.09770784,-0.09735405,-0.09700025,-0.09664646,-0.09629267,-0.09593887,-0.09558508,-0.09523129,-0.0948775,-0.0945237,-0.09416991,-0.09381612,-0.093462326,-0.09310853,-0.09275474,-0.092400946,-0.092047155,-0.09169336,-0.091339566,-0.090985775,-0.090631984,-0.090278186,-0.089924395,-0.089570604,-0.08921681,-0.088863015,-0.088509224,-0.08815543,-0.08780164,-0.087447844,-0.08709405,-0.08674026,-0.086386465,-0.08603267,-0.08567888,-0.08532509,-0.084971294,-0.0846175,-0.08426371,-0.08390992,-0.08355612,-0.08320233,-0.08284854,-0.08249475,-0.08214095,-0.08178716,-0.08143337,-0.08107958,-0.08072578,-0.08037199,-0.0800182,-0.07966441,-0.07931061,-0.07895682,-0.07860303,-0.07824923,-0.07789544,-0.07754165,-0.07718786,-0.07683406,-0.07648027,-0.07612648,-0.07577269,-0.07541889,-0.0750651,-0.07471131,-0.07435752,-0.07400372,-0.07364993,-0.07329614,-0.07294235,-0.07258855,-0.07223476,-0.07188097,-0.071527176,-0.07117338,-0.07081959,-0.070465796,-0.070112005,-0.06975821,-0.069404416,-0.069050625,-0.06869683,-0.068343036,-0.067989245,-0.067635454,-0.067281656,-0.066927865,-0.066574074,-0.06622028,-0.065866485,-0.065512694,-0.0651589,-0.06480511,-0.064451315,-0.06409752,-0.06374373,-0.06338994,-0.063036144,-0.06268235,-0.062328562,-0.061974768,-0.061620977,-0.061267182,-0.060913388,-0.060559597,-0.060205802,-0.05985201,-0.059498217,-0.059144426,-0.05879063,-0.05843684,-0.058083046,-0.057729255,-0.05737546,-0.05702167,-0.056667875,-0.056314085,-0.05596029,-0.0556065,-0.055252705,-0.054898914,-0.05454512,-0.05419133,-0.053837534,-0.053483743,-0.05312995,-0.052776158,-0.052422363,-0.05206857,-0.051714778,-0.051360983,-0.051007193,-0.050653398,-0.050299607,-0.049945813,-0.04959202,-0.049238227,-0.048884436,-0.048530642,-0.04817685,-0.047823057,-0.047469266,-0.04711547,-0.04676168,-0.046407886,-0.046054095,-0.0457003,-0.04534651,-0.044992715,-0.044638924,-0.04428513,-0.04393134,-0.043577544,-0.04322375,-0.04286996,-0.042516164,-0.042162374,-0.04180858,-0.04145479,-0.041100994,-0.040747203,-0.04039341,-0.040039618,-0.039685823,-0.039332032,-0.038978238,-0.038624447,-0.038270652,-0.03791686,-0.037563067,-0.037209276,-0.03685548,-0.03650169,-0.036147896,-0.035794105,-0.03544031,-0.03508652,-0.034732725,-0.03437893,-0.03402514,-0.033671346,-0.033317555,-0.03296376,-0.03260997,-0.032256175,-0.031902384,-0.03154859,-0.031194799,-0.030841006,-0.030487211,-0.030133419,-0.029779626,-0.029425833,-0.02907204,-0.028718248,-0.028364455,-0.028010663,-0.02765687,-0.027303077,-0.026949285,-0.026595492,-0.0262417,-0.025887907,-0.025534114,-0.025180321,-0.024826529,-0.024472736,-0.024118943,-0.02376515,-0.023411358,-0.023057565,-0.022703772,-0.02234998,-0.021996187,-0.021642393,-0.0212886,-0.020934807,-0.020581014,-0.020227222,-0.01987343,-0.019519636,-0.019165844,-0.018812051,-0.018458258,-0.018104466,-0.017750673,-0.01739688,-0.017043088,-0.016689295,-0.016335502,-0.01598171,-0.015627917,-0.015274123,-0.014920331,-0.014566538,-0.014212745,-0.013858953,-0.01350516,-0.013151367,-0.0127975745,-0.012443782,-0.012089989,-0.0117361965,-0.011382404,-0.011028611,-0.0106748175,-0.010321025,-0.009967232,-0.009613439,-0.009259647,-0.008905854,-0.008552061,-0.008198269,-0.007844476,-0.007490683,-0.00713689,-0.0067830975,-0.006429305,-0.006075512,-0.0057217195,-0.0053679263,-0.0050141336,-0.004660341,-0.0043065483,-0.0039527556,-0.0035989627,-0.00324517,-0.0028913773,-0.0025375844,-0.0021837917,-0.0018299989,-0.0014762062,-0.0011224134,-0.0007686207,-0.00041482793,-6.1035156e-5]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json deleted file mode 100644 index bfd029639739..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/small_positive_float32.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[1.000061,1.000415,1.0007689,1.0011231,1.0014772,1.0018317,1.0021862,1.0025408,1.0028956,1.0032505,1.0036055,1.0039606,1.0043159,1.0046712,1.0050267,1.0053824,1.0057381,1.006094,1.00645,1.0068061,1.0071625,1.0075188,1.0078753,1.008232,1.0085888,1.0089456,1.0093026,1.0096598,1.010017,1.0103744,1.010732,1.0110897,1.0114474,1.0118053,1.0121634,1.0125215,1.0128798,1.0132382,1.0135968,1.0139555,1.0143142,1.0146731,1.0150322,1.0153913,1.0157506,1.0161101,1.0164696,1.0168294,1.0171891,1.017549,1.0179092,1.0182693,1.0186297,1.0189902,1.0193506,1.0197114,1.0200722,1.0204332,1.0207943,1.0211555,1.0215168,1.0218782,1.0222399,1.0226016,1.0229634,1.0233254,1.0236876,1.0240498,1.0244122,1.0247747,1.0251373,1.0255,1.0258629,1.0262259,1.026589,1.0269523,1.0273157,1.0276792,1.0280429,1.0284066,1.0287706,1.0291346,1.0294988,1.029863,1.0302274,1.0305921,1.0309567,1.0313215,1.0316864,1.0320516,1.0324167,1.0327821,1.0331475,1.0335131,1.0338788,1.0342447,1.0346106,1.0349767,1.0353429,1.0357093,1.0360758,1.0364424,1.0368092,1.037176,1.037543,1.0379102,1.0382775,1.0386449,1.0390124,1.0393801,1.0397478,1.0401158,1.0404838,1.040852,1.0412203,1.0415888,1.0419574,1.0423261,1.0426948,1.0430639,1.043433,1.0438021,1.0441715,1.044541,1.0449107,1.0452803,1.0456502,1.0460203,1.0463904,1.0467607,1.0471311,1.0475016,1.0478723,1.048243,1.048614,1.048985,1.0493562,1.0497276,1.050099,1.0504706,1.0508423,1.0512141,1.0515862,1.0519582,1.0523305,1.0527028,1.0530753,1.053448,1.0538207,1.0541936,1.0545666,1.0549399,1.0553131,1.0556866,1.0560601,1.0564338,1.0568076,1.0571816,1.0575557,1.0579299,1.0583043,1.0586787,1.0590534,1.0594281,1.059803,1.060178,1.0605532,1.0609285,1.0613039,1.0616794,1.0620551,1.0624309,1.0628068,1.063183,1.0635592,1.0639355,1.064312,1.0646886,1.0650654,1.0654422,1.0658193,1.0661963,1.0665736,1.066951,1.0673286,1.0677063,1.0680841,1.068462,1.0688401,1.0692184,1.0695966,1.0699751,1.0703537,1.0707326,1.0711114,1.0714904,1.0718696,1.0722489,1.0726283,1.0730078,1.0733875,1.0737674,1.0741473,1.0745274,1.0749077,1.075288,1.0756686,1.0760491,1.07643,1.0768108,1.0771918,1.0775731,1.0779543,1.0783358,1.0787174,1.079099,1.0794809,1.0798628,1.080245,1.0806272,1.0810096,1.0813922,1.0817748,1.0821576,1.0825405,1.0829235,1.0833068,1.0836902,1.0840735,1.0844572,1.0848409,1.0852249,1.0856088,1.0859929,1.0863773,1.0867617,1.0871463,1.087531,1.0879158,1.0883007,1.0886859,1.089071,1.0894564,1.089842,1.0902276,1.0906134,1.0909992,1.0913854,1.0917715,1.0921578,1.0925443,1.0929309,1.0933176,1.0937046,1.0940915,1.0944787,1.094866,1.0952535,1.095641,1.0960287,1.0964165,1.0968045,1.0971926,1.0975808,1.0979693,1.0983578,1.0987464,1.0991352,1.0995241,1.0999132,1.1003025,1.1006918,1.1010813,1.1014708,1.1018606,1.1022506,1.1026406,1.1030308,1.1034211,1.1038115,1.1042022,1.1045928,1.1049837,1.1053747,1.1057658,1.1061572,1.1065485,1.1069402,1.1073319,1.1077236,1.1081157,1.1085078,1.1089,1.1092924,1.109685,1.1100776,1.1104704,1.1108633,1.1112564,1.1116496,1.112043,1.1124365,1.1128302,1.1132239,1.1136179,1.1140119,1.1144061,1.1148005,1.1151949,1.1155895,1.1159843,1.1163791,1.1167742,1.1171694,1.1175647,1.1179602,1.1183558,1.1187515,1.1191474,1.1195434,1.1199396,1.1203358,1.1207323,1.1211289,1.1215255,1.1219225,1.1223195,1.1227165,1.1231139,1.1235113,1.1239089,1.1243066,1.1247044,1.1251024,1.1255004,1.1258987,1.1262971,1.1266958,1.1270944,1.1274933,1.1278921,1.1282912,1.1286906,1.12909,1.1294894,1.1298891,1.130289,1.1306889,1.1310891,1.1314893,1.1318897,1.1322902,1.1326909,1.1330917,1.1334926,1.1338937,1.134295,1.1346964,1.1350979,1.1354995,1.1359013,1.1363032,1.1367053,1.1371076,1.13751,1.1379124,1.1383151,1.1387179,1.1391208,1.1395239,1.1399271,1.1403306,1.1407341,1.1411377,1.1415415,1.1419454,1.1423495,1.1427537,1.1431581,1.1435626,1.1439673,1.1443721,1.144777,1.1451821,1.1455873,1.1459928,1.1463982,1.1468039,1.1472096,1.1476157,1.1480217,1.148428,1.1488343,1.1492409,1.1496475,1.1500543,1.1504613,1.1508684,1.1512756,1.151683,1.1520905,1.1524982,1.1529061,1.153314,1.153722,1.1541303,1.1545388,1.1549473,1.1553559,1.1557648,1.1561737,1.1565828,1.1569922,1.1574016,1.157811,1.1582208,1.1586306,1.1590407,1.1594508,1.1598611,1.1602714,1.160682,1.1610928,1.1615036,1.1619146,1.1623257,1.162737,1.1631485,1.16356,1.1639718,1.1643836,1.1647958,1.1652079,1.1656202,1.1660327,1.1664453,1.1668581,1.1672709,1.167684,1.1680971,1.1685104,1.168924,1.1693376,1.1697514,1.1701653,1.1705793,1.1709936,1.1714079,1.1718224,1.1722372,1.1726519,1.1730669,1.173482,1.1738971,1.1743126,1.1747282,1.1751438,1.1755596,1.1759757,1.1763917,1.176808,1.1772244,1.177641,1.1780578,1.1784745,1.1788915,1.1793088,1.179726,1.1801435,1.1805611,1.1809789,1.1813967,1.1818148,1.182233,1.1826513,1.1830698,1.1834885,1.1839073,1.1843262,1.1847452,1.1851645,1.1855838,1.1860033,1.1864231,1.1868429,1.1872629,1.187683,1.1881032,1.1885237,1.1889442,1.1893649,1.1897857,1.1902068,1.1906279,1.1910492,1.1914707,1.1918924,1.1923141,1.192736,1.193158,1.1935803,1.1940026,1.1944251,1.1948478,1.1952705,1.1956935,1.1961167,1.1965399,1.1969633,1.1973869,1.1978105,1.1982344,1.1986583,1.1990825,1.1995069,1.1999313,1.2003559,1.2007806,1.2012055,1.2016306,1.2020558,1.2024812,1.2029067,1.2033323,1.2037581,1.204184,1.2046102,1.2050364,1.2054628,1.2058895,1.2063161,1.206743,1.20717,1.2075971,1.2080245,1.208452,1.2088796,1.2093073,1.2097353,1.2101634,1.2105916,1.21102,1.2114484,1.2118771,1.2123059,1.2127349,1.2131641,1.2135934,1.2140228,1.2144524,1.2148821,1.215312,1.2157421,1.2161722,1.2166026,1.2170331,1.2174637,1.2178946,1.2183255,1.2187567,1.2191879,1.2196193,1.2200508,1.2204826,1.2209145,1.2213465,1.2217786,1.222211,1.2226435,1.2230761,1.223509,1.2239419,1.224375,1.2248082,1.2252417,1.2256752,1.2261089,1.2265428,1.2269768,1.2274109,1.2278453,1.2282797,1.2287143,1.2291492,1.2295841,1.2300192,1.2304544,1.2308899,1.2313254,1.2317611,1.232197,1.232633,1.2330692,1.2335055,1.233942,1.2343787,1.2348155,1.2352524,1.2356895,1.2361268,1.2365642,1.2370018,1.2374394,1.2378774,1.2383153,1.2387536,1.2391919,1.2396303,1.240069,1.2405078,1.2409468,1.2413859,1.2418252,1.2422646,1.2427042,1.2431439,1.2435838,1.2440238,1.244464,1.2449044,1.2453449,1.2457856,1.2462264,1.2466674,1.2471086,1.2475499,1.2479913,1.2484329,1.2488747,1.2493166,1.2497587,1.2502009,1.2506433,1.2510859,1.2515285,1.2519714,1.2524145,1.2528576,1.2533009,1.2537445,1.2541881,1.2546319,1.2550758,1.25552,1.2559643,1.2564087,1.2568532,1.257298,1.2577429,1.2581879,1.2586331,1.2590785,1.2595241,1.2599697,1.2604156,1.2608616,1.2613077,1.261754,1.2622006,1.2626472,1.263094,1.263541,1.263988,1.2644353,1.2648827,1.2653303,1.2657781,1.2662259,1.266674,1.2671223,1.2675706,1.2680192,1.2684679,1.2689167,1.2693658,1.2698148,1.2702643,1.2707138,1.2711633,1.2716132,1.2720631,1.2725133,1.2729635,1.273414,1.2738646,1.2743154,1.2747663,1.2752174,1.2756686,1.2761201,1.2765716,1.2770233,1.2774752,1.2779273,1.2783794,1.2788318,1.2792844,1.279737,1.2801899,1.2806429,1.281096,1.2815493,1.2820028,1.2824564,1.2829102,1.2833642,1.2838184,1.2842727,1.2847271,1.2851816,1.2856364,1.2860914,1.2865465,1.2870017,1.2874571,1.2879127,1.2883685,1.2888243,1.2892804,1.2897366,1.290193,1.2906495,1.2911062,1.2915632,1.2920201,1.2924774,1.2929347,1.2933922,1.2938498,1.2943077,1.2947657,1.2952238,1.2956822,1.2961407,1.2965993,1.2970581,1.2975171,1.2979763,1.2984354,1.298895,1.2993546,1.2998143,1.3002744,1.3007344,1.3011947,1.3016552,1.3021158,1.3025765,1.3030374,1.3034985,1.3039597,1.3044212,1.3048828,1.3053445,1.3058064,1.3062685,1.3067306,1.307193,1.3076557,1.3081183,1.3085812,1.3090444,1.3095075,1.3099709,1.3104345,1.3108981,1.311362,1.311826,1.3122902,1.3127545,1.3132191,1.3136839,1.3141487,1.3146137,1.3150789,1.3155441,1.3160096,1.3164754,1.3169413,1.3174073,1.3178734,1.3183397,1.3188063,1.319273,1.3197397,1.3202068,1.320674,1.3211412,1.3216088,1.3220764,1.3225442,1.3230122,1.3234804,1.3239487,1.3244171,1.3248857,1.3253547,1.3258237,1.3262928,1.3267621,1.3272315,1.3277012,1.328171,1.328641,1.3291111,1.3295815,1.3300519,1.3305225,1.3309934,1.3314644,1.3319355,1.3324069,1.3328784,1.33335,1.3338218,1.3342937,1.3347659,1.3352382,1.3357108,1.3361833,1.3366561,1.3371291,1.3376023,1.3380756,1.3385491,1.3390228,1.3394966,1.3399706,1.3404447,1.340919,1.3413935,1.3418682,1.342343,1.342818,1.3432932,1.3437685,1.344244,1.3447196,1.3451955,1.3456715,1.3461477,1.346624,1.3471005,1.3475772,1.348054,1.3485311,1.3490083,1.3494856,1.3499632,1.3504409,1.3509187,1.3513967,1.351875,1.3523533,1.3528318,1.3533105,1.3537894,1.3542684,1.3547477,1.3552271,1.3557066,1.3561864,1.3566662,1.3571463,1.3576266,1.3581069,1.3585875,1.3590683,1.3595492,1.3600303,1.3605115,1.3609929,1.3614745,1.3619562,1.3624382,1.3629204,1.3634026,1.363885,1.3643677,1.3648505,1.3653334,1.3658166,1.3662999,1.3667833,1.367267,1.3677508,1.3682348,1.3687189,1.3692032,1.3696878,1.3701724,1.3706573,1.3711423,1.3716274,1.3721129,1.3725984,1.3730841,1.37357,1.374056,1.3745421,1.3750286,1.3755151,1.3760018,1.3764888,1.3769759,1.3774631,1.3779505,1.3784381,1.3789259,1.3794138,1.379902,1.3803902,1.3808787,1.3813673,1.3818561,1.3823451,1.3828343,1.3833236,1.383813,1.3843027,1.3847926,1.3852826,1.3857727,1.3862631,1.3867537,1.3872443,1.3877354,1.3882263,1.3887175,1.389209,1.3897005,1.3901923,1.3906842,1.3911763,1.3916686,1.392161,1.3926537,1.3931465,1.3936394,1.3941326,1.3946259,1.3951194,1.3956131,1.396107,1.396601,1.3970952,1.3975896,1.398084,1.3985788,1.3990737,1.3995687,1.400064,1.4005594,1.401055,1.4015508,1.4020467,1.4025428,1.4030391,1.4035356,1.4040322,1.4045291,1.4050261,1.4055233,1.4060206,1.4065182,1.4070159,1.4075137,1.4080118,1.40851,1.4090084,1.409507,1.4100058,1.4105047,1.4110038,1.4115031,1.4120026,1.4125022,1.413002,1.4135021,1.4140022,1.4145026,1.4150032,1.4155037,1.4160048,1.4165058,1.417007,1.4175085,1.41801,1.4185117,1.4190137,1.4195158,1.4200181,1.4205207,1.4210234,1.4215261,1.4220291,1.4225323,1.4230357,1.4235393,1.4240429],"x":[6.1035156e-5,0.00041482793,0.0007686207,0.0011224134,0.0014762062,0.0018299989,0.0021837917,0.0025375844,0.0028913773,0.00324517,0.0035989627,0.0039527556,0.0043065483,0.004660341,0.0050141336,0.0053679263,0.0057217195,0.006075512,0.006429305,0.0067830975,0.00713689,0.007490683,0.007844476,0.008198269,0.008552061,0.008905854,0.009259647,0.009613439,0.009967232,0.010321025,0.0106748175,0.011028611,0.011382404,0.0117361965,0.012089989,0.012443782,0.0127975745,0.013151367,0.01350516,0.013858953,0.014212745,0.014566538,0.014920331,0.015274123,0.015627917,0.01598171,0.016335502,0.016689295,0.017043088,0.01739688,0.017750673,0.018104466,0.018458258,0.018812051,0.019165844,0.019519636,0.01987343,0.020227222,0.020581014,0.020934807,0.0212886,0.021642393,0.021996187,0.02234998,0.022703772,0.023057565,0.023411358,0.02376515,0.024118943,0.024472736,0.024826529,0.025180321,0.025534114,0.025887907,0.0262417,0.026595492,0.026949285,0.027303077,0.02765687,0.028010663,0.028364455,0.028718248,0.02907204,0.029425833,0.029779626,0.030133419,0.030487211,0.030841006,0.031194799,0.03154859,0.031902384,0.032256175,0.03260997,0.03296376,0.033317555,0.033671346,0.03402514,0.03437893,0.034732725,0.03508652,0.03544031,0.035794105,0.036147896,0.03650169,0.03685548,0.037209276,0.037563067,0.03791686,0.038270652,0.038624447,0.038978238,0.039332032,0.039685823,0.040039618,0.04039341,0.040747203,0.041100994,0.04145479,0.04180858,0.042162374,0.042516164,0.04286996,0.04322375,0.043577544,0.04393134,0.04428513,0.044638924,0.044992715,0.04534651,0.0457003,0.046054095,0.046407886,0.04676168,0.04711547,0.047469266,0.047823057,0.04817685,0.048530642,0.048884436,0.049238227,0.04959202,0.049945813,0.050299607,0.050653398,0.051007193,0.051360983,0.051714778,0.05206857,0.052422363,0.052776158,0.05312995,0.053483743,0.053837534,0.05419133,0.05454512,0.054898914,0.055252705,0.0556065,0.05596029,0.056314085,0.056667875,0.05702167,0.05737546,0.057729255,0.058083046,0.05843684,0.05879063,0.059144426,0.059498217,0.05985201,0.060205802,0.060559597,0.060913388,0.061267182,0.061620977,0.061974768,0.062328562,0.06268235,0.063036144,0.06338994,0.06374373,0.06409752,0.064451315,0.06480511,0.0651589,0.065512694,0.065866485,0.06622028,0.066574074,0.066927865,0.067281656,0.067635454,0.067989245,0.068343036,0.06869683,0.069050625,0.069404416,0.06975821,0.070112005,0.070465796,0.07081959,0.07117338,0.071527176,0.07188097,0.07223476,0.07258855,0.07294235,0.07329614,0.07364993,0.07400372,0.07435752,0.07471131,0.0750651,0.07541889,0.07577269,0.07612648,0.07648027,0.07683406,0.07718786,0.07754165,0.07789544,0.07824923,0.07860303,0.07895682,0.07931061,0.07966441,0.0800182,0.08037199,0.08072578,0.08107958,0.08143337,0.08178716,0.08214095,0.08249475,0.08284854,0.08320233,0.08355612,0.08390992,0.08426371,0.0846175,0.084971294,0.08532509,0.08567888,0.08603267,0.086386465,0.08674026,0.08709405,0.087447844,0.08780164,0.08815543,0.088509224,0.088863015,0.08921681,0.089570604,0.089924395,0.090278186,0.090631984,0.090985775,0.091339566,0.09169336,0.092047155,0.092400946,0.09275474,0.09310853,0.093462326,0.09381612,0.09416991,0.0945237,0.0948775,0.09523129,0.09558508,0.09593887,0.09629267,0.09664646,0.09700025,0.09735405,0.09770784,0.09806163,0.09841542,0.09876922,0.09912301,0.0994768,0.09983059,0.10018439,0.10053818,0.10089197,0.10124576,0.10159956,0.10195335,0.10230714,0.10266093,0.10301473,0.10336852,0.10372231,0.1040761,0.1044299,0.10478369,0.10513748,0.10549128,0.10584507,0.10619886,0.10655265,0.10690645,0.10726024,0.10761403,0.107967824,0.10832162,0.10867541,0.1090292,0.109382994,0.10973679,0.11009058,0.110444374,0.110798165,0.11115196,0.111505754,0.111859545,0.112213336,0.112567134,0.112920925,0.113274716,0.11362851,0.113982305,0.114336096,0.11468989,0.115043685,0.115397476,0.11575127,0.11610506,0.116458856,0.11681265,0.11716644,0.11752023,0.11787403,0.11822782,0.11858161,0.1189354,0.1192892,0.11964299,0.11999678,0.12035057,0.12070437,0.12105816,0.12141195,0.12176574,0.12211954,0.12247333,0.12282712,0.12318092,0.12353471,0.1238885,0.12424229,0.12459609,0.12494988,0.12530367,0.12565747,0.12601125,0.12636505,0.12671885,0.12707263,0.12742643,0.12778021,0.12813401,0.12848781,0.1288416,0.12919539,0.12954919,0.12990297,0.13025677,0.13061056,0.13096435,0.13131815,0.13167194,0.13202573,0.13237953,0.13273332,0.13308711,0.13344091,0.1337947,0.1341485,0.13450228,0.13485608,0.13520987,0.13556366,0.13591745,0.13627125,0.13662504,0.13697883,0.13733262,0.13768642,0.13804021,0.138394,0.1387478,0.1391016,0.13945538,0.13980918,0.14016297,0.14051676,0.14087056,0.14122434,0.14157814,0.14193194,0.14228572,0.14263952,0.14299332,0.1433471,0.1437009,0.14405468,0.14440848,0.14476228,0.14511606,0.14546986,0.14582366,0.14617744,0.14653124,0.14688502,0.14723882,0.14759262,0.1479464,0.1483002,0.148654,0.14900778,0.14936158,0.14971538,0.15006916,0.15042296,0.15077674,0.15113054,0.15148434,0.15183812,0.15219192,0.15254572,0.1528995,0.1532533,0.15360709,0.15396088,0.15431468,0.15466847,0.15502226,0.15537606,0.15572985,0.15608364,0.15643743,0.15679123,0.15714502,0.1574988,0.1578526,0.1582064,0.15856019,0.15891398,0.15926778,0.15962157,0.15997536,0.16032915,0.16068295,0.16103674,0.16139053,0.16174433,0.16209812,0.16245191,0.1628057,0.16315949,0.16351329,0.16386709,0.16422087,0.16457467,0.16492847,0.16528225,0.16563605,0.16598983,0.16634363,0.16669743,0.16705121,0.16740501,0.16775881,0.16811259,0.16846639,0.16882019,0.16917397,0.16952777,0.16988155,0.17023535,0.17058915,0.17094293,0.17129673,0.17165053,0.17200431,0.17235811,0.1727119,0.17306569,0.17341949,0.17377327,0.17412707,0.17448087,0.17483465,0.17518845,0.17554225,0.17589603,0.17624983,0.17660362,0.17695741,0.17731121,0.177665,0.1780188,0.17837259,0.17872638,0.17908017,0.17943396,0.17978776,0.18014155,0.18049534,0.18084913,0.18120293,0.18155672,0.18191051,0.1822643,0.1826181,0.1829719,0.18332568,0.18367948,0.18403327,0.18438706,0.18474086,0.18509465,0.18544844,0.18580224,0.18615602,0.18650982,0.18686362,0.1872174,0.1875712,0.187925,0.18827878,0.18863258,0.18898636,0.18934016,0.18969396,0.19004774,0.19040154,0.19075534,0.19110912,0.19146292,0.1918167,0.1921705,0.1925243,0.19287808,0.19323188,0.19358568,0.19393946,0.19429326,0.19464706,0.19500084,0.19535464,0.19570842,0.19606222,0.19641602,0.1967698,0.1971236,0.1974774,0.19783118,0.19818498,0.19853877,0.19889256,0.19924636,0.19960015,0.19995394,0.20030774,0.20066153,0.20101532,0.20136912,0.2017229,0.2020767,0.20243049,0.20278428,0.20313808,0.20349187,0.20384566,0.20419946,0.20455325,0.20490704,0.20526083,0.20561463,0.20596842,0.20632221,0.206676,0.2070298,0.20738359,0.20773739,0.20809117,0.20844497,0.20879877,0.20915255,0.20950635,0.20986015,0.21021393,0.21056773,0.21092153,0.21127531,0.21162911,0.21198289,0.21233669,0.21269049,0.21304427,0.21339807,0.21375187,0.21410565,0.21445945,0.21481323,0.21516703,0.21552083,0.21587461,0.21622841,0.21658221,0.21693599,0.21728979,0.21764357,0.21799737,0.21835117,0.21870495,0.21905875,0.21941255,0.21976633,0.22012013,0.22047393,0.22082771,0.22118151,0.2215353,0.2218891,0.22224289,0.22259668,0.22295047,0.22330427,0.22365806,0.22401185,0.22436564,0.22471943,0.22507323,0.22542702,0.22578081,0.22613461,0.2264884,0.2268422,0.22719598,0.22754978,0.22790357,0.22825736,0.22861116,0.22896495,0.22931874,0.22967254,0.23002633,0.23038012,0.23073392,0.2310877,0.2314415,0.2317953,0.23214908,0.23250288,0.23285668,0.23321046,0.23356426,0.23391804,0.23427184,0.23462564,0.23497942,0.23533322,0.23568702,0.2360408,0.2363946,0.2367484,0.23710218,0.23745598,0.23780976,0.23816356,0.23851736,0.23887114,0.23922494,0.23957874,0.23993252,0.24028632,0.2406401,0.2409939,0.2413477,0.24170148,0.24205528,0.24240908,0.24276286,0.24311666,0.24347045,0.24382424,0.24417804,0.24453183,0.24488562,0.24523942,0.2455932,0.245947,0.2463008,0.24665459,0.24700838,0.24736217,0.24771596,0.24806976,0.24842355,0.24877734,0.24913114,0.24948493,0.24983872,0.25019252,0.2505463,0.2509001,0.2512539,0.2516077,0.25196147,0.25231528,0.25266907,0.25302285,0.25337666,0.25373045,0.25408423,0.25443804,0.25479183,0.2551456,0.2554994,0.2558532,0.256207,0.25656077,0.2569146,0.25726837,0.25762215,0.25797597,0.25832975,0.25868353,0.25903735,0.25939113,0.2597449,0.26009873,0.2604525,0.2608063,0.26116008,0.2615139,0.26186767,0.26222146,0.26257527,0.26292905,0.26328284,0.26363665,0.26399043,0.26434422,0.26469803,0.2650518,0.2654056,0.2657594,0.2661132,0.26646698,0.2668208,0.26717457,0.26752836,0.26788214,0.26823595,0.26858974,0.26894352,0.26929733,0.26965111,0.2700049,0.2703587,0.2707125,0.27106628,0.2714201,0.27177387,0.27212766,0.27248147,0.27283525,0.27318904,0.27354285,0.27389663,0.27425042,0.2746042,0.274958,0.2753118,0.27566558,0.2760194,0.27637318,0.27672696,0.27708077,0.27743456,0.27778834,0.27814215,0.27849594,0.27884972,0.27920353,0.27955732,0.2799111,0.2802649,0.2806187,0.28097248,0.28132626,0.28168008,0.28203386,0.28238764,0.28274146,0.28309524,0.28344902,0.28380284,0.28415662,0.2845104,0.28486422,0.285218,0.28557178,0.2859256,0.28627938,0.28663316,0.28698695,0.28734076,0.28769454,0.28804833,0.28840214,0.28875592,0.2891097,0.28946352,0.2898173,0.2901711,0.2905249,0.29087868,0.29123247,0.29158628,0.29194006,0.29229385,0.29264766,0.29300144,0.29335523,0.293709,0.29406282,0.2944166,0.2947704,0.2951242,0.295478,0.29583177,0.29618558,0.29653937,0.29689315,0.29724696,0.29760075,0.29795453,0.29830834,0.29866213,0.2990159,0.29936972,0.2997235,0.3000773,0.30043107,0.3007849,0.30113867,0.30149245,0.30184627,0.30220005,0.30255383,0.30290765,0.30326143,0.3036152,0.30396903,0.3043228,0.3046766,0.3050304,0.3053842,0.30573797,0.30609176,0.30644557,0.30679935,0.30715314,0.30750695,0.30786073,0.30821452,0.30856833,0.3089221,0.3092759,0.3096297,0.3099835,0.31033728,0.3106911,0.31104487,0.31139866,0.31175247,0.31210625,0.31246004,0.31281382,0.31316763,0.31352141,0.3138752,0.314229,0.3145828,0.31493658,0.3152904,0.31564417,0.31599796,0.31635177,0.31670555,0.31705934,0.31741315,0.31776693,0.31812072,0.31847453,0.3188283,0.3191821,0.31953588,0.3198897,0.32024348,0.32059726,0.32095107,0.32130486,0.32165864,0.32201245,0.32236624,0.32272002,0.32307383,0.32342762,0.3237814,0.3241352,0.324489,0.32484278,0.3251966,0.32555038,0.32590416,0.32625794,0.32661176,0.32696554,0.32731932,0.32767314,0.32802692,0.3283807,0.32873452,0.3290883,0.32944208,0.3297959,0.33014968,0.33050346,0.33085728,0.33121106,0.33156484,0.33191863,0.33227244,0.33262622,0.33298,0.33333382,0.3336876,0.3340414,0.3343952,0.33474898,0.33510277,0.33545658,0.33581036,0.33616415,0.33651796,0.33687174,0.33722553,0.33757934,0.33793312,0.3382869,0.3386407,0.3389945,0.3393483,0.33970207,0.34005588,0.34040967,0.34076345,0.34111726,0.34147105,0.34182483,0.34217864,0.34253243,0.3428862,0.34324002,0.3435938,0.3439476,0.3443014,0.3446552,0.34500897,0.34536275,0.34571657,0.34607035,0.34642413,0.34677795,0.34713173,0.3474855,0.34783933,0.3481931,0.3485469,0.3489007,0.3492545,0.34960827,0.3499621,0.35031587,0.35066965,0.35102347,0.35137725,0.35173103,0.35208482,0.35243863,0.3527924,0.3531462,0.3535]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json b/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json deleted file mode 100644 index f01cc4a6f7ed..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/fixtures/julia/tiny_float32.json +++ /dev/null @@ -1 +0,0 @@ -{"expected":[0.99993896,0.9999391,0.9999392,0.9999393,0.99993944,0.99993956,0.9999397,0.9999398,0.9999399,0.99994004,0.9999402,0.99994034,0.99994045,0.9999406,0.9999407,0.9999408,0.99994093,0.99994105,0.9999412,0.9999413,0.9999414,0.9999415,0.99994165,0.99994177,0.9999419,0.999942,0.9999421,0.99994224,0.99994236,0.9999425,0.99994266,0.9999428,0.9999429,0.999943,0.99994314,0.99994326,0.9999434,0.9999435,0.9999436,0.99994373,0.99994385,0.999944,0.9999441,0.9999442,0.9999443,0.99994445,0.99994457,0.9999447,0.9999448,0.9999449,0.9999451,0.9999452,0.99994534,0.99994546,0.9999456,0.9999457,0.9999458,0.99994594,0.99994606,0.9999462,0.9999463,0.9999464,0.99994653,0.99994665,0.9999468,0.9999469,0.999947,0.99994713,0.99994725,0.99994737,0.99994755,0.99994767,0.9999478,0.9999479,0.999948,0.99994814,0.99994826,0.9999484,0.9999485,0.9999486,0.99994874,0.99994886,0.999949,0.9999491,0.9999492,0.99994934,0.99994946,0.9999496,0.9999497,0.9999498,0.99995,0.9999501,0.99995023,0.99995035,0.99995047,0.9999506,0.9999507,0.9999508,0.99995095,0.99995106,0.9999512,0.9999513,0.9999514,0.99995154,0.99995166,0.9999518,0.9999519,0.999952,0.99995214,0.99995226,0.99995244,0.99995255,0.9999527,0.9999528,0.9999529,0.99995303,0.99995315,0.99995327,0.9999534,0.9999535,0.9999536,0.99995375,0.99995387,0.999954,0.9999541,0.9999542,0.99995434,0.99995446,0.9999546,0.9999547,0.9999549,0.999955,0.9999551,0.99995524,0.99995536,0.9999555,0.9999556,0.9999557,0.99995583,0.99995595,0.9999561,0.9999562,0.9999563,0.9999564,0.99995655,0.99995667,0.9999568,0.9999569,0.999957,0.99995714,0.9999573,0.99995744,0.99995756,0.9999577,0.9999578,0.9999579,0.99995804,0.99995816,0.9999583,0.9999584,0.9999585,0.99995863,0.99995875,0.9999589,0.999959,0.9999591,0.99995923,0.99995935,0.99995947,0.9999596,0.99995977,0.9999599,0.99996,0.9999601,0.99996024,0.99996036,0.9999605,0.9999606,0.9999607,0.99996084,0.99996096,0.9999611,0.9999612,0.9999613,0.99996144,0.99996156,0.9999617,0.9999618,0.9999619,0.99996203,0.9999622,0.99996233,0.99996245,0.99996257,0.9999627,0.9999628,0.9999629,0.99996305,0.99996316,0.9999633,0.9999634,0.9999635,0.99996364,0.99996376,0.9999639,0.999964,0.9999641,0.99996424,0.99996436,0.9999645,0.99996465,0.9999648,0.9999649,0.999965,0.99996513,0.99996525,0.99996537,0.9999655,0.9999656,0.9999657,0.99996585,0.99996597,0.9999661,0.9999662,0.9999663,0.99996644,0.99996656,0.9999667,0.9999668,0.9999669,0.9999671,0.9999672,0.99996734,0.99996746,0.9999676,0.9999677,0.9999678,0.99996793,0.99996805,0.9999682,0.9999683,0.9999684,0.9999685,0.99996865,0.99996877,0.9999689,0.999969,0.9999691,0.99996924,0.99996936,0.99996954,0.99996966,0.9999698,0.9999699,0.99997,0.99997014,0.99997026,0.9999704,0.9999705,0.9999706,0.99997073,0.99997085,0.999971,0.9999711,0.9999712,0.99997133,0.99997145,0.99997157,0.9999717,0.9999718,0.999972,0.9999721,0.9999722,0.99997234,0.99997246,0.9999726,0.9999727,0.9999728,0.99997294,0.99997306,0.9999732,0.9999733,0.9999734,0.99997354,0.99997365,0.9999738,0.9999739,0.999974,0.99997413,0.99997425,0.9999744,0.99997455,0.99997467,0.9999748,0.9999749,0.999975,0.99997514,0.99997526,0.9999754,0.9999755,0.9999756,0.99997574,0.99997586,0.999976,0.9999761,0.9999762,0.99997634,0.99997646,0.9999766,0.9999767,0.9999769,0.999977,0.9999771,0.99997723,0.99997735,0.99997747,0.9999776,0.9999777,0.9999778,0.99997795,0.99997807,0.9999782,0.9999783,0.9999784,0.99997854,0.99997866,0.9999788,0.9999789,0.999979,0.99997914,0.9999793,0.99997944,0.99997956,0.9999797,0.9999798,0.9999799,0.99998003,0.99998015,0.9999803,0.9999804,0.9999805,0.9999806,0.99998075,0.99998087,0.999981,0.9999811,0.9999812,0.99998134,0.99998146,0.9999816,0.99998176,0.9999819,0.999982,0.9999821,0.99998224,0.99998236,0.9999825,0.9999826,0.9999827,0.99998283,0.99998295,0.9999831,0.9999832,0.9999833,0.99998343,0.99998355,0.99998367,0.9999838,0.9999839,0.999984,0.9999842,0.9999843,0.99998444,0.99998456,0.9999847,0.9999848,0.9999849,0.99998504,0.99998516,0.9999853,0.9999854,0.9999855,0.99998564,0.99998575,0.9999859,0.999986,0.9999861,0.99998623,0.99998635,0.99998647,0.99998665,0.99998677,0.9999869,0.999987,0.9999871,0.99998724,0.99998736,0.9999875,0.9999876,0.9999877,0.99998784,0.99998796,0.9999881,0.9999882,0.9999883,0.99998844,0.99998856,0.9999887,0.9999888,0.9999889,0.9999891,0.9999892,0.99998933,0.99998945,0.99998957,0.9999897,0.9999898,0.9999899,0.99999005,0.99999017,0.9999903,0.9999904,0.9999905,0.99999064,0.99999076,0.9999909,0.999991,0.9999911,0.99999124,0.99999136,0.99999154,0.99999166,0.9999918,0.9999919,0.999992,0.99999213,0.99999225,0.9999924,0.9999925,0.9999926,0.9999927,0.99999285,0.99999297,0.9999931,0.9999932,0.9999933,0.99999344,0.99999356,0.9999937,0.9999938,0.999994,0.9999941,0.9999942,0.99999434,0.99999446,0.9999946,0.9999947,0.9999948,0.99999493,0.99999505,0.9999952,0.9999953,0.9999954,0.9999955,0.99999565,0.99999577,0.9999959,0.999996,0.9999961,0.99999624,0.9999964,0.99999654,0.99999666,0.9999968,0.9999969,0.999997,0.99999714,0.99999726,0.9999974,0.9999975,0.9999976,0.99999774,0.99999785,0.999998,0.9999981,0.9999982,0.99999833,0.99999845,0.99999857,0.9999987,0.99999887,0.999999,0.9999991,0.9999992,0.99999934,0.99999946,0.9999996,0.9999997,0.9999998,0.99999994,1.0000001,1.0000002,1.0000004,1.0000005,1.0000006,1.0000007,1.0000008,1.000001,1.0000011,1.0000012,1.0000013,1.0000014,1.0000015,1.0000017,1.0000018,1.0000019,1.000002,1.0000021,1.0000023,1.0000024,1.0000025,1.0000026,1.0000027,1.0000029,1.000003,1.0000031,1.0000032,1.0000033,1.0000035,1.0000036,1.0000037,1.0000038,1.0000039,1.000004,1.0000042,1.0000043,1.0000044,1.0000045,1.0000046,1.0000048,1.000005,1.0000051,1.0000052,1.0000054,1.0000055,1.0000056,1.0000057,1.0000058,1.000006,1.0000061,1.0000062,1.0000063,1.0000064,1.0000066,1.0000067,1.0000068,1.0000069,1.000007,1.0000072,1.0000073,1.0000074,1.0000075,1.0000076,1.0000077,1.0000079,1.000008,1.0000081,1.0000082,1.0000083,1.0000085,1.0000086,1.0000087,1.0000088,1.000009,1.0000091,1.0000092,1.0000093,1.0000094,1.0000095,1.0000097,1.0000099,1.00001,1.0000101,1.0000103,1.0000104,1.0000105,1.0000106,1.0000107,1.0000108,1.000011,1.0000111,1.0000112,1.0000113,1.0000114,1.0000116,1.0000117,1.0000118,1.0000119,1.000012,1.0000122,1.0000123,1.0000124,1.0000125,1.0000126,1.0000128,1.0000129,1.000013,1.0000131,1.0000132,1.0000134,1.0000135,1.0000136,1.0000137,1.0000138,1.000014,1.0000141,1.0000142,1.0000143,1.0000144,1.0000145,1.0000148,1.0000149,1.000015,1.0000151,1.0000153,1.0000154,1.0000155,1.0000156,1.0000157,1.0000159,1.000016,1.0000161,1.0000162,1.0000163,1.0000165,1.0000166,1.0000167,1.0000168,1.0000169,1.000017,1.0000172,1.0000173,1.0000174,1.0000175,1.0000176,1.0000178,1.0000179,1.000018,1.0000181,1.0000182,1.0000184,1.0000185,1.0000186,1.0000187,1.0000188,1.000019,1.0000191,1.0000192,1.0000193,1.0000194,1.0000197,1.0000198,1.0000199,1.00002,1.0000201,1.0000203,1.0000204,1.0000205,1.0000206,1.0000207,1.0000209,1.000021,1.0000211,1.0000212,1.0000213,1.0000215,1.0000216,1.0000217,1.0000218,1.0000219,1.000022,1.0000222,1.0000223,1.0000224,1.0000225,1.0000226,1.0000228,1.0000229,1.000023,1.0000231,1.0000232,1.0000234,1.0000235,1.0000236,1.0000237,1.0000238,1.000024,1.0000241,1.0000242,1.0000243,1.0000246,1.0000247,1.0000248,1.0000249,1.000025,1.0000252,1.0000253,1.0000254,1.0000255,1.0000256,1.0000257,1.0000259,1.000026,1.0000261,1.0000262,1.0000263,1.0000265,1.0000266,1.0000267,1.0000268,1.000027,1.0000271,1.0000272,1.0000273,1.0000274,1.0000275,1.0000277,1.0000278,1.0000279,1.000028,1.0000281,1.0000283,1.0000284,1.0000285,1.0000286,1.0000287,1.0000288,1.000029,1.0000291,1.0000292,1.0000294,1.0000296,1.0000297,1.0000298,1.0000299,1.00003,1.0000302,1.0000303,1.0000304,1.0000305,1.0000306,1.0000308,1.0000309,1.000031,1.0000311,1.0000312,1.0000314,1.0000315,1.0000316,1.0000317,1.0000318,1.000032,1.0000321,1.0000322,1.0000323,1.0000324,1.0000325,1.0000327,1.0000328,1.0000329,1.000033,1.0000331,1.0000333,1.0000334,1.0000335,1.0000336,1.0000337,1.0000339,1.000034,1.0000341,1.0000343,1.0000345,1.0000346,1.0000347,1.0000348,1.0000349,1.000035,1.0000352,1.0000353,1.0000354,1.0000355,1.0000356,1.0000358,1.0000359,1.000036,1.0000361,1.0000362,1.0000364,1.0000365,1.0000366,1.0000367,1.0000368,1.000037,1.0000371,1.0000372,1.0000373,1.0000374,1.0000376,1.0000377,1.0000378,1.0000379,1.000038,1.0000381,1.0000383,1.0000384,1.0000385,1.0000386,1.0000387,1.0000389,1.0000391,1.0000392,1.0000393,1.0000395,1.0000396,1.0000397,1.0000398,1.0000399,1.00004,1.0000402,1.0000403,1.0000404,1.0000405,1.0000407,1.0000408,1.0000409,1.000041,1.0000411,1.0000412,1.0000414,1.0000415,1.0000416,1.0000417,1.0000418,1.000042,1.0000421,1.0000422,1.0000423,1.0000424,1.0000426,1.0000427,1.0000428,1.0000429,1.000043,1.0000432,1.0000433,1.0000434,1.0000435,1.0000436,1.0000437,1.000044,1.0000441,1.0000442,1.0000443,1.0000445,1.0000446,1.0000447,1.0000448,1.000045,1.0000451,1.0000452,1.0000453,1.0000454,1.0000455,1.0000457,1.0000458,1.0000459,1.000046,1.0000461,1.0000463,1.0000464,1.0000465,1.0000466,1.0000467,1.0000468,1.000047,1.0000471,1.0000472,1.0000473,1.0000474,1.0000476,1.0000477,1.0000478,1.0000479,1.000048,1.0000482,1.0000483,1.0000484,1.0000485,1.0000486,1.0000489,1.000049,1.0000491,1.0000492,1.0000494,1.0000495,1.0000496,1.0000497,1.0000498,1.00005,1.0000501,1.0000502,1.0000503,1.0000504,1.0000505,1.0000507,1.0000508,1.0000509,1.000051,1.0000511,1.0000513,1.0000514,1.0000515,1.0000516,1.0000517,1.0000519,1.000052,1.0000521,1.0000522,1.0000523,1.0000525,1.0000526,1.0000527,1.0000528,1.0000529,1.000053,1.0000532,1.0000533,1.0000534,1.0000535,1.0000538,1.0000539,1.000054,1.0000541,1.0000542,1.0000544,1.0000545,1.0000546,1.0000547,1.0000548,1.000055,1.0000551,1.0000552,1.0000553,1.0000554,1.0000556,1.0000557,1.0000558,1.0000559,1.000056,1.0000561,1.0000563,1.0000564,1.0000565,1.0000566,1.0000567,1.0000569,1.000057,1.0000571,1.0000572,1.0000573,1.0000575,1.0000576,1.0000577,1.0000578,1.0000579,1.000058,1.0000582,1.0000583,1.0000584,1.0000587,1.0000588,1.0000589,1.000059,1.0000591,1.0000592,1.0000594,1.0000595,1.0000596,1.0000597,1.0000598,1.00006,1.0000601,1.0000602,1.0000603,1.0000604,1.0000606,1.0000607,1.0000608,1.0000609,1.000061],"x":[-6.1035156e-5,-6.0912964e-5,-6.079077e-5,-6.066858e-5,-6.0546387e-5,-6.0424194e-5,-6.0302e-5,-6.017981e-5,-6.0057617e-5,-5.9935424e-5,-5.9813232e-5,-5.969104e-5,-5.9568847e-5,-5.9446655e-5,-5.9324462e-5,-5.920227e-5,-5.9080077e-5,-5.8957885e-5,-5.8835692e-5,-5.87135e-5,-5.8591308e-5,-5.8469115e-5,-5.8346923e-5,-5.822473e-5,-5.8102538e-5,-5.798034e-5,-5.785815e-5,-5.7735957e-5,-5.7613765e-5,-5.7491572e-5,-5.736938e-5,-5.7247187e-5,-5.7124995e-5,-5.7002802e-5,-5.688061e-5,-5.6758417e-5,-5.6636225e-5,-5.6514033e-5,-5.639184e-5,-5.6269648e-5,-5.6147455e-5,-5.6025263e-5,-5.590307e-5,-5.5780878e-5,-5.5658686e-5,-5.5536493e-5,-5.54143e-5,-5.529211e-5,-5.5169916e-5,-5.5047723e-5,-5.492553e-5,-5.480334e-5,-5.4681146e-5,-5.4558954e-5,-5.443676e-5,-5.431457e-5,-5.4192376e-5,-5.4070184e-5,-5.394799e-5,-5.38258e-5,-5.3703607e-5,-5.3581414e-5,-5.345922e-5,-5.333703e-5,-5.3214837e-5,-5.3092645e-5,-5.2970452e-5,-5.284826e-5,-5.2726067e-5,-5.2603875e-5,-5.2481682e-5,-5.235949e-5,-5.2237297e-5,-5.2115105e-5,-5.1992913e-5,-5.1870717e-5,-5.1748524e-5,-5.162633e-5,-5.150414e-5,-5.1381947e-5,-5.1259754e-5,-5.1137562e-5,-5.101537e-5,-5.0893177e-5,-5.0770985e-5,-5.0648792e-5,-5.05266e-5,-5.0404407e-5,-5.0282215e-5,-5.0160023e-5,-5.003783e-5,-4.9915638e-5,-4.9793445e-5,-4.9671253e-5,-4.954906e-5,-4.9426868e-5,-4.9304675e-5,-4.9182483e-5,-4.906029e-5,-4.89381e-5,-4.8815906e-5,-4.8693713e-5,-4.857152e-5,-4.844933e-5,-4.8327136e-5,-4.8204944e-5,-4.808275e-5,-4.796056e-5,-4.7838366e-5,-4.7716174e-5,-4.759398e-5,-4.747179e-5,-4.7349597e-5,-4.7227404e-5,-4.710521e-5,-4.698302e-5,-4.6860827e-5,-4.6738634e-5,-4.6616442e-5,-4.649425e-5,-4.6372057e-5,-4.6249865e-5,-4.6127672e-5,-4.600548e-5,-4.5883287e-5,-4.576109e-5,-4.56389e-5,-4.5516706e-5,-4.5394514e-5,-4.527232e-5,-4.515013e-5,-4.5027937e-5,-4.4905744e-5,-4.4783552e-5,-4.466136e-5,-4.4539167e-5,-4.4416975e-5,-4.4294782e-5,-4.417259e-5,-4.4050397e-5,-4.3928205e-5,-4.3806012e-5,-4.368382e-5,-4.3561628e-5,-4.3439435e-5,-4.3317243e-5,-4.319505e-5,-4.3072858e-5,-4.2950665e-5,-4.2828473e-5,-4.270628e-5,-4.2584088e-5,-4.2461896e-5,-4.2339703e-5,-4.221751e-5,-4.209532e-5,-4.1973126e-5,-4.1850933e-5,-4.172874e-5,-4.160655e-5,-4.1484356e-5,-4.1362164e-5,-4.123997e-5,-4.111778e-5,-4.0995586e-5,-4.0873394e-5,-4.07512e-5,-4.062901e-5,-4.0506817e-5,-4.0384624e-5,-4.0262432e-5,-4.014024e-5,-4.0018047e-5,-3.9895855e-5,-3.9773662e-5,-3.9651466e-5,-3.9529274e-5,-3.940708e-5,-3.928489e-5,-3.9162696e-5,-3.9040504e-5,-3.891831e-5,-3.879612e-5,-3.8673927e-5,-3.8551734e-5,-3.842954e-5,-3.830735e-5,-3.8185157e-5,-3.8062964e-5,-3.7940772e-5,-3.781858e-5,-3.7696387e-5,-3.7574195e-5,-3.7452002e-5,-3.732981e-5,-3.7207617e-5,-3.7085425e-5,-3.6963233e-5,-3.684104e-5,-3.6718848e-5,-3.6596655e-5,-3.6474463e-5,-3.635227e-5,-3.6230078e-5,-3.6107886e-5,-3.5985693e-5,-3.58635e-5,-3.574131e-5,-3.5619116e-5,-3.5496923e-5,-3.537473e-5,-3.525254e-5,-3.5130346e-5,-3.5008154e-5,-3.488596e-5,-3.476377e-5,-3.4641576e-5,-3.4519384e-5,-3.439719e-5,-3.4275e-5,-3.4152807e-5,-3.4030614e-5,-3.390842e-5,-3.378623e-5,-3.3664037e-5,-3.354184e-5,-3.341965e-5,-3.3297456e-5,-3.3175264e-5,-3.305307e-5,-3.293088e-5,-3.2808686e-5,-3.2686494e-5,-3.25643e-5,-3.244211e-5,-3.2319916e-5,-3.2197724e-5,-3.207553e-5,-3.195334e-5,-3.1831147e-5,-3.1708954e-5,-3.1586762e-5,-3.146457e-5,-3.1342377e-5,-3.1220185e-5,-3.1097992e-5,-3.09758e-5,-3.0853607e-5,-3.0731415e-5,-3.0609222e-5,-3.048703e-5,-3.0364838e-5,-3.0242645e-5,-3.0120453e-5,-2.999826e-5,-2.9876068e-5,-2.9753875e-5,-2.9631683e-5,-2.950949e-5,-2.9387298e-5,-2.9265106e-5,-2.9142913e-5,-2.902072e-5,-2.8898527e-5,-2.8776334e-5,-2.8654142e-5,-2.853195e-5,-2.8409757e-5,-2.8287564e-5,-2.8165372e-5,-2.804318e-5,-2.7920987e-5,-2.7798795e-5,-2.7676602e-5,-2.755441e-5,-2.7432217e-5,-2.7310025e-5,-2.7187833e-5,-2.706564e-5,-2.6943448e-5,-2.6821255e-5,-2.6699063e-5,-2.657687e-5,-2.6454678e-5,-2.6332486e-5,-2.6210293e-5,-2.60881e-5,-2.5965908e-5,-2.5843714e-5,-2.5721522e-5,-2.559933e-5,-2.5477137e-5,-2.5354944e-5,-2.5232752e-5,-2.511056e-5,-2.4988367e-5,-2.4866174e-5,-2.4743982e-5,-2.462179e-5,-2.4499597e-5,-2.4377405e-5,-2.4255212e-5,-2.413302e-5,-2.4010827e-5,-2.3888635e-5,-2.3766443e-5,-2.364425e-5,-2.3522058e-5,-2.3399865e-5,-2.3277673e-5,-2.315548e-5,-2.3033288e-5,-2.2911096e-5,-2.2788901e-5,-2.2666709e-5,-2.2544516e-5,-2.2422324e-5,-2.2300132e-5,-2.217794e-5,-2.2055747e-5,-2.1933554e-5,-2.1811362e-5,-2.168917e-5,-2.1566977e-5,-2.1444785e-5,-2.1322592e-5,-2.12004e-5,-2.1078207e-5,-2.0956015e-5,-2.0833822e-5,-2.071163e-5,-2.0589438e-5,-2.0467245e-5,-2.0345053e-5,-2.022286e-5,-2.0100668e-5,-1.9978475e-5,-1.9856283e-5,-1.9734089e-5,-1.9611896e-5,-1.9489704e-5,-1.9367511e-5,-1.9245319e-5,-1.9123127e-5,-1.9000934e-5,-1.8878742e-5,-1.875655e-5,-1.8634357e-5,-1.8512164e-5,-1.8389972e-5,-1.826778e-5,-1.8145587e-5,-1.8023395e-5,-1.7901202e-5,-1.777901e-5,-1.7656817e-5,-1.7534625e-5,-1.7412432e-5,-1.729024e-5,-1.7168048e-5,-1.7045855e-5,-1.6923663e-5,-1.680147e-5,-1.6679276e-5,-1.6557084e-5,-1.6434891e-5,-1.6312699e-5,-1.6190506e-5,-1.6068314e-5,-1.5946121e-5,-1.5823929e-5,-1.5701737e-5,-1.5579544e-5,-1.5457352e-5,-1.533516e-5,-1.5212967e-5,-1.50907745e-5,-1.4968582e-5,-1.484639e-5,-1.4724197e-5,-1.4602005e-5,-1.4479811e-5,-1.4357619e-5,-1.42354265e-5,-1.4113234e-5,-1.3991042e-5,-1.3868849e-5,-1.3746657e-5,-1.3624464e-5,-1.3502272e-5,-1.33800795e-5,-1.3257887e-5,-1.3135695e-5,-1.3013502e-5,-1.2891309e-5,-1.2769116e-5,-1.2646924e-5,-1.2524732e-5,-1.2402539e-5,-1.2280347e-5,-1.2158154e-5,-1.2035962e-5,-1.1913769e-5,-1.1791577e-5,-1.1669385e-5,-1.1547192e-5,-1.1424999e-5,-1.1302806e-5,-1.1180614e-5,-1.10584215e-5,-1.0936229e-5,-1.0814037e-5,-1.0691844e-5,-1.0569652e-5,-1.0447459e-5,-1.0325267e-5,-1.0203074e-5,-1.0080882e-5,-9.95869e-6,-9.836496e-6,-9.714304e-6,-9.592111e-6,-9.469919e-6,-9.3477265e-6,-9.225534e-6,-9.103342e-6,-8.981149e-6,-8.858957e-6,-8.736764e-6,-8.614572e-6,-8.4923795e-6,-8.370186e-6,-8.247994e-6,-8.125801e-6,-8.003609e-6,-7.881416e-6,-7.759224e-6,-7.637032e-6,-7.514839e-6,-7.3926467e-6,-7.2704543e-6,-7.1482614e-6,-7.026069e-6,-6.9038765e-6,-6.781684e-6,-6.6594916e-6,-6.537299e-6,-6.4151063e-6,-6.292914e-6,-6.1707215e-6,-6.048529e-6,-5.9263366e-6,-5.804144e-6,-5.6819513e-6,-5.559759e-6,-5.4375664e-6,-5.315374e-6,-5.1931816e-6,-5.070989e-6,-4.9487962e-6,-4.826604e-6,-4.7044114e-6,-4.582219e-6,-4.4600265e-6,-4.337834e-6,-4.2156416e-6,-4.0934488e-6,-3.9712563e-6,-3.849064e-6,-3.7268715e-6,-3.6046788e-6,-3.4824864e-6,-3.360294e-6,-3.2381013e-6,-3.1159088e-6,-2.9937164e-6,-2.871524e-6,-2.7493313e-6,-2.6271389e-6,-2.5049465e-6,-2.3827538e-6,-2.2605614e-6,-2.138369e-6,-2.0161763e-6,-1.8939838e-6,-1.7717913e-6,-1.6495989e-6,-1.5274063e-6,-1.4052138e-6,-1.2830213e-6,-1.1608288e-6,-1.0386362e-6,-9.164438e-7,-7.9425126e-7,-6.720588e-7,-5.498663e-7,-4.2767377e-7,-3.0548125e-7,-1.8328876e-7,-6.109625e-8,6.109625e-8,1.8328876e-7,3.0548125e-7,4.2767377e-7,5.498663e-7,6.720588e-7,7.9425126e-7,9.164438e-7,1.0386362e-6,1.1608288e-6,1.2830213e-6,1.4052138e-6,1.5274063e-6,1.6495989e-6,1.7717913e-6,1.8939838e-6,2.0161763e-6,2.138369e-6,2.2605614e-6,2.3827538e-6,2.5049465e-6,2.6271389e-6,2.7493313e-6,2.871524e-6,2.9937164e-6,3.1159088e-6,3.2381013e-6,3.360294e-6,3.4824864e-6,3.6046788e-6,3.7268715e-6,3.849064e-6,3.9712563e-6,4.0934488e-6,4.2156416e-6,4.337834e-6,4.4600265e-6,4.582219e-6,4.7044114e-6,4.826604e-6,4.9487962e-6,5.070989e-6,5.1931816e-6,5.315374e-6,5.4375664e-6,5.559759e-6,5.6819513e-6,5.804144e-6,5.9263366e-6,6.048529e-6,6.1707215e-6,6.292914e-6,6.4151063e-6,6.537299e-6,6.6594916e-6,6.781684e-6,6.9038765e-6,7.026069e-6,7.1482614e-6,7.2704543e-6,7.3926467e-6,7.514839e-6,7.637032e-6,7.759224e-6,7.881416e-6,8.003609e-6,8.125801e-6,8.247994e-6,8.370186e-6,8.4923795e-6,8.614572e-6,8.736764e-6,8.858957e-6,8.981149e-6,9.103342e-6,9.225534e-6,9.3477265e-6,9.469919e-6,9.592111e-6,9.714304e-6,9.836496e-6,9.95869e-6,1.0080882e-5,1.0203074e-5,1.0325267e-5,1.0447459e-5,1.0569652e-5,1.0691844e-5,1.0814037e-5,1.0936229e-5,1.10584215e-5,1.1180614e-5,1.1302806e-5,1.1424999e-5,1.1547192e-5,1.1669385e-5,1.1791577e-5,1.1913769e-5,1.2035962e-5,1.2158154e-5,1.2280347e-5,1.2402539e-5,1.2524732e-5,1.2646924e-5,1.2769116e-5,1.2891309e-5,1.3013502e-5,1.3135695e-5,1.3257887e-5,1.33800795e-5,1.3502272e-5,1.3624464e-5,1.3746657e-5,1.3868849e-5,1.3991042e-5,1.4113234e-5,1.42354265e-5,1.4357619e-5,1.4479811e-5,1.4602005e-5,1.4724197e-5,1.484639e-5,1.4968582e-5,1.50907745e-5,1.5212967e-5,1.533516e-5,1.5457352e-5,1.5579544e-5,1.5701737e-5,1.5823929e-5,1.5946121e-5,1.6068314e-5,1.6190506e-5,1.6312699e-5,1.6434891e-5,1.6557084e-5,1.6679276e-5,1.680147e-5,1.6923663e-5,1.7045855e-5,1.7168048e-5,1.729024e-5,1.7412432e-5,1.7534625e-5,1.7656817e-5,1.777901e-5,1.7901202e-5,1.8023395e-5,1.8145587e-5,1.826778e-5,1.8389972e-5,1.8512164e-5,1.8634357e-5,1.875655e-5,1.8878742e-5,1.9000934e-5,1.9123127e-5,1.9245319e-5,1.9367511e-5,1.9489704e-5,1.9611896e-5,1.9734089e-5,1.9856283e-5,1.9978475e-5,2.0100668e-5,2.022286e-5,2.0345053e-5,2.0467245e-5,2.0589438e-5,2.071163e-5,2.0833822e-5,2.0956015e-5,2.1078207e-5,2.12004e-5,2.1322592e-5,2.1444785e-5,2.1566977e-5,2.168917e-5,2.1811362e-5,2.1933554e-5,2.2055747e-5,2.217794e-5,2.2300132e-5,2.2422324e-5,2.2544516e-5,2.2666709e-5,2.2788901e-5,2.2911096e-5,2.3033288e-5,2.315548e-5,2.3277673e-5,2.3399865e-5,2.3522058e-5,2.364425e-5,2.3766443e-5,2.3888635e-5,2.4010827e-5,2.413302e-5,2.4255212e-5,2.4377405e-5,2.4499597e-5,2.462179e-5,2.4743982e-5,2.4866174e-5,2.4988367e-5,2.511056e-5,2.5232752e-5,2.5354944e-5,2.5477137e-5,2.559933e-5,2.5721522e-5,2.5843714e-5,2.5965908e-5,2.60881e-5,2.6210293e-5,2.6332486e-5,2.6454678e-5,2.657687e-5,2.6699063e-5,2.6821255e-5,2.6943448e-5,2.706564e-5,2.7187833e-5,2.7310025e-5,2.7432217e-5,2.755441e-5,2.7676602e-5,2.7798795e-5,2.7920987e-5,2.804318e-5,2.8165372e-5,2.8287564e-5,2.8409757e-5,2.853195e-5,2.8654142e-5,2.8776334e-5,2.8898527e-5,2.902072e-5,2.9142913e-5,2.9265106e-5,2.9387298e-5,2.950949e-5,2.9631683e-5,2.9753875e-5,2.9876068e-5,2.999826e-5,3.0120453e-5,3.0242645e-5,3.0364838e-5,3.048703e-5,3.0609222e-5,3.0731415e-5,3.0853607e-5,3.09758e-5,3.1097992e-5,3.1220185e-5,3.1342377e-5,3.146457e-5,3.1586762e-5,3.1708954e-5,3.1831147e-5,3.195334e-5,3.207553e-5,3.2197724e-5,3.2319916e-5,3.244211e-5,3.25643e-5,3.2686494e-5,3.2808686e-5,3.293088e-5,3.305307e-5,3.3175264e-5,3.3297456e-5,3.341965e-5,3.354184e-5,3.3664037e-5,3.378623e-5,3.390842e-5,3.4030614e-5,3.4152807e-5,3.4275e-5,3.439719e-5,3.4519384e-5,3.4641576e-5,3.476377e-5,3.488596e-5,3.5008154e-5,3.5130346e-5,3.525254e-5,3.537473e-5,3.5496923e-5,3.5619116e-5,3.574131e-5,3.58635e-5,3.5985693e-5,3.6107886e-5,3.6230078e-5,3.635227e-5,3.6474463e-5,3.6596655e-5,3.6718848e-5,3.684104e-5,3.6963233e-5,3.7085425e-5,3.7207617e-5,3.732981e-5,3.7452002e-5,3.7574195e-5,3.7696387e-5,3.781858e-5,3.7940772e-5,3.8062964e-5,3.8185157e-5,3.830735e-5,3.842954e-5,3.8551734e-5,3.8673927e-5,3.879612e-5,3.891831e-5,3.9040504e-5,3.9162696e-5,3.928489e-5,3.940708e-5,3.9529274e-5,3.9651466e-5,3.9773662e-5,3.9895855e-5,4.0018047e-5,4.014024e-5,4.0262432e-5,4.0384624e-5,4.0506817e-5,4.062901e-5,4.07512e-5,4.0873394e-5,4.0995586e-5,4.111778e-5,4.123997e-5,4.1362164e-5,4.1484356e-5,4.160655e-5,4.172874e-5,4.1850933e-5,4.1973126e-5,4.209532e-5,4.221751e-5,4.2339703e-5,4.2461896e-5,4.2584088e-5,4.270628e-5,4.2828473e-5,4.2950665e-5,4.3072858e-5,4.319505e-5,4.3317243e-5,4.3439435e-5,4.3561628e-5,4.368382e-5,4.3806012e-5,4.3928205e-5,4.4050397e-5,4.417259e-5,4.4294782e-5,4.4416975e-5,4.4539167e-5,4.466136e-5,4.4783552e-5,4.4905744e-5,4.5027937e-5,4.515013e-5,4.527232e-5,4.5394514e-5,4.5516706e-5,4.56389e-5,4.576109e-5,4.5883287e-5,4.600548e-5,4.6127672e-5,4.6249865e-5,4.6372057e-5,4.649425e-5,4.6616442e-5,4.6738634e-5,4.6860827e-5,4.698302e-5,4.710521e-5,4.7227404e-5,4.7349597e-5,4.747179e-5,4.759398e-5,4.7716174e-5,4.7838366e-5,4.796056e-5,4.808275e-5,4.8204944e-5,4.8327136e-5,4.844933e-5,4.857152e-5,4.8693713e-5,4.8815906e-5,4.89381e-5,4.906029e-5,4.9182483e-5,4.9304675e-5,4.9426868e-5,4.954906e-5,4.9671253e-5,4.9793445e-5,4.9915638e-5,5.003783e-5,5.0160023e-5,5.0282215e-5,5.0404407e-5,5.05266e-5,5.0648792e-5,5.0770985e-5,5.0893177e-5,5.101537e-5,5.1137562e-5,5.1259754e-5,5.1381947e-5,5.150414e-5,5.162633e-5,5.1748524e-5,5.1870717e-5,5.1992913e-5,5.2115105e-5,5.2237297e-5,5.235949e-5,5.2481682e-5,5.2603875e-5,5.2726067e-5,5.284826e-5,5.2970452e-5,5.3092645e-5,5.3214837e-5,5.333703e-5,5.345922e-5,5.3581414e-5,5.3703607e-5,5.38258e-5,5.394799e-5,5.4070184e-5,5.4192376e-5,5.431457e-5,5.443676e-5,5.4558954e-5,5.4681146e-5,5.480334e-5,5.492553e-5,5.5047723e-5,5.5169916e-5,5.529211e-5,5.54143e-5,5.5536493e-5,5.5658686e-5,5.5780878e-5,5.590307e-5,5.6025263e-5,5.6147455e-5,5.6269648e-5,5.639184e-5,5.6514033e-5,5.6636225e-5,5.6758417e-5,5.688061e-5,5.7002802e-5,5.7124995e-5,5.7247187e-5,5.736938e-5,5.7491572e-5,5.7613765e-5,5.7735957e-5,5.785815e-5,5.798034e-5,5.8102538e-5,5.822473e-5,5.8346923e-5,5.8469115e-5,5.8591308e-5,5.87135e-5,5.8835692e-5,5.8957885e-5,5.9080077e-5,5.920227e-5,5.9324462e-5,5.9446655e-5,5.9568847e-5,5.969104e-5,5.9813232e-5,5.9935424e-5,6.0057617e-5,6.017981e-5,6.0302e-5,6.0424194e-5,6.0546387e-5,6.066858e-5,6.079077e-5,6.0912964e-5,6.1035156e-5]} diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.js deleted file mode 100644 index a49a0da5dfb3..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.js +++ /dev/null @@ -1,165 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 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 absf = require( '@stdlib/math/base/special/absf' ); -var PINF = require( '@stdlib/constants/float32/pinf' ); -var NINF = require( '@stdlib/constants/float32/ninf' ); -var EPS = require( '@stdlib/constants/float32/eps' ); -var expf = require( './../lib' ); - - -// FIXTURES // - -var mediumNegative = require( './fixtures/julia/medium_negative_float32.json' ); -var mediumPositive = require( './fixtures/julia/medium_positive_float32.json' ); -var smallNegative = require( './fixtures/julia/small_negative_float32.json' ); -var smallPositive = require( './fixtures/julia/small_positive_float32.json' ); -var tiny = require( './fixtures/julia/tiny_float32.json' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof expf, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for negative medium numbers', function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = mediumNegative.x; - expected = mediumNegative.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for positive medium numbers', function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = mediumPositive.x; - expected = mediumPositive.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for negative small numbers', function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = smallNegative.x; - expected = smallNegative.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for positive small numbers', function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = smallPositive.x; - expected = smallPositive.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for very small `x`', function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = tiny.x; - expected = tiny.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function returns `0` if provided a `-infinity`', function test( t ) { - var val = expf( NINF ); - t.equal( val, 0.0, 'returns 0' ); - t.end(); -}); - -tape( 'the function returns `+infinity` if provided a `+infinity`', function test( t ) { - var val = expf( PINF ); - t.equal( val, PINF, 'returns +infinity' ); - t.end(); -}); - -tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { - var val = expf( NaN ); - t.equal( isnan( val ), true, 'returns NaN' ); - t.end(); -}); diff --git a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js deleted file mode 100644 index 665155e1973b..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/expf/test/test.native.js +++ /dev/null @@ -1,174 +0,0 @@ -/** -* @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 absf = require( '@stdlib/math/base/special/absf' ); -var PINF = require( '@stdlib/constants/float32/pinf' ); -var NINF = require( '@stdlib/constants/float32/ninf' ); -var tryRequire = require( '@stdlib/utils/try-require' ); -var EPS = require( '@stdlib/constants/float32/eps' ); - - -// FIXTURES // - -var mediumNegative = require( './fixtures/julia/medium_negative_float32.json' ); -var mediumPositive = require( './fixtures/julia/medium_positive_float32.json' ); -var smallNegative = require( './fixtures/julia/small_negative_float32.json' ); -var smallPositive = require( './fixtures/julia/small_positive_float32.json' ); -var tiny = require( './fixtures/julia/tiny_float32.json' ); - - -// VARIABLES // - -var expf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); -var opts = { - 'skip': ( expf instanceof Error ) -}; - - -// TESTS // - -tape( 'main export is a function', opts, function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof expf, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for negative medium numbers', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = mediumNegative.x; - expected = mediumNegative.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for positive medium numbers', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = mediumPositive.x; - expected = mediumPositive.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for negative small numbers', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = smallNegative.x; - expected = smallNegative.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for positive small numbers', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = smallPositive.x; - expected = smallPositive.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function accurately computes the natural exponential function for very small `x`', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var v; - var i; - - x = tiny.x; - expected = tiny.expected; - - for ( i = 0; i < x.length; i++ ) { - v = expf( x[ i ] ); - delta = absf( v - expected[ i ] ); - tol = EPS * 50 * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: ' + x[ i ] + '. Value: ' + v + '. Expected: ' + expected[ i ] + '. Tolerance: ' + tol + '.' ); - } - t.end(); -}); - -tape( 'the function returns `0` if provided a `-infinity`', opts, function test( t ) { - var val = expf( NINF ); - t.equal( val, 0.0, 'returns 0' ); - t.end(); -}); - -tape( 'the function returns `+infinity` if provided a `+infinity`', opts, function test( t ) { - var val = expf( PINF ); - t.equal( val, PINF, 'returns +infinity' ); - t.end(); -}); - -tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) { - var val = expf( NaN ); - t.equal( isnan( val ), true, 'returns NaN' ); - t.end(); -}); From a528e5dd1b41c8ec2c09a45906de11394c1a01ba Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Fri, 6 Dec 2024 16:54:17 +0530 Subject: [PATCH 14/18] Update lib/node_modules/@stdlib/constants/float32/ln-half/README.md Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/constants/float32/ln-half/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md index b67624526687..ba795d067ee9 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md @@ -96,7 +96,7 @@ Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precis - +
From 07641aea153ffa75e2ad113c2e06e3a94d453c0a Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Fri, 6 Dec 2024 16:54:26 +0530 Subject: [PATCH 15/18] Update lib/node_modules/@stdlib/constants/float32/ln-half/README.md Signed-off-by: Gunj Joshi --- lib/node_modules/@stdlib/constants/float32/ln-half/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md index ba795d067ee9..00e12a7c8852 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md @@ -62,7 +62,7 @@ console.log( FLOAT32_LN_HALF ); - + * * * From 01c89c7c5e64bb4fa8484c6feeba055a1e9f5be3 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Fri, 6 Dec 2024 11:26:39 +0000 Subject: [PATCH 16/18] chore: update copyright years --- lib/node_modules/@stdlib/constants/float32/ln-half/README.md | 2 +- .../@stdlib/constants/float32/ln-half/docs/types/index.d.ts | 2 +- .../@stdlib/constants/float32/ln-half/docs/types/test.ts | 2 +- .../@stdlib/constants/float32/ln-half/examples/index.js | 2 +- .../float32/ln-half/include/stdlib/constants/float32/ln_half.h | 2 +- lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js | 2 +- lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md index 00e12a7c8852..228d86fe554e 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2018 The Stdlib Authors. +Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts index e263a68e7fef..1f2bbc9e959b 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts index e597934c233b..dc1f9e92417f 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js b/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js index 97686fede3bb..83a0fdd5449f 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h index ef942c1caa05..75d30fb3d959 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js index 68801cb60db5..b092c91451cb 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 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. diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js index cac6ffcd776b..e0b75ff428e0 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 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. From 39c91a8afd390b1331d804d16a90050eeec775c6 Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Fri, 6 Dec 2024 22:00:21 +0530 Subject: [PATCH 17/18] feat(constants): add float32 ln-half constant --- .../@stdlib/constants/float32/ln-half/README.md | 8 ++++---- .../@stdlib/constants/float32/ln-half/docs/repl.txt | 2 +- .../constants/float32/ln-half/docs/types/index.d.ts | 2 +- .../ln-half/include/stdlib/constants/float32/ln_half.h | 2 +- .../@stdlib/constants/float32/ln-half/lib/index.js | 4 ++-- .../@stdlib/constants/float32/ln-half/package.json | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md index b67624526687..b573780ae2d8 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/README.md +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/README.md @@ -20,7 +20,7 @@ limitations under the License. # FLOAT32_LN_HALF -> [Natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`. +> [Natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number.
@@ -32,7 +32,7 @@ var FLOAT32_LN_HALF = require( '@stdlib/constants/float32/ln-half' ); #### FLOAT32_LN_HALF -[Natural logarithm][@stdlib/math/base/special/ln] of `1/2`. +[Natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number. ```javascript var bool = ( FLOAT32_LN_HALF === -0.6931471824645996 ); @@ -90,7 +90,7 @@ console.log( FLOAT32_LN_HALF ); #### STDLIB_CONSTANT_FLOAT32_LN_HALF -Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`. +Macro for the [natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number.
@@ -128,7 +128,7 @@ Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precis diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt index 21890be4f2a4..e27891b5a3b8 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt @@ -1,6 +1,6 @@ {{alias}} - Natural logarithm of single-precision floating-point number `1/2`. + Natural logarithm of `1/2` as a single-precision floating-point number. Examples -------- diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts index e263a68e7fef..d05784c210e0 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts @@ -19,7 +19,7 @@ // TypeScript Version: 4.1 /** -* Natural logarithm of single-precision floating-point number `1/2`. +* Natural logarithm of `1/2` as a single-precision floating-point number. * * @example * var val = FLOAT32_LN_HALF; diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h index ef942c1caa05..9e232c744306 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h @@ -20,7 +20,7 @@ #define STDLIB_CONSTANTS_FLOAT32_LN_HALF_H /** -* Macro for the natural logarithm of single-precision floating-point number 1/2. +* Macro for the natural logarithm of 1/2 as a single-precision floating-point number. */ #define STDLIB_CONSTANT_FLOAT32_LN_HALF -0.6931471824645996f diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js index 68801cb60db5..d5dbfdde2e87 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Natural logarithm of single-precision floating-point number `1/2`. +* Natural logarithm of `1/2` as a single-precision floating-point number. * * @module @stdlib/constants/float32/ln-half * @type {number} @@ -37,7 +37,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); // MAIN // /** -* Natural logarithm of single-precision floating-point number `1/2`. +* Natural logarithm of `1/2` as a single-precision floating-point number. * * ```tex * \ln (1/2) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/package.json b/lib/node_modules/@stdlib/constants/float32/ln-half/package.json index 3ca10f04c9a3..4eb8c64774a0 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/package.json +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/constants/float32/ln-half", "version": "0.0.0", - "description": "Natural logarithm of single-precision floating-point number 1/2.", + "description": "Natural logarithm of 1/2 as a single-precision floating-point number", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From d83af1a72fa5b39a5e2385e43fcd82bb90bcae0b Mon Sep 17 00:00:00 2001 From: Athan Date: Thu, 12 Dec 2024 19:23:51 -0800 Subject: [PATCH 18/18] test: fix test case Signed-off-by: Athan --- .../@stdlib/constants/float32/ln-half/test/test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js index e0b75ff428e0..c71d3aa1ca80 100644 --- a/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/ln-half/test/test.js @@ -36,8 +36,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to `-0.6931471824645996', function test( t ) { - var expected = lnf( 0.5 ); - t.equal( FLOAT32_LN_HALF, expected, 'returns expected value' ); + t.equal( FLOAT32_LN_HALF, -0.6931471824645996, 'returns expected value' ); t.end(); });