diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/README.md b/lib/node_modules/@stdlib/complex/float32/base/div/README.md
new file mode 100644
index 000000000000..8e3b27154689
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/README.md
@@ -0,0 +1,286 @@
+
+
+# cdiv
+
+> Divide two single-precision complex floating-point numbers.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var cdiv = require( '@stdlib/complex/float32/base/div' );
+```
+
+#### cdiv( z1, z2 )
+
+Divides two single-precision complex floating-point numbers.
+
+```javascript
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+
+var z1 = new Complex64( -13.0, -1.0 );
+var z2 = new Complex64( -2.0, 1.0 );
+
+var v = cdiv( z1, z2 );
+// returns [ 5.0, 3.0 ]
+```
+
+#### cdiv.assign( re1, im1, re2, im2, out, strideOut, offsetOut )
+
+Divides two single-precision complex floating-point numbers and assigns results to a provided output array.
+
+```javascript
+var Float32Array = require( '@stdlib/array/float32' );
+
+var out = new Float32Array( 2 );
+var v = cdiv.assign( -13.0, -1.0, -2.0, 1.0, out, 1, 0 );
+// returns [ 5.0, 3.0 ]
+
+var bool = ( out === v );
+// returns true
+```
+
+The function supports the following parameters:
+
+- **re1**: real component of the first complex number.
+- **im1**: imaginary component of the first complex number.
+- **re2**: real component of the second complex number.
+- **im2**: imaginary component of the second complex number.
+- **out**: output array.
+- **strideOut**: stride length for `out`.
+- **offsetOut**: starting index for `out`.
+
+#### cdiv.strided( z1, sz1, oz1, z2, sz2, oz2, out, so, oo )
+
+Divides two single-precision complex floating-point numbers stored in real-valued strided array views and assigns results to a provided strided output array.
+
+```javascript
+var Float32Array = require( '@stdlib/array/float32' );
+
+var z1 = new Float32Array( [ -13.0, -1.0 ] );
+var z2 = new Float32Array( [ -2.0, 1.0 ] );
+var out = new Float32Array( 2 );
+
+var v = cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 );
+// returns [ 5.0, 3.0 ]
+
+var bool = ( out === v );
+// returns true
+```
+
+The function supports the following parameters:
+
+- **z1**: first complex number strided array view.
+- **sz1**: stride length for `z1`.
+- **oz1**: starting index for `z1`.
+- **z2**: second complex number strided array view.
+- **sz2**: stride length for `z2`.
+- **oz2**: starting index for `z2`.
+- **out**: output array.
+- **so**: stride length for `out`.
+- **oo**: starting index for `out`.
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var Complex64Array = require( '@stdlib/array/complex64' );
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var cdiv = require( '@stdlib/complex/float32/base/div' );
+
+// Generate arrays of random values:
+var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+
+// Perform element-wise division:
+logEachMap( '(%s) / (%s) = %s', z1, z2, cdiv );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/complex/float32/base/div.h"
+```
+
+#### stdlib_base_complex64_div( z1, z2 )
+
+Divides two single-precision complex floating-point numbers.
+
+```c
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/real.h"
+#include "stdlib/complex/float32/imag.h"
+
+stdlib_complex64_t z1 = stdlib_complex64( -13.0f, -1.0f );
+stdlib_complex64_t z2 = stdlib_complex64( -2.0f, 1.0f );
+
+stdlib_complex64_t out = stdlib_base_complex64_div( z1, z2 );
+
+float re = stdlib_complex64_real( out );
+// returns 5.0f
+
+float im = stdlib_complex64_imag( out );
+// returns 3.0f
+```
+
+The function accepts the following arguments:
+
+- **z1**: `[in] stdlib_complex64_t` input value.
+- **z2**: `[in] stdlib_complex64_t` input value.
+
+```c
+stdlib_complex64_t stdlib_base_complex64_div( const stdlib_complex64_t z1, const stdlib_complex64_t z2 );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+
+int main( void ) {
+ const stdlib_complex64_t x[] = {
+ stdlib_complex64( 3.14f, 1.5f ),
+ stdlib_complex64( -3.14f, 1.5f ),
+ stdlib_complex64( 0.0f, -0.0f ),
+ stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f )
+ };
+
+ stdlib_complex64_t v;
+ stdlib_complex64_t y;
+ float re;
+ float im;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ v = x[ i ];
+ stdlib_complex64_reim( v, &re, &im );
+ printf( "z = %f + %fi\n", re, im );
+
+ y = stdlib_base_complex64_div( v, v );
+ stdlib_complex64_reim( y, &re, &im );
+ printf( "cdiv(z, z) = %f + %fi\n", re, im );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+* * *
+
+
+
+## References
+
+- Smith, Robert L. 1962. "Algorithm 116: Complex Division." _Commun. ACM_ 5 (8). New York, NY, USA: ACM: 435. doi:[10.1145/368637.368661][@smith:1962a].
+- Stewart, G. W. 1985. "A Note on Complex Division." _ACM Trans. Math. Softw._ 11 (3). New York, NY, USA: ACM: 238–41. doi:[10.1145/214408.214414][@stewart:1985a].
+- Priest, Douglas M. 2004. "Efficient Scaling for Complex Division." _ACM Trans. Math. Softw._ 30 (4). New York, NY, USA: ACM: 389–401. doi:[10.1145/1039813.1039814][@priest:2004a].
+- Julia. "complex.jl." Julia Programming Language. [<https://github.com/JuliaLang/julia/blob/master/base/complex.jl>][@julia:complex].
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@smith:1962a]: https://doi.org/10.1145/368637.368661
+
+[@stewart:1985a]: https://doi.org/10.1145/214408.214414
+
+[@priest:2004a]: https://doi.org/10.1145/1039813.1039814
+
+[@julia:complex]: https://github.com/JuliaLang/julia/blob/master/base/complex.jl
+
+
+
+
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.assign.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.assign.js
new file mode 100644
index 000000000000..1e71166af77b
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.assign.js
@@ -0,0 +1,70 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Float32Array = require( '@stdlib/array/float32' );
+var pkg = require( './../package.json' ).name;
+var cdiv = require( './../lib' );
+
+
+// VARIABLES //
+
+var options = {
+ 'dtype': 'float32'
+};
+
+
+// MAIN //
+
+bench( pkg+':assign', function benchmark( b ) {
+ var out;
+ var re;
+ var im;
+ var N;
+ var i;
+ var j;
+ var k;
+
+ N = 100;
+ re = uniform( N, -500.0, 500.0, options );
+ im = uniform( N, -500.0, 500.0, options );
+
+ out = new Float32Array( 2 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ j = i % N;
+ k = ( i+1 ) % N;
+ out = cdiv.assign( re[ j ], im[ j ], re[ k ], im[ k ], out, 1, 0 );
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( isnanf( out[ 0 ] ) || isnanf( out[ 1 ] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js
new file mode 100644
index 000000000000..90c025fc33fe
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js
@@ -0,0 +1,111 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 Complex64 = require( '@stdlib/complex/float32/ctor' );
+var isComplex64 = require( '@stdlib/assert/is-complex64' );
+var uniform = require( '@stdlib/random/base/uniform' );
+var real = require( '@stdlib/complex/float32/real' );
+var imag = require( '@stdlib/complex/float32/imag' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var pkg = require( './../package.json' ).name;
+var cdiv = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var values;
+ var y;
+ var i;
+ var z;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i % values.length ];
+ y = cdiv( z, z );
+ if ( typeof y !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( !isComplex64( y ) ) {
+ b.fail( 'should return a Complex64' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::smiths_algorithm', function benchmark( b ) {
+ var values;
+ var y;
+ var i;
+ var z;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i % values.length ];
+ y = cdiv( z, z );
+ if ( typeof y !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( !isComplex64( y ) ) {
+ b.fail( 'should return a Complex64' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+
+ function cdiv( z1, z2 ) {
+ var re1;
+ var re2;
+ var im1;
+ var im2;
+ var a;
+ var b;
+
+ re1 = real( z1 );
+ re2 = real( z2 );
+ im1 = imag( z1 );
+ im2 = imag( z2 );
+
+ if ( abs( re2 ) >= abs( im2 ) ) {
+ a = im2 / re2;
+ b = re2 + ( im2 * a );
+ return new Complex64( ( re1 + (im1 * a) )/b, (im1 - (re1*a) )/b );
+ }
+ a = re2 / im2;
+ b = ( re2 * a ) + im2;
+ return new Complex64( ( (re1*a) + im1 )/b, ( (im1*a) - re1 )/b );
+ }
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..5b907b0672cf
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js
@@ -0,0 +1,69 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var resolve = require( 'path' ).resolve;
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/base/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var real = require( '@stdlib/complex/float32/real' );
+var imag = require( '@stdlib/complex/float32/imag' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var cdiv = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( cdiv instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var values;
+ var out;
+ var z;
+ var i;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i%values.length ];
+ out = cdiv( z, z );
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( isnanf( real( out ) ) || isnanf( imag( out ) ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.strided.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.strided.js
new file mode 100644
index 000000000000..eea167b33ce1
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.strided.js
@@ -0,0 +1,68 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Float32Array = require( '@stdlib/array/float32' );
+var pkg = require( './../package.json' ).name;
+var cdiv = require( './../lib' );
+
+
+// VARIABLES //
+
+var options = {
+ 'dtype': 'float32'
+};
+
+
+// MAIN //
+
+bench( pkg+':strided', function benchmark( b ) {
+ var out;
+ var z1;
+ var z2;
+ var N;
+ var i;
+ var j;
+
+ N = 50;
+ z1 = uniform( N*2, -500.0, 500.0, options );
+ z2 = uniform( N*2, -500.0, 500.0, options );
+
+ out = new Float32Array( 2 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ j = ( i % N ) * 2;
+ out = cdiv.strided( z1, 1, j, z2, 1, j, out, 1, 0 );
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( isnanf( out[ 0 ] ) || isnanf( out[ 1 ] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile
new file mode 100644
index 000000000000..928de45a1a06
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile
@@ -0,0 +1,127 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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/complex/float32/base/div/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/benchmark.c
new file mode 100644
index 000000000000..7737b4646831
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/benchmark.c
@@ -0,0 +1,143 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 "cdiv"
+#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_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 re;
+ float im;
+ double t;
+ int i;
+
+ float complex z1;
+ float complex z2;
+ float complex z3;
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z1 = re + im*I;
+
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z2 = re + im*I;
+
+ z3 = z1 / z2;
+ if ( z3 != z3 ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( z3 != z3 ) {
+ 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/complex/float32/base/div/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..979768abbcec
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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/complex/float32/base/div/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..1dd84bac20f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/benchmark.c
@@ -0,0 +1,147 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "cdiv"
+#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_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 re;
+ float im;
+ double t;
+ int i;
+
+ stdlib_complex64_t z1;
+ stdlib_complex64_t z2;
+ stdlib_complex64_t z3;
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z1 = stdlib_complex64( re, im );
+
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z2 = stdlib_complex64( re, im );
+
+ z3 = stdlib_base_complex64_div( z1, z2 );
+ stdlib_complex64_reim( z3, &re, &im );
+ if ( re != re ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( im != im ) {
+ 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/complex/float32/base/div/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/REQUIRE
new file mode 100644
index 000000000000..98645e192e41
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+BenchmarkTools 0.5.0
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl
new file mode 100644
index 000000000000..19b58eac8a11
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl
@@ -0,0 +1,144 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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 = "divide";
+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 ComplexF32( (rand()*1000.0)-500.0, (rand()*1000.0)-500.0 ) / ComplexF32( (rand()*1000.0)-500.0, (rand()*1000.0)-500.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/complex/float32/base/div/binding.gyp b/lib/node_modules/@stdlib/complex/float32/base/div/binding.gyp
new file mode 100644
index 000000000000..0d6508a12e99
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/binding.gyp
@@ -0,0 +1,170 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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/complex/float32/base/div/docs/repl.txt b/lib/node_modules/@stdlib/complex/float32/base/div/docs/repl.txt
new file mode 100644
index 000000000000..7f95c64c973e
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/repl.txt
@@ -0,0 +1,115 @@
+
+{{alias}}( z1, z2 )
+ Divides two single-precision complex floating-point numbers.
+
+ Parameters
+ ----------
+ z1: Complex64
+ Complex number.
+
+ z2: Complex64
+ Complex number.
+
+ Returns
+ -------
+ out: Complex64
+ Result.
+
+ Examples
+ --------
+ > var z1 = new {{alias:@stdlib/complex/float32/ctor}}( -13.0, -1.0 )
+
+ > var z2 = new {{alias:@stdlib/complex/float32/ctor}}( -2.0, 1.0 )
+
+ > var y = {{alias}}( z1, z2 )
+ [ 5.0, 3.0 ]
+
+
+{{alias}}.assign( re1, im1, re2, im2, out, strideOut, offsetOut )
+ Divides two single-precision complex floating-point numbers and assigns
+ results to a provided output array.
+
+ Parameters
+ ----------
+ re1: number
+ Real component of the first complex number.
+
+ im1: number
+ Imaginary component of the first complex number.
+
+ re2: number
+ Real component of the second complex number.
+
+ im2: number
+ Imaginary component of the second complex number.
+
+ out: ArrayLikeObject
+ Output array.
+
+ strideOut: integer
+ Stride length.
+
+ offsetOut: integer
+ Starting index.
+
+ Returns
+ -------
+ out: ArrayLikeObject
+ Output array.
+
+ Examples
+ --------
+ > var out = new {{alias:@stdlib/array/float32}}( 2 );
+ > {{alias}}.assign( -13.0, -1.0, -2.0, 1.0, out, 1, 0 )
+ [ 5.0, 3.0 ]
+
+
+{{alias}}.strided( z1, sz1, oz1, z2, sz2, oz2, out, so, oo )
+ Divides two single-precision complex floating-point numbers stored in real-
+ valued strided array views and assigns results to a provided strided output
+ array.
+
+ Parameters
+ ----------
+ z1: ArrayLikeObject
+ First complex number view.
+
+ sz1: integer
+ Stride length for `z1`.
+
+ oz1: integer
+ Starting index for `z1`.
+
+ z2: ArrayLikeObject
+ Second complex number view.
+
+ sz2: integer
+ Stride length for `z2`.
+
+ oz2: integer
+ Starting index for `z2`.
+
+ out: ArrayLikeObject
+ Output array.
+
+ so: integer
+ Stride length for `out`.
+
+ oo: integer
+ Starting index for `out`.
+
+ Returns
+ -------
+ out: ArrayLikeObject
+ Output array.
+
+ Examples
+ --------
+ > var z1 = new {{alias:@stdlib/array/float32}}( [ -13.0, -1.0 ] );
+ > var z2 = new {{alias:@stdlib/array/float32}}( [ -2.0, 1.0 ] );
+ > var out = new {{alias:@stdlib/array/float32}}( 2 );
+ > {{alias}}.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 )
+ [ 5.0, 3.0 ]
+
+ See Also
+ --------
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts
new file mode 100644
index 000000000000..e70a1ea11f1e
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts
@@ -0,0 +1,119 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+import { Complex64 } from '@stdlib/types/complex';
+import { Collection, NumericArray } from '@stdlib/types/array';
+
+/**
+* Interface for dividing two single-precision complex floating-point numbers.
+*/
+interface Cdiv {
+ /**
+ * Divides two single-precision complex floating-point numbers.
+ *
+ * @param z1 - complex number
+ * @param z2 - complex number
+ * @returns result
+ *
+ * @example
+ * var Complex64 = require( '@stdlib/complex/float32/ctor' );
+ *
+ * var z1 = new Complex64( -13.0, -1.0 );
+ * var z2 = new Complex64( -2.0, 1.0 );
+ *
+ * var out = cdiv( z1, z2 );
+ * // returns [ 5.0, 3.0 ]
+ */
+ ( z1: Complex64, z2: Complex64 ): Complex64;
+
+ /**
+ * Divides two single-precision complex floating-point numbers and assigns results to a provided output array.
+ *
+ * @param re1 - real component of the first complex number
+ * @param im1 - imaginary component of the first complex number
+ * @param re2 - real component of the second complex number
+ * @param im2 - imaginary component of the second complex number
+ * @param out - output array
+ * @param strideOut - stride length
+ * @param offsetOut - starting index
+ * @returns output array
+ *
+ * @example
+ * var Float32Array = require( '@stdlib/array/float32' );
+ *
+ * var out = new Float32Array( 2 );
+ * var v = cdiv.assign( -13.0, -1.0, -2.0, 1.0, out, 1, 0 );
+ * // returns [ 5.0, 3.0 ]
+ *
+ * var bool = ( out === v );
+ * // returns true
+ */
+ assign>( re1: number, im1: number, re2: number, im2: number, out: T, strideOut: number, offsetOut: number ): T;
+
+ /**
+ * Divides two single-precision complex floating-point numbers stored in real-valued strided array views and assigns results to a provided strided output array.
+ *
+ * @param z1 - first complex number view
+ * @param strideZ1 - stride length for `z1`
+ * @param offsetZ1 - starting index for `z1`
+ * @param z2 - second complex number view
+ * @param strideZ2 - stride length for `z2`
+ * @param offsetZ2 - starting index for `z2`
+ * @param out - output array
+ * @param strideOut - stride length for `out`
+ * @param offsetOut - starting index for `out`
+ * @returns output array
+ *
+ * @example
+ * var Float32Array = require( '@stdlib/array/float32' );
+ *
+ * var z1 = new Float32Array( [ -13.0, -1.0 ] );
+ * var z2 = new Float32Array( [ -2.0, 1.0 ] );
+ *
+ * var out = cdiv.strided( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ * // returns [ 5.0, 3.0 ]
+ */
+ strided, U extends NumericArray | Collection, V extends NumericArray | Collection>( z1: T, strideZ1: number, offsetZ1: number, z2: U, strideZ2: number, offsetZ2: number, out: V, strideOut: number, offsetOut: number ): V;
+}
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @param z1 - complex number
+* @param z2 - complex number
+* @returns result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = cdiv( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+declare var cdiv: Cdiv;
+
+
+// EXPORTS //
+
+export = cdiv;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts
new file mode 100644
index 000000000000..4f9ddcf6c203
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts
@@ -0,0 +1,357 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 Complex64 = require( '@stdlib/complex/float32/ctor' );
+import cdiv = require( './index' );
+
+
+// TESTS //
+
+// The function returns a complex number...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ cdiv( z, z ); // $ExpectType Complex64
+}
+
+// The compiler throws an error if the function is provided a first argument which is not a complex number...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ cdiv( true, z ); // $ExpectError
+ cdiv( false, z ); // $ExpectError
+ cdiv( null, z ); // $ExpectError
+ cdiv( undefined, z ); // $ExpectError
+ cdiv( '5', z ); // $ExpectError
+ cdiv( [], z ); // $ExpectError
+ cdiv( {}, z ); // $ExpectError
+ cdiv( ( x: number ): number => x, z ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided a second argument which is not a complex number...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ cdiv( z, true ); // $ExpectError
+ cdiv( z, false ); // $ExpectError
+ cdiv( z, null ); // $ExpectError
+ cdiv( z, undefined ); // $ExpectError
+ cdiv( z, '5' ); // $ExpectError
+ cdiv( z, [] ); // $ExpectError
+ cdiv( z, {} ); // $ExpectError
+ cdiv( z, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ cdiv(); // $ExpectError
+ cdiv( z ); // $ExpectError
+ cdiv( z, z, z ); // $ExpectError
+}
+
+// Attached to the main export is an `assign` method which returns a collection...
+{
+ cdiv.assign( 1.0, 1.0, 1.0, 1.0, new Float32Array( 2 ), 1, 0 ); // $ExpectType Float32Array
+ cdiv.assign( 1.0, 1.0, 1.0, 1.0, new Float64Array( 2 ), 1, 0 ); // $ExpectType Float64Array
+ cdiv.assign( 1.0, 1.0, 1.0, 1.0, [ 0.0, 0.0 ], 1, 0 ); // $ExpectType number[]
+}
+
+// The compiler throws an error if the `assign` method is provided a first argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( true, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( false, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( null, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( undefined, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( '5', 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( [], 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( {}, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( ( x: number ): number => x, 2.0, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a second argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( 1.0, true, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, false, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, null, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, undefined, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, '5', 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, [], 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, {}, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, ( x: number ): number => x, 3.0, 4.0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( 1.0, 2.0, true, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, false, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, null, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, undefined, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, '5', 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, [], 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, {}, 4.0, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, ( x: number ): number => x, 4.0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a fourth argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( 1.0, 2.0, 3.0, true, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, false, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, null, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, undefined, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, '5', out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, [], out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, {}, out, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, ( x: number ): number => x, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a fifth argument which is not a collection...
+{
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, 1, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, true, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, false, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, null, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, undefined, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, '5', 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, [ '5' ], 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, {}, 1, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, ( x: number ): number => x, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a sixth argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, true, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, false, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, null, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, undefined, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, '5', 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, [], 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, {}, 0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, ( x: number ): number => x, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided a seventh argument which is not a number...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, true ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, false ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, null ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, undefined ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, '5' ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, [] ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, {} ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the `assign` method is provided an unsupported number of arguments...
+{
+ const out = new Float32Array( 2 );
+
+ cdiv.assign(); // $ExpectError
+ cdiv.assign( 1.0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1 ); // $ExpectError
+ cdiv.assign( 1.0, 2.0, 3.0, 4.0, out, 1, 0, {} ); // $ExpectError
+}
+
+// Attached to the main export is a `strided` method which returns a collection...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+
+ cdiv.strided( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 ); // $ExpectType Float32Array
+ cdiv.strided( z1, 1, 0, z2, 1, 0, new Float64Array( 2 ), 1, 0 ); // $ExpectType Float64Array
+ cdiv.strided( z1, 1, 0, z2, 1, 0, [ 0.0, 0.0 ], 1, 0 ); // $ExpectType number[]
+}
+
+// The compiler throws an error if the `strided` method is provided a first argument which is not a collection...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( true, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( false, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( null, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( undefined, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( '5', 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( [ '5' ], 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( {}, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( ( x: number ): number => x, 1, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a second argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, true, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, false, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, null, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, undefined, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, '5', 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, [], 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, {}, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, ( x: number ): number => x, 0, z2, 1, 0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a third argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( 2 );
+
+ cdiv.strided( z1, 1, true, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, false, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, null, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, undefined, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, '5', z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, [], z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, {}, z2, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, ( x: number ): number => x, z2, 1, 0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a fourth argument which is not a collection...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, 1, 0, true, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, false, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, null, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, undefined, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, '5', 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, [ '5' ], 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, {}, 1, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, ( x: number ): number => x, 1, 0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a fifth argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, 1, 0, z2, true, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, false, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, null, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, undefined, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, '5', 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, [], 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, {}, 0, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, ( x: number ): number => x, 0, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a sixth argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, 1, 0, z2, 1, true, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, false, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, null, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, undefined, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, '5', out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, [], out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, {}, out, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, ( x: number ): number => x, out, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a seventh argument which is not a collection...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+
+ cdiv.strided( z1, 1, 0, z2, 1, 0, 1, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, true, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, false, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, null, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, undefined, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, '5', 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, [ '5' ], 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, {}, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, ( x: number ): number => x, 1, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided an eighth argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, true, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, false, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, null, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, undefined, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, '5', 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, [], 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, {}, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, ( x: number ): number => x, 0 ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided a ninth argument which is not a number...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, true ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, false ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, null ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, undefined ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, '5' ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, [] ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, {} ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the `strided` method is provided an unsupported number of arguments...
+{
+ const z1 = new Float32Array( 2 );
+ const z2 = new Float32Array( z1.length );
+ const out = new Float32Array( z2.length );
+
+ cdiv.strided(); // $ExpectError
+ cdiv.strided( z1 ); // $ExpectError
+ cdiv.strided( z1, 1 ); // $ExpectError
+ cdiv.strided( z1, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1 ); // $ExpectError
+ cdiv.strided( z1, 1, 0, z2, 1, 0, out, 1, 0, {} ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile
new file mode 100644
index 000000000000..c8f8e9a1517b
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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/complex/float32/base/div/examples/c/example.c b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/example.c
new file mode 100644
index 000000000000..c6a0c3f18a59
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/example.c
@@ -0,0 +1,46 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+
+int main( void ) {
+ const stdlib_complex64_t x[] = {
+ stdlib_complex64( 3.14f, 1.5f ),
+ stdlib_complex64( -3.14f, 1.5f ),
+ stdlib_complex64( 0.0f, -0.0f ),
+ stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f )
+ };
+
+ stdlib_complex64_t v;
+ stdlib_complex64_t y;
+ float re;
+ float im;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ v = x[ i ];
+ stdlib_complex64_reim( v, &re, &im );
+ printf( "z = %f + %fi\n", re, im );
+
+ y = stdlib_base_complex64_div( v, v );
+ stdlib_complex64_reim( y, &re, &im );
+ printf( "cdiv(z, z) = %f + %fi\n", re, im );
+ }
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js b/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js
new file mode 100644
index 000000000000..3dd8369c1cf8
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 Complex64Array = require( '@stdlib/array/complex64' );
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var cdiv = require( './../lib' );
+
+// Generate arrays of random values:
+var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+
+// Perform element-wise division:
+logEachMap( '(%s) / (%s) = %s', z1, z2, cdiv );
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi b/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi
new file mode 100644
index 000000000000..bee8d41a2caf
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi
@@ -0,0 +1,53 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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': [
+ '[ 5.0, 3.0 ]
+*/
+function assign( re1, im1, re2, im2, out, strideOut, offsetOut ) {
+ var rePart;
+ var imPart;
+ var mag;
+ var a;
+ var b;
+ var c;
+ var d;
+
+ // Widen to float64 for intermediate calculations (Julia's approach for Float32)
+ a = re1;
+ b = im1;
+ c = re2;
+ d = im2;
+
+ if ( isnan( a ) || isnan( b ) || isnan( c ) || isnan( d ) ) {
+ out[ offsetOut ] = NaN;
+ out[ offsetOut + strideOut ] = NaN;
+ return out;
+ }
+
+ if ( isInfinite( c ) || isInfinite( d ) ) {
+ if ( isInfinite( a ) || isInfinite( b ) ) {
+ out[ offsetOut ] = NaN;
+ out[ offsetOut + strideOut ] = NaN;
+ return out;
+ }
+ out[ offsetOut ] = 0.0;
+ out[ offsetOut + strideOut ] = 0.0;
+ return out;
+ }
+
+ mag = 1.0 / ( ( c * c ) + ( d * d ) );
+ rePart = ( ( a * c ) + ( b * d ) ) * mag;
+ imPart = ( ( b * c ) - ( a * d ) ) * mag;
+
+ out[ offsetOut ] = f32( rePart );
+ out[ offsetOut + strideOut ] = f32( imPart );
+
+ return out;
+}
+
+
+// EXPORTS //
+
+module.exports = assign;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/index.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/index.js
new file mode 100644
index 000000000000..5503aeec14e3
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/index.js
@@ -0,0 +1,55 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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';
+
+/**
+* Divide two single-precision complex floating-point numbers.
+*
+* @module @stdlib/complex/float32/base/div
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+* var cdivf = require( '@stdlib/complex/float32/base/div' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = cdivf( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+
+// MODULES //
+
+var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var main = require( './main.js' );
+var assign = require( './assign.js' );
+var strided = require( './strided.js' );
+
+
+// MAIN //
+
+setReadOnly( main, 'assign', assign );
+setReadOnly( main, 'strided', strided );
+
+
+// EXPORTS //
+
+module.exports = main;
+
+// exports: { "assign": "main.assign", "strided": "main.strided" }
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js
new file mode 100644
index 000000000000..86dce1e79598
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js
@@ -0,0 +1,72 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 realf = require( '@stdlib/complex/float32/real' );
+var imagf = require( '@stdlib/complex/float32/imag' );
+var Float32Array = require( '@stdlib/array/float32' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var assign = require( './assign.js' );
+
+
+// VARIABLES //
+
+var out = new Float32Array( 2 );
+
+
+// MAIN //
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @param {Complex64} z1 - complex number
+* @param {Complex64} z2 - complex number
+* @returns {Complex64} result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = cdiv( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+function cdiv( z1, z2 ) {
+ var re1;
+ var re2;
+ var im1;
+ var im2;
+
+ re1 = realf( z1 );
+ re2 = realf( z2 );
+ im1 = imagf( z1 );
+ im2 = imagf( z2 );
+
+ out = assign( re1, im1, re2, im2, out, 1, 0 );
+
+ return new Complex64( out[ 0 ], out[ 1 ] );
+}
+
+
+// EXPORTS //
+
+module.exports = cdiv;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js
new file mode 100644
index 000000000000..b276685c1901
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 Complex64 = require( '@stdlib/complex/float32/ctor' );
+var addon = require( './../src/addon.node' );
+
+
+// MAIN //
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @private
+* @param {Complex64} z1 - complex number
+* @param {Complex64} z2 - complex number
+* @returns {Complex64} result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = cdiv( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+function cdiv( z1, z2 ) {
+ var v = addon( z1, z2 );
+ return new Complex64( v.re, v.im );
+}
+
+
+// EXPORTS //
+
+module.exports = cdiv;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/strided.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/strided.js
new file mode 100644
index 000000000000..08708a46073c
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/strided.js
@@ -0,0 +1,58 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var assign = require( './assign.js' );
+
+
+// MAIN //
+
+/**
+* Divides two single-precision complex floating-point numbers stored in real-valued strided array views and assigns results to a provided strided output array.
+*
+* @param {Float32Array} z1 - first complex number view
+* @param {integer} strideZ1 - stride length for `z1`
+* @param {NonNegativeInteger} offsetZ1 - starting index for `z1`
+* @param {Float32Array} z2 - second complex number view
+* @param {integer} strideZ2 - stride length for `z2`
+* @param {NonNegativeInteger} offsetZ2 - starting index for `z2`
+* @param {Collection} out - output array
+* @param {integer} strideOut - stride length for `out`
+* @param {NonNegativeInteger} offsetOut - starting index for `out`
+* @returns {Collection} output array
+*
+* @example
+* var Float32Array = require( '@stdlib/array/float32' );
+*
+* var z1 = new Float32Array( [ -13.0, -1.0 ] );
+* var z2 = new Float32Array( [ -2.0, 1.0 ] );
+*
+* var out = strided( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+* // returns [ 5.0, 3.0 ]
+*/
+function strided( z1, strideZ1, offsetZ1, z2, strideZ2, offsetZ2, out, strideOut, offsetOut ) { // eslint-disable-line max-len
+ return assign( z1[ offsetZ1 ], z1[ offsetZ1+strideZ1 ], z2[ offsetZ2 ], z2[ offsetZ2+strideZ2 ], out, strideOut, offsetOut ); // eslint-disable-line max-len
+}
+
+
+// EXPORTS //
+
+module.exports = strided;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/manifest.json b/lib/node_modules/@stdlib/complex/float32/base/div/manifest.json
new file mode 100644
index 000000000000..37441a59a8b5
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/manifest.json
@@ -0,0 +1,93 @@
+{
+ "options": {
+ "task": "build"
+ },
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "task": "build",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/napi/binary",
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/assert/is-nan",
+ "@stdlib/math/base/assert/is-infinite",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ },
+ {
+ "task": "benchmark",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/assert/is-nan",
+ "@stdlib/math/base/assert/is-infinite",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ },
+ {
+ "task": "examples",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/assert/is-nan",
+ "@stdlib/math/base/assert/is-infinite",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/package.json b/lib/node_modules/@stdlib/complex/float32/base/div/package.json
new file mode 100644
index 000000000000..6b9be6d1f926
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "@stdlib/complex/float32/base/div",
+ "version": "0.0.0",
+ "description": "Divide two single-precision complex floating-point numbers.",
+ "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",
+ "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",
+ "cdiv",
+ "div",
+ "divide",
+ "division",
+ "arithmetic",
+ "complex",
+ "cmplx",
+ "number"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile
new file mode 100644
index 000000000000..2caf905cedbe
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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/complex/float32/base/div/src/addon.c b/lib/node_modules/@stdlib/complex/float32/base/div/src/addon.c
new file mode 100644
index 000000000000..71a4591f2c87
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/addon.c
@@ -0,0 +1,22 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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/complex/float32/base/div.h"
+#include "stdlib/math/base/napi/binary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_CC_C( stdlib_base_complex64_div )
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c b/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c
new file mode 100644
index 000000000000..6b8f764f3c8c
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c
@@ -0,0 +1,85 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include "stdlib/math/base/assert/is_nan.h"
+#include "stdlib/math/base/assert/is_infinite.h"
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @param z1 input value
+* @param z2 input value
+* @return result
+*
+* @example
+* #include "stdlib/complex/float32/ctor.h"
+* #include "stdlib/complex/float32/real.h"
+* #include "stdlib/complex/float32/imag.h"
+*
+* stdlib_complex64_t z1 = stdlib_complex64( -13.0f, -1.0f );
+* stdlib_complex64_t z2 = stdlib_complex64( -2.0f, 1.0f );
+*
+* stdlib_complex64_t out = stdlib_base_complex64_div( z1, z2 );
+*
+* float re = stdlib_complex64_real( out );
+* // returns 5.0f
+*
+* float im = stdlib_complex64_imag( out );
+* // returns 3.0f
+*/
+stdlib_complex64_t stdlib_base_complex64_div( const stdlib_complex64_t z1, const stdlib_complex64_t z2 ) {
+ double a;
+ double b;
+ double c;
+ double d;
+ double mag;
+ double ore;
+ double oim;
+ float re1f;
+ float re2f;
+ float im1f;
+ float im2f;
+
+ stdlib_complex64_reim( z1, &re1f, &im1f );
+ stdlib_complex64_reim( z2, &re2f, &im2f );
+
+ a = (double)re1f;
+ b = (double)im1f;
+ c = (double)re2f;
+ d = (double)im2f;
+
+ if ( stdlib_base_is_nan( a ) || stdlib_base_is_nan( b ) || stdlib_base_is_nan( c ) || stdlib_base_is_nan( d ) ) {
+ return stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f );
+ }
+
+ if ( stdlib_base_is_infinite( c ) || stdlib_base_is_infinite( d ) ) {
+ if ( stdlib_base_is_infinite( a ) || stdlib_base_is_infinite( b ) ) {
+ return stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f );
+ }
+ return stdlib_complex64( 0.0f, 0.0f );
+ }
+
+ mag = 1.0 / ( ( c * c ) + ( d * d ) );
+ ore = ( ( a * c ) + ( b * d ) ) * mag;
+ oim = ( ( b * c ) - ( a * d ) ) * mag;
+
+ return stdlib_complex64( (float)ore, (float)oim );
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json
new file mode 100644
index 000000000000..16d11480251f
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json
@@ -0,0 +1 @@
+{"re1":[7.590787632113009e9,5.427818730657748e9,7.542623609335009e9,7.135971007766906e8,5.258910772682124e8,1.3213657998699758e9,7.423954865779011e9,4.090733551338841e9,3.0164367688396554e9,7.338985066571027e9,4.987230201286254e9,9.266638601260294e9,5.275185388198733e9,3.6731230343040543e9,4.818721036619184e9,8.833290796172146e9,3.103529804908047e9,4.009802967964444e9,2.4028224668425126e9,1.329700771711112e9,8.638639125737835e8,2.798987329057321e9,1.126599080881896e9,1.142980149603613e9,7.213679838991444e9,4.867894382451831e9,3.263044398059288e9,5.181055377714808e9,1.8394115323517025e9,3.19626094657827e9,4.355049286394365e9,8.429625946528476e9,9.996994644886522e9,2.9239274095738745e9,1.4133426336046162e9,3.0961969284099946e9,6.07953403399754e9,4.264101725210212e9,8.460621015706915e9,5.901906446731385e9,3.25557512764628e9,9.740761287197327e9,3.2110870168183346e9,9.15234583200759e9,9.737043697456152e9,8.53433128556918e9,1.8533589580130405e9,6.593799025056556e8,5.486447772070645e9,7.807493285990738e9,6.170193752055356e9,3.4257382946835303e9,8.721740080777023e9,9.731965129410332e9,3.6724745672672997e9,8.32999842155301e9,1.6854961709117012e9,4.035770702620155e9,3.4716301182778897e9,3.3013610714689655e9,7.663507621485807e9,8.725063493571428e8,4.6835243341138735e9,7.068751741210203e9,4.552430092303612e9,9.76989878436544e9,1.103781981327554e9,9.25999393153029e9,3.9585971253099704e8,3.241034551699914e9,1.7357558244030159e9,1.8265743361775289e9,2.2724166706853156e9,3.3940856965981436e9,4.578605552282825e9,8.941177061412537e9,4.0474669744083867e9,2.1876271236557755e9,6.30364167755884e9,7.527178209404289e9,3.2554579104654303e9,4.543910016151651e9,8.727614994240845e9,5.859531124989158e9,9.722296088716528e9,6.183935969543679e9,1.888127427045605e8,7.607700746721942e9,9.95079810687434e9,3.4226903430167766e9,9.737803734390944e9,4.301730549507436e9,7.305868950962326e9,2.7456047852447586e9,3.397443489754447e9,5.159986953778461e9,4.94171312698124e8,7.349286484633273e9,9.314795901908876e9,9.288006151022741e9,4.191556015324178e9,7.719146661494359e9,8.804446365869236e9,7.696817594896035e9,7.607880730363445e9,4.763360296989416e9,4.966156773448505e8,5.263533982275203e9,3.9256584349028935e9,7.748315569623514e9,2.2211478496719494e9,1.9097968421642396e9,5.023546393032957e9,2.0257075082212617e9,7.949165357935234e9,5.40741763078031e8,3.29798271908631e9,5.22705334106299e9,3.338430970310069e9,2.8599276918342643e9,9.001841466307806e9,1.0083329965984288e9,8.842339964065104e9,9.345747532124529e9,9.71240699094664e9,4.577630913577025e9,5.473832189973105e7,6.932358110838343e9,3.6519091250819325e9,3.3520491348468394e9,2.963331949763781e9,3.2683215297339387e9,4.431963123900314e9,8.860694742987066e9,1.5416411634359396e9,7.4846625490312805e9,2.0965901064667025e9,7.944173030850286e9,5.824044602041418e9,1.566062617483155e9,3.5475950124648547e9,8.97417484964701e9,9.378534074532265e9,6.494627502957253e9,4.0638202516955457e9,9.360486403015114e9,9.67173279642784e9,2.505133056945179e9,3.1686366475701256e9,5.886416869468667e9,3.3294410300822597e9,8.651893721943676e9,6.532254479461839e9,1.5100049658715887e9,1.3394601233871405e9,3.2993379346888595e9,5.745700446687343e9,2.684466310439059e9,2.54759926376148e8,7.158446740195719e9,6.473151594374625e9,2.3618053523928437e9,8.635146543009365e8,2.3635098475851855e9,2.75865856188685e9,2.4662255874892416e9,2.267038573430802e8,7.605031926121233e9,4.896543608241137e9,3.3741813130200114e9,7.540340450720962e9,4.772986811791919e9,5.105251165174245e9,8.265380084997385e9,9.059596391005163e9,1.4452765251923704e9,4.530966563525733e9,1.6708689035257685e8,3.445887175908646e9,1.4653618343316598e9,7.826765701623523e9,6.700591391167098e9,5.178436874001095e9,7.024839959977587e9,4.948223824069412e9,3.666280274992079e9,9.129648172448784e9,6.422134886635054e9,2.3836797132181177e9,6.377565865516272e9,5.333712340447417e9,3.10101197236179e9,5.045799630285956e9,5.845580751822055e9,2.019234411890658e8,5.42634416227566e9,7.503560504355366e9,6.667706001338133e9,9.000066181822592e9,5.604466294824179e9,2.0114445628463807e9,3.4061650071800942e9,9.514199792788269e9,4.100772858135786e9,3.9488515533482647e8,9.415717056907738e9,6.285826451048149e9,3.203907963946724e9,1.8067012204735322e9,2.0262109619720936e9,1.8777239624759269e9,5.943883421797447e9,9.225940143655182e9,9.060003413720407e9,9.227849286863214e9,3.743120271948679e9,2.1146389132755382e9,8.825109065992416e9,3.043978342099348e9,4.2396809982062745e8,3.0205896718145275e9,9.843931647026022e9,1.097169371126997e9,3.9848786320561957e9,4.0251081364801545e9,2.98930946316887e9,1.522777408287187e9,9.18885646757754e9,7.191533117645083e9,9.63095852714186e9,8.297128720131255e9,6.514675723354713e8,6.235394437642355e9,6.713258233745494e9,5.174069766202244e9,1.776395298084723e9,5.144807278319591e9,1.479782690042486e8,6.230342363787811e8,1.5697633974195e9,9.429448093853483e9,9.613543106420525e9,1.6148117311150467e9,6.901396607934121e9,3.480437270885386e9,2.2981095461294823e9,6.680719793099032e7,6.554090639445286e9,1.2485441763535533e9,8.970206408012379e9,6.985436335570372e8,9.80547241957698e9,8.660508539226662e9,6.164904905996306e9,7.66397368408993e9,6.437525537383454e9,4.8217715455496356e7,2.2805518994707894e9,2.797927878988863e9,9.00579709906115e9,1.3152479850675358e8,6.053138366060474e9,1.476115869946565e9,7.496023984900864e9,9.767992518183765e9,1.9670397040683508e9,9.327123922359907e9,4.150398103426263e9,9.726408997367981e9,4.609220726864912e9,9.327612394378271e9,3.0018725450744233e9,8.52288695333981e9,6.842411639566076e9,7.2655816965539665e9,3.6737296756309967e9,4.406772194893629e9,1.201800457290142e9,5.837043607783906e9,5.365023579847931e9,5.077816586319464e9,3.0090493473686075e9,5.006216454639028e9,3.718690291397286e8,2.4847210808136287e9,7.772171608677354e9,8.07542210954494e9,5.000397336481137e9,2.743349112265524e9,3.1899358967874413e9,1.1186159847824218e9,7.902855639456472e9,2.8393562762506495e9,2.588398438445172e8,8.598653036362617e9,1.1663766460773473e9,5.76630769585186e9,2.0947113563966467e9,5.682238617356912e9,5.186270254521766e9,2.936472055557875e9,7.311313509770112e8,5.032615725574576e9,1.6516483883927867e9,7.588296862577622e9,4.509983421099518e9,3.973816057112206e9,1.6584066061157808e9,1.314289333849018e9,7.771547380671957e9,2.9739981355466127e9,5.56903664671371e8,6.109697219374108e9,7.659633458821072e9,3.647899196674704e9,6.440554080434482e9,4.553304010560072e9,2.7370973085289917e9,6.235676701914211e9,1.841305679027736e9,1.3500523211738226e8,4.703434547947893e9,9.04154411776413e9,6.044917195790041e9,7.2506180529922085e9,3.8298256574195566e9,4.527661058365606e8,2.646804599917285e9,6.463750789440002e9,1.256303344716071e9,4.677849641076367e9,8.742355181394579e9,9.155003974010166e9,1.261438545583854e9,5.989786260193395e9,8.31796697588829e9,4.496082069038906e9,9.270060452200531e9,6.885255637685089e9,2.0032894773796906e9,7.609150214202624e9,7.29499594430563e9,3.9746383881926527e9,2.188282607407954e9,8.534368733866688e9,1.0177287168371618e9,7.660330068013964e9,9.330499947909988e9,3.191515589248649e9,4.708171299380026e9,8.834274234521078e9,3.0345222151913266e9,3.652521093828398e9,4.797786483816229e9,1.0742600462738782e8,6.099242550790555e9,1.7784957129375355e9,4.729581750890446e9,7.274945609268995e9,1.3736025799104035e9,7.558294940593042e9,9.838487792859604e9,6.568175078542113e9,2.0656290214695506e9,7.515659012081456e9,2.0929875200636795e9,6.058233880689684e9,5.809987016554591e9,4.632041296823534e9,9.611748122207125e9,8.446256957239109e9,8.325186907720774e9,4.869879476836943e9,7.62589345723465e9,5.246748676187167e9,2.7727729901218677e9,6.309139156783799e9,9.053417254190977e9,2.6797730357066717e9,5.941509421332313e9,6.066197516334588e9,4.033758515630548e9,1.7833384187032619e9,6.377626274221837e9,8.569133362219993e9,7.486030456911013e9,2.5940475767767677e9,5.5261056964381485e9,7.473245669017455e9,4.414017194707245e9,2.5086206732555594e9,7.277720466431105e9,6.063901901699432e9,9.21253079945936e9,4.7381494384276193e8,8.568845325452332e9,1.9205378926692274e9,8.732762306428137e9,5.823876751659964e9,3.955664244033573e9,9.736008437316841e9,7.561064806399509e6,5.507442363788861e9,9.495064588756084e9,6.691457944899714e9,6.135271240307011e9,1.514671776901303e9,3.876306999905267e9,9.619113215559404e9,7.026355130903233e9,9.796508164761166e9,2.6559207194228287e9,5.350820616695864e9,9.104124142889465e9,2.4981292171237025e9,7.881096337643481e9,9.803728786693888e9,7.881301706924403e9,7.745626470549017e9,2.6219608450282173e9,7.391564978938192e8,9.848651417352987e9,8.002392029695266e9,3.360547973803929e8,8.853765070708767e9,8.078311144435279e8,4.090674407491004e9,1.4483724274029353e9,4.059354311200577e9,5.311871158613575e9,4.480758153934777e9,5.336992325199933e9,2.917755110590865e9,1.837565907761527e9,4.857118351332252e9,9.607455743759007e9,2.4852671702888365e9,6.842447347327524e9,4.494409143361405e9,3.7373217501418644e8,8.444081030431882e8,4.483693662804106e9,2.322593973154794e9,1.6065091662075603e9,7.33612563223749e9,7.058817035618217e9,1.240018012294566e9,4.64206809812007e9,6.845536629093553e9,3.608782255691255e9,1.3055319290754464e9,5.731278692047395e9,2.8127136081035976e9,6.859978099412059e9,5.073870185372529e9,9.736744013613086e8,6.523922151945016e9,4.967758501310252e9,3.9671065779171977e9,4.989101213712084e9,5.303412087121389e9,9.835712269113218e9,4.95128822174597e9,6.270126668872644e9,1.398609511474802e9,9.292008276816177e8,7.720216163081549e9,7.550423133361545e9,9.155180323033007e8,3.344898690616016e9,7.517172732502489e9,2.406621061163944e9,2.0331615978804908e9,5.256066472880817e9,5.951822266015272e8,6.938489787125829e9,3.272481029655674e9,2.257195467009817e9,9.904912117273476e9,7.821855655212455e9,7.376972779375755e9,7.214844799633534e9,2.2014434423430986e9,6.696223408046755e9,6.901433279176729e9,8.158326131360228e9,9.115073941584972e8,6.31876388083138e8,2.92515234385754e9,6.987119468574389e9,4.147003443221211e9,6.043307526508109e9,4.485916454814991e9,9.998536563842392e9,5.659442448682159e9,1.7758635445521564e9,7.142913260999508e9,6.100777662525386e9,6.149317457703972e9,4.81386026191054e9],"im1":[2.303802568464133e-11,4.642810335841133e-11,1.0319242757578965e-11,-2.1028991375332253e-11,2.470146951044085e-11,4.002367004007213e-11,3.618453472012847e-11,-7.864086011056528e-12,2.4428249978061042e-11,4.166254366902776e-11,3.981478305826257e-11,1.2036781952241889e-11,-6.807907381963851e-12,4.287149916976291e-11,-2.477182871419905e-11,3.2257877599801486e-11,-3.6435165387071e-15,-4.942779508203299e-11,-3.422998762335676e-11,3.197879579610096e-11,3.100852637945335e-11,-1.649450091404341e-11,4.6594466305357074e-11,6.290608867128286e-12,-4.480882163903094e-11,-3.921824894906116e-11,-3.288020349568973e-11,-4.597813247898342e-11,3.567653292872177e-11,-1.5333341480610428e-11,3.536225989682456e-11,-2.6973341786678484e-11,-3.601687190923271e-11,3.4779260701887023e-11,-2.8179982490410837e-11,-3.99999985994751e-12,-3.669151131953125e-11,3.206533172034086e-11,-3.919729533973598e-11,-9.25687393276802e-12,-3.5664405773153776e-11,-6.291372866219559e-12,-2.3777502303656694e-11,2.6473217052503566e-11,-1.609562534817315e-11,-7.067720558706359e-12,1.4288070732714946e-11,3.472600085579406e-11,1.435848403404395e-11,3.4550724695345934e-11,-4.4144880121359185e-11,-1.3102234265400404e-11,-2.388867837155423e-11,-3.704775294866478e-11,-4.787574083321835e-11,2.9179577552470717e-12,1.9031367482547467e-11,-8.170524871428676e-12,-1.3114457644893827e-12,3.1443685808237263e-11,-4.978463454086879e-11,2.2848632312376418e-11,4.422691342329774e-12,-1.7753094659165657e-11,3.372474369336931e-11,-3.155725961334832e-11,2.1357337046713712e-11,-4.764860738137421e-11,-1.891686235437007e-11,2.954866342596866e-11,-3.1770354594401682e-12,-3.273145727151491e-11,-3.6462443405679194e-11,3.765856629816937e-11,-3.799542232173661e-11,-4.970103382674942e-11,2.5512738605678015e-11,1.9304843943410053e-11,-2.2879297599653125e-11,1.2941057590916606e-11,4.254198635225342e-11,3.84947458226746e-11,4.536710507525259e-11,2.9804981351110275e-11,-1.7114012695975048e-11,-8.237090715698556e-12,-2.8144816427888486e-11,3.253718957651904e-11,4.927833969961438e-11,-4.252040779621413e-11,2.938700934752288e-11,-4.06007488449651e-11,2.3173061905121362e-11,1.8126028890740105e-11,4.594999313706365e-11,-1.7194455889978078e-11,-6.680514200222443e-12,-1.3547150821878996e-11,-1.0833415580833764e-11,3.549853099850703e-11,1.0020215989595687e-12,-1.0141198107176839e-11,-4.2879982480292413e-11,-7.351544228486251e-12,2.598126176926011e-11,-3.372939638087461e-11,3.980594255088349e-11,2.739419993050558e-11,2.077782494340203e-11,6.02051821848941e-12,-2.8840885000214425e-11,3.495213582001822e-11,-2.8380761682534062e-11,4.095125539158203e-11,2.130226987479513e-11,-4.9597116419949275e-11,3.5766990929171436e-11,-1.5006054670417413e-11,2.093303748942519e-12,3.3376755218789705e-11,3.005776138934489e-11,9.554084526195082e-12,-5.283889750883905e-12,-7.922907290149473e-12,3.30968191788618e-11,1.0048761842593083e-11,2.5325854303288947e-11,3.8720163584433347e-11,2.9154786047612375e-11,5.431971620971344e-12,1.9822700634325466e-12,-3.305486739479702e-11,-1.894156854662221e-11,2.7122047218018648e-11,-2.634802135260439e-11,-2.7327588199285227e-11,-4.365722855249985e-11,3.219239839582172e-11,2.1043864420088095e-11,-3.1725708605812043e-11,4.1369147013776855e-11,1.32852528181575e-11,2.5745723895380712e-11,5.117399116362012e-13,1.7982918182235666e-11,-3.73154623533027e-11,-4.069616775065672e-11,-4.082298123106333e-11,-5.4384746798537555e-12,-7.575912831503581e-12,-1.174480919016914e-11,-4.65984133199479e-11,-4.6334313926781616e-11,4.7046936668544125e-11,-2.189216231226624e-11,1.315373392180856e-11,7.818672855480026e-12,-4.747688565357623e-11,-2.1267323584897515e-11,-5.553976576356765e-12,2.7325384791954042e-11,2.8445864128838938e-11,1.3314801320405447e-11,4.057545883385139e-12,-3.537921914081847e-11,3.878754238712624e-11,-1.6150043122192402e-11,-2.7815530130044998e-11,-3.7680631668877574e-11,3.43354064267412e-11,3.881441602264659e-11,3.041239626949027e-11,4.694379434598633e-11,-4.1242614357661014e-11,-2.087847077917514e-11,-3.050030866446063e-11,3.390628154535917e-11,7.533681705829085e-12,-4.420403186371205e-11,-5.723602645248983e-12,-1.723560994967668e-11,2.400429740287535e-11,4.2024865708740386e-11,4.635020799811612e-11,-1.5024017403309488e-11,9.507903025118793e-12,-2.613133237285367e-11,-1.8405058239505915e-11,-2.2484349837500185e-11,3.0047807010647704e-11,4.3059571852161385e-12,1.091802293269651e-11,4.089032631273795e-11,-4.939668070528336e-11,4.1205040372514926e-11,-1.2204313488232877e-11,-4.572144883825803e-11,4.9787970786667013e-11,2.7132025690155385e-11,4.474748818981231e-11,4.602882151709033e-12,-1.3020251889288248e-11,-3.313756939557628e-11,1.0576953624970996e-12,-1.5680792048398308e-11,1.4985554960086704e-12,-2.963202319795769e-11,3.3452900714441684e-11,2.326194772304367e-11,-4.702431537479156e-11,-4.1570629716841026e-11,4.754165229224742e-11,-2.998600401670496e-11,-2.25263249098697e-11,-9.706992462465345e-12,-3.5624815902993366e-11,-9.97744005781097e-12,-2.4738683108785743e-11,-2.5996197697650426e-11,3.2005590974511285e-11,4.9955508872289485e-11,-3.5718304055382686e-11,1.8199788567686235e-11,4.285688948728222e-11,3.091764201391155e-11,-1.1440181632816823e-11,2.5067921945423935e-11,1.0029806397271753e-11,-3.129224199396228e-11,-2.913117771135114e-11,7.972434494493438e-12,2.2251273847240355e-12,-1.3560940430824934e-11,1.748996042440518e-11,2.0976873756837916e-11,-2.840956225675301e-11,-2.1278563358408633e-11,1.2570877133427571e-11,-6.636383879192342e-12,-5.771294810700713e-12,1.329963769663173e-11,-4.55816161751459e-11,-3.458208198043154e-11,4.210729422700206e-14,3.066380651099467e-11,-3.041768284436418e-11,1.3062972744472317e-11,-4.110810230778197e-11,1.755210214890705e-11,-3.620437914074228e-11,4.382870097977858e-11,-1.5882673262964652e-11,1.420069441684912e-11,4.131052879570378e-11,-4.5057448610862605e-11,1.6525895632322e-11,-1.3542512182868917e-11,-3.152116544413932e-11,-3.0464540330079006e-11,2.217126943333135e-12,-2.2140559582996046e-11,-2.1223228856453514e-11,4.390462247995547e-11,-1.019514059440426e-11,-4.291982673118825e-11,-1.9055870522849527e-11,-5.3610556331641814e-12,1.3660292399462903e-11,3.7411245064143706e-11,4.262881409501949e-12,4.2568793562422635e-12,-3.150590315862516e-11,4.96612643436176e-11,-4.543786289493346e-11,3.680100937095574e-11,-1.1758445188668822e-11,2.8587246990797605e-11,-4.244645122964347e-11,-4.44170750393009e-11,-4.211744123433865e-11,4.763736908196491e-11,2.9737964169464375e-11,1.4116305933938751e-11,2.5500393523223904e-11,-4.32654936631366e-11,-2.741341582894976e-11,1.134195903190604e-11,-3.077648239113674e-11,-1.2446193861720424e-11,-2.965163707850146e-11,2.935551985390478e-11,-1.4476115729746056e-11,2.821723494516364e-11,-1.987011748376314e-11,-1.9796820805433516e-12,2.491988078103163e-11,-1.3440458294194656e-11,2.68414882684852e-12,2.3649414820260376e-11,6.113992549022639e-12,-4.465445807037955e-11,1.4413745068639469e-11,-2.7345636525834052e-11,4.361289196819033e-11,-4.0643560379199085e-11,-1.856725215202316e-11,4.684285644602612e-11,-5.3727417244599175e-12,-3.156612671653758e-11,2.9641897750360824e-11,4.939366617981707e-11,4.4988131802752636e-11,-1.4267658260564179e-11,4.567141843696547e-11,-2.2643144989414665e-11,1.909961288214403e-11,2.796895506605624e-11,2.3408801415432262e-11,7.337224269312738e-12,-2.7430010465572176e-11,1.7002945828561112e-11,-4.492539070425482e-11,4.208488242359992e-11,1.3697932427138042e-11,3.4457327756503585e-11,2.7084249947534017e-11,-7.502587546103568e-12,2.8133723869490114e-11,-2.442406142123832e-11,2.5230295278318968e-11,1.0781759198761609e-11,5.866102459858202e-12,-4.571681118244945e-11,1.8551757205644425e-11,1.3241280082605183e-11,-1.0232891783934306e-11,3.338074200832552e-11,2.1486861040984556e-11,-4.55813865080025e-11,-2.592798791947798e-11,2.6582944655210164e-11,-4.297242858441003e-11,4.916676198147343e-12,-1.826805463732781e-11,4.830593119805789e-11,-3.435270666654267e-11,4.396860406942922e-11,2.30526660061321e-12,4.164551282697516e-12,2.4948536916309236e-11,-3.850255319316469e-11,2.0812983006632056e-11,-2.6250218990354913e-11,1.355667322684682e-11,-3.133512324281242e-11,3.0505273977399796e-11,5.006300121862504e-12,1.8889192281085108e-12,2.7910436640689845e-11,1.3919152628426454e-11,-2.4683036375671914e-12,8.247588662086692e-12,-1.236572899299523e-11,4.374221033571974e-11,4.683790299900713e-11,1.6332108438456233e-12,2.683211875545012e-11,4.159486547371155e-11,3.8499247318384184e-11,4.388901160587171e-11,1.7246553131698307e-14,2.620727909358026e-11,-3.889780289353602e-11,-4.4422990834572506e-11,-1.464764490879292e-11,-6.429244028201489e-12,4.5782631590344304e-11,-3.219317096362174e-11,1.2756922141757034e-11,-3.127500204744031e-11,-4.023606540650273e-12,2.60836777237666e-11,-4.0228016059239294e-11,-4.760382662765667e-11,-4.727228121253574e-11,-4.190562417371867e-11,4.726959099660281e-11,-3.9358406293839354e-11,-2.4860126180579645e-11,4.265398263419409e-12,3.484369361639809e-11,3.234281500624304e-11,1.0507898712978021e-11,3.912948364910231e-11,-4.627144269385694e-11,4.626348352739605e-11,-2.6760361836026826e-11,4.554745461277494e-11,-1.4025268603624497e-11,4.940178405097593e-11,4.190753807343409e-11,-3.811726653785777e-12,2.730034180475216e-13,1.3675809803558256e-11,2.6734624004357065e-11,1.1326358500791996e-11,1.0103405529264837e-12,-2.4145601539752926e-11,-2.6899800105439575e-11,1.7051207659195786e-11,-3.300197749403149e-11,-1.7266493350443248e-11,-3.194627685143958e-11,4.0179419629341225e-11,-4.78592983073333e-11,-4.566973619768925e-11,1.0323441398973539e-11,2.5552557352146556e-12,-1.8715981061179365e-11,4.510635146087854e-11,3.3137290673384816e-11,3.1577241765941336e-11,2.2451401609670373e-11,-2.1952690559432563e-11,7.935380500461476e-12,1.039344652613179e-11,-2.1394516489649786e-11,-3.298537160638189e-11,-4.333180006821539e-12,-1.4671150660365364e-11,4.4115283927478837e-11,3.3026058026157435e-11,1.0344119878326456e-11,3.2320318868399223e-11,9.995596220702206e-12,-4.8223632802834586e-11,-3.729073211144543e-11,-2.191715600173174e-11,-3.884663948539822e-12,1.3585973680253603e-11,2.4833758089780553e-11,-1.0259009549333057e-11,-1.2495647112528994e-11,-9.683517794981153e-12,-7.819773950169694e-12,-3.52952068622412e-11,-4.902890573470542e-11,-1.8234465259940858e-11,-2.90168165076232e-11,-5.254599166637641e-12,3.025150807591093e-11,3.544820428152559e-11,4.615936978751496e-11,-1.5540172823258905e-11,2.771627398313721e-11,-2.4069211681768543e-11,-4.4419026004360205e-14,2.7569875886109173e-11,-7.524775758634941e-12,-2.1719447650726077e-11,-4.7961243327703253e-11,3.1983094063976266e-11,-4.660279449121177e-12,-3.7763307588981997e-11,-1.936528100092344e-11,3.635642057138872e-11,1.6033537635840755e-11,-4.367111408061677e-11,9.544498915647558e-12,3.028343579443936e-11,9.894253817435666e-12,4.7087443972635114e-11,-1.0226206578848676e-11,-3.185063943603671e-11,2.6732184956908416e-11,-1.494045482397347e-11,-4.8865495454896816e-11,3.3290741108813836e-11,-3.1229777360255884e-11,-3.9000653549061685e-11,-3.794106168438428e-11,9.373738424279427e-12,4.0403243226281934e-11,-1.8464535735499352e-11,-2.424211170076024e-11,-1.7368883414377926e-11,-2.4703903065741595e-11,-1.853730166331985e-11,2.2837001760247196e-11,1.8794435077198668e-11,4.410917355467717e-11,-4.02057651686326e-11,4.158936337834406e-12,3.3147781070588965e-11,4.8677634049086285e-11,4.942981249524379e-11,1.7775905693665587e-11,4.652688146007103e-12,-4.410018497356726e-11,-4.803196126950014e-11],"qim":[6.9096796e-21,4.7577978e-20,8.8694894e-20,-2.390793e-19,4.988146e-21,2.1423902e-20,7.198057e-21,-7.214275e-21,2.1598534e-21,-1.4686145e-21,1.5562993e-22,1.4101403e-20,4.0130264e-21,8.105355e-21,-3.909108e-21,3.345272e-21,-3.270636e-22,-4.0507264e-20,1.1812589e-20,4.3107007e-21,3.5745645e-21,-7.2926755e-21,5.6961963e-21,6.0239277e-22,-9.536081e-21,-1.4609868e-16,1.9605578e-21,2.6586306e-19,1.073324e-20,4.851796e-21,9.653417e-21,-9.095833e-21,3.5414765e-21,5.1712456e-21,-2.7654425e-21,-3.291935e-20,-6.4728667e-20,6.747464e-21,-8.202573e-21,1.6522281e-21,-5.9468914e-21,4.5323508e-21,-1.093914e-21,3.3285142e-21,5.134488e-21,-6.2613365e-20,1.2663946e-21,4.0469125e-21,-1.1250598e-21,1.593027e-20,-9.085538e-21,-6.204997e-22,-1.4371068e-21,-1.3857916e-21,-3.1468315e-21,1.0002998e-20,7.771457e-21,8.5500094e-21,-2.6596197e-21,4.185675e-20,-1.1839422e-20,8.381722e-21,-3.7808613e-20,2.343566e-22,2.4911538e-20,-6.301013e-22,2.7643318e-21,-1.6338452e-17,-2.2651396e-21,6.8579485e-21,1.9951009e-21,-3.9593267e-21,-7.858343e-21,4.7521684e-21,-6.610331e-20,-2.193798e-20,-4.7246307e-21,2.0024637e-21,-2.244974e-21,-8.339334e-21,3.100771e-21,3.769164e-21,5.583695e-21,1.4953561e-20,-3.3091619e-18,2.8722183e-21,-4.2810183e-21,6.4365207e-25,3.2921917e-22,-3.3933753e-20,1.6073336e-20,3.7802332e-19,2.2140156e-20,9.400877e-22,2.3199653e-18,3.1430568e-19,-2.8619445e-22,2.5400946e-21,-6.8234945e-21,9.317038e-21,-1.985511e-21,-9.170176e-20,-3.1972643e-21,-3.6944346e-21,3.582072e-21,-4.595315e-21,3.7656145e-21,3.5753905e-21,1.9411778e-21,1.28802345e-20,-7.978072e-21,5.8650357e-21,-2.7453957e-21,3.6145014e-21,-2.0787507e-21,-1.2057203e-20,4.9613582e-20,-8.594622e-22,-4.0632384e-21,3.5785736e-21,-3.3778176e-20,8.264713e-22,-7.3749105e-21,-4.3431105e-20,7.2330467e-22,1.8331906e-21,2.7110223e-21,2.0833644e-20,7.644549e-21,-1.5819775e-21,5.8358925e-22,-2.5677338e-21,6.355014e-22,5.0321655e-23,-2.2757429e-21,-4.653951e-21,-7.7892545e-21,9.75551e-22,5.8702165e-20,-4.5360424e-21,6.853055e-21,2.5237878e-20,-2.0806586e-19,-4.5667256e-21,4.794628e-21,-1.1324541e-20,-6.9878805e-21,-3.9102015e-21,-3.2039985e-21,-1.4502998e-20,5.813216e-19,-9.4399394e-21,3.12682e-21,1.3769493e-19,-2.4407376e-21,8.841231e-22,-6.2375355e-22,-1.48483e-20,-2.3442444e-21,3.922785e-21,-1.8530429e-20,3.6364096e-21,1.5511529e-21,-9.111197e-22,-1.1541891e-20,8.299294e-21,-3.747102e-21,-5.5998686e-21,-3.0709613e-20,7.8224726e-21,2.6014784e-21,9.326101e-21,1.03508874e-20,-9.560923e-21,-2.3384708e-20,-8.957028e-21,4.7214742e-21,1.1773921e-21,-7.6999796e-21,-1.3083259e-21,6.9024965e-20,-2.9530312e-19,2.422225e-20,5.4649973e-21,-5.028817e-21,1.36741e-20,3.0769344e-21,1.736531e-19,-3.2117335e-21,1.4388618e-19,4.2578556e-23,1.1077411e-20,3.5026236e-21,7.538329e-20,4.8732235e-21,1.1285313e-20,-3.5949362e-21,-5.2083922e-20,2.9164039e-19,2.4754543e-20,2.9762502e-21,-1.1539583e-21,-1.6781581e-21,1.2746277e-17,-2.6715248e-21,1.3811844e-21,1.4308341e-21,6.392795e-21,-7.63668e-20,-4.0804165e-21,-5.786844e-21,1.7290488e-20,-1.8594516e-20,5.720793e-21,-2.6920866e-20,-2.6740017e-21,-1.6200153e-21,-1.2301051e-20,2.6120616e-22,3.2173843e-20,9.5376695e-21,-1.6314092e-20,3.764552e-21,3.232537e-21,2.931818e-21,-6.193907e-22,5.244249e-21,1.5128983e-20,-5.406436e-19,1.15517735e-20,1.5988697e-20,-2.532554e-23,-1.05723014e-19,1.7250941e-19,-4.2491508e-19,-4.2748137e-21,-2.28984e-21,1.3376503e-21,-1.4094052e-21,-5.471459e-21,-7.420393e-19,-5.3964252e-20,-1.2778419e-20,3.989076e-20,9.911658e-21,-3.948404e-21,1.290995e-19,-6.1966476e-22,3.1528167e-21,-5.2604705e-21,1.1940236e-20,-2.1844507e-20,1.6981349e-20,1.5040714e-20,-3.027811e-19,-7.578166e-21,-3.257922e-21,-4.4276745e-21,-3.328971e-21,1.131541e-20,-7.9617976e-21,-4.3687167e-22,1.1907206e-20,7.872583e-21,2.5325019e-21,-3.606479e-21,-3.1348472e-18,-2.7690275e-21,4.5437734e-21,3.3021506e-20,-1.5966453e-21,-2.7807667e-20,-3.7750894e-22,-9.666833e-23,8.374434e-21,-9.474658e-21,8.135946e-22,-5.706897e-21,-1.321144e-20,-2.3720024e-20,-2.8340017e-19,-1.3478548e-20,1.5414365e-21,3.062975e-19,-5.113395e-21,9.370615e-21,-5.4306334e-21,-2.489843e-21,-1.3453632e-21,-4.3820652e-21,3.3139604e-21,-5.968597e-21,2.5703849e-20,-1.9690653e-21,-3.6000734e-21,2.0464547e-21,-2.6155144e-20,4.258825e-20,6.806393e-21,-1.4141942e-22,-1.3090771e-21,2.3944508e-21,-5.0512103e-21,-4.957169e-16,-8.578353e-21,-1.2524746e-19,7.09699e-21,-4.1231327e-21,-2.7557193e-21,3.2957844e-21,5.4030626e-21,7.256205e-21,-2.4283918e-20,2.0823233e-20,-1.7736536e-21,-9.056688e-21,7.962155e-21,1.3920062e-20,-2.03703e-21,1.1085011e-21,2.5589638e-21,-7.6289115e-21,2.3357188e-18,4.571992e-21,-7.188903e-21,6.777744e-21,-1.2307001e-21,-3.8317975e-21,-3.7111208e-21,-1.6498822e-20,4.022441e-20,2.5498106e-19,-1.6884563e-20,2.1940685e-21,4.4201495e-21,-6.3149133e-21,6.2804427e-21,1.8605271e-20,-1.4499569e-21,-4.1924296e-21,4.6605397e-22,5.6863574e-21,-4.0843734e-18,-2.7969485e-21,3.0278866e-21,-1.2594148e-20,1.1052741e-19,4.671489e-21,-3.9247178e-22,1.8771121e-21,-3.2204925e-19,-6.7476276e-20,-1.940743e-20,2.3738646e-20,-4.1108813e-21,-3.648482e-20,-5.5838337e-22,-7.980432e-21,-3.9916097e-21,9.942631e-21,-2.4725792e-20,1.969725e-21,-5.019671e-22,1.2090832e-20,4.709433e-21,2.067937e-20,-4.2445098e-19,1.2591071e-20,1.9686688e-19,1.2198713e-20,2.3312995e-21,9.898042e-21,-5.3925718e-21,1.1723184e-21,-4.293552e-20,2.374968e-21,4.3261588e-20,1.7418101e-21,8.242251e-21,1.3479342e-20,-8.9552795e-21,-4.3387885e-21,-1.397705e-20,-1.1209723e-20,-9.875734e-21,-4.319084e-21,2.0452446e-20,-2.2099043e-20,-3.041607e-22,-1.3665893e-22,-1.7953268e-19,3.7520165e-21,1.8034823e-21,1.8857125e-21,-3.7580493e-19,7.607424e-20,-1.7612984e-21,1.4462317e-18,-1.3318515e-20,9.231304e-21,3.077559e-21,-3.6292945e-21,-2.9101397e-21,-6.528703e-22,4.4880126e-21,4.3983035e-21,-7.4200815e-21,-3.7949053e-18,-4.4967715e-21,-3.5606814e-19,-1.7564486e-19,-5.18876e-21,6.9500394e-23,-1.3005641e-20,8.0491645e-21,-4.99744e-20,-2.7264499e-19,-1.6185697e-21,-4.409041e-21,9.616697e-21,5.4394153e-21,1.0506834e-20,1.6378115e-21,-6.2621038e-21,-1.643594e-20,5.1557804e-21,-5.2231326e-21,-2.0541184e-20,8.842205e-22,1.3350713e-18,6.22332e-21,3.4383937e-20,3.065095e-21,5.5001735e-21,-1.3893314e-21,-2.778366e-20,-3.25045e-21,1.4844455e-21,4.18339e-22,2.1743351e-21,-6.478037e-19,1.1056811e-18,-3.765834e-21,8.358141e-18,4.256266e-21,8.1484884e-20,-1.238908e-20,2.117773e-19,-6.6864373e-21,-1.2536041e-19,1.0108592e-20,6.4458748e-21,1.0333117e-20,-2.129925e-20,9.196215e-21,-6.3583403e-21,4.0639146e-19,1.2968041e-20,-2.5623472e-22,-8.818763e-21,-1.7731478e-20,1.3418414e-20,-7.7315764e-21,-1.9459012e-19,-3.9237607e-21,4.6417457e-20,2.944333e-18,-7.83955e-21,1.6120493e-21,2.8179557e-19,-5.754162e-21,1.517302e-20,-1.25386e-21,-2.799621e-18,2.2776189e-20,6.8150163e-20,-7.682027e-21,4.148126e-21,-9.983181e-21,5.723627e-21,-5.9504546e-21,1.09515256e-20,5.4526696e-21,-7.981663e-19,2.3374095e-20,-2.1063664e-21,-3.3206193e-20,-3.6756756e-21,6.410483e-20,1.4139043e-21,-4.577162e-19,-2.121552e-20,-5.4832648e-21,3.552552e-21,2.9884103e-20,5.5988483e-21,-4.3489664e-20,2.459063e-21,-6.2738685e-21,-3.572274e-21],"qre":[0.8553108,1.9380167,3.9527912,1.7819765,0.1461437,0.67940146,0.8651166,1.1274947,0.41533485,1.1748196,0.9808436,1.501702,1.27603,0.52824986,0.7697932,1.1714886,0.36242166,1.8134344,2.7039452,0.14658299,0.119277395,0.49695554,0.14082618,0.17105782,1.0046202,157.2362,0.9447945,19.713408,0.824267,1.0112208,1.3063586,1.3653965,2.4954922,0.5034499,0.18397702,1.5018156,2.7199247,0.62759775,1.267839,0.8071481,0.375424,1.4866089,0.43178812,0.9319723,1.5708665,5.4957266,0.21038511,0.07441466,0.7177745,1.6424546,1.0235499,0.4065266,1.15361,2.1909523,0.52229816,1.5580759,0.911707,1.5800644,0.94581205,3.4829218,0.9716562,0.22480117,2.2592595,1.2913263,1.3817322,1.3059033,0.14867418,59.24389,0.044437952,2.5765288,0.5037205,0.27393597,0.59615064,0.36687988,2.8878644,2.4923983,2.7391648,0.28076866,0.69517285,1.3203925,0.4605268,0.6064098,1.3059307,1.2298583,32.79312,0.72392666,0.029493175,0.7983711,1.4269823,1.3659976,1.5269054,6.6067977,1.7387285,0.3304035,15.476793,7.4566607,0.1086656,1.0595222,1.9692081,1.030443,0.4711979,10.3359375,0.89409125,1.3378488,1.3813641,0.51109517,0.050053623,0.62514645,0.534437,1.3756698,0.46913287,1.0951836,0.5169371,0.25404426,1.0579267,0.13817926,1.7442126,0.5898678,0.7465756,0.3227269,12.564737,0.16120827,1.7505887,3.3613467,1.0014004,0.53326416,0.0058143316,1.7627892,0.5414056,0.44534078,0.66870904,0.61602783,0.753741,1.1877124,0.1676235,1.2365916,0.30616468,0.97130895,2.8408027,0.24894325,0.43100917,3.6007667,7.0416718,1.1118267,0.7479211,1.4641567,1.2716922,0.2701563,0.55324906,1.6641945,8.89722,0.9008252,1.2884324,1.9813082,0.20199762,0.88115925,0.6166553,0.5655983,0.026572207,0.91394645,2.7039685,0.4091638,0.09866684,0.50378275,1.0006007,0.52174854,0.055471204,0.7964965,2.1339228,0.57334894,1.5205841,1.4842054,0.7115867,2.5792758,2.540521,0.6250066,0.773766,0.022804309,0.45489925,0.22298886,4.178335,6.9791527,1.7920232,0.9159565,0.8329089,0.9156884,1.0568002,11.6879015,0.25072795,4.7880383,0.608451,1.076203,0.578414,6.6053023,0.023474034,2.0620058,1.459288,5.205559,9.624661,1.3144768,1.1414449,0.6084534,1.0407941,44.472946,0.07457012,4.213667,0.8240079,0.49107155,3.014455,0.21946912,0.22384878,1.1828151,1.6123822,3.4148078,2.5729518,0.3825135,0.24335778,1.3003943,0.8517688,0.38479897,0.54192936,1.8227926,0.15973781,0.42137498,0.5493074,0.34816107,0.24477342,1.5903885,9.823352,2.7087865,2.266082,0.08494344,3.7294583,6.6654835,8.452948,0.2011876,0.6171403,0.01517048,0.11441573,0.39501956,14.951288,4.3950396,0.42423505,2.6914215,0.6797482,0.50251323,0.32224703,0.72090757,0.15900832,0.9986664,0.21318659,2.363362,1.6065913,1.0653939,14.442746,3.5229256,0.011592078,0.31741804,1.1541874,1.4255089,0.046281096,0.6411322,0.30130738,1.218722,1.4058663,0.23768154,27.75249,0.96261835,0.997075,2.736821,0.96929413,2.0124784,1.6520104,0.91684955,1.1453427,0.80579185,0.47524235,0.17308336,0.90037674,1.3560668,7.850457,1.399987,0.6210231,1.3088042,0.28040898,1.5506514,2.4003685,0.5117003,0.40489313,0.4608446,0.118611485,1.1425201,1.0579405,0.026669523,1.4196117,0.12062345,3.5334713,2.0090914,0.7721524,0.54129755,1.0355278,0.14372455,0.6225489,133.09282,1.9786395,3.4032009,0.45192966,0.49637368,0.13821244,1.1133455,0.5143029,0.09205846,3.973773,2.2225676,0.46342847,1.6999483,0.6170875,0.8420189,0.93636394,0.81122196,0.020452794,0.52158046,38.419594,0.80082405,2.0290084,0.5726967,0.09697562,1.1324466,1.1747991,1.5409142,2.5076811,7.3163624,1.5959715,0.13880384,0.87706214,1.0134118,0.5679917,2.1758916,0.7267572,0.2539426,0.7890337,1.6388185,18.684935,0.28538412,1.1561716,0.34127015,4.796957,1.0576682,0.3835558,0.49974912,23.032389,2.980902,1.0902071,2.2837727,0.014032084,4.451971,0.2435289,0.92524105,1.2338301,0.42574352,1.9810456,2.7666156,0.7299654,0.62867856,1.4549141,1.015649,12.894845,1.9401861,4.272153,1.2163064,1.5004048,1.152303,0.6331266,3.099686,2.3341584,0.47437906,1.9992255,1.1072657,0.6872396,7.482035,1.0161908,1.4414923,0.4182159,1.3611232,1.25699,1.1198479,0.91459346,1.7978348,1.6433398,0.48154387,4.640526,0.77444416,0.6720495,1.1445633,2.881467,3.519615,0.38235465,16.19287,1.142901,0.88122195,1.7793925,0.0070107835,0.66972065,1.3416787,0.8933565,0.73832345,0.5748171,36.557896,1.4889853,9.604405,5.560205,0.41103098,0.6536711,4.076921,1.8122671,3.1140976,7.690844,1.0765179,2.3887963,1.2663448,0.13238639,1.238407,0.8107699,0.12038549,1.9952168,0.25426918,2.3130302,0.50935197,0.4660904,16.174217,0.7353956,2.4478238,1.0958629,0.2343575,1.1110551,2.3795187,0.9783915,1.2042282,0.6608604,0.0552246,4.7972407,13.952481,0.3173711,16.549503,1.5199885,10.682973,0.5447789,4.8673053,0.7550481,3.219091,0.3778801,0.6892983,0.51151776,2.5349805,0.90265954,0.20946203,9.795578,1.2361839,0.40343055,1.1109977,1.5358578,1.5110568,0.86097485,5.263503,0.26928562,0.9943725,27.697842,0.8327115,0.1154465,7.9719796,1.1259983,0.60037625,0.30511048,22.511406,0.35901132,3.3551342,0.6359229,0.28958905,1.4459057,1.6582175,0.8743773,3.6865928,0.28898484,16.731955,2.4546876,0.8616044,1.0435834,0.14477837,1.8702792,0.7992226,9.128067,3.2529912,1.0585356,1.5860798,1.5689253,0.18343228,4.9255233,0.6758918,2.6229193,0.635153],"re2":[8.874888141784395e9,2.8007077680993996e9,1.9081766321560822e9,4.0045261355871385e8,3.598451828879169e9,1.9448969086868074e9,8.581450029144015e9,3.6281622848160357e9,7.262662399496473e9,6.246903958647903e9,5.084633528702178e9,6.170757419642891e9,4.134060526150012e9,6.953381911353462e9,6.259760550764306e9,7.540227463873372e9,8.563311375708578e9,2.2111652530999603e9,8.886357583786397e8,9.071317137149717e9,7.242477891931979e9,5.632268981219308e9,7.99992618752992e9,6.6818350489531765e9,7.180504044816623e9,3.095911850126809e7,3.453707928429516e9,2.6281887966806862e8,2.2315724465048037e9,3.1607941444937816e9,3.33373209096836e9,6.17375667743219e9,4.0060210561322994e9,5.807781702237995e9,7.682169289640034e9,2.0616359208279479e9,2.2351846095648685e9,6.79432260337326e9,6.673261765866735e9,7.312049009707544e9,8.6717288879293e9,6.5523361778053465e9,7.436719568061025e9,9.820405799132385e9,6.198517822325498e9,1.5529032122527685e9,8.809363245671728e9,8.860887493959576e9,7.643692646549209e9,4.753551734491489e9,6.028229555797387e9,8.426849203272632e9,7.560388735831154e9,4.441888281378507e9,7.031375840096566e9,5.346336914511418e9,1.8487257233534815e9,2.554181234490677e9,3.670528390035398e9,9.478711437602183e8,7.887056534668669e9,3.881236009602669e9,2.073035181018298e9,5.474024314712583e9,3.2947267486707463e9,7.481334489627327e9,7.424167460812885e9,1.5630293930049887e8,8.908144552709436e9,1.2579072659494693e9,3.4458706835409393e9,6.667888295319588e9,3.8118163911324596e9,9.251217725115063e9,1.585464151164263e9,3.5873787847614655e9,1.4776282055926228e9,7.791564109571929e9,9.067732729045568e9,5.700712406440079e9,7.068986796167923e9,7.493133842712216e9,6.683061535030041e9,4.764395303196165e9,2.9647364592395145e8,8.542213140828171e9,6.4019130476845665e9,9.529028255701591e9,6.973315367037155e9,2.5056341836105056e9,6.3774765569001875e9,6.511066814708467e8,4.201845480655725e9,8.309853779927107e9,2.1951857979797596e8,6.919970385119711e8,4.54763368508101e9,6.936416036570816e9,4.730224363677055e9,9.01360538705819e9,8.895532125042768e9,7.468259692843759e8,9.847368340885567e9,5.753130063076703e9,5.507512745804355e9,9.319908590706068e9,9.92167340166398e9,8.419681675605093e9,7.345409146632284e9,5.632394704025389e9,4.734581673327228e9,1.7438143310365183e9,9.717906634162676e9,7.973837079085496e9,7.513910265036389e9,3.913335304257909e9,1.8908146060526643e9,8.861398578676361e9,4.471658364721777e9,8.861757963153942e9,7.164369308778872e8,6.254846286127369e9,5.051067024079492e9,2.780358037817504e9,9.698823875027893e9,8.58417068583162e9,9.414378995255487e9,3.9326075723655753e9,6.745236901714518e9,7.526930315088446e9,4.431421913993724e9,5.3054773341626835e9,5.879954944501197e9,7.460302721405274e9,9.197047124709768e9,6.052655378056982e9,6.847915909268446e9,8.17883230657316e9,2.0501404269728806e9,6.290841855369124e9,8.230903955275421e9,2.492295624266069e9,1.3318618551092753e9,5.841402938891299e9,5.433487779482556e9,6.39309033516101e9,7.605404600730872e9,9.272902941624907e9,5.727323932516192e9,3.5370966218816056e9,3.742113816348014e8,9.604408907806595e9,5.069924353221209e9,7.621252483553454e8,6.631068793070011e9,3.744315044331659e9,9.317523938534101e9,4.746242146764617e9,9.587457752428793e9,7.832457183265916e9,2.393944727684455e9,5.772273147834494e9,8.751821520285711e9,4.69152564614717e9,2.757002392927864e9,4.726847242869421e9,4.0868745014546046e9,9.548104362334528e9,2.2946209363983994e9,5.885039828738849e9,4.958844538782399e9,3.215853431469058e9,7.174461488160628e9,3.2045349526926246e9,3.566038840889484e9,2.312417979489333e9,5.855732036118981e9,7.326987801319717e9,7.575055887781877e9,6.57145771039122e9,1.8731781167487748e9,9.600867097214727e8,2.8897155829356637e9,7.6694035087458725e9,5.940894219219541e9,4.003851269446019e9,8.638953440315903e9,5.494685842192004e8,9.507036358574429e9,1.331978849312051e9,8.766050045360384e9,2.8814378243133755e9,8.723508239720434e9,8.849831308657541e8,8.601991154695185e9,2.6315853781202526e9,5.141932711672753e9,1.2808819295420215e9,9.351046966928567e8,4.2636477065356717e9,1.7621915607036932e9,5.598070227453762e9,9.141288895405443e9,9.220825669118415e7,5.2954873071920395e9,2.2345658105310307e9,7.628357174976388e9,6.524319722909185e9,5.993458545545827e8,9.232328596162458e9,8.388358954956049e9,5.025200590905186e9,5.721931247724871e9,2.6531520331814494e9,3.586483717443505e9,9.785590702457571e9,8.689424861214968e9,6.786487464332752e9,3.5737142817777333e9,1.1017910784937534e9,5.573769688388947e9,5.4004668171390915e9,6.868564618725884e9,9.456846988396631e9,7.3276064141754e9,8.585995875662959e9,6.2211718631032095e9,5.777743107070511e9,7.320854442659374e8,3.5554513201424985e9,3.661442435874529e9,7.669427864532611e9,1.6719303402414753e9,1.0071674264689234e9,6.121023799619374e8,8.829546923108313e9,8.33652813403087e9,9.75435700780806e9,5.445355044058564e9,3.9738879618996882e9,6.306779579214605e8,2.1873622319230547e9,3.806408186844776e9,2.5642198998528886e9,5.120186514276503e9,4.573231369477315e9,2.0731671202920854e8,9.091443319263525e9,7.852068003940641e9,8.982185092390194e9,3.2766771059061327e9,4.1489505594004517e9,5.39061085635387e9,5.786502628383892e9,5.306451781601473e8,1.8273236395165782e9,4.1595405897299953e9,7.184695430440437e9,2.4241538417898054e9,6.317601667964837e9,2.8418688217322664e9,9.44132751753139e9,4.899036911144578e9,6.150725250088446e9,6.9480236269544325e9,8.27594673458967e9,3.3608239727007437e8,4.311572077199257e9,9.754941883956203e9,1.6841512468477714e9,9.62309739459782e9,1.4916298724062438e9,5.159099829750836e9,7.462959908869319e9,6.343587500454042e9,4.559154658648486e9,9.272685025955444e9,6.9434774513140545e9,6.482890345688431e9,3.956312080153207e9,6.468179560998222e8,2.149340881802719e9,8.061240292882977e9,2.8412885649682915e8,8.861061397225578e9,5.012197688282246e9,3.3642428013202353e9,9.772122283156622e9,6.775489060100804e9,6.921934077557127e9,9.430923961146168e9,6.917038604947668e9,2.6838525750492682e9,9.705454607518032e9,6.057045416830744e9,9.669568113788433e9,1.6319101891141307e9,1.0426161777175313e9,7.358959516188481e9,9.581182388656805e9,2.8357247116831164e9,5.087031652059731e9,8.083889087335834e9,1.2409747529191773e7,3.8351083744575644e9,1.3252180189891706e9,8.792997246278294e9,3.341044685861606e9,9.50919656345346e9,6.980355393655179e9,5.78258070265134e9,6.0494572288847685e9,1.537505267817183e9,3.4462997194953737e9,7.871547606742594e9,3.788676412638172e9,7.378700958890668e9,3.250636355091583e9,6.659458505821714e9,2.2697926417724843e9,6.600821364289237e9,9.01765970397681e9,2.3533679346733117e8,7.548371579220844e9,3.573478379577597e9,6.687353647071785e9,4.668865673255652e9,2.33724433750523e9,5.502005078666652e9,8.152973916759776e8,1.865408450299052e9,1.1949045462437634e9,5.736320890632193e9,9.087923553977303e9,6.829375170886121e9,8.207885027973082e9,7.915753467432888e9,4.2603499114577727e9,9.473941485810501e9,7.888748502283171e9,9.643631163095093e9,4.451375122674919e9,2.12718878903847e8,7.667849664919871e9,7.381576448883317e9,2.982178970148991e9,1.5969144010481062e9,8.821764198579615e9,8.320863906483493e9,9.421068889637877e9,3.8355875488314205e8,1.0179878885552084e9,3.3503003502171702e9,2.100816141154296e9,7.655742125651872e9,1.370009443893987e9,7.303016806405599e9,5.11172909224058e9,5.896230134117352e9,3.2263616812846007e9,3.815306098625454e9,3.5561453502160378e9,8.997927152899841e9,3.285668157766699e9,5.165706659948307e9,2.0607390820794392e9,4.6981825641470355e8,2.994551198092752e9,1.0842405317377768e9,7.90240687718115e9,5.629318663156441e9,7.224824808606799e9,7.691794146636446e9,2.46021481989089e9,2.2478117784629927e9,5.845057575174444e9,3.1557915106293597e9,8.176372629375648e9,3.899328465546893e9,7.941034024985383e8,5.969545595131888e9,2.798321090191983e9,4.2641573112771325e9,4.685561128019549e9,6.817185528854035e9,6.684863469698041e9,2.8362845842599506e9,3.0737561732470574e9,4.547596261448477e9,9.166386072041273e9,5.405897461535436e8,9.397347577575413e9,9.02299857944299e9,8.048948298982692e9,1.6443531816671354e8,2.4345972917622747e9,5.022922730493385e9,5.392967828315909e8,5.095697126183674e9,4.488839587312963e9,5.471535180901881e9,1.0784907391416998e9,8.223491605917142e9,7.077003267070212e9,7.490243941875857e9,8.309733809486012e9,2.6350496756397314e9,1.0603200488523145e8,6.460179835208502e9,7.315762786640944e8,1.761897129059885e9,6.461607116220486e9,8.185800058429493e9,2.2330883821761403e9,1.3784552435779052e9,2.5307802733310003e9,1.2747272472158399e9,7.321105435323404e9,3.242480949323305e9,2.0704953393583913e9,5.583327388831456e9,7.952677819754223e9,9.870114310615908e9,2.7914889443929815e9,4.437495268527105e9,3.177070255657317e9,1.7685347996330647e9,2.8435592414942e9,8.70937069847997e9,3.284159781779761e8,6.092990633504743e9,2.1803007637052584e9,2.6625186146291347e9,7.84086693847154e9,4.371626621501078e9,4.037562716327984e9,2.5401560543449373e9,5.682019010275098e9,6.800844656371917e9,6.767494105382261e9,1.76019551232659e8,3.213545560347708e8,7.318227748596122e9,9.707296119205067e7,4.82643431170301e9,6.607539872745094e8,2.2761858762584476e9,9.537244165092385e8,9.066358367210514e9,1.1210563365278425e9,3.4548842082194786e9,8.314657073188497e9,5.498760770089533e9,2.7061265977527184e9,5.621023066584424e9,4.648453289235336e9,6.66006835074271e8,4.0186241790593514e9,9.833431145049557e9,4.490649724303527e9,3.4530620030159864e9,6.509161471698107e9,5.750793226388443e9,1.1912459706744273e9,5.193777381982144e9,9.344595347141061e8,2.7872988622570705e8,9.067273373475576e9,7.930236504881258e9,4.195819606229112e8,6.676007296488398e9,4.0085217147803874e9,6.663689611822591e9,2.3348458763474244e8,1.6578369304045649e9,2.0680215238398924e9,5.146034389019988e9,7.7944778771523285e9,6.850317169489841e9,4.717026187015645e9,8.436830098915349e9,1.9570496634521651e9,7.617850868277425e9,4.0020569059202814e8,2.8115321801604977e9,9.468760591740242e9,8.734399189784814e8,4.364439633066471e9,1.5640190375609043e9,8.742394390829163e9,4.5431344357294345e8,1.8577692815967007e9,4.23785128224367e9,6.303930236101381e9,3.60721005721229e9,9.68130331493337e9,1.4501836094521503e9,9.02626300284889e9,2.34445550366879e9,7.579056568183502e9],"im2":[-4.4761049438083726e-11,-4.480039626053043e-11,-4.020609245704023e-11,4.192588262762908e-11,4.620019510240761e-11,-2.4192045714154454e-12,-2.957432073507915e-11,1.6239966071530172e-11,2.1047989255743653e-11,4.3272040230469506e-11,3.978561282059017e-11,-4.9929722360973706e-11,-1.8336560893978274e-11,-2.5533615573190063e-11,-3.919839366054332e-13,6.0041247475875245e-12,7.717817025368376e-12,2.2135048225970122e-11,-1.6541414935299326e-11,-4.8606858579821236e-11,4.292364559959646e-11,4.9460783266264414e-11,7.280733142517749e-12,1.3244174445653956e-11,2.3556206979274836e-11,2.8516765651369528e-11,-4.1968276847933177e-11,-5.876810635778228e-12,1.4224190812718819e-11,-3.032855809787578e-11,2.434517955369821e-12,2.1372635897398536e-11,-2.011791546483098e-11,9.426542859220472e-12,-3.769701591212122e-11,4.2527002455022725e-11,3.970294227070973e-11,-2.1955325194210463e-11,1.225757028913048e-11,-2.6436348536613932e-11,4.236656098683361e-11,-2.420869598595208e-11,-3.622695770911302e-11,-6.66773323828297e-12,-3.050662727407018e-11,1.640634127076658e-11,1.4886701903801573e-11,-1.5228646488169132e-11,3.198510844507426e-11,-2.5068969096063964e-11,1.038037012934832e-11,-1.9367434986821778e-11,-1.1289425074174376e-11,-1.4099907084040943e-11,-4.929978241315284e-11,-3.245120536577325e-11,5.1157592554019195e-12,-1.8992136050119115e-11,8.934929795422994e-12,-2.3632809614810094e-12,4.4865207164159804e-11,-4.3072763132144324e-11,3.664974233679519e-11,-1.474140742352915e-11,-3.499372569063977e-11,-2.055532208840545e-11,5.612779035997526e-12,4.230140173517115e-11,2.8384039692660458e-11,8.12022655762403e-12,-1.9955300877472227e-11,-2.3111642489613028e-11,-1.091651070451707e-11,-1.7184850014744017e-11,2.3134398935948725e-11,1.1634899986525442e-11,1.1862735125210498e-11,1.3187085379060846e-11,-3.628553346255933e-12,4.5805469022501913e-11,4.478062761641948e-11,1.690588649028125e-11,6.164895898883907e-12,-3.3694691748248365e-11,2.939534675577116e-11,-4.5270041666793704e-11,-2.5026489824696097e-11,4.074678516649965e-11,3.292443696908786e-11,3.1116578531746724e-11,-4.78879106663672e-11,-4.339988320935435e-11,-4.0176743982830624e-11,3.121648657493826e-11,-2.993678800456426e-11,-3.1474285875098275e-11,-4.9500550423556525e-11,-2.941543484216921e-11,1.088927334336131e-11,-4.70492500670627e-11,3.961010251380251e-11,5.6447767412610685e-12,-1.2745164560106393e-11,1.0392071250127884e-11,4.526651263539338e-12,1.780200201220106e-11,4.8842572174571545e-11,-4.334106955173201e-12,1.2198034367982827e-11,-4.835902288315011e-11,1.9039281398261245e-11,2.2575758568920752e-11,-3.2910422631205464e-12,4.774683460937445e-11,3.4900169341598604e-11,-1.746456498372729e-11,-3.327753389682319e-11,-1.2528263222396044e-11,2.7140880555429286e-11,5.157002432891822e-12,4.3182515455220365e-12,2.7198565210361393e-11,1.8260873505536107e-11,3.356723535006501e-11,2.6045142110921195e-11,-1.0665743108148261e-11,-3.383640066141287e-11,-2.4512507166380272e-11,-4.1391341710547646e-11,3.893513932458011e-11,-9.030237334578422e-13,-3.154372818167592e-11,-3.008764107756536e-11,2.251945165545887e-11,-3.2321877893243575e-11,6.802363727782731e-13,3.162655552201069e-11,2.4928762080023676e-11,-3.4956251944150396e-11,-1.2814906970126347e-11,-3.488948799779135e-11,-1.3779010091370726e-11,4.3009774218299614e-11,2.44532944857504e-11,-1.078808216938357e-11,2.396147284979037e-11,9.789703809847594e-12,-1.689415056506014e-11,2.333824646691291e-11,2.6272527985939347e-11,-2.577006866272199e-11,4.891807455539582e-11,-4.8265671205101734e-11,-2.92200133183002e-11,-2.8255099120265194e-11,1.117085058487513e-11,2.2103938363258924e-11,4.0659147514858685e-11,4.5461871557770935e-11,-3.9694906694764256e-11,2.651148016093921e-11,1.8221342674569003e-11,-2.641333943460303e-12,1.653904787675292e-11,-3.5560613656345097e-12,-8.470645420115315e-13,-1.5072821520339864e-11,3.220679813848135e-11,1.5364330109072318e-11,-2.0406691798539768e-11,1.7042193652199355e-11,2.8366803633981075e-13,-3.839060752733036e-11,-4.111348069667822e-12,2.4606097395633316e-11,-1.5660495412714324e-11,8.088480810080214e-12,-4.793198259487228e-11,3.1048062591126076e-11,1.2888561271697944e-11,-3.506939145975186e-11,4.4062785498580096e-11,-1.560836248554408e-11,4.844047572286512e-12,1.7831065175588484e-11,-4.9406722323653054e-11,-4.987964879214023e-11,-9.738445230683435e-12,3.210538447666143e-11,-3.3751936324311416e-11,6.463480282171575e-12,-1.95138377901788e-11,1.786809906898941e-11,-1.7578243722035112e-11,-3.043308621864978e-11,-2.0321270089156076e-11,-1.8664258091695852e-11,2.238017757750796e-11,-2.5515939157044554e-11,-4.6251989787618244e-11,-5.623054138451185e-13,-1.0781946384484075e-11,-1.7099481126770135e-11,-2.6403787170647476e-11,-2.05680997241157e-11,-3.7681953904726006e-13,-4.920697530654352e-11,-1.6811681020291315e-11,2.2900347630296647e-11,-4.2614505299345754e-11,3.114378811646463e-11,-3.326514875710069e-11,4.738984665131143e-11,-1.104145855521567e-11,3.3752770983170606e-11,-2.4726262864573935e-11,1.6845814728344943e-11,4.517264123253409e-11,-3.161617782007853e-11,-8.94821117428428e-12,-5.91454445568591e-12,2.873909681797055e-11,-4.7936550940571045e-11,2.915996719721957e-11,1.7175146435701318e-11,-1.7584089171877527e-11,-3.0875296703614757e-11,-4.86557700751103e-11,3.710597333288867e-11,-2.5916750970001724e-11,-2.2315725591269087e-11,2.8482008304700836e-11,4.3759860691894114e-11,-2.3442543944328367e-11,3.3250934711374064e-11,4.639998449788875e-11,-3.5474086199008735e-12,-3.144532510091045e-11,9.075048412179912e-12,4.043260488396017e-11,3.2190367425734635e-11,1.6486257998072e-11,3.313681622634865e-11,-3.79898023722305e-11,-2.954878280542609e-11,-2.459779040039004e-11,-4.2518660069996696e-11,-4.9208051150718825e-11,-4.530598437609017e-11,1.1060888639595411e-11,2.2067066270783494e-11,3.1628289221932487e-11,-4.813865834230825e-11,-4.291614268060893e-11,8.004840717494467e-12,8.621713656547791e-12,7.717041907308362e-13,9.14651139522347e-13,-1.9402915955827607e-11,-4.8592559267419215e-11,1.0497226666737078e-11,-2.6669352783060674e-11,-4.78886916608172e-11,-4.8097295960403074e-11,-4.304514006296945e-11,4.5401758279393015e-11,3.7769797570293794e-11,2.659325444228115e-11,-6.9332796935084985e-12,-1.8762765930705958e-11,2.0243135606861728e-11,4.95550250360378e-12,3.124003917918173e-11,-4.877182952125565e-11,-1.4251578033011204e-11,3.901502074455792e-11,4.4278550654925973e-11,-1.6297005823664902e-11,4.579331898454539e-11,3.8144415857348484e-11,2.9418119362444734e-11,4.19346478371828e-11,2.7219855667785595e-12,-4.701052567855977e-11,7.291531171087007e-12,-4.796744787375049e-11,1.2336408651150872e-11,-1.2596110498699317e-11,-8.22612285742579e-12,1.4771310987164863e-12,-1.6003401056850775e-11,2.346470736660861e-11,-3.8535350342861357e-11,-2.8476065043387124e-11,1.3965878964445661e-11,4.25418673505557e-11,8.275823622873117e-12,-2.0765132499762006e-11,-3.424007643417968e-11,1.3798247749303616e-11,-3.953759003400108e-11,1.55373453941882e-11,2.1665431677956675e-11,4.654897282119324e-11,-3.914128203236003e-12,4.331597003606786e-11,-3.4432246421514323e-11,1.6928433599990856e-11,-3.879137248483226e-11,5.960547961252641e-12,3.52905278954817e-11,1.1862338891827308e-11,5.805312608446825e-12,-1.1739434159869067e-11,-1.8733736717996333e-11,3.1420058776360776e-11,-4.9881741235042786e-11,-2.593796654460524e-11,2.2323310625770907e-11,-3.691477727051353e-11,5.4605133245947764e-12,4.5763868436533837e-11,-1.3211896744604259e-11,-2.598968344803645e-11,2.964340416788354e-11,-3.1850932487518126e-11,-1.8113985060421966e-11,3.275171965490487e-11,-3.4094816076563085e-12,2.5103111760183075e-11,-2.5622556177490474e-11,-4.084159806590557e-11,3.204221444330725e-11,-9.998059457269393e-12,-1.9320840706497137e-11,4.104865367869501e-11,-2.8756926335916724e-11,-2.6553760033619012e-11,-4.381735214478876e-11,2.81364155132751e-11,2.79943569449656e-11,-4.1666930371617425e-11,4.6761739562071654e-11,1.113770719976136e-11,2.244939781385667e-11,9.392253701204509e-12,-2.7628808925388073e-11,-3.678422845676037e-11,1.937203142562995e-11,1.4535556828784525e-11,3.691421646536673e-12,3.002548164237377e-11,3.5562511446569215e-11,-1.590081881183594e-11,9.743590395519248e-12,1.8079593566304354e-11,3.7302278749728674e-11,4.6131463246713963e-11,4.1696087042043095e-11,-4.265330854178984e-11,4.6373570018785016e-11,4.4927085625780213e-13,-1.0752654729657294e-11,6.387606809547233e-12,1.5471946704481492e-11,-4.035013805278043e-11,1.754553389086543e-11,2.00509553149888e-12,-4.095166755333131e-11,-4.317183346341394e-11,-8.735229693432001e-12,-3.931634407807728e-11,4.076195018307007e-12,-1.5261915178626882e-11,3.5071882183631016e-11,-4.2816115463121197e-11,-4.5388541170376364e-11,-4.19365087459193e-11,-2.8203155438585306e-11,-5.610638644622446e-12,4.86476986098987e-11,2.651765712503929e-11,4.63213436058835e-11,3.6146759037367647e-12,1.595273807547898e-11,-1.163831050114332e-11,-1.1742229315196853e-11,1.589059675544557e-11,-1.428610605044648e-11,1.1459116031544628e-11,2.842290242015695e-11,-3.7655221359194524e-12,-8.578117564201559e-12,2.0926305353148166e-11,5.38758851975034e-12,-3.947779887811976e-11,-4.6850471643415084e-11,-4.5353337090884264e-11,4.710981201840678e-11,9.037383031153448e-12,1.4088271190400637e-11,1.4610924260918872e-11,3.6141209043183536e-11,1.3636778340959375e-11,-7.703182222491692e-12,-3.4161688703982445e-11,3.577246080695849e-11,1.0346214714533645e-11,1.4440387046641278e-12,2.889738510862567e-11,4.9722302161931114e-11,3.956206947741623e-11,-4.974243464472761e-11,1.697903169859421e-11,-3.2530918959876244e-11,2.5947962985606384e-11,4.6532141713398715e-11,1.338108193776498e-11,-1.850199863215919e-12,1.9895866703941418e-11,2.0902876456796922e-11,-4.197345451613711e-11,7.753142395190013e-12,-3.7148141445349934e-11,4.0531827013336215e-11,-2.35452452516011e-11,-5.2559731252615806e-12,4.9915779677203966e-11,-2.581942057541743e-11,-2.8015569032884735e-11,8.42628730486427e-12,-1.7134105115511353e-11,1.9922632749052164e-12,-4.610822539010573e-11,1.4463039312194498e-11,2.687712873828057e-11,-2.967532289913455e-11,-2.520436124913301e-11,-1.0183273311894447e-11,-2.0440637512676064e-11,2.8945781012437173e-11,-2.6201407765560935e-11,4.746362911368495e-11,-4.9610732508967404e-11,-1.8659588659939386e-11,-8.343807444163432e-12,-3.8233966250128595e-11,-4.524303104595821e-11,4.185802818243208e-11,4.20247534377003e-11,-1.2365044506081959e-11,-2.6326825280782918e-11,-2.0839877033543863e-11,1.660694913467085e-11,-2.656135967937653e-11,2.619680171032032e-11,-2.7635317564572005e-11,-1.9854498249249752e-11,-1.2406371792030126e-11,1.6095919962391308e-11,8.637937389258653e-12,-3.663630113660775e-11,4.6229474674154944e-11,3.6865446063889594e-11,3.764995392203496e-12,-7.058534900572257e-12,-2.9050644146201055e-11,3.2919233125648746e-11,-2.8060037170513554e-11,-1.1032754270275559e-11,4.290333654398164e-11,-2.2875538950529872e-11,-6.131785235374488e-12,2.7622337700248477e-11,-3.071497243175994e-11,-4.645908255812476e-11,-1.4677129975580283e-11,3.3090465619970786e-12,2.5698895672813583e-11,-3.980126399190598e-11,1.4023596037223562e-11,-3.2710257099610184e-12,-3.925398168393693e-12,1.798750844343688e-11,-3.6647897172171355e-11,2.989534323803602e-12,4.120141287552239e-12,-1.723349991511862e-11,-4.1397121194886867e-11,8.04972869342411e-12,2.7613273540200016e-11,-2.435363380592778e-13,2.5881224227295216e-11,6.779443478345549e-12,-3.768222773831851e-11,-2.6027807306677322e-11,1.641326218175858e-11,-2.5956019261027207e-11,-1.1205598458689057e-11,-3.2995978676260444e-11]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json
new file mode 100644
index 000000000000..f8941a395093
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json
@@ -0,0 +1 @@
+{"re1":[7.171547397856369e-12,4.61827206480474e-11,-2.1906164943410902e-11,2.576476489489621e-12,-2.3957114791253256e-11,2.3340741584781068e-11,4.547985925323357e-11,-4.680153293027573e-11,7.382263976205794e-12,4.363624292878897e-11,-3.109420237575683e-11,3.8219547601416975e-11,-4.604901434253008e-11,5.796348813179011e-12,1.2587148696450307e-11,-2.0876405714844227e-11,3.319965241622953e-11,-3.6065962749552284e-11,-2.356282839454723e-11,1.49470797984733e-11,3.7771103282935105e-11,-1.1213056878540204e-11,-3.9255242358805173e-11,-1.8085805469386244e-11,3.77405037034192e-11,4.7483002842760205e-11,-1.9170604826534975e-11,-1.408132092539294e-11,-3.742241334366915e-11,3.182196923789244e-11,-3.9335305555705197e-11,-3.8054953362715154e-11,-2.5336809220887906e-12,2.426712476155417e-11,1.8060424468660624e-11,2.601560105878965e-11,1.7842720771821408e-11,-4.731311315785696e-11,-2.897085939572066e-11,4.7827681079733293e-11,4.5551497844423514e-11,2.1211772927811876e-12,3.405124909593501e-11,3.5722588955339565e-11,-4.573774783160811e-12,4.539517025013695e-11,-2.381293395625438e-11,-3.236354671016709e-11,2.6977504338823047e-11,-1.2146115271965267e-12,4.261654324730785e-11,3.42712213650485e-11,-4.5014289796932274e-11,2.0680564737441438e-11,1.0942212943459815e-11,-3.5730019360871456e-11,2.9628532430091116e-11,4.0107115001134097e-11,4.703843649579033e-11,-4.968619581507928e-11,-3.357921879871548e-11,-3.8323994845294054e-11,1.1524027107689469e-11,-1.4972931816291116e-11,-4.190675789842049e-11,-4.556866056534617e-12,-4.549560969540223e-12,5.9039134265995734e-12,-3.6028292448191045e-11,1.3769523083861616e-11,-3.811750677905387e-11,9.385188591963146e-12,2.468542657963912e-11,1.4658973838443303e-11,1.1073928720364886e-11,-3.797072948629716e-11,-1.3565260197742258e-11,-4.071275458932176e-11,2.3657284844308474e-11,-7.255206311009087e-12,4.1113775229462386e-12,-4.704157256615307e-13,-4.545554527924315e-11,-2.610628582974253e-11,-4.769628602003398e-12,-3.3818059813122416e-11,3.030658078116072e-11,-1.775192053385696e-11,-4.260099740214881e-11,-2.845645005893467e-11,-4.0001892782456854e-11,6.282718302841196e-12,-2.4565577623033185e-11,3.8794463626145745e-11,-2.3919993589952792e-11,1.6283604499783664e-11,6.594875036552248e-12,1.6090562636186355e-11,3.118937968685618e-11,-1.921832754051895e-11,1.7010952364322306e-11,-3.593123566496966e-11,3.751289164009863e-11,-3.085962080686615e-11,-1.610156551366444e-11,-1.897499132513919e-11,2.4066318018401526e-11,4.2508099989369526e-11,4.977824085692174e-11,-5.387753300629658e-12,-6.149031628444476e-13,2.9709686943609004e-12,8.484278497196824e-12,-1.55610457307363e-11,2.5054172141254697e-12,5.654254219359808e-12,-1.6889755785069384e-11,2.5933794478536393e-12,-3.177462528617351e-11,-2.273292829265584e-11,-2.001030070670475e-11,-1.3620787834035306e-11,-2.5790724750091276e-11,-2.9910455751448383e-11,-2.8880699856515227e-11,3.7967821596959816e-11,-4.457886335153467e-11,2.7000374233977213e-11,-8.767765044512555e-12,1.7203588227877544e-11,2.472761675665941e-11,-4.7099262025688564e-11,3.8259440840692154e-11,1.4983932965784933e-11,1.885599860529878e-11,-1.1483605624963855e-11,8.84623624728888e-12,1.6063672767370072e-12,1.624296947545373e-11,4.017299267052719e-11,-4.898010276080396e-11,-3.8598939372712516e-11,-3.7208198177350684e-11,-2.76356464755278e-11,-4.450882330768672e-11,-2.4085997840924645e-11,4.289047782601116e-11,-3.4165607936605596e-11,-2.3586374516717214e-11,-2.5901689907532726e-13,1.6319453625798422e-11,1.3151120970599521e-11,4.4803371734663677e-11,-1.0585256673723384e-11,1.51934288975979e-11,4.944572284140768e-11,-4.506556150934613e-11,3.323426305833984e-11,-2.3491373555190575e-11,4.726525607374282e-11,-2.70846806418659e-11,-1.2856646412709802e-11,-4.451887218925145e-11,-3.440216690883853e-11,-4.2459078171462016e-11,1.4595278515010082e-11,1.0648849381533566e-12,-3.7458266570862014e-11,2.1245519390231762e-11,1.7305203148455177e-11,1.741788604095444e-11,2.5740853456634828e-11,-1.6592418632413742e-11,-3.215825604786764e-11,2.1748962177313678e-11,-3.923416605831616e-11,-7.778484743284997e-12,-6.994839445221423e-12,2.765250026801468e-11,3.1736218120039326e-12,-4.478590356117923e-11,-2.9888937236388535e-11,3.845456669398423e-11,9.154734355147826e-12,1.4173241635417035e-11,4.460813663276378e-12,1.143084255312303e-11,2.1112415959945967e-13,3.4276719489811254e-11,-6.819911377153649e-13,3.802210936698905e-11,-1.6990885659196765e-11,2.336093183341394e-11,5.592585390466818e-12,1.4572518209407267e-11,-2.757722205245481e-11,2.928466734043772e-11,4.0220026450261045e-11,-4.5745468249454956e-11,-1.6996221582408766e-11,-4.9347491335821036e-11,-8.248247643612517e-12,-4.7066442687809087e-11,-3.910414486268986e-11,2.2688610653453187e-11,-1.849848962981214e-12,3.2869899224091195e-11,3.551673284360602e-11,-4.330640777708631e-11,-6.8587381540788596e-12,1.0849057606382951e-11,6.509400485037167e-12,-2.3988361776655332e-11,-1.457933668508422e-11,-2.5288431133224643e-11,-1.2594770775058042e-11,-3.317816769031114e-11,-5.997017898791792e-12,-2.6514625603617392e-11,3.508416718210116e-11,-1.0645459014037106e-14,4.343699636944524e-11,-3.983018798789275e-11,2.3653751068228116e-11,-3.34798795203783e-11,8.293061497328631e-12,3.1815688105377477e-12,-9.544326576195665e-13,4.746392996325575e-12,-6.340000961429881e-12,-4.952264938392227e-11,-1.5074242548735229e-12,4.486760180322177e-11,-3.088261202969106e-11,1.625806358765533e-11,-4.98841038049351e-11,2.630956524731871e-11,-2.040823146859616e-11,-2.89020137482223e-11,1.0910176078057773e-11,-1.5709096821191313e-11,-2.438876444674917e-11,-3.5512172857390834e-11,1.5113026216174214e-11,1.736000999697463e-11,-4.695321173916476e-11,-1.2436245791661608e-11,-2.1761443529964176e-11,-4.1844324261332447e-11,-9.598474157741646e-13,6.1378343039206854e-12,4.137724455632678e-11,-2.1865712106111292e-11,-2.969581252189168e-11,-1.4295108749136146e-11,-4.199335952319776e-11,-3.986491788998422e-11,4.887103528468164e-11,-1.8406693464642564e-11,4.3134630545018424e-11,-2.4319373468065988e-11,3.5819741228350954e-11,2.7478999479937347e-11,-1.2080335335264837e-12,2.598051494565383e-11,-1.842391738685005e-11,1.2125458762169686e-13,-2.1141530708547308e-11,-4.039361210307988e-11,2.5930697038348012e-11,-7.910376432688426e-12,-2.9670226861254225e-11,3.8912629171366727e-11,-2.6964459173992736e-13,-2.0059718661008673e-11,-1.7427038210808544e-11,3.014631646786082e-11,-3.5307956704244094e-11,1.3951278234241667e-12,-3.9057192119581494e-11,2.8477886240444152e-11,-4.2226997873579924e-11,4.299985708952307e-11,-3.9966136417169366e-11,2.2924574975837228e-11,-1.5006451110093566e-11,-2.3354513373258514e-11,-2.9654346318236774e-11,3.7259885821057066e-11,2.950451575424272e-11,-1.2965432120952024e-12,-3.634117076269741e-11,3.795859026206127e-11,2.756268640295187e-11,-2.6753655294416713e-11,3.876928202212923e-11,-8.536222423092473e-13,-1.8221013049202376e-11,4.1891160872326464e-11,-4.3254558496512307e-11,3.635284354626838e-11,-2.8683322857008955e-11,4.268110635808518e-11,-4.6116291788634916e-11,4.8518466671743595e-11,3.901480207854372e-11,-3.8658660852781815e-11,3.294578591755002e-12,-1.5171334316375962e-11,-3.800552594655232e-11,-1.5510281053236156e-11,-9.9932632269195e-12,-1.511332548092628e-11,-2.940001647654597e-11,1.8044839517341953e-11,2.6323102570530515e-11,-5.6456066166294305e-12,7.032748976553014e-12,-8.520279558609491e-12,3.5753402650592117e-11,-4.651940955790057e-11,-1.2328899508451775e-11,-1.529547415270993e-11,-4.448311747710908e-11,5.579904235393764e-12,-2.2701510787649123e-12,4.7492678826107996e-12,-1.474060333616247e-11,3.6236795213362095e-11,1.81616936570106e-11,4.391952864166063e-11,3.456725420283574e-11,-2.842145404423334e-11,-7.77801432423345e-12,3.138222094530593e-11,-2.9673607774350565e-11,-4.814545323092722e-11,9.550930750741856e-12,-4.605179080818746e-11,2.6767077159892818e-11,4.164651392108734e-12,1.0235650776559083e-11,9.29994795310249e-12,3.672381618070854e-11,4.8118171277761926e-11,4.241188509718504e-11,2.710742538617078e-11,-1.018516620848867e-11,2.3770466041208112e-11,-1.4946524555049236e-11,-3.1487627979763337e-11,-3.0128821352597325e-11,-4.272819464665706e-11,4.059576522953067e-11,-4.224765462023216e-11,1.1240276116184796e-11,1.842123234438409e-11,2.0190209405628604e-11,9.296542745834867e-12,-2.627255103340308e-11,-4.212919088769067e-11,-2.245685029641623e-11,-2.6371667150393618e-11,9.30480384406186e-12,3.9847320303268744e-11,2.65318676079016e-11,-3.9885459479718866e-11,-3.115246541130991e-11,-1.2349395037021277e-12,-4.108305262232606e-11,-1.1807480326505328e-11,8.856528626875571e-12,-8.347359604084582e-12,-3.1875950235742764e-11,1.7978183452558588e-11,3.316324768007739e-11,-4.334858345080396e-12,2.2100021700822072e-11,2.4747105127048248e-11,-2.733796760270284e-11,-2.0463619608405404e-11,1.0719048644491263e-11,1.9849241394555552e-11,-4.996248696516439e-11,2.1933165273116582e-11,1.5307765166799865e-12,2.3722357218929195e-11,-3.292068956067944e-11,4.381556112209992e-11,2.2435237253382333e-11,2.0766695474626246e-11,-2.7882519903096004e-11,-1.6100137205685105e-11,1.838591311748275e-11,-4.007584852628871e-11,-7.344537542887863e-12,1.2268760622432358e-11,9.2469095587077e-12,-3.480622331174558e-11,-4.92784922580535e-11,-2.576428499197705e-11,-1.6436911842966273e-13,-4.327387747166877e-11,-3.1306241877612355e-11,9.846501271229699e-12,-1.3766098774066561e-11,-2.989205612443438e-11,4.1079296351878874e-11,4.2200890289339827e-11,4.519762289457023e-11,1.5126210414047343e-11,-2.7738626123078902e-11,2.5143442901451292e-11,2.509884306864949e-11,1.0361019164367338e-11,-1.162215568793448e-11,-2.4975062880894306e-11,-4.685393306591059e-11,-1.9378626467756003e-11,-1.8792953884766115e-11,2.368805911580587e-11,3.685414830051782e-11,-4.220342087524817e-12,-4.2056485293508744e-11,-2.850327853015784e-11,1.6191032643551718e-11,3.990370739401657e-11,3.1106306815763106e-11,3.9440775190280095e-11,2.039258506503581e-11,-1.6948134023563144e-11,-1.650944202733422e-11,2.3273249008429748e-11,3.854853843807749e-11,-2.237347930405772e-11,1.3216851924116033e-11,1.1743142571552362e-11,-3.9515924699818485e-11,-1.1610712539988645e-11,4.42782992396319e-11,-4.6164453515008256e-11,7.933305331054309e-12,-4.228306046878757e-11,-4.031641877859494e-11,1.3472791851009465e-11,-1.420864518210152e-11,1.0526032021061329e-11,-2.0130983908756626e-11,6.267603936082973e-13,7.50419692145067e-12,-1.3754962786714542e-11,6.871043987462255e-12,1.8467276856573674e-11,3.6101290894553735e-11,-2.9101366250529415e-11,-3.247405170493879e-11,2.675333556153235e-12,-7.902552985022945e-12,3.94844460805979e-11,1.0126533287698351e-11,2.167179625806246e-11,-2.3420082464000493e-11,2.1379325059528343e-11,1.9897171754655548e-11,-3.6321742041747063e-11,-2.301227887921139e-11,-2.941623761347557e-11,2.7601387773792825e-11,2.9391856161155443e-11,-3.920475052270679e-11,4.3122665355455745e-11,6.260721981524698e-12,3.0828653077889895e-11,3.9285772670089963e-11,-3.8828453025783396e-11,-4.042685981724914e-11,-1.0008175994457024e-11,-1.7564840128823769e-12,-2.5274591351748656e-11,-3.646807770367166e-12,-4.288253444619884e-11,1.4861666946980974e-11,8.877968399756017e-12,2.8413961377322127e-11,-4.225270258715816e-11,-4.279935282712144e-11,4.612805491408446e-11,-9.145054978790052e-13,-1.3092129451425759e-11,3.9860598128172e-12,-2.2712967701282475e-12,4.1779840433127965e-11,1.5547686555183047e-12,8.834353839554358e-12,-4.6487581330163854e-11,-4.521931202830054e-12,-1.6796706473962666e-11,4.87506753412997e-11,1.3733341599694677e-11,-3.3382074982898113e-12],"im1":[3.286218121919804e9,8.318224270721522e9,9.636013922739098e9,7.392552520032157e9,7.450608007296503e9,6.564873285751553e9,2.527002180738256e9,1.1469656812884166e9,5.226367817802323e9,5.598092418050657e9,1.216909017619834e9,6.708883346132516e9,5.431499656426187e9,3.386576910477845e9,1.7130948404113977e9,6.530054290285704e9,5.541869959796083e9,5.011675750005671e9,2.1650814003667507e9,1.3781109871308906e9,8.553312095228177e9,8.126477620269612e8,5.101512207975047e9,3.901637420663071e9,7.617655380990361e9,6.655107101195553e9,1.268537922529579e9,1.0373190601029437e9,1.4417290112183344e9,7.997289702851362e9,8.70325350753585e9,3.779659562519164e9,9.275885897505068e9,6.244229369716378e9,9.809033633360765e9,5.484298378043294e9,5.90063504207885e9,5.65979495341018e7,1.958337482404149e7,2.0802777100311399e9,4.239487812471663e9,7.95488634053937e9,9.665266487703484e9,6.480799328476885e9,9.063074428599987e9,9.26220336456044e9,5.339976207677377e9,1.1521368135173693e9,3.385376142467299e9,7.347307213289289e9,8.490898986319207e8,9.753699573089954e9,9.438418303315033e8,5.019912994846221e9,2.962394630879993e9,1.881396247742445e9,1.7411749963118074e9,7.720702342938461e9,7.850284079032289e9,5.896874483436535e9,6.871136912274896e9,9.454110992289572e9,9.79893493017379e9,3.7925867675569825e9,3.9399177212599854e9,7.082205140539314e9,5.602528415275445e9,3.8833736303936872e9,4.983650134960525e9,5.759034101236655e9,5.143739187263985e9,1.1364031452035906e9,3.565405214808608e9,9.887054632336345e8,8.208000341142566e9,9.27914247575094e9,1.8131025968947957e9,5.412111524255246e9,5.36418068081014e9,7.974684500571644e9,6.079623116590896e9,6.593681156080889e9,9.99173013542532e9,9.177149036449867e9,2.7793107304781175e9,9.355168592058422e9,6.280448027740004e8,4.713815244660257e9,8.088343225520153e9,3.8583163620367045e9,9.199040325878246e9,5.824489985371862e9,8.8613563381678e9,2.4478104232083354e9,6.869798892937861e9,2.353497534252741e9,4.42438689399401e9,8.271470496009097e9,6.196190777488293e9,7.873061567992538e9,2.8199697979838777e9,2.6907459367111063e9,5.501968495790095e9,2.5313992425105715e9,2.562949917471399e9,3.246822369631919e7,6.122449217393226e9,6.909572616714332e8,8.4663362023429165e9,3.4502515378974576e9,3.6474714555930433e9,3.910831371057523e9,7.198795429149802e9,1.2314600317024648e9,2.0417618348931954e9,5.413947738250272e9,7.962160300923325e9,4.1023679517284174e9,9.711508890255071e7,4.844400531865648e9,5.683165305480458e9,6.838590287526825e9,5.596359843915328e9,7.632149739850047e7,1.8067749857225513e9,2.3811555937421346e9,5.784154941500435e9,3.3006354366069355e9,6.557577621795292e9,1.7224579899689617e9,8.533124268231504e9,6.917900245394753e9,7.561880702458592e9,7.981574125359303e9,8.943244404813879e9,2.835502828453329e9,4.660308382578908e9,8.014785700195639e9,9.48809762825069e9,2.1428221580507424e9,8.952031446942743e9,8.967927047009516e9,4.725647310830047e9,4.944079788083824e9,3.0909298408271203e9,9.413910273949518e9,8.975863078784561e9,6.255742273631537e9,9.595227170359741e9,8.094677005662921e9,4.848927194247402e9,1.4218232802385778e9,2.651716568592214e9,2.517864610287611e9,1.0947495226796222e9,2.871437929923504e9,8.099044000540177e9,9.242301060095907e9,1.5568072081491025e7,1.305538272877249e9,9.27009423813985e9,3.7083071259293733e9,4.285413854367093e7,7.092819040099276e9,5.058346851260234e9,6.928918932621855e9,5.903366841248896e9,5.531774322078379e9,8.024621319051885e9,4.159673466356939e9,8.582810712950353e9,4.384360889930237e9,8.091426218568753e8,2.2393890359816504e9,4.1716014843816504e9,7.4652069194559145e9,2.842402602294921e9,2.1204360118664033e9,5.610110282146186e8,2.29501222916753e9,2.4209641314573727e9,4.789391576801547e9,2.616198490465295e9,4.2882996650512486e9,7.485606841263905e9,5.861787750937742e8,9.05362422248345e9,1.63539342382782e9,1.1837174238282578e9,9.328347596977465e9,9.12924166409742e8,9.92164876117173e9,2.5001380064092636e9,9.892854124551281e9,9.427563141353298e9,9.001349761558231e9,2.854533471857069e9,3.888603772964283e9,7.321639965437327e9,7.862708164145704e9,8.726208917610867e8,7.617461443551814e9,3.1166267376897793e9,4.723442828870715e9,2.5087378341337295e9,6.857791877686836e9,9.498957203185242e9,8.431669800987358e9,6.961817386239647e9,1.7815836906316874e9,3.9524862742400713e9,3.221525270496187e9,9.03842151112252e9,4.4974177409055513e8,6.670953354966932e9,1.6780104518424277e9,1.245578995470309e8,1.8828217112285428e9,8.619286892706598e9,6.3641387628455515e9,3.8509190641004887e9,1.2532507924452274e9,3.360234094454296e9,5.574984257828542e9,6.376463589599882e9,5.213869622275753e9,8.968610570245165e9,7.440503023903235e9,5.769675767130822e9,3.2814383393960443e9,8.80457987715352e9,8.0154775534210825e9,7.55506202788605e9,6.436432295538328e9,6.824292840753254e7,1.3168180231172277e7,9.956227218362928e9,9.789803035811321e9,3.5675353321435566e9,6.313019618792442e9,6.984151280301485e9,6.700926332995707e9,3.3720649760345054e8,6.225761987637803e9,6.00141226748789e9,1.2346209493318627e9,3.7037436861671224e9,1.8366207362322528e9,8.553998470192525e9,3.6226310244246597e9,3.49535912338248e8,9.421857309885162e9,8.733266880637344e9,1.3913662767535717e9,2.540648502945727e9,3.5605666069422026e9,9.04169346441216e9,4.700184747440184e9,9.09874824820911e9,9.033115067906193e9,9.532429705087454e9,1.0271807779764742e9,7.134277696674751e8,8.524951201133828e9,8.240755891546069e9,7.024234745152472e9,7.1243133052294e9,6.750733803554108e9,9.046768838173443e9,4.199905335466577e9,9.836266500755198e8,4.0760558700921736e9,3.723609953493634e8,3.7484608376491733e9,8.153113852967985e9,3.8866587022402864e9,4.380839108948893e9,8.989528201429604e9,3.344835828822127e9,7.828812869003577e9,8.319347615048778e8,9.35885580528167e9,3.59806855940899e9,9.475450048204014e9,4.284261564288465e9,4.407357487621399e8,4.672099045360552e9,6.2957265134079075e9,9.010675301327572e9,6.585030544235232e9,9.496398154432796e9,6.915801778196105e9,9.61872366362346e9,6.436374351332374e9,6.7730367571388235e9,9.821036984561771e9,4.467760569413111e9,8.313112168150206e8,1.1974826811140482e9,9.383793269961344e9,6.102725715985777e9,4.53856085086442e9,3.223050652223425e8,7.311210552881777e9,5.168538421708498e9,4.310502939011113e9,7.031388871046212e9,6.810244259503445e9,1.0844820126809206e9,9.304496243721056e9,4.934776409946366e9,2.217880250022917e9,1.9729901277947993e9,7.415829855378185e9,1.1970649253001387e9,1.3575734801068196e9,9.309756936728841e8,1.836963816000482e9,2.0235868601178808e9,8.394963505714337e8,2.7145475746335177e9,2.4791819269613924e9,2.127926848193601e9,4.551889378744923e9,5.6592618728657055e9,7.92591181249888e9,3.8384481775478597e9,4.2501383859083443e9,6.904245435758659e9,8.483734610907581e9,8.838929295225103e9,2.4375454772928905e8,7.203968101167075e9,6.598739875871896e8,6.321688957993725e9,9.378504112285535e8,5.185946510224943e9,3.281574585984719e9,6.80721033198653e9,5.695762870537195e9,1.0111934549135771e9,7.31540435374909e9,6.215402409651427e9,4.144247904696112e9,2.956001088269183e9,7.683057084380729e9,7.774991032680998e9,7.591465544283615e9,6.75044156592831e9,5.7517358850932455e9,1.5042477024662848e9,3.0069915389909995e8,9.727811328314735e9,6.592497019175694e9,2.4698831736467085e9,8.109851645203678e9,7.615761917068857e9,2.9531412026511226e9,8.396953435784785e9,3.1250786711531954e9,7.353017583323029e8,3.7041507335817236e8,5.902419227958709e9,9.499260920436214e8,1.1298006853487263e9,4.392536704642736e9,2.497093875422054e9,4.137897779077512e9,3.066097310003997e9,1.0551255993672781e9,7.467123347573047e9,6.857960590658724e9,7.384422483524489e9,8.66171548911633e9,9.221805402836384e9,2.3532923127846828e9,9.27654329239534e9,5.8709174112350855e9,2.861141740849569e9,8.376578683441137e9,2.840549152018732e9,8.548466682188075e9,8.90397553523448e9,6.43541873009869e9,7.164792556128914e9,7.442397191109072e9,5.864804702179191e9,9.209121549516144e9,2.840337109775476e9,9.694550594785307e9,7.022411062919264e9,6.231030088235558e9,9.810359785554712e9,1.9258253576974316e9,7.60502203408484e9,2.8525279432001047e9,7.607818151033553e9,1.3134246654609206e9,8.1178765568115425e9,1.472466397573602e9,8.776949860566618e9,8.906548472911364e9,6.0298841690796585e9,2.714614593319553e8,2.375890153718856e9,5.463990654838415e9,6.331044636882809e9,8.993000849039719e9,9.290251091580446e9,1.8523466534428e9,7.509623073183821e9,7.690638852106878e9,9.67737532396878e9,3.279559534682639e9,6.710146337392418e9,8.276598238152528e9,1.7092252453653212e9,7.938526301493276e8,1.8812259487774308e9,2.8174228378409715e9,2.183154028194494e9,8.536571117574666e9,9.253255406133123e9,3.972679355301099e9,8.053825652758186e9,8.421642188298883e8,5.98537475825178e9,7.374356881169846e9,7.176314716212601e9,6.408757328130836e9,9.71255871995552e9,5.55317314136661e9,7.972440866969844e9,8.576598095660948e9,9.120322358082987e9,8.160543899657707e9,7.007650064390635e8,8.621911594143631e9,7.10802289049944e9,1.2627236543540888e9,3.702643529363041e9,9.165591104700388e8,9.7335098492291e9,1.7598711637545004e8,5.175580695351158e9,5.573748541349367e9,4.623031551434547e9,7.474103869107725e9,5.435214021400902e9,4.68146359465893e9,3.483738574466628e9,7.245026333391073e9,3.3494759056663604e9,2.7957491487531447e9,2.7856996381673594e9,7.055058009661719e8,3.208086243626119e9,9.58150074220501e9,6.311119170555058e9,9.138699742113876e8,8.363761835272669e9,6.905138167221041e9,5.834043707555938e9,7.53400112465142e9,8.497975382233382e9,1.2467865734645934e9,6.913270424108611e9,1.0271475333992752e9,6.083977458391797e9,5.513045516508495e9,6.240464577221099e9,5.108733309913027e8,2.843625933980877e9,1.6223933567749238e9,9.064333424667095e9,1.8785558221398346e9,3.731222819540969e9,3.1609668834622707e9,1.581220944982822e9,9.21621691361357e9,6.592872054856431e9,2.84354586035382e9,6.643744044599927e9,7.16319268228028e9,3.472927637191281e9,1.8969012331526036e9,5.831939074191595e9,6.655198443236107e9,7.064970830019437e9,3.461350363132638e9,7.8126217224891e9,5.093401239309073e9,8.412324392351356e8,9.140544369415274e9,3.7468516044418955e9,7.99334679391471e9,2.2727119113597383e9,4.234387830857322e8,9.548051042241077e9,3.019899798910457e9],"qim":[2.2053072e-22,-2.2329286e-21,-1.9094439e-21,-2.0909887e-15,1.3137646e-21,-7.404038e-21,-5.90788e-21,4.6908947e-20,-1.9981259e-21,-1.301965e-21,5.419984e-21,-1.3477618e-20,3.2922137e-20,-9.177923e-22,-3.40506e-21,8.570883e-21,-3.3409189e-21,7.9434784e-21,1.6515642e-21,-1.6431072e-20,-5.8975397e-21,7.791344e-21,1.3539833e-20,3.7121737e-20,1.591831e-20,-1.0962259e-19,2.263359e-20,1.9221646e-21,5.551506e-21,4.2189192e-19,4.0790344e-20,2.8532973e-21,6.624733e-22,-4.9880675e-21,1.9182802e-19,4.5154714e-19,-1.1788914e-20,5.4793033e-21,4.447261e-21,-8.47974e-21,-8.03535e-20,-1.4401471e-20,-5.3638853e-20,-5.161497e-21,2.8437011e-21,-1.09862865e-20,2.7802323e-22,7.118334e-21,-4.1094906e-21,1.0244491e-19,-6.5051604e-21,2.6469945e-21,1.2273545e-20,2.0931778e-20,1.1117328e-20,4.3808022e-21,-7.194362e-21,-2.5506393e-21,1.3133622e-19,3.75064e-21,-1.23373285e-17,-1.4400321e-20,-2.1558526e-20,4.4967097e-21,3.9838165e-21,5.2605254e-22,2.0679921e-21,2.2289904e-21,2.478644e-21,1.7581407e-21,8.335957e-22,-1.4579027e-19,-5.8373243e-21,-6.826961e-21,-7.062937e-21,-5.818221e-20,-8.354251e-21,6.853024e-21,-4.7724513e-21,-7.7065225e-20,-5.586833e-21,-8.033733e-20,3.0040108e-18,-2.8005339e-21,-9.715095e-23,1.1320753e-20,-3.1342647e-21,1.1424892e-21,-1.2630993e-20,1.01903314e-19,6.458538e-21,-2.0781772e-20,1.9730038e-20,-4.9054137e-21,-3.8213828e-20,1.29059595e-20,-1.3524429e-20,-1.549741e-21,-2.9486416e-21,3.8624766e-20,-5.8540824e-21,7.064277e-21,2.131602e-21,4.4948587e-21,3.8338997e-21,6.972379e-21,-7.311701e-21,-8.0970254e-21,9.665432e-19,-4.430962e-22,1.9513936e-21,-5.2617896e-20,-9.429583e-22,1.5086776e-21,1.8064982e-22,-5.9778663e-21,-1.4070148e-19,1.8123574e-21,3.8823573e-21,9.257997e-22,6.9861825e-21,-2.408033e-16,8.126365e-21,1.1173465e-19,5.440392e-21,-3.2602272e-21,4.2223192e-20,-4.1397546e-21,1.1438063e-20,-2.2992459e-21,-6.7020766e-21,6.131563e-21,-2.457645e-21,4.3058274e-19,-9.234592e-22,4.4645665e-22,1.1521437e-21,-6.612093e-21,4.043774e-22,-4.8220393e-21,2.9056415e-20,2.8567775e-20,3.0870976e-21,3.1717297e-20,3.828724e-21,2.3741685e-21,-7.823881e-21,1.18791626e-20,5.3710085e-21,-4.0758897e-21,6.894808e-21,-3.54789e-21,-6.1463797e-21,1.0830135e-21,-3.632446e-22,-5.4651524e-21,5.9536943e-21,8.64254e-21,6.486597e-21,-5.8012353e-21,7.214084e-21,6.692992e-21,4.459051e-21,6.6989404e-21,8.377423e-21,2.1321808e-20,1.6918969e-19,2.5592433e-21,-2.4964678e-20,-3.1214852e-22,-5.440384e-21,6.0176703e-22,6.772174e-21,4.1132e-21,-6.8852616e-21,2.0999113e-21,9.64846e-20,1.0477837e-21,-5.4811508e-21,-2.2325684e-20,5.2452468e-21,3.7337505e-20,-6.5210517e-21,1.6410975e-21,7.56396e-21,-1.5256917e-21,2.7671736e-21,7.634778e-21,-7.604496e-21,2.0606216e-21,-1.16036185e-20,3.7389662e-21,-1.1886995e-20,-4.793697e-21,2.7267936e-21,-4.9501917e-21,-3.1485887e-21,3.1079092e-20,1.7474485e-21,6.010024e-22,6.28777e-21,-4.00303e-21,4.2197747e-21,1.2620594e-20,-3.0711635e-21,5.3652005e-21,-3.2947852e-19,-1.1636028e-20,-4.73037e-21,-1.01820284e-22,-1.7287552e-21,-2.364354e-18,3.2102116e-21,1.872127e-21,2.9722383e-21,2.843998e-21,3.727605e-21,-9.508847e-22,5.6047064e-21,-9.4876154e-21,1.0458848e-20,-1.0196963e-20,1.327701e-20,-1.0020554e-20,1.5875418e-20,-9.5447216e-21,2.5987416e-21,-3.928291e-21,7.215054e-22,4.6731363e-22,2.2189562e-21,7.4671806e-22,-4.9637715e-21,-2.519859e-20,-5.718366e-21,1.7482533e-20,-7.133236e-21,9.270063e-21,2.1615708e-21,-6.655825e-21,6.798323e-21,-4.0377208e-22,1.812384e-20,4.256099e-21,-6.489029e-22,7.8949745e-21,2.5224684e-19,2.7504177e-21,3.544394e-21,2.0289462e-21,-6.788309e-22,1.0861901e-21,5.676983e-18,5.1962573e-21,-6.3888106e-21,4.34789e-21,3.8040498e-20,-5.664637e-21,-2.084202e-22,-3.414234e-21,-3.2382628e-20,-6.8431376e-21,-3.247778e-21,-8.5761835e-21,-7.73211e-21,-2.703872e-21,9.5941505e-21,1.9686666e-21,1.1074033e-20,-1.3499545e-20,1.2314583e-20,5.1406774e-20,-3.8984283e-21,8.744083e-21,6.4559476e-21,6.54476e-21,-3.901342e-21,8.7898e-21,1.5839606e-21,1.9057351e-19,-6.0094296e-21,6.1259656e-22,9.4637605e-21,-1.1908919e-19,9.175394e-21,8.3541627e-22,-2.7923517e-21,9.887952e-21,-3.2011758e-21,3.635045e-22,4.425023e-21,1.4136869e-20,-3.9905783e-19,-9.946115e-21,4.819177e-21,-7.336824e-21,-5.291419e-21,4.4338605e-21,-1.1478359e-20,7.504031e-21,-4.6353285e-20,4.020379e-22,-7.6552335e-21,9.224996e-22,-3.9294553e-21,-4.95138e-21,7.770781e-21,-2.0301946e-19,2.5781453e-21,1.1021679e-20,7.338167e-20,9.541984e-22,1.579503e-21,-6.0389395e-21,-1.690882e-19,-5.263252e-21,2.5036065e-21,-8.4208977e-19,-5.3842466e-20,-2.427803e-20,-8.90813e-22,2.5028613e-21,2.0299424e-21,8.4267215e-20,4.188215e-20,1.1997524e-20,3.6704966e-23,2.3388146e-21,-2.34369e-23,-6.8798744e-21,2.1298923e-21,-7.35587e-21,-4.3956765e-20,1.1402273e-21,5.1573525e-22,7.408966e-21,-9.58989e-21,2.0692913e-21,2.7292669e-21,-9.965441e-21,8.5492554e-23,9.716372e-21,4.5661446e-20,-3.0632682e-20,-8.451157e-20,-1.0851251e-20,-9.3621937e-20,1.359436e-19,6.004285e-23,1.9234684e-20,6.310722e-21,1.786371e-20,4.7583064e-21,-2.6741927e-21,8.1815336e-20,1.7557569e-21,8.942154e-22,-1.549108e-21,5.766866e-22,3.4472846e-20,6.349906e-21,7.98803e-21,-8.692746e-22,-5.8476404e-22,-5.691531e-21,1.9164098e-19,3.7761205e-20,-4.3513864e-21,-2.786464e-21,1.3080568e-20,8.239903e-21,-2.3359251e-20,-6.231004e-21,2.1256072e-20,-2.2902913e-21,-1.8681822e-21,2.6934814e-22,-1.5889346e-20,-4.45736e-21,1.816483e-19,5.3536406e-21,-8.307722e-20,8.1769946e-21,8.022861e-21,-3.3974154e-21,1.9850017e-19,-6.060435e-20,-2.2141866e-21,-7.783202e-21,1.6433204e-21,4.3700966e-21,1.06388376e-20,5.4103987e-19,-9.687241e-22,1.7317637e-20,6.8487975e-19,6.1865113e-22,-2.7473065e-21,1.6510945e-21,1.3506735e-20,3.273703e-20,5.5279297e-18,8.961233e-21,1.3163775e-20,-2.8196474e-18,-9.235645e-21,5.1210655e-21,-5.7260306e-19,-8.840432e-21,-2.4715192e-20,1.8070779e-19,9.579801e-21,1.5290132e-20,-3.489164e-21,2.5981968e-20,3.482387e-21,3.3498191e-21,5.2462795e-21,2.9594464e-21,1.5556497e-20,-5.261885e-21,-1.329643e-20,3.4177534e-22,-1.2196437e-19,-1.8137693e-20,-2.7104318e-21,-1.8132958e-21,-7.7340424e-20,-6.2256915e-20,6.435071e-22,2.5792528e-19,3.6874674e-21,2.2021254e-21,-5.439808e-21,2.9705823e-20,-3.2984372e-21,5.0064796e-21,2.7589955e-19,1.0360793e-20,-2.4441647e-20,-1.5745069e-16,-8.852489e-22,-7.982833e-21,5.705041e-21,-2.4530205e-21,4.1634884e-21,-6.877028e-21,4.2159308e-21,-5.13305e-22,-2.5952168e-21,2.2214853e-22,1.5065865e-20,-2.6601918e-21,-4.0349765e-21,1.5994303e-21,1.4884933e-20,2.4561878e-20,-1.3199698e-20,-3.3175953e-21,-3.032196e-22,-8.873957e-21,8.2872956e-21,-5.7730405e-21,-1.3182269e-20,3.1948758e-19,3.1476434e-21,1.3534141e-21,-4.6977413e-21,1.7512364e-20,-1.5561797e-20,-2.9722203e-21,-2.4964868e-21,7.083497e-20,-3.73642e-21,-3.9658593e-21,7.261248e-21,-1.4035976e-21,-3.2753832e-21,1.0387378e-20,-1.5185028e-20,1.0831316e-22,-4.3842127e-20,2.2410488e-17,-7.127088e-21,4.5979275e-21,8.1713505e-21,-1.6177233e-21,-5.9061184e-21,-2.4684093e-21,1.268315e-21,-2.4201826e-20,3.2590677e-20,5.6154597e-23,-9.441508e-21,7.955246e-21,3.5468632e-20,2.6731858e-21,-8.940432e-21,4.3096623e-21,1.5393136e-19],"qre":[0.51340455,1.1578553,1.1178795,687.97516,0.7791367,0.86835474,1.2271682,1.2302119,0.8590163,0.6832645,0.21683308,1.1062486,3.8164864,0.38382006,0.25214452,0.9079751,0.5674362,0.6138461,0.32535017,0.7262318,3.0724697,0.32597288,1.1084381,2.2689831,3.7210975,3.6508183,0.6119179,0.15380755,0.2238333,11.469436,3.2576408,0.4717883,1.0285416,0.8064989,6.3542767,7.4334726,3.1163833,0.0065523884,0.003017742,0.4245401,2.953929,2.447305,3.7703888,0.94836575,0.9661914,1.2808411,1.8504376,0.24802868,0.35043508,4.963532,0.15330103,1.4309626,0.35211012,1.6928036,0.99677765,0.19006072,0.7442569,0.8222418,5.606461,0.6882031,50.711838,2.344939,2.3191967,0.6528465,0.5306653,0.8907173,0.752089,0.6051776,0.60707015,0.63042027,0.7040902,2.070514,2.0826375,0.44295326,1.0458611,5.6223826,2.0842955,0.61224395,0.83115983,4.3393745,1.1107244,3.786854,31.903656,1.1335498,0.3622466,1.1882592,0.06304776,0.5249568,2.157397,2.9940534,0.9386455,1.6099199,1.8852695,0.28860942,2.6524463,3.1502516,1.1632028,0.8669455,0.8982923,2.3829942,0.44714478,0.3679306,1.0306495,0.2654611,0.4051765,0.0119450595,0.7420113,0.13211331,37.745846,0.9204687,0.5152626,3.9691384,1.1504359,0.12596142,0.21864173,1.15585,5.7848673,0.7773217,0.011960174,2.1224809,1.0599636,190.72882,0.876644,0.2115658,0.3024953,0.2773212,2.1576061,1.2066226,1.2004299,1.1436648,1.0473974,1.1099236,0.9565512,8.627558,1.2790247,0.35074607,0.50776076,1.062028,1.4898752,0.25506726,3.5240052,1.9953545,0.6831769,1.8125268,0.60090894,0.9832875,1.0135409,0.9783785,1.3411077,1.1612664,1.0614161,0.6277141,0.52079606,1.0009037,0.5342839,0.29653117,2.1233363,2.0125034,0.004274995,0.1443856,1.7020962,0.80741876,0.0042880117,1.7952186,0.76818335,2.0625331,5.055831,0.6143097,2.0289898,0.89117056,2.4594338,0.7187252,0.2191593,0.25532135,1.3373617,1.4428425,2.3044026,0.22215363,0.09583375,1.1985939,0.36823878,1.9164248,0.34299335,0.65301925,1.7013294,0.1162767,1.324349,0.6737036,0.21597773,1.0999892,0.25023356,3.3941498,0.8310632,1.3912421,1.9541534,1.5710222,0.43588495,3.6664894,1.3676225,0.9068785,0.11779985,0.9652936,0.31517002,0.9786823,0.2916687,1.2710798,9.294171,1.9738235,1.841874,0.18303734,0.7423197,14.691897,1.0690328,0.050814215,0.81949323,0.3435946,0.013986017,0.39835426,0.96538246,1.2380224,0.9248552,0.23407139,0.68643236,1.1351599,1.8628479,1.6194448,1.2160602,1.6318567,0.6190608,0.3845691,0.89880455,1.3375915,1.7940584,2.40176,0.024847053,0.004632786,1.0176412,1.5452051,0.6075778,1.1318995,0.886256,0.67098874,0.24141552,1.2126567,0.92483634,0.21732658,4.6444263,0.19201945,1.3167094,0.6556359,0.04011143,1.3732158,71.65807,0.24315883,0.9224676,0.41395536,2.6925938,0.57962775,1.2569276,2.8434505,2.8367648,0.18411727,0.080915056,1.403696,1.1540421,0.86265475,2.8835204,0.7515477,1.1993048,0.9931657,0.56583285,1.9238982,0.03754293,0.91466206,1.3908482,0.70042443,0.5295452,1.7725581,0.58306867,8.906083,0.78698987,0.9925411,1.3702087,17.152311,1.2876619,0.36912134,0.87160844,1.9828314,0.9124916,0.8913818,1.1189414,1.2350506,11.751612,1.2070311,0.8689454,1.5221034,0.8278493,0.15068851,0.2756658,0.9705127,2.0720482,0.8153575,0.05674463,1.2133126,1.3068936,0.51022935,0.78110325,5.8157687,0.22484016,1.223935,7.5417767,0.23009701,0.3344781,2.041977,2.041505,0.33655858,0.21454777,6.3283386,1.9952986,0.5030515,3.186817,0.25254527,0.72631437,3.4189913,2.316288,1.4996364,0.40803668,0.46739182,1.7140071,1.0790919,1.4010663,0.049810648,4.9476476,0.08151807,0.9472427,0.20102687,1.9559319,1.1797419,1.345895,1.8166664,0.11120297,1.6507214,2.518378,1.9260548,2.7851725,1.5179362,4.3524604,7.4890137,0.726026,1.8472033,0.43318385,0.15513042,1.3247395,1.4324019,1.6465437,1.08075,0.8412864,0.3558439,0.8944239,1.3888026,0.11796003,0.28918537,0.93587905,0.10303338,0.17574783,5.519236,1.1996616,1.3151811,0.6190141,0.30380026,1.8266513,3.3990295,1.9887992,2.0482075,1.3852534,0.6918717,1.241586,1.5370235,0.42583695,5.8848042,0.43573973,8.302392,1.7201041,0.69896454,0.79586387,7.477113,3.2782638,1.0938791,0.3905867,2.3490627,1.4391127,2.8072305,11.967758,0.35853657,1.3689682,7.2363744,1.5940764,0.333216,1.1764481,0.43759447,3.645447,48.196983,2.162047,0.10470228,11.613724,2.0945852,0.80016345,16.548943,1.1203557,0.9731223,12.465908,1.1158876,2.3848376,1.617914,2.429584,0.93995607,0.230206,0.0824192,0.30002305,0.7801824,0.4541881,1.7936679,1.5592718,10.735874,3.8152552,0.1107084,0.6167891,4.4275517,3.5154867,1.0525082,8.003947,0.59577686,1.5550596,0.98278916,3.1005495,0.81825936,0.62773055,9.221287,1.519798,0.58333254,111.599754,0.47899085,1.9475474,0.025060792,0.6056021,0.56148535,0.9076427,0.7637449,1.2425246,0.623351,0.4302818,3.5528111,0.8962286,0.42442605,0.30861166,0.28246132,2.0366013,1.9866364,0.723883,0.8854068,1.4904162,0.93030006,0.88050354,2.138616,8.92464,0.24859592,1.3794851,0.14488278,7.6852527,2.0290508,0.6454831,0.1428924,2.6168623,0.20346765,1.5727372,0.32997012,0.48570338,0.49938956,0.52711457,2.719868,1.6054453,3.705113,67.540565,0.89813554,0.4316137,0.28480348,0.678926,1.3850878,1.1095059,0.63240117,2.2238832,2.299532,0.34269148,1.6470759,0.5820619,2.4700518,0.2608037,0.084484264,1.1644922,5.049618],"re2":[1.6718060462858818e-11,2.603174203771237e-11,-3.431978708608331e-11,-3.265508238938086e-11,-1.462394086920917e-11,-3.7582267093510446e-11,2.7147272846739195e-11,-2.4929250280245927e-12,-5.558213279548254e-12,4.82522379693278e-11,-3.1185725256464808e-12,-3.933649146730855e-11,2.1084934416466657e-13,-5.9966894038134065e-12,-4.1829840788809194e-11,4.489596284789644e-11,1.005474981232445e-12,4.6897178403235136e-11,-3.864236119634938e-11,-2.2352129941050338e-11,6.949849487920093e-12,2.518829467875309e-11,2.0804889485735552e-11,2.0161895459191436e-11,1.8899726189658385e-11,-4.173007375847487e-11,4.534925160070838e-11,-7.267080491958889e-12,-7.437219136471818e-12,2.842287923121444e-11,2.137802756139009e-11,-3.220978868196234e-11,3.3453424146744552e-12,-1.7795983904223924e-11,4.944440289632371e-11,4.831657199907539e-11,-1.4371447999113592e-12,2.4093095207589506e-12,-3.669803563947948e-11,1.4783838620517148e-11,-2.3620099644823978e-11,-1.82610438864686e-11,-2.7437533117396618e-11,4.752633452722836e-13,2.2874071303274248e-11,-2.6584445113940902e-11,-1.2435229555563008e-11,2.8318045637706325e-12,-3.63040443172624e-11,3.030709928554513e-11,4.2963478054165645e-11,3.655834136700334e-11,-3.440594213790485e-11,4.888491547785045e-11,4.412477831208118e-11,4.0172416922601913e-11,1.7194947151201488e-11,1.9650024520948384e-11,4.1191433723605065e-11,-2.5499453744043943e-11,-3.362548558391545e-11,-4.110208911147336e-11,-3.4306618057995366e-11,1.707880627756434e-11,-2.3233030249189347e-11,-4.200619694397352e-13,1.4433808951785423e-11,3.33904596894726e-11,-2.582937041148713e-11,4.7318503103556136e-11,-4.548801094226916e-11,-3.41132256881578e-11,7.0545762930929315e-12,-1.307864765236011e-12,-4.241151723140944e-11,-2.3832292472440153e-11,-9.994992849006156e-12,3.2448793662109435e-11,-8.594493949944525e-12,-3.430950757651422e-11,-2.3829961782969557e-11,-3.70634884220684e-11,2.8064306926545466e-11,-4.303228028729286e-11,-1.522446906078765e-11,4.6547297393163986e-11,-1.4514828951854488e-11,-1.4273580961750657e-11,-4.1696602616694604e-11,3.4355518179494525e-11,2.481655487558132e-11,-4.2799117695819767e-11,3.61602249945067e-11,-9.737326697770756e-12,-4.633204868278671e-11,8.229635134205159e-12,-3.855473971025019e-11,1.5048071092909192e-12,1.207892368803221e-11,4.548572093585468e-11,-4.4523590605787767e-11,4.2755755978415784e-11,4.743817525522406e-11,4.5214577940090557e-11,2.0114253721216406e-11,-1.9389199395547642e-12,-4.887209723742172e-11,1.213915657522379e-12,7.0622977367969205e-12,-7.657662513327903e-12,2.561555585529098e-11,-1.2313494419743355e-11,2.2458996172616278e-12,-6.4423039087399075e-12,1.9174729947197966e-11,-1.9332779609149808e-11,-3.6396356624037043e-11,1.56411680373671e-11,-2.093438559851021e-11,-9.714981121483232e-12,1.646022872680413e-11,-4.533994003066211e-11,2.9757501705116e-11,4.914482423288926e-11,1.194806391805337e-11,3.5967753858396704e-11,3.1800959108638173e-11,1.2991925899016969e-11,4.474633070538365e-11,1.2014642917213642e-11,-2.8522181204862498e-11,-8.002920806948444e-12,1.968621628445673e-11,4.79077676389112e-11,9.69406763880534e-12,-2.2450311595418637e-11,3.824792288403153e-11,-4.547241193559747e-11,1.2630722192584794e-11,-1.3212166360839572e-12,7.0465052987905195e-12,4.500259603208646e-11,-2.320663118713986e-11,3.2485316750289095e-11,-4.129543438515474e-11,-1.3789566773107409e-12,-2.6044714896250477e-11,4.2713161750822927e-11,1.1066669512806766e-11,-2.46887751735664e-11,4.505056371698961e-11,8.148396287864246e-12,2.5937398429714648e-11,-7.853739580140031e-12,2.7043934362873556e-11,-1.172112705960132e-11,-1.052889295937669e-11,3.6235770732668135e-11,3.054921190362531e-11,-3.5943045970809864e-11,7.170714417849845e-12,2.214821191667518e-11,1.0407906882170383e-11,-4.420068882860786e-12,1.6538654008277655e-11,4.1805012709111106e-11,3.928469062164865e-11,-2.346150651568001e-11,-3.8191108855992275e-11,1.778357838371074e-11,-6.374217558388193e-13,4.0922102447026566e-11,3.83768688357434e-11,1.534560815100793e-11,2.0332872836210607e-13,-1.9662099184555158e-11,4.826934209257014e-11,1.3531892226857647e-11,-4.6269420776571e-11,-3.3017493717168253e-11,-2.7974615905351652e-11,3.309405854072419e-11,-3.290172140138941e-11,3.0522264820708464e-11,2.7892065734181068e-11,-2.778342140584198e-11,2.2915427782330473e-11,2.7822767249626095e-11,-3.4269891840777455e-11,1.5266426812901602e-11,-1.7228843737718502e-11,-1.7858033174873916e-12,-1.491996875298611e-11,-2.0481313404629832e-11,1.4189052463850957e-11,-3.5607334756873834e-11,1.9879371354641524e-11,1.99596597885573e-11,-2.6608520735567966e-11,-1.299565907840431e-11,-2.35131756977657e-11,-4.1269853025440356e-11,-1.69378032060732e-11,2.2282001758976822e-11,-1.2779803808077028e-11,2.1317895726650623e-11,-3.2694495058831375e-11,-7.188791497939784e-12,-3.3219431110487074e-11,-4.288633442698804e-11,2.2150679663187655e-12,-3.4844224543132504e-11,2.9496063946732985e-12,3.916842616866538e-11,-1.3342409164122318e-12,3.76735015080433e-12,1.3915573571977802e-12,-2.6336797962929228e-11,2.436986018713438e-11,-1.1055996406290438e-11,4.707546467089279e-11,-4.7673332829942083e-11,3.6658577128985916e-11,-2.2515841828732643e-11,1.1198509853147831e-11,-1.3854478253954758e-11,1.83770880203938e-11,-1.156081910493151e-11,1.852945036942323e-11,-6.117295721423765e-12,-3.091442287475822e-11,2.218361533552928e-12,1.3357636077390622e-11,-4.0974885338429824e-11,2.2234349435901397e-11,-4.14312104364456e-11,-4.2725649229958465e-11,2.4801360558962036e-11,-2.6679457991468416e-11,-2.315736367895247e-11,4.272486557646111e-11,-4.2357033780544806e-11,-4.2238350977283034e-11,3.048164976416755e-11,1.4217838304911223e-11,-9.67333662576215e-12,4.063375733643164e-11,2.3672882855915468e-11,-1.4291825702161488e-11,1.5634944567864796e-11,5.545017869404036e-12,3.555870273902115e-11,9.3501230278728e-12,1.5388106074598447e-13,-3.457150192250885e-11,-1.1101987806410788e-11,3.263565796238565e-11,5.066459650008923e-12,-1.584452552381891e-11,1.1355302796922174e-11,-4.6932082115833455e-11,-1.2805832816828987e-11,-1.4294596474880164e-11,-3.796623973602804e-11,-2.5330743892518026e-11,-4.687902308950649e-11,8.262650066310343e-12,-4.601301504763766e-12,3.5972197882633283e-11,-3.13706622493402e-11,2.3853195442775445e-11,4.1188476742759446e-11,6.578081699492543e-12,3.888352839270741e-11,1.2787066296662738e-11,2.6969176710665652e-11,-4.0201228486316244e-12,5.229454137826972e-12,1.7976764695358614e-11,1.4424380827875136e-11,2.811377879521221e-11,-3.672463457959988e-11,4.9518733318871476e-11,-6.1656157914865785e-12,4.151136940166408e-11,-3.795216312858961e-11,-4.396745684104546e-11,8.780807998934988e-13,6.190635606642711e-12,3.611234183992679e-11,3.240419304956363e-11,3.467047687268433e-11,-2.4564397448134557e-11,-2.1104670811153227e-11,1.2439964927509837e-11,-5.6303348383125214e-12,-3.552639268822903e-11,4.140658968940965e-11,-2.8913376797799274e-11,3.019145879385522e-11,-4.834334281902707e-11,-3.243416778892924e-11,-1.4098635038098862e-11,-3.342705742569066e-11,2.523399634502984e-11,-5.517685036064699e-12,4.006242480139916e-11,-4.031117351442479e-11,-1.2168849668781202e-11,3.740603490898823e-11,4.310020641973789e-12,-3.4587485118189746e-12,-1.732936138284733e-11,-2.5138178574197334e-11,-3.972675783160801e-11,1.5131893903196596e-11,2.4321663641122764e-11,-3.751467426356942e-11,-3.163741502818507e-11,-9.466155872943117e-12,-1.483555830494406e-11,4.847109170546384e-11,-1.2870776965454068e-11,1.980303994548076e-11,4.658674648596465e-11,4.076950354570033e-11,1.2485533036761606e-11,1.3964649816159599e-11,2.108648715249049e-11,-3.32940366231801e-11,4.093768782315953e-11,-2.870068769152987e-11,-1.8680437694192343e-11,1.7810997349901478e-11,3.676367431870829e-11,2.4332237840369885e-11,-3.7614824038813104e-11,1.2974770890384257e-11,-2.3960131193614355e-11,-2.464623923556767e-12,4.444174493734433e-11,3.228595526230545e-11,4.8441192332620064e-11,-1.51542015445819e-11,-1.4927951198726575e-11,-8.242696115248361e-12,-3.219640217702556e-11,1.7040719894744507e-11,3.350945069262911e-11,2.4331670270262146e-11,-2.210008832629744e-11,2.899201133011896e-11,-5.878178098347476e-12,1.974867716996665e-11,4.887734952505252e-11,2.259108796291059e-11,3.15185550047421e-11,2.0610704882634445e-11,1.6446946194653544e-11,3.693694337711099e-11,-2.1593467614485485e-11,-4.227410110694846e-11,-3.403647522912988e-11,3.798298667783799e-11,1.8544322999469683e-11,3.2441297544584986e-11,3.227113469280087e-11,-3.409647933610052e-11,-2.429159532237949e-11,1.4308528955563965e-11,1.1976133190489689e-11,-1.1260165700364965e-11,-1.5830212097837758e-11,2.8324470074249826e-11,1.9717898517888733e-12,3.874839808188718e-11,-1.8705240520123425e-12,-2.5108256777020534e-11,-1.2214307002458271e-11,3.9291835936140604e-11,3.3130548048435205e-11,-9.011919485256691e-12,3.6147097925441337e-11,3.4200016339526866e-11,-1.0871436390485703e-11,2.662917089115314e-11,-2.5836437409388215e-11,-4.7136316129129664e-11,-3.2729468812846176e-11,1.2437811839332827e-11,2.924814646721477e-11,-1.5204202222715555e-12,3.571327075975466e-11,3.676767624010679e-11,4.1000752951373343e-11,3.629306952586084e-11,9.548669461790433e-12,-4.747797800153951e-12,-1.990154285247128e-11,-8.75132579246406e-12,1.4553750396490768e-11,2.1191531367876608e-11,-8.455536812323884e-12,2.696657489765749e-11,-4.882034242000637e-11,-1.8074437617563014e-11,1.328076372445819e-11,-1.6320302688092146e-11,-2.7764437004724376e-11,-1.898997722819872e-12,9.946079290565505e-12,3.430887946070268e-11,3.6559679948570437e-11,1.1141633294529443e-11,3.379973954631453e-11,2.0257669371823064e-11,-4.493698355258826e-13,4.462127226715712e-11,-2.7401024063494087e-12,4.791857420270929e-11,-3.5323164978767074e-12,-1.4733667016237608e-11,-1.4058675110038227e-12,-8.12117539814716e-12,-1.7506326866992807e-11,-3.9991143189782817e-11,3.616686913640064e-11,-2.2068375038985045e-11,-2.4931672584512656e-11,2.3098081553484843e-11,3.698634047797437e-11,2.9979434767545025e-11,2.2226192044089505e-11,-9.079809968960664e-12,2.0966197283180418e-11,-2.4049385163256864e-11,2.7610746665408945e-11,2.3689796445639422e-11,2.424415282411433e-11,-1.4794061646496747e-11,-4.722273090824376e-11,1.3026058121609274e-11,-4.219661050949354e-11,-1.0107064870738305e-11,-1.2369751905791325e-11,4.8303030125293114e-11,-2.6994930289579933e-11,2.7661919375897528e-11,-1.3026748345381616e-12,-1.9228793627712207e-11,-2.7787270180580348e-11,1.0581458815895335e-11,9.512459871878234e-12,2.2435906310042167e-11,-4.7516101535444324e-11,1.6654175071705374e-11,2.031108876957169e-11,-3.602289415545779e-11,1.4588327134718772e-11,1.1083680971906601e-11,-1.887134104256979e-11,4.09461917419189e-11,-1.9161433886560285e-11,-1.2410758816928856e-11,3.0017114588602064e-11,-2.906668878239408e-11,-1.6407294982058117e-11,-3.936481301649161e-11,5.6283635557912705e-12,-4.0160169984540616e-11,2.2289573999429233e-11,-1.864895969129201e-11,4.119506747446235e-11,4.665418713410579e-11,-3.9221643248513283e-11,2.764540679194042e-12,-4.2805457329586263e-11,-4.503207719946964e-11,1.1164785165032083e-11,-2.0258689802700625e-11,-2.6433625809472228e-11,-5.070194615420977e-12,3.277029809318123e-11,-3.165338267424067e-11,-1.21776292041722e-11,4.081762131113206e-11,4.7474830746185926e-11,-2.1148675603744205e-11,-2.596664989754708e-11,1.728014916510304e-11,-3.925279612073748e-11,4.9561086898269595e-11,4.939182776002939e-12,-2.6447991460707978e-11,8.112493156748267e-12,4.4638047373299163e-11,2.491581317530594e-11,4.664584462320763e-11,4.213825405779542e-11,1.7569589719964853e-11],"im2":[6.400836222057147e9,7.184166092755529e9,8.619904157030224e9,1.0745377278407186e7,9.562645419327675e9,7.560128501811736e9,2.0592141293483057e9,9.323318401302327e8,6.084131320508211e9,8.193155550704574e9,5.612192593603586e9,6.064535076263084e9,1.4231676485578914e9,8.823344687285084e9,6.7940985259866705e9,7.191886905284603e9,9.766507070954414e9,8.164384238617178e9,6.654618386455757e9,1.8976186228977044e9,2.7838555413871202e9,2.492991755550841e9,4.602432777750044e9,1.7195532764371147e9,2.047152880770664e9,1.8229083274957137e9,2.0730526024556296e9,6.744266070254355e9,6.441083787994304e9,6.972696164466829e8,2.671643226231765e9,8.011346659630009e9,9.018484012825949e9,7.742390476603321e9,1.543690036324623e9,7.377841510276017e8,1.8934240971175232e9,8.63775798501758e9,6.489413046942996e9,4.900073358551888e9,1.4352030340266697e9,3.2504678524688234e9,2.563466774306302e9,6.833649844061719e9,9.380206511367582e9,7.231344178133062e9,2.8857910633056474e9,4.645175730218906e9,9.660495207593311e9,1.480257759775525e9,5.538710163249145e9,6.816180713670463e9,2.680530534579536e9,2.965443447112379e9,2.9719714428300047e9,9.898921782199482e9,2.339480962745908e9,9.389819564742315e9,1.4002209657029984e9,8.568509629636817e9,1.3549375056158498e8,4.0317085920237093e9,4.2251413969586716e9,5.809308108304366e9,7.424488093518445e9,7.951125670155267e9,7.449288513486427e9,6.416915928887369e9,8.209348086247843e9,9.135229458505964e9,7.305512579639371e9,5.488507781065755e8,1.7119663169491405e9,2.2320762536288743e9,7.848078694798773e9,1.6503933482800248e9,8.698875059511024e8,8.839795682951767e9,6.453849759483022e9,1.837749747076961e9,5.473565847734288e9,1.7412029220228987e9,3.131844952947072e8,8.095937960152676e9,7.672427365779889e9,7.873002772131591e9,9.96141363503804e9,8.979433948925209e9,3.749121246896343e9,1.2886598427341044e9,9.800335630855833e9,3.617875633770696e9,4.700312652053901e9,8.4813947650816145e9,2.5899861050543537e9,7.4708242374114e8,3.8036249316084714e9,9.540934952319818e9,6.89774457234006e9,3.3038525790255003e9,6.3066145844294405e9,7.313189034023836e9,5.338350531882694e9,9.535857427638235e9,6.325514813023757e9,2.7181300255204997e9,8.251153831483054e9,5.2300348125991e9,2.2429848577271482e8,3.748363871155328e9,7.078859334567423e9,9.853098646541692e8,6.257449992041486e9,9.776485606697325e9,9.338391019619972e9,4.683953897462938e9,1.3763772902156713e9,5.277567969755101e9,8.119872463369259e9,2.282423833056151e9,5.361660982346225e9,3.58550425336579e7,6.383845132206058e9,3.6074590869024646e8,5.972902739910005e9,8.586273688739408e9,2.6808208289344506e9,2.735432862288729e9,5.462690883478148e9,1.506086212429204e9,8.146978607037186e9,6.232771656336887e9,7.9053588664166565e9,9.251255370109457e8,6.992237265966508e9,8.084204012640217e9,9.17815837281066e9,7.546679265361855e9,6.368384210078352e9,8.40100812245759e9,2.5403003770880694e9,4.49440263234132e9,6.917164826244131e9,2.7277277764343123e9,5.143757848502555e9,9.573914518672592e9,8.855944805040827e9,6.393990236425904e9,7.154702908498706e9,6.970559692329973e9,4.56835658833127e9,2.265080711928844e9,5.091660303590035e9,2.5155911427025146e9,2.0490034976353366e9,9.683426713361982e9,3.814300813814797e9,4.592440527011898e9,3.641658641533291e9,9.042025325014585e9,5.446280828803066e9,4.59279326299036e9,9.993941505512259e9,3.9509502414006157e9,6.584816995726135e9,3.35942203492551e9,1.1676353803804407e9,9.004862223283915e9,3.9549836622542377e9,4.667651190653864e9,3.4897507330620704e9,6.100190603458396e9,3.6920293875511866e9,8.770863793089136e9,3.119276925977453e9,5.17395812440594e9,1.2334661234506917e9,9.544908102174738e9,5.854002925652762e9,1.9147539691462812e9,6.57444084097466e9,2.4991283038313637e9,7.627548472096269e9,6.566881250860712e9,4.399857740842845e9,5.041239913690452e9,6.836283081544354e9,2.4274673179033113e9,5.480738264995439e9,8.480399445320356e9,3.648288321900446e9,2.923161587749069e9,3.0083607679851375e9,7.110806743000095e9,4.824372466522839e9,5.729613962602691e9,6.54882300915146e9,1.060579588653161e9,5.353553430339311e9,8.67007854844316e9,7.407657089128552e9,7.891341438037423e9,9.888715740278715e9,4.82632911393909e9,8.60132670614353e9,5.395249197116115e9,1.022033740332261e9,4.2717445625139127e9,3.779746818949572e9,9.733444280610104e9,5.324507285109439e9,2.1927224083255315e8,8.45476616320009e9,8.850707409847574e9,8.140339619262802e9,4.883692570676426e9,8.90588813025419e9,4.726500814014579e9,8.92836485124652e9,5.1405684844725895e9,4.16380778043715e9,5.354139245859346e9,4.895215283276135e9,4.911188569900622e9,3.422965034815264e9,3.219541299674894e9,7.375137396881656e9,4.559532023669062e9,9.32004674128587e9,8.532766677126368e9,9.795879027881823e9,5.992470473639627e9,4.2111572788762264e9,2.679881471334964e9,2.7465201300171695e9,2.84238901099564e9,9.783631390987831e9,6.335601008901418e9,5.871734416811536e9,5.577367732686147e9,7.880511846523107e9,9.986644610328247e9,1.3967888871489654e9,5.133985094955201e9,6.489161015473302e9,5.680947783377553e9,7.974598739264138e8,9.564764391733042e9,6.49649675612099e9,5.525369814560958e9,8.714122205269184e9,6.8611631062324095e9,1.2187415460282569e8,5.722047012674331e9,2.7541873811396413e9,8.601329748986778e9,3.3579865468299375e9,8.108970744619221e9,7.238879985708916e9,3.1768144540314593e9,3.360317140678153e9,5.578948828072373e9,8.816996386966146e9,6.073217668796292e9,7.140775490850485e9,8.142578964437716e9,2.470699890378212e9,8.982441820786964e9,7.543344323183039e9,4.2288063814451895e9,1.7383697258827047e9,2.118644222835474e9,9.918271532175982e9,4.0981921788980513e9,5.861972432732483e9,5.549005361418231e9,8.272832991541007e9,5.07149997674344e9,5.736607067278458e9,8.790410290281436e8,1.0571098592053196e9,9.429187121913824e9,2.6259272395287647e9,5.524299031265812e8,3.3271633188114204e9,1.1940131719015977e9,5.360318269593641e9,3.175119588861335e9,9.874803882705963e9,7.387441281270941e9,8.486948029998769e9,5.599610224148123e9,8.18502513545104e8,5.332401567737813e9,7.794547757708783e9,6.452279394971944e9,5.396828080947099e9,5.516752490909174e9,4.34396525145619e9,9.66890380349974e9,2.945262290638042e9,5.566344641278609e9,5.679921738190407e9,6.0258255927518015e9,3.954827258651584e9,8.448167672787793e9,9.001867786292929e9,1.1709963148892121e9,4.823346689348899e9,7.60211614842167e9,6.543254649461272e8,9.638892159518942e9,5.898712254277247e9,3.631691389491888e9,5.863639183117986e8,4.033691313684187e9,4.33924678160034e9,2.902758331843858e8,1.0141773847594149e9,1.6688078248992488e9,8.518052339270221e8,9.816781374393269e9,2.929760283022843e9,1.3313544399997423e9,2.443246333696879e9,5.285222160208504e9,9.407115762685865e9,9.093309867365866e9,4.02813104870147e9,7.861920495415886e9,6.308716082463e9,4.893623117093866e9,1.4560390406291313e9,8.094818515023426e9,6.673779806043107e9,4.665298979377793e9,2.6513942800726275e9,2.781603973061706e9,5.057757034303614e9,3.1352829064996214e9,9.093223836772472e9,4.431640812786761e9,2.468018087907723e9,2.151676875461873e9,1.0613350657511111e9,5.061515415277481e9,1.7863439252978864e9,1.0136802385004195e9,9.297796184580969e9,3.1137535331164002e9,3.472538652934084e9,1.938363645368908e9,7.343188652837077e9,4.60240760081969e9,1.5000410042807965e9,7.50391085554671e9,9.052519361305597e9,8.298979303378054e9,9.388114328655203e9,2.2501963744267073e9,6.233482053964544e9,1.280891375339156e9,6.306818401739294e9,9.21959539881754e9,6.428533388417306e9,7.958595357832332e8,2.0814986768829124e9,3.1462568542759027e9,4.953195077649922e9,3.4730898349921656e9,4.0878755499135675e9,2.0176229789407208e9,3.7130056147863855e9,4.2289252173739624e9,6.657124823480679e9,3.4013420022209773e9,7.471527059845203e9,3.8196665982772017e9,6.7188670007874365e9,1.423425095899149e9,6.518912455208834e9,1.029638949326126e9,5.176416553360838e9,9.207074539192442e9,9.002535413795734e9,9.95357063687623e8,1.7889973074941568e9,8.418775069529431e9,7.271975850247984e9,4.126987089027836e9,4.879681354688885e9,2.21963616968861e9,8.197324233543824e8,5.371350158121707e9,5.555294880426581e9,3.941929646858178e8,4.772555647231531e9,3.9416610834118705e9,6.900326979616615e9,3.3649108402652183e9,2.407647000022886e9,1.8479472035949573e8,2.7889701656815615e9,2.5926987565179873e9,2.0457609185094205e8,2.6086267017217903e9,7.912189246057514e9,5.434184634717853e8,8.29223388634882e9,1.9035086051300154e9,6.024128482102697e8,6.891946990221325e9,4.0578759899316454e9,2.0270296003916478e9,2.761849728519762e9,8.805303602202278e9,7.424763874208245e9,9.631889142663404e9,6.270271264529486e9,3.611236065944319e9,4.806717636870278e9,4.759281433398558e9,5.934343603964595e9,3.7003783319534135e8,2.110953284625975e9,7.60704905840694e9,9.704087003077396e9,1.665560841267959e9,2.0413432595052705e9,6.089032858666909e9,1.2134710641881196e9,9.320894202619873e9,5.126775142801034e9,8.726792969789146e9,2.941518008828213e9,9.97305209007862e9,1.1163467323501463e9,9.350009312899888e8,4.676951993136109e9,2.164672322650756e9,3.317788293565993e7,1.913521090944279e9,4.997829477962135e9,7.0224086366477165e9,8.546173960865382e9,9.926793131662094e9,5.093447956210614e9,9.786126811613338e9,4.374330978593837e9,7.51015698192959e9,8.096412393194867e9,2.039237608535245e9,3.7373006167526956e9,6.587128763638517e9,9.026553261779728e9,2.497707759422927e9,1.5752157693328993e9,4.822976692862162e9,8.718425310146126e9,1.0321469803672445e9,5.611695822575945e9,7.422485000550113e9,6.625804444462118e9,3.5228396516326833e9,9.521925143727695e8,5.015314039624396e9,5.011485448793383e9,7.089507572524864e9,7.916430935293806e8,2.7170561402948756e9,9.66789755569885e9,3.575230601270811e9,1.0866548967034872e9,7.973716513715306e9,5.763412499043032e9,5.693108883690585e9,7.682101731001284e9,6.329661571454641e9,2.9997669527428803e9,3.3884795450143547e9,4.1065691966966786e9,7.674653368126738e8,9.83667259429244e7,7.975625933699593e9,8.046379623023426e9,6.660386769402867e9,8.58994832173098e9,4.804892736705467e9,6.367672706059641e9,5.47334586451706e9,3.5130541610674305e9,2.214972856795042e9,2.4547807171610637e9,5.549559000578085e9,6.437205110268226e9,3.2361049253834405e9,8.714262746469622e9,5.012043175253254e9,8.199326199559314e9,5.980452604289343e8]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json
new file mode 100644
index 000000000000..b01fe4fbaed2
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json
@@ -0,0 +1 @@
+{"re1":[-30.14033846669174,47.762233264896395,47.20960913653752,20.278083867781675,-30.462397040216736,45.54680901228832,31.160552782840995,-11.871602438214858,33.75754755846407,-16.21869040834271,-22.640502942248155,-10.389445042940707,28.47913043221925,37.65638069710016,-48.06098582072974,25.3622082441656,15.047506879913968,-37.72761766981063,39.57006393225548,-35.16546513912591,-17.965188209330385,-9.465740318751081,-9.075496879769304,12.550593487568108,-36.3903901622523,-36.88477883101406,-2.9954515786210862,31.665312078567354,-28.28902574854453,11.795806845597923,-8.29605629677664,-23.9267240571283,43.652242931627654,8.668547339110354,-4.5641102631354045,13.776949605738587,16.97521901205586,11.362224154963783,-15.267497216681782,-25.69579390129537,48.7968049238081,30.27407746814025,-31.157193533160708,-38.44582329116455,0.14648113098829896,39.51108277015322,31.096562110812783,37.31781681522011,6.408321469945442,-3.636805064802971,0.5627675712703706,-39.28475816332955,-23.37872387184614,30.90951354060074,14.792448395471354,-16.711540095180247,-16.577610830645995,-41.58647052756924,22.838791611987418,2.0813130558984057,25.237833672983328,14.633888498902536,-6.904213545457253,42.6214809482873,-16.89667432865636,11.93119796723252,44.427826542222775,16.36927024043689,19.95620659062844,-42.74689238502364,15.66316993249562,34.00081411119626,-13.972703583738046,9.017743508242013,31.546950501346473,23.24419962946274,-37.501779780675804,-43.945910191344765,39.0034566424015,-17.350158877045843,-41.75556144120607,-9.076378930673755,22.515849407508654,33.62164753511743,30.59970871862309,-22.07062170109546,-5.389809481882892,23.73639020116022,-18.95770408508074,-31.033534350522363,-15.500486966359162,13.288276058304639,33.58059005350211,-3.424918610673764,2.573395604608905,-47.558818099496534,-45.717745841023174,-1.394758240045057,8.683439650675929,24.403447053989993,-48.988178474656976,4.797703816755536,39.51990364456515,41.46495924748825,45.4222275924635,-40.45964999859652,23.73097756914838,37.108127553975095,-22.307645000123124,17.095265951650788,13.302024071781624,32.799187782592654,7.944980282491322,29.093216409091525,-29.483140300382914,-43.406514341965405,31.732397113261428,20.128155134155577,26.869911797446093,38.23156718307507,26.168513269628363,-41.28360728395843,36.34985990829476,-11.415204429664463,17.739514352833268,1.6207851632076355,1.5587010440073357,-16.119821515515845,-15.969410767029082,-14.789026832635614,13.104758456298548,39.793869327767496,44.00288063852496,-15.93356332837692,-24.807157840727722,6.709691736745441,5.262625568805269,-33.87609920251198,35.615031995035466,-26.556772706185548,-4.322459525858704,33.0083921240126,34.84208292879795,-44.02777887895404,45.265956290405015,5.415925898187901,-3.5532849887149,-43.955029949438185,-19.605898742372418,5.199449590324825,-36.983366196998716,22.07168118403483,-46.93328206974062,11.514038434043997,-19.192537906774387,43.57550949101669,-33.29194995419904,12.475699281191531,40.610643450294674,11.825899156472673,7.047579227134136,26.168433750708104,-45.47476101563514,19.707202261402458,-3.307943381819541,-40.599614679040265,41.23374544480275,5.787799399060475,-17.630502396343637,-37.46093580430495,-26.680500485212356,30.015639983327418,22.246960753186357,-30.207806557142757,-8.02124513275102,-18.43818355789021,-40.00969677437105,-10.145070811480238,-19.12172834596125,20.664027836484266,38.12892821417044,-49.274921643671576,-30.841912911076875,45.165092778058494,29.667452148136036,15.317669636592399,39.52069053142138,21.411486451569218,13.098602495255577,36.55248318898579,-3.479810452746179,-6.343149144486368,-43.458448744947084,-36.46906379593883,-22.76859485746584,-10.010517381080206,20.613837933340818,34.95531161036054,-3.2314022727954708,8.25263826765157,-49.96353045661763,38.0471184197758,-11.886303314594613,-23.445564351375914,46.18433594746628,25.61283705845429,38.03521416577654,36.80224796977373,-16.98918187218461,40.14648385844079,17.349095826830165,-19.10338575505608,8.898722907148837,24.304655813157027,-48.78402797057325,-17.869795996221605,-49.108957712738565,-21.007010825253126,32.486360749031334,-40.73516531575567,45.536470104133755,-7.241729893520798,41.566820840783365,-20.84786034939954,-29.111559091493998,-7.567157836036472,25.326731087844905,-28.074098203173904,6.299010066735164,31.610610524170994,-29.0150601448963,31.887438599860786,41.971397126738424,23.341957479687593,-31.916664314224995,11.20463861084351,19.17689383002312,-25.680196307484525,39.354823135730484,-31.48450109640184,21.007278929038435,19.566321266464143,12.787163800266214,26.821811954995923,45.258885437215625,-40.74521169829603,-5.244134770803711,-28.40565898983166,16.65021067185009,33.360203203872345,46.09278453208722,20.015721359325127,-32.69257675082239,-43.46660825874056,49.64629873027593,-12.435345482587259,-26.6289337816361,-38.76409397585101,47.538746789029005,28.157566741508703,-31.266598099831576,-3.1679671364320114,-43.010934219465724,-31.314542099880992,-17.876234160516105,-20.93016283919622,2.6025055196729596,33.42005966515511,16.025451276990196,21.58025999656668,-20.364824405870852,11.993111393468169,25.777749430932985,-10.800255581552584,16.932965794473077,26.8641496633508,44.3553853963857,-10.190324006429151,-9.32843874115138,10.233446238214142,-5.278201863791551,-12.688534667084262,-37.738382928430845,18.205135693255286,-7.737351876797661,17.022232221231874,10.517439285494369,9.42753446859502,-43.367171510605395,15.128188455755549,5.929225756248549,-4.642987303150825,7.441110451989765,16.590010770893528,-6.1057480400889546,-43.90558895531939,-46.862735959565505,-14.415626937317448,19.17946461333058,38.88893732528925,-5.8899799713687315,-0.19475014216462228,-28.703589782092077,40.7726828938183,-32.394258707290376,17.363187343846846,2.520401508744264,-12.258700948066206,44.94873061961549,-47.74279307203334,-40.805755941098575,39.21817033736362,15.873214999914595,13.137286040101884,-39.31287219863013,-47.25425280257719,34.8103186418012,1.7061701871950206,16.09555692042703,14.875372724021958,-41.418854564719275,9.501727815794638,-27.453695562267523,-44.20007410516465,-9.942196069690404,-16.08340197977183,7.000892642335067,-12.639047882339227,26.47175953351541,34.39892523240867,-32.96901139381582,-2.3347228653941983,35.0581084241754,-41.3629196426281,1.7934529368790137,26.99061802193961,28.76768349575616,-22.48348846772432,37.798148832400784,33.140540077910984,-37.78784182437528,-16.251589533874586,11.634304740230505,25.56189932993084,-32.56304982103746,-40.28279645409025,30.506933444869517,32.91802937891262,-47.01956308039974,13.872388110897305,31.40798926616813,36.20735160606945,-9.14771387266655,49.3080623249983,1.254817401821171,-43.79658876305301,22.181889007568202,12.39430761616697,-3.060617301223978,-48.110933507800624,48.4965148972375,40.09338236298407,-5.859054106621187,14.533624225486307,48.88149659107822,9.592389713500971,14.696718231587795,-41.1644768729178,21.873404164347704,-37.831175169922744,22.549978744998455,-5.794515873833163,-44.74455258724023,40.02037578172006,49.54608069238479,38.172857213226635,-48.669487647151634,37.271865352985586,9.28053825701933,-25.450042344876056,48.72376669243114,-6.8745266496750475,-35.98625708922427,2.9276938366488707,24.244276502287065,0.32112648507114727,7.1933034096080775,-28.66028217351073,-3.650571122601363,-33.20576046731107,-37.67142623934067,-17.54732632698545,20.570224034241704,10.360788365730158,36.435290502141726,36.22931316160141,48.36568573051892,-20.885724293610785,-11.470135523787306,32.65085541861251,29.448760785028412,13.21997094175996,0.8262445463067891,21.613097669376685,29.865482159103507,-13.239561386683874,-29.35224045135242,16.940727396114085,-19.332801006335632,47.131660986805954,-45.734313670001455,20.155989677491164,-5.494280855484611,16.045036052204594,-2.4271933901478633,-34.47515350700617,-43.86376390097429,17.217689715597857,-43.434224578956105,5.019670837265956,39.801366032802974,-37.172312476854486,-8.684875368042988,30.00850290920539,-21.721692274982384,-19.818583408836176,-33.3127766377738,-43.678690929354794,-46.6479508698628,-32.789776501411424,-1.5769342773327324,2.1151097997826795,14.26398303082162,35.08208197899022,49.912661361468935,-19.311452151580955,11.895741376328559,-24.885798465209408,32.30531124784967,5.750149473394437,-32.09921510469409,-3.630508284154665,-47.97776819323963,6.7132232860169765,46.68063503844134,40.46339174264082,25.86254259386574,-19.22832417538265,-26.119015540998515,-45.53111818280083,-5.612693120609258,28.605538895998535,-16.89937977769013,7.5248557951257595,-17.218205039687774,33.8807365009455,-12.805562979066465,-4.457231383979121,13.09797271345974,-43.17519813446019,-32.02543451544234,-0.5594715289756422,-37.363935902538756,-41.94714842920105,-25.93697148982819,23.10700939681233,6.364311914163913,-44.33092877320235,-5.116672942302593,20.439359504356233,-1.851011248997068,-27.218435259880824,40.23339103024166,-12.567477290133425,48.22012773764537,-0.3836377864809819,-4.465873724863478,-46.08704323537032,-37.07847758853738,-25.76216294412166,42.375111546474315,-8.370598668839314,-14.376584170260344,-42.94239203600804,-35.433749064754664,35.231983950704645,-17.23344976797887,21.27744722014492,26.31618018019259,-42.37637348058203,25.99842494417821,25.216952521602934,27.93673769091565,1.0232573428071916,37.73151889487093,-40.30002271188977,-3.225383467203258,19.407701482279293,2.0651621478727975,46.45000040840256],"im1":[2.232002337955109,-47.91465747591691,-30.065283556448474,-36.383490472146306,26.979596823095747,43.83608661093578,28.258183652858932,-23.53636060716401,5.881975668323577,-19.623442347567334,25.476995276060606,-44.78305416708255,-48.842248884052275,-41.14197949200177,28.97131281581848,-38.18628533567974,9.830525478640027,22.495402022598427,46.24958963362266,-20.65813289695939,-1.8927025071954233,-3.7897534306137146,-49.605317377394,42.971711151384625,19.948421172226716,16.364704382149796,-46.248083787103866,1.3420524359581094,12.073827806897476,-37.46388918354422,-7.221788353237017,43.089037293281976,20.375972454717655,-10.34037683949618,14.432934808060097,44.08326607645935,17.74053075654618,27.26851471077748,-31.769998125504706,28.18178556773819,-22.506817604176575,-33.42196180135956,-6.430235678431515,42.311338397636916,-39.50315755730842,-43.271289202381034,15.825456727958937,24.16016883325392,8.418287350498353,-12.481482277708025,-46.4181490903926,42.24193736637922,-5.061030077133587,-44.453328915429815,-26.149660399078346,-32.68596218023664,11.615040194469216,-19.79985662057844,-10.868857114546252,-6.854081843155647,-39.74674615657313,15.412973730014727,-35.92242764046806,-26.169310333324557,44.77443842198112,33.9390141046684,43.956993973232144,-24.26425808240057,5.06691183962532,-36.81451832886495,42.934843366949764,-31.608052909527075,-39.759325443029624,-24.39282015470209,47.786360476903894,-23.197095219575615,-33.04004836532229,-1.7263440154466778,26.861728762979027,43.609392029202525,-9.462655936714413,14.982748011296692,15.322516681542808,27.390516807337463,13.77023205859819,20.130050512843624,22.21199045562409,36.06439928063105,-19.7181242901877,-44.1380393583779,-20.464460617582702,-19.741193170601324,-43.629765558143596,-49.22247157016601,32.04842144892861,14.063741141318616,39.36876529843978,-43.394838887207996,-8.331360304306799,0.6900841047651411,-7.932719650246092,-13.829151951135188,27.164665967428135,36.592656168529246,2.236338548147465,-47.00888164688165,-5.53142126135964,33.47669363708145,15.726572050103115,47.91562131559709,9.845194736770146,-31.324594837591068,30.129316425976143,-21.764932221304967,28.74601521819855,-4.939365977539964,11.090363725024858,46.14040855624579,47.84312561146939,13.64742152154389,24.275873811011124,-43.445991906759865,3.0612161150621517,-30.826828145528207,35.60065223983179,-24.669741098451148,28.674843014507687,-33.75992388181669,44.40202222575505,38.97656495606519,-23.095460085018637,-39.46028549109006,32.53303849164551,-11.701618359478836,-41.85599440725386,12.404801199237014,29.42889783365237,-17.036933008861944,-19.362454240699023,-25.82221410564227,-27.023902781893494,-13.5135573982147,28.22275037164148,24.168636997680977,27.595401635290003,26.445079341017845,24.394436392792386,14.183528304091979,-14.439813387147069,-27.797983799704472,-30.480383773841446,47.08868720161928,-2.3694912410236455,-7.140685952799075,-6.516392062123543,46.80775458080444,-32.95251824863499,-16.658213177988614,-39.41793157849429,-37.29258936500226,1.1025254255347363,14.548815641697558,22.965066266443927,-41.95102779902441,13.137992130534705,15.500896814461782,-32.07562797146748,13.739023266467889,24.774183083914863,-18.596262035861898,23.853063425477302,-13.062151839527715,-44.36577399288163,-44.35704169843812,-39.506720639322694,-44.79401432689188,-23.102500159760275,26.91675560725068,3.058428067669169,16.591134053429215,-8.29614394687507,-47.9051339072748,-31.78607698758862,-27.61562063067594,-17.317530162345975,-4.778310021681662,-6.857173705895782,-45.0069709968482,-22.152906147771223,-14.636199009827145,-42.761766472760414,3.892625816359377,47.394914454891335,9.154721829481673,-22.87478133612597,-8.106925643123866,-46.07972706987737,-49.50487031378591,9.912145058275911,-40.17013463776698,-30.12624499831209,-1.9417733744524597,-36.46108969300475,-12.116869854004783,-22.407784106736038,16.67971590533371,-5.11394397608305,47.26375019501293,-18.122276966655793,43.66352793582121,-37.57409452689665,39.63552449306184,8.726247261834587,-29.50500027915356,-29.256014678335806,41.6451796330346,-2.5161536154883066,-0.28559015136395516,-0.6072315893882134,-3.2710092766622765,30.61077047199811,-1.7132011694723701,-4.172676437580122,-36.47418428551563,-7.362099818186685,38.81037549428615,3.459529888254309,37.2703661313427,-30.692318966250365,25.411093976124093,30.27980493872164,-32.418552439210416,-39.346653854507096,-23.849204494786626,18.33142017801913,19.00517800528678,-40.88622131278359,-48.18646881382265,-3.456619712310058,16.22192571882917,8.717792161669244,45.422020828778926,-4.876944951591021,-35.42168159088034,0.5389742889106088,-19.388531436382028,-22.256030445841503,6.751169030818019,8.731316027972902,-15.494886705415645,-22.028835313800023,-36.27650636854026,-36.98695054191906,-29.61726285258367,6.48748458599686,47.78284358119626,-17.92411916025194,-5.375479426862931,35.22010382244895,31.96454980049411,24.8856194532503,-38.36115218247561,-43.3973958799413,-31.56306078726,36.95005895412203,6.852123133353103,17.73376810356109,0.26601365543530164,-46.63253830807218,-44.795081614027175,21.113790454921414,-40.01386477489211,13.371633551783013,31.03702326388047,15.788368624063907,2.289768511822153,18.004466596277908,-13.309862806902018,4.783361370805871,-42.029980818419055,-44.30697161715958,18.34024173772059,28.554966358303403,7.4585446597886715,19.808359984912755,-12.788882208029406,7.424327409527166,-1.7261294831339953,-19.046621368454264,20.68912051637743,-24.059170123439145,25.076025866937684,46.2739980310281,-19.188834278320023,1.0107431502758715,-32.58344495389065,46.70584042581804,7.694200709504287,-26.463767260181527,16.844315723116807,-35.64086564986169,-38.660745504666636,30.92565896580912,49.5026588604303,20.71269141798909,-24.33221082706091,-34.92690244418204,38.79770347154407,48.81142831394894,23.84074168711922,-12.115510172468333,-2.617413689471938,23.671572792861312,-36.84463986609724,-16.870249638103765,18.95323204220678,10.637131734623559,16.643009992226325,-23.768627481172665,-6.071039924007849,3.2366132943245276,-3.8587305995308014,10.991861779961162,41.81610383093843,44.09409772025566,34.30458083828225,-5.66688446262944,-24.396345408291943,13.011269032100955,-10.994037433642653,-16.519132749793805,16.393473023714066,11.834161340070573,4.128362759083068,33.07156673376073,36.31067953727937,48.324762518245194,32.10470120170851,19.77720043668549,-18.650890836728863,-16.805014345058822,6.647558673627444,20.06945045557596,-7.0972842716013105,-31.1871380331047,-7.308827603910409,-5.224292246347936,39.81613101296885,-39.23250594637133,-10.310079225789401,-40.859697735504966,-47.53491031452495,-46.46153520523828,29.83512113941849,3.9043842392976345,40.07676409079302,43.89906848758804,37.11062291468514,29.412442704053205,26.640446734624234,10.632508686399333,41.55328466167444,35.49654706144793,36.20875462774738,-42.66014067789604,38.17470070277916,2.330776109986701,19.99129450009592,12.476487330149112,48.72141188483553,-31.679850883223825,34.89529309039271,14.854682573451612,42.287226445441334,-18.7767644728676,-44.13946284299168,-32.679360132297695,2.5248277934875816,-14.082278643343194,14.377836452302105,23.795702190107207,-23.13654939869737,0.9981488208415072,-40.79269895924289,42.66898376024122,34.64449446952767,-35.76265954140927,-34.41334660822637,40.25637679222544,-45.71710071090588,27.66173465088039,-46.99038979151179,29.816889632210476,36.65262623911386,-27.88984786357156,24.85418409832178,-38.692343275300324,-8.949603743724978,-44.82565493673828,7.818531928952822,40.22593123945572,12.24001159326913,7.761781884352217,2.8171826219551477,-1.9155370508413867,-45.85222435902364,42.43051374440779,0.4578135213917349,12.507627935158169,47.84711423044216,-39.89880409058604,-16.95999901347961,-12.498686190261552,-17.130732271136438,-0.9359487872089929,-21.055310139777074,-8.694999409354551,-0.9998784114134764,-25.497236458815998,-26.590827160262986,-35.8251651927426,4.908337269328875,17.973233270974617,44.84018111252212,-4.8363263609543665,30.52635047912844,-2.8241117045258974,36.44349073431398,14.905792540491404,37.248019485638224,-6.727351938249285,25.1937577719614,-27.512198990998083,-25.278921272129608,-25.72362538778249,-20.544672277602583,-28.543583330074018,28.74642074759052,2.9594212064362395,-1.6143818471450757,-43.39275737252055,-0.44059484785712044,-35.857939969156604,-35.83741460211718,38.070484110037526,10.905766418339013,-18.362649605288915,22.084237906877192,-47.493320514890684,-43.2238787346647,-40.941916389045865,-42.02383271462633,25.760378590644038,24.83874019005009,39.985365572051705,23.86266798482025,-44.63576254064061,-31.296233378968317,47.92292718436816,-44.40476788069808,-48.852274217008684,-34.10332889882481,42.88007811770336,-44.01684765459603,-5.1152690418204685,-21.44209126705432,-20.00153785410077,22.14532722762938,-23.263863862122612,-47.077317098565466,43.67547564807205,-15.506377567725728,44.95863234995329,-2.6982960519976373,-11.40969245844019,34.06997145670536,-23.503514052736886,5.009661467330993,-23.26565612098256,-2.6211210944699275,15.869595667630492,40.222651164472225,-20.649777168663906,0.7670984291245659,-37.63948861687503,3.2678889216314246,18.58409149864481,19.976077710559522,10.121203231792109,-12.331731928577348,-33.85879588472991,-44.90281553550764,-41.7934594123721,-2.401713170774613,5.356841897000386,-13.221210580879728,36.309107348251786,34.431307118940296,-39.26555756228875,-4.079665257362244],"qim":[0.2199455,-1.1701039,-1.3282101,0.20800054,-0.57683605,1.2176639,-0.7169144,0.14385888,-0.72988534,0.069426596,-1.1037648,0.3976887,1.509515,0.8954514,0.96876216,-2.194519,0.30795735,0.86426926,1.3414758,-0.6257843,0.06536864,-0.018727062,-0.65405536,-1.465524,0.2609141,-0.72274965,-0.96398324,0.34241778,0.43697372,1.3910897,0.5307347,1.0867313,-0.84326875,0.48356405,-0.37732247,-0.78106266,-0.5828347,-2.0254328,1.3139123,-1.3106034,-1.2995429,0.10043813,-0.6806816,-3.0709443,-0.7226168,0.550484,-1.1475828,0.9025307,-0.19207785,0.16225481,0.96543,-1.7955586,-0.3692998,-0.085227415,-0.87359935,0.71204865,0.3060322,-0.7469148,-0.45732003,-0.16609639,-2.0183604,0.6343529,0.48910597,1.0621675,1.112641,1.7710211,1.1464173,0.54274285,0.13289392,-0.5446179,-1.1055251,-0.82081383,0.4165852,-0.20465174,-0.44907314,1.0076226,-0.7947429,0.7261525,-0.7084114,1.05901,-2.2606883,-0.36059776,0.62974125,-0.74424124,-0.7591926,-0.53932333,1.365283,-1.2696766,0.055644676,-0.14260408,-0.80421096,-1.7881954,-1.131858,-1.0612146,-0.4586102,-0.7010015,1.5736549,-0.5342756,0.06244369,0.19583698,-1.6836586,0.43883467,0.5155822,-1.1863549,-0.71316266,-1.1119121,-0.0965593,-1.125854,-0.2636949,0.5827776,0.97579294,-2.6724446,0.84710765,-0.2073513,-1.5162439,0.16799119,-0.59244376,-0.3002279,1.0080944,-0.56584567,-0.42401513,0.3587687,-0.4190624,0.5546189,0.83676594,0.18781072,0.613612,-0.1816984,1.1613101,-1.2432207,-0.48033348,-0.79034567,1.0458459,0.101175845,-1.0035465,-0.2835205,-1.2767229,0.1759509,0.116274655,1.1753565,-0.90059394,0.5413497,-1.3131913,-1.7416774,0.56305254,1.155806,0.36149612,1.5019208,-0.33348465,1.3343992,-1.4182543,-0.43474814,-0.47860667,0.5140797,-0.20425776,-0.75706905,0.83352244,-0.059932567,-1.5451696,0.8340781,0.013181789,-0.07319373,0.08277099,1.3091538,0.18677406,0.49791658,-0.22918886,0.32001778,-2.3999157,-0.38671863,-0.6400937,0.5302486,-0.18735652,-0.9189529,-0.5685578,-0.7311719,0.11587782,0.41850543,0.3925618,-0.6743423,-0.8384977,0.045043074,-0.7754357,1.0314252,0.2503911,-0.4100392,-0.5135096,0.42608598,0.1716424,0.5850197,-0.9852486,-0.15161751,-1.9304731,2.0755959,0.74047923,-0.49714595,0.32915512,-1.5692028,0.16575883,-7.0785184,1.247234,-0.27266243,0.8598284,-0.30442375,1.431455,0.6925438,0.35679352,2.3154674,-1.0251973,10.986337,-2.6497483,0.17452525,0.19546281,0.6923833,0.846411,2.258208,-0.34464696,-0.52209246,0.3859426,0.41741997,-1.1268594,0.0910688,0.52316177,-0.82534915,0.67826694,4.4516377,0.027918898,1.9646724,-0.4204763,0.01660087,-1.7607478,-1.0844487,1.2929581,-0.15497461,0.18806519,0.42966995,0.915646,1.2713658,-1.5290102,-0.54230005,-2.053581,4.3592157,-0.26186132,1.2441802,-0.5186076,0.24693309,-0.6873718,0.2504302,0.12938279,1.0961087,1.4911048,-8.454496,-0.7764118,-1.5854266,-0.3695631,-1.4446477,0.7497911,-0.7333746,1.1041578,-0.6981389,-0.46055216,-0.70665526,-1.326491,-0.9470933,0.59246397,-0.7520251,0.31118768,-2.660577,0.2948595,-0.23166151,0.09807945,-0.18000515,-0.5577589,-0.31955037,-0.020200578,-1.1854762,-1.6678194,-0.21613418,-0.13286364,0.5886943,0.2907401,-0.52533084,-1.094358,0.69782853,-0.04468365,-0.3896162,0.35101527,0.42205468,-0.43191355,0.5925427,0.55687636,0.30056903,-2.3114016,-0.46482605,0.120921254,0.41389742,-0.5481067,-0.3342375,0.31985632,1.0561258,0.6852358,-0.3882336,0.42326155,-1.2164093,-0.6770842,0.57619846,-0.21948817,-0.4819055,0.121979356,2.7702327,4.002547,0.5519338,0.40243745,0.6716584,-0.37919378,0.7654558,-0.034829684,-0.16043134,-0.362993,-0.33783492,-0.7793255,0.2739426,0.66229934,-1.4425428,2.7326102,-1.3458999,0.40767124,-0.09917983,0.014093629,1.1555814,0.3212123,-0.07185783,-0.2656539,0.93202865,0.6290884,0.10060589,-0.7809432,-0.16823131,1.5946776,-0.64115834,-1.1033398,1.1001939,-0.40307686,0.059011184,0.21321976,-1.5644581,0.4674196,-0.7448893,0.4919997,0.3616674,-1.158998,1.0784056,-0.30829,-0.619993,0.06241079,-1.2067051,1.4915994,-0.33357027,-0.9560258,1.2404227,-1.9786651,-0.39488494,0.18064427,-0.20734496,0.9303663,0.4370112,-0.19149165,-0.6694134,0.5323116,-0.2416772,0.032506544,1.2147093,-0.32487738,-1.3371323,-1.5186279,0.61460084,-1.1117673,-0.50773346,-0.2940851,0.5919909,0.9456116,0.12624912,1.174146,-0.23202576,-1.6510735,-0.531672,-4.161492,-1.1009973,-0.6724615,1.0455481,-1.0839566,-0.080755405,0.20077991,-0.67660683,-1.002098,-0.08877688,-0.45242745,0.7381289,-1.6890473,-0.07541932,-0.29733813,-0.16003138,0.036973607,0.47341064,-1.019941,-0.49258426,-0.37315655,0.39257386,-0.5183016,-0.18793625,0.2973867,4.4794745,0.07468998,-0.32904428,-0.056125354,1.5173535,0.50071555,-0.042102568,0.31485683,-0.62923783,3.661403,0.24857782,0.33111453,1.2579879,0.26301274,-0.6325738,0.4757974,0.40233186,0.71087193,0.35900113,0.11609256,-0.37140593,-0.08734452,-0.94356555,1.0352281,-0.6849831,0.39942548,2.6812963,-0.3843366,0.05551414,0.55310035,-0.21611458,-1.448368,1.2087907,-1.0482131,-0.7805759,0.56824213,-1.5771482,-0.74410385,1.3968426,0.8944047,-0.7935502,0.70956063,-0.73542905,-0.1827902,-0.7947638,0.40066168,-0.13434765,-1.0501647,1.0588866,0.88145274,4.1300974,-6.0596056,-0.19314715,-0.2567525,1.8051225,0.13457096,0.7796315,0.19005314,0.7429248,0.055150434,-1.5449351,-0.12999052,-0.33325264,-0.2631611,0.27145737,-1.193807,0.6308109,0.66821235,0.6357101,-0.91178817,-0.18627761,0.8338366,-1.0216633,-0.91002893,-1.342037,0.11002923,-1.2874721,0.28623095,-0.95719665,0.6464905,1.2033013,-0.91017365,-0.019011172,0.622222,-0.8122714,-0.30836344,1.1328865,0.29178497,-0.19511354],"qre":[0.4846264,1.9219998,-0.7504016,-0.85373574,1.4318904,0.51076007,-0.8125669,0.5048919,-0.6482634,0.43056592,-0.64489293,0.5677769,-1.2429173,0.6476396,-0.19072385,0.9962262,0.023322977,1.247988,0.40463492,-0.21538992,0.83852756,0.21760727,0.8966363,0.62170994,0.7700997,1.1800029,0.98034114,-0.32976988,0.42256013,0.73538625,-0.18856566,-0.43636274,-0.21597426,-0.2289372,0.26827446,0.29701263,-0.07961503,4.787673,0.6721077,0.35430574,-0.0842778,-0.83186287,-1.161458,-3.3921607,-0.25502118,-1.7298777,-0.26620567,-0.13280003,0.030296694,0.16437134,0.76449454,-0.17022371,-0.337832,-0.9526625,0.5328935,0.62464654,-0.05795364,-0.2500852,0.04475726,-0.12749822,-0.61500335,-0.6852732,-0.45825922,0.50873244,0.4866597,1.3810577,0.009185613,-0.21128818,-0.3548054,-1.3261895,0.99701995,-0.17959481,-0.9101989,0.43588573,-1.0048498,0.7188656,-0.15773891,-0.56919444,-0.74140924,-0.00156332,2.5256155,-0.18459998,0.26296994,-0.7645219,-0.8710893,0.3865747,-0.50096387,-0.4280469,-0.49272865,-0.7630955,0.39748716,-0.814603,-0.7022599,0.12387144,0.2808044,-2.1607633,-0.36771566,0.43597078,0.21575868,-0.4397521,-0.26923627,0.066757,-1.6436865,-0.13040867,0.4512192,0.6448824,0.99272007,0.11360741,0.62428546,0.906384,-0.63014597,1.5382457,0.21843237,-0.7328716,-4.761044,-1.811753,-0.2764563,2.3158035,0.7083378,0.7489131,0.7255859,1.070137,-0.81812686,-0.22378899,0.2268263,0.5767318,0.8005884,0.9042009,-0.3448414,-1.2607638,-0.1555503,-1.8313626,-0.34061727,-0.34074834,-0.13279171,0.0651327,0.79880565,-3.2279992,0.87945634,-0.46267453,-0.40177697,0.4463891,0.5303792,-1.3843714,0.9386819,-0.18345697,0.21104601,-1.1119521,-0.76453906,0.25850707,-2.070762,-0.8581468,-0.7223645,0.049748752,1.3601002,2.392241,-0.15304849,-0.55661213,-0.6562965,1.3767643,-0.15178564,0.5220456,1.0730411,-0.07899209,-0.24207862,0.7519,-0.8921618,0.056977104,-1.0203129,-1.0361723,-0.24394366,-0.6642852,0.8329164,0.08172596,-1.6507072,0.94900674,-0.7561413,0.16072012,0.2938715,0.09254596,-1.7691965,-1.2945831,0.6797587,0.7688545,-0.98287654,-1.1871562,-0.9488277,1.0450628,-0.46401718,-0.4445917,1.2782446,0.005186007,0.04952911,-0.06460555,0.26945886,0.14005668,-0.9276453,0.22801197,-0.15480463,-8.960213,0.67431456,-0.98430705,0.92297035,-0.8265092,-0.44713917,0.26799995,0.48762086,-0.43531975,-0.0116029205,3.5874367,2.535037,-0.7187904,0.1622342,0.36121467,1.6496526,-2.4906468,-1.3933415,0.17001012,0.6322002,-0.5668246,0.31361404,0.26056895,0.9171871,-0.17311293,0.8646388,3.4606602,-0.8039233,-0.3048794,-0.23139708,1.638088,-2.612556,1.0180993,-0.23799181,-0.79211175,0.57862496,0.10642171,0.24780294,0.29739064,1.7614526,1.4328895,-1.3483202,-3.5716226,0.08807198,-0.91888165,0.48226056,-0.74974513,-0.64935833,0.46879748,-0.7597074,0.1588561,0.12456312,-3.402465,0.98955345,-0.77160555,0.7685677,0.1435908,0.0464956,-2.0106058,0.34829274,0.17821412,-1.0666411,0.18207039,-0.55456585,1.2323086,0.9190447,0.45436463,0.1853645,-0.010027442,-0.758183,0.67482805,-0.8777123,-1.7472582,0.3310205,0.4938921,0.33689278,0.45170105,0.84398484,0.4444082,-0.15397409,-0.6285571,1.1072426,0.17504013,-0.11668941,0.38018987,-0.42453045,-0.22169328,0.06845821,-0.15710576,0.86532396,-0.1282685,-0.0032091727,0.20933624,0.89054734,0.4249401,-0.0056180195,-1.4605943,1.7915318,0.22684059,-0.5671648,-0.9501855,-1.0375391,-0.5963023,1.0073705,0.47122365,0.2967194,0.14297041,0.94158083,0.54974806,1.523878,-0.84981555,0.2728102,0.95637906,-0.43578845,-0.40767634,0.93402153,1.1350071,0.83172256,-0.23386626,1.5207636,0.17667742,-0.49825215,0.20013724,0.18601947,0.10923393,-3.0027375,-0.5652659,0.037416004,-0.4030438,0.6745335,0.28352147,1.2608945,0.42381376,-0.8539831,-0.13819806,-1.3056257,-0.8055898,1.0888445,0.91749233,0.08937013,0.82474935,-0.47325313,1.0533661,0.70392996,-0.566251,-1.7279752,0.02047309,0.62290096,-1.2582861,-1.2564965,0.025258727,-0.14514194,0.7095102,-0.9350571,-1.3195629,-0.03465851,-0.36435372,-0.8208573,-1.790524,0.26659587,-0.46958336,-0.89230806,1.2684711,0.7048275,-0.65714896,-0.06704808,-1.5732974,-0.13842818,1.1896561,-0.36570966,1.7739553,-0.8914946,-0.3312155,-2.1771617,1.3211358,0.2612681,0.9852793,-0.74240226,1.199163,0.24082826,-0.84117335,-0.79551315,0.37776884,-0.96027213,0.7386045,-0.6710924,0.5228255,3.2164812,-0.02733014,0.3566201,-0.2249545,-0.9516046,-2.2717032,-0.7432533,0.4232513,2.6594937,-1.5958627,-1.2261564,-0.08337241,2.3156636,-0.77583295,0.904645,0.3073951,0.16041666,0.045417972,-1.0213844,-1.2015381,1.4261916,0.19848648,-0.18082377,-2.290154,-1.4220871,-2.3725138,0.23869339,-0.4186218,0.08939608,1.9078319,1.4883819,0.39862868,1.6893636,0.5266899,3.839965,-2.6914542,0.3573005,1.2564279,-0.28161108,-0.30558637,0.48067552,-1.6583197,1.8858147,0.89670914,-0.09069761,0.47196725,-0.5919165,0.33245155,-0.25659183,-0.44699118,0.5114854,0.80865186,-0.87945276,0.07667816,-2.071617,-0.11090452,-0.10729677,-0.4615968,-0.77270234,0.52914774,-0.16419639,1.1693292,1.0228906,0.07736935,0.5194984,-0.7479053,-0.9018781,-0.09269623,-1.5303946,-0.1550344,-1.0377012,-0.646425,-0.53091216,1.0164379,-2.3615983,1.8862205,-7.6152315,1.9759024,-0.45257723,-0.7757803,-0.38023055,-0.31687218,0.4602994,-2.6512172,-1.1590044,-1.2624582,-1.0874536,0.15736848,-0.81344163,-0.69928455,-0.6151219,0.93725264,-0.93513227,-0.17962112,0.33462417,1.6121842,-0.42970774,0.38917178,-1.5481056,1.3291929,-0.5418642,0.62392503,0.50664335,-2.5282948,0.7188039,-0.83048874,0.43248615,-0.052067194,2.5532067,-1.0296658,-1.0733224,0.5368964,-0.9797016,-2.352631],"re2":[-49.83740174893394,29.20353959909157,1.9365583528958794,-32.222479174380766,-24.834401810003282,43.95614497328707,-38.815809239697856,-34.032688084695984,-27.4685781740159,-43.87641351322629,-8.273189602087086,-49.338757083769714,-28.540841320111298,-10.19666373324958,38.19224326099081,18.777529679258038,35.41911708741381,-11.994925432506975,39.756865947744785,46.80794225858868,-21.470166233220557,-41.69165228346863,19.733957845245783,-21.770743878077504,-34.515773258634326,-28.907708391372445,22.03094600324738,-44.171710812536915,-18.072567851885026,-17.545436841333597,-7.150827982012245,41.75808928489677,-35.11750219127047,-24.40130849974459,-31.119707222013815,-43.449714791306306,-33.78641973962421,-0.030784601701462577,-23.876099561547235,-24.977737832471313,14.821553344089196,-40.65145325862356,22.382853201033157,0.02286108048278379,48.54864315112056,-27.968206092137248,-19.050930805181178,20.24698146366184,-37.62888593462033,-49.17028187545704,-29.26675548970562,-21.260538337018087,38.98849830512121,-28.04641692357672,29.343539450999174,-37.57571404694454,46.54270045275524,40.59957786975022,28.382167184561624,19.913289626734993,14.533196351239738,-0.28778158869653225,-32.068377776546896,-4.407514109422131,28.203639343952574,15.18375670551093,38.65095908086592,-49.01908268207673,-44.63470656017064,37.33618427293774,-14.370797003011305,28.099503291083465,-3.837511217765666,38.48019699497853,-43.88308328254418,-4.349969883881613,49.00828706320287,27.911130911201283,-45.59687065810134,41.20348890431194,-7.316835091543815,-22.71216842398531,33.4320405046339,-40.48672816457082,-27.793718817504363,-44.03389900114884,15.615290093863337,-31.164890537259893,33.52800962525892,49.73995130782764,12.794633690062383,6.339042844738074,14.54140266052653,45.38802178897525,-48.327619054415,18.00372447047023,30.159231042087185,47.47789062498566,26.823768381317464,-45.72622816499222,9.130928776366517,-29.17506024134221,-17.170073608492295,-34.27249880389283,26.538210448421893,15.844137476065313,24.217853934104554,-26.142377238837998,-39.35257948769271,37.39274796651361,0.9076521927317032,14.110664822624173,35.617494588919456,-28.975588865241942,3.8765713539613884,23.50343394180379,-35.89705541210789,6.00765015177781,44.3106065703536,23.732746470967143,12.310083379726564,-46.915607682216965,-36.714392784438765,-40.65756049228073,44.986653767907384,-10.053164681699279,18.519723064710476,-9.924167385093384,38.8887412489313,-9.508719699453984,35.52177333078505,-10.478665617422003,15.734987430274856,33.601499218426866,44.20502967372839,-36.395318241384956,-14.712119015982474,10.176537168121683,36.940102481026344,-11.321102272629702,26.811705968275064,15.069435912055965,-9.2644342377491,3.8095189509504976,48.43125040377136,21.592438006262157,46.04835898853217,20.095742086393457,28.466321788767047,-19.350763345113798,19.019396010899953,-42.5886459006644,46.66155826712347,-11.614018447786755,-13.096232770039542,10.928643096720016,-31.149951744022676,-18.97123755309287,12.154518400466984,-5.720766758966633,-45.457478022125805,45.32830346915034,-40.487552014297705,-32.83314478688773,34.81374101635765,-28.045504628880668,-34.692377856278846,44.73408667916716,-6.097566931081786,37.6122817629755,-18.66821256439075,-37.18674836122153,36.82787175143409,44.989847742073025,11.713090595832462,10.628406003166937,47.124033070683524,47.93710209559242,-18.375666704136172,-20.02090433214819,-15.783758232626653,36.73041086138791,3.463507657938422,3.7716185341765893,-32.55976602202503,-10.285554199711456,-29.19080217230494,2.511968527713357,-40.36536645725376,-45.95840278133614,14.467700866858408,-27.07331121761525,-25.11197467056333,4.952750667384606,-37.160326231986915,9.852253635326747,-35.39148449921203,34.06532855667325,41.66489432313821,1.6136076628378433,-35.45036722541003,-35.391501221341244,-26.597248915985983,29.733047632028416,-23.444479001328165,33.39555409356289,45.80458598902743,16.829173742445036,17.862132218694697,4.6696748230285365,10.674225424134661,37.74086034702927,48.80747606867588,-19.101708943580665,-30.612709740280543,12.258071177003316,33.63427773317211,-11.351515533674437,37.00777052463373,43.840592030019025,-14.773909094943946,-26.814503062318018,32.236604254852324,47.40498865759247,-24.9778863852929,4.61048766430725,-31.316697208182298,20.689492374596767,49.698600295322066,19.45247217539088,2.265674961450493,30.562327086761883,-35.21354888621559,-22.70816201357775,-40.57610913308574,47.760957983563756,-36.324416478880174,-40.41482203534048,13.713016814099433,-22.967598238065612,-7.659650328697019,4.034127854581307,31.48612846352033,-28.72391422748364,42.96272639274372,41.34346945830566,20.917708991064913,-41.15527736933559,-19.39669835279405,-9.52531828981882,-12.106715467133178,2.872746814761115,-2.2970153664575577,25.891379747650262,49.16860180088108,-33.59941489905577,-26.007818905167255,17.876609997458075,41.36299800321159,-33.31859274504466,16.21618150396739,49.823014048457736,39.3874506915637,-3.599985369070424,4.568635377802302,-18.993655570265723,45.73966564801384,-0.14732325511275235,-39.137074141161655,48.992776979786,25.57092873969819,-4.457363006675699,2.5550126549315237,-44.07574754696401,47.282113947601985,5.853219530529877,2.11998228267084,-6.764380408724456,19.36141820554029,-42.03509122403072,-14.289077209589628,-38.66683540172876,-22.163881309012023,19.201932453505904,13.168673719731252,6.016666149745561,26.00549678219484,-10.895000812960497,-31.325849158090456,28.07358572659649,-43.26371312479998,48.93384708211687,-16.352156193581088,40.261544311804045,10.681572054948305,21.97388846902632,-31.21243342343928,-35.801257075182015,-45.620880908685656,-9.494337828283982,-11.8440435951741,29.874535753805304,-13.254796848131456,-24.094942484229076,-43.25137068492353,-32.73632260870957,10.739992816951712,-47.59237617362607,31.856105814846728,12.69797615125048,-3.7046187232380987,29.57683768437977,7.414621585711188,-48.763247216833186,-29.839058410547135,-20.87653910965216,41.24537916839732,-38.15757170027744,13.54288107292846,32.19289393264458,21.17179217938569,7.337819334508779,4.591673823097054,-31.12946493704387,9.120936208552486,-17.40010215915091,-12.221550225840502,43.61315310010016,39.63027280707762,-2.0848774988260104,-27.687950885132473,-11.729990644259125,-41.360813474295696,10.773017161551671,8.790357995624433,-27.44711644055393,-3.5731118462503417,-29.915669959934576,13.687380321144772,36.00382673715583,25.271744934477425,-4.226396347674665,0.15229027019850605,-45.949507972980456,16.3683669933296,4.334095204793577,27.306224364579748,-33.2432763770967,21.84562006665655,-25.70288465166216,31.368729526518393,-15.346250624059387,23.600025543141896,-39.311811066788096,39.28042878882252,-20.393712756770334,16.308019708912283,-10.421690546852993,-29.373887745725014,31.62736878403092,-13.650500292650861,19.51810063517665,4.31160705875282,-35.92489656833098,-49.38295795133495,0.5967535006355931,-44.433125843340136,-33.46256574592896,-3.2556652288304377,-24.610814422289096,-26.55500771149928,27.949942546080663,19.108179597026464,-1.0390426630747882,17.460464125749468,7.773601023841273,40.546485178612684,25.600591747901333,44.13216108442258,28.2785596550694,-10.647456734520091,-34.781063997932215,15.529154845369348,19.399229836190955,-27.3012030261506,-32.82536620356138,6.216187155575959,31.883049797639003,-48.97065001542773,-35.26011012944213,2.8186224034496092,8.448948418203052,-15.693703274687863,-32.050505480398314,15.4569929683893,-23.49569382426897,-24.469990242190008,-8.816234432616831,5.983031478921234,-42.66140761892696,16.188897012536415,17.526535294354915,15.480291649536142,10.236550530696285,-13.703059938744829,22.826999024609506,-26.54763992531879,18.30504919019866,-9.912240628060843,-22.14549029795192,25.19118173207491,-4.817847861422862,-35.88909478246117,-3.8094453270215993,-14.759947282843925,-16.445323626313332,-28.240003750176378,42.97779572118925,-27.56581402683933,28.775497999918485,0.7696114275226194,13.861430705166946,12.002036369798738,29.771471427059637,32.630911211505904,-26.855123708436356,-37.94298926772589,29.910284202784197,-19.04978265452889,-17.182573449660552,-29.39480769430911,-23.17425583997118,-16.87191158927145,35.48560368817324,-34.66877332771205,33.938269816079085,-12.623614748619026,7.261478571611725,-32.07767810691519,39.200509924316734,9.24341001264407,8.437522326347036,27.06292564017157,-27.725149025155748,-44.80205868061734,14.503981519944148,-41.96245791579677,-14.868590475771356,5.389431720805462,-32.649258014766225,-36.9536487449335,10.05293526896616,25.454277427626963,-34.515804537385776,8.015809081513723,-36.93520138803012,-3.7139667612213287,16.255114796962857,-41.366561786037515,-42.19507436315276,5.125858304749272,-6.883419544112478,0.2607806138063751,-18.871448101293876,48.20660287982204,-14.67024007836499,-31.419885289046345,44.212030966730026,-27.32535818276942,-11.761690949752392,3.3825598713911447,14.650583834760624,-41.348969149406976,-7.9406079890149925,-49.55484821184969,16.913133200305026,17.080599226815423,-31.36646350991128,14.479310626620148,6.785554234846181,-0.3073929553898296,-7.968422219090911,-12.547341552419425,-14.637668011284653,27.632307469225367,11.896483715285612,37.232964579722235,-6.079101591966676,47.93021184218388,16.27472791713987,-3.425552349608317,-35.07317490884579,49.35845926524645,-2.4797274339725703,14.432254432322708,30.36911226020014,-6.201964386176918,31.448125238484366,-12.900421478263056,-19.466148231755685],"im2":[27.224092533528903,-7.150615032034743,36.63788045731732,34.76625926101363,8.837421014296353,-18.96727383075166,-0.5298916965854943,-36.91969806730394,21.85367453182525,-38.5010753433782,-25.34582219799073,-44.315974532159,4.633789815799091,-49.42774369378593,42.09166656031665,3.0328020243782348,-46.17986378501151,26.33218166110818,-17.505383352294857,-40.08331450048398,-0.5834355923058254,-21.00350580801795,-40.92876505061002,17.799560073457215,37.597824077423724,-3.8375611506744747,-25.512161400837662,-49.935523912873435,47.26206419431051,-17.754771623242725,18.171898106895128,5.249731678202906,42.771382316147225,-6.373882608554339,10.029916228432647,34.161232538256186,24.510057481799535,5.682543590378209,-0.5935042578687018,-12.853650408972108,38.51041351201698,35.26904455266646,-7.581298751565512,-12.493965659614837,17.336180498654613,16.11399553898714,22.678186390260876,-44.32715331100714,39.29840273020923,-27.397525673450176,-23.75836973228429,-23.894407771753244,-27.639224698919808,49.17129521149772,-0.9667272707170724,-9.493732263766631,45.3556570057589,-42.083939010177716,47.16277621528229,27.816513967384893,16.93245468974574,-22.75811912258695,44.161887355497626,-42.23790506104184,27.522131520311063,5.103522635677827,-38.443937883825264,-11.077284574939824,-30.998943790316748,12.427003676807558,27.128411876286947,47.57149247313214,41.92564443329982,-37.8947492838908,-27.944123857357827,-26.171747657021772,-37.460250361963354,38.640717843984575,7.336857850195379,16.32254938718512,-10.296001433658233,-36.79735510217039,-21.7934390265051,3.585741154421086,8.41538643506373,-9.360306045805935,-1.7819648600461235,8.188192743199906,43.804595365404,48.54558500452595,-25.59799679196164,10.318826364367752,38.69075058802096,-8.525325060876597,35.202016655366336,-12.349514576497477,22.004650210306977,-41.35268362433282,-46.37743772003679,-21.93274292487254,-27.63612533658153,-15.371035513560336,-21.91248078575886,31.184199506456068,46.90048536977869,-45.57667231211002,-3.2163772704555598,35.59795124353971,8.568991607955269,28.82218109703321,-14.218156598433595,4.151075262515903,-0.1947405700022813,37.89621519334487,-7.272321847288886,4.905599886666721,36.81096887000078,20.702997446927682,4.4806968314154645,36.154383810656,40.650647217440635,-24.86984185290211,15.064174025356351,36.987415686500356,-9.005338168867269,-39.50128707435462,21.62274277415112,-39.331000838978305,2.2035149329783223,-21.538635824335138,38.785931271268964,26.069143327571012,-47.19862833004542,44.317983564408266,-18.870174564851695,32.026668471965465,13.326892826102451,5.832561924590543,-26.90031294851788,27.051161387661693,7.161792228880735,-48.54821050790974,30.274145809982983,-22.250957031722074,0.34736316376642407,-8.113134246784114,36.71300192405798,14.387926001420809,6.470215001619664,-7.645207504033536,1.6931182158957725,-33.296582475224234,-27.635692325241823,-23.521297626233107,-6.757884412221891,23.02506088422615,45.660923341457234,31.97056867713711,31.444842162439386,-23.621346126222186,-11.211444603381551,34.22414381562109,24.52493339236426,-13.072294935192815,-27.411295265965297,39.18768285971714,44.86488431127185,-10.121252317174992,-9.938652842053862,3.9094775009515885,-48.796752960343206,-10.019895485177074,-44.981501536959755,-36.87310563092825,19.898836350897128,-39.01218155158175,37.774860861349964,42.650649098850565,34.95409911604355,33.39087928837681,12.1698113820798,38.28227117694955,-42.809821848908946,-40.977539756384395,9.324523357951811,7.577596186330837,23.0251805104146,-44.09044824093266,32.810203072579924,-27.554212787195286,-22.302057268815222,-40.91049296700857,-21.867528439377814,17.416246376369074,17.22589393846785,-22.9115632519558,37.1159527387382,17.326000304946888,-19.416862532941316,3.2084264900970254,20.89329984625907,11.776514246124279,-14.726388834470306,3.708881130080755,-24.9406323696005,-24.0603275406437,-44.002879670844834,-19.05806185001745,-16.36946321797378,-2.1294014012991553,-3.6646725473914543,-45.978344913481486,-5.016201924349616,-45.06820525848033,-2.027748657172168,-5.606537806011211,-6.51369254536187,-36.53977079108448,-23.55283552750199,38.05577209258344,44.52176943057002,2.7968158465928923,-22.937124375570527,-15.316480811752832,11.079278724533935,5.28400742631986,-5.39088454710317,11.078843328031162,42.330856649324616,15.315518381563649,-13.117072616736593,0.7118396430668028,-25.97985234700574,34.55117773207844,44.869087152171645,-14.247762525768614,-30.774108803276246,10.745300442358108,9.941069666776073,2.6286720003857127,5.200485058257932,-7.793764974517039,38.242066583801474,-0.34394763028183917,47.318347074454294,39.47688403592767,12.131649653390916,36.386063492054404,-14.796373820887496,-31.815600964068913,-31.923196005012212,3.5235854823715798,-39.179670747489595,-14.815366410637395,32.08355856442053,-5.268259735408556,33.902356770339054,-3.8469860783135985,-30.006863732863987,48.837573044713,-30.33261638220295,-17.319989240410706,-15.957891673258551,-28.379726393469408,37.259673866740826,-16.355991321623584,18.88251120097044,12.560651338230919,46.285132137843306,-49.56127832607488,-21.198070553269677,23.36015112482285,44.70029495262948,34.32450447353763,49.69977006763445,20.43081544826684,25.522039597301315,-33.23943233210483,-47.77290611529362,27.4981579594575,-36.26356624116568,-11.269635231343614,-36.84779289961479,-15.626697666198751,-48.0455118440694,47.11325477696366,-24.891081473740574,-18.281674748243958,-37.64680138103614,-31.60809094235627,-10.397973285893158,49.52810383724841,9.519539815047182,-1.1159711333709978,49.99732047308939,28.535222807280164,16.521112309253922,-18.832263951206883,20.93155597597392,-28.28030199342374,26.529026735110563,45.38377000600093,36.26858737256356,42.852998997511136,-28.88967121870989,-38.256809468880924,-34.590339971033366,28.854444802939213,29.481126712087757,13.338900397860954,9.942443732292205,-19.80582130892371,-47.471780036707756,10.038342637483076,-30.176000647671742,30.778044589383143,14.516494001963068,-44.98870080017353,-12.396835408255171,27.195576299150787,-39.61112818271385,-29.324236684392314,42.7417574692776,-28.28316602840192,-6.384218886850377,-19.257811316611928,-18.29458005776895,49.79806018671134,18.46125325832965,-30.279160448102495,-6.047628805081217,36.692017702519536,-0.9912375658500139,42.782064398108474,-21.094603386174214,-48.5011367961488,41.81897621828769,29.50645784270101,-22.935611144412327,5.375285379113457,-23.408844248153905,10.72506087074666,28.59777991590964,7.74523946606206,20.06810889717032,-25.80543737347106,-28.87739329107791,-11.963551978217154,39.77770375654373,-40.15183595814391,31.027581919374555,-43.671578788296806,41.9074774363729,-4.139307552556446,-41.9193299510344,-42.45205505748872,-23.845841702221914,-18.784587164278044,4.989761504045212,26.812834108337412,18.35381938469223,38.83469397322443,49.25699018427899,-43.76467077156902,-48.981209382853564,-24.09837794134997,44.62817108444125,-2.0249509740815483,-38.8546362415738,24.1119598495587,34.567390486026184,-2.8508365576008643,-9.674292612651293,30.956615355849593,29.621619402203834,-49.64797492177227,-16.70105077674429,12.944950120630772,-4.582798993448122,2.8089488767322734,-42.568825064033234,-49.62153607489166,17.948398976915485,-49.13533364920828,3.587148906420367,32.88317902101625,-3.0760471346613087,-25.2397653340125,20.541468792546894,39.345567547588274,-32.27916398614559,20.384744771250666,-44.35617080853971,35.362054328351206,-4.6627024572727365,-14.267084858011671,40.584743534319585,29.291300029020988,-14.993555120839694,-5.930448615156877,49.78694173090655,48.94289613175927,44.81715980874965,-44.67194638975764,15.559128055484237,28.803086936414886,22.80485429508734,-33.89787911181344,-40.75844971396933,-19.075212015091036,33.324489038418974,-1.9479028524000483,-41.13281282701388,43.916030387644895,-19.736390907906976,2.0431890668319,3.6584754709340785,2.030955583018468,-9.955198949493237,-16.108523060307114,-10.063378291002742,-0.5434582216981241,39.18042813355733,5.880185379594991,47.64965979415935,-44.30335515936691,31.682629510401753,-14.719494353495364,15.085123179786592,48.41768792374785,36.548192781955905,35.14375597256782,48.969519117069325,24.677497521101003,-39.62116033325145,-6.04591011586075,-45.947334228508566,11.471244432079175,10.653448201566697,-49.43472956945237,23.414219224323418,-12.469074338428285,-31.12054546706173,5.0336395037543085,11.507179221195273,42.00570593178958,-33.38798572594929,-1.167961880660414,-42.50994502563387,30.78733757096218,-15.188501817747891,45.52224070437997,-8.536658338389728,5.881424911969859,-27.084896554313865,35.42500353022035,41.580096330833626,45.036004720199756,-8.440618751037796,0.2705905880652679,22.59930501679311,-3.0082040744542553,-5.838339335263029,-24.12154421543934,-16.045651077538714,-6.4960281558129935,41.48360518842841,38.89191828627369,-39.25834999174204,14.461004600560074,-37.5226549859494,-5.645988295554936,-36.40031699584154,-33.96184985784177,30.05821195838601,-42.15562382991712,5.06009505126638,26.45601548053051,35.22593504344944,38.60774761473209,46.5875424881573,24.028466933253753,23.70761080773802,-36.456060887068105,8.070050643880187,14.469990610503814,-26.736175234725213,19.472538261220976,-7.101457709024217,-1.2840210783567443,-44.02342240563964,3.250161085388278,7.240252286814808,47.03260322083568,-1.4190877682630614,-11.116957947597996,-32.04689589135262,-2.2273340484910946,36.236962692304274,3.3484955388752056]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json
new file mode 100644
index 000000000000..47615f73335d
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json
@@ -0,0 +1 @@
+{"re1":[2.854925344506432,4.829581116944574,-4.058057201008271,8.44905574059377,9.772040225078324,-5.975680317446406,2.9563284700628305,4.706771848720916,5.759839835648092,-6.6984062466947325,-7.4379153246294045,-8.203753614769866,2.469582625415903,6.651361786512513,0.25853051591560927,-0.038422917580962945,-9.776571736518608,-5.831695238409489,8.20063731555166,-0.9574759380888729,-4.869303153076848,0.08034786787900927,0.593880454814462,-2.1822380658459606,4.788030174405103,2.204936333676507,8.360302211127156,-6.608817429240479,8.375268394023557,6.498072921730355,-4.847523331538843,2.2986363302304884,-3.079770264455237,5.430900886540705,-7.60271909022798,7.52106721100872,1.427057408478058,5.5080703613815185,7.044105045170138,9.494745998663657,-8.24495115237445,4.272640315782276,7.022830824386027,-5.035578988027034,2.4920850901160563,-7.093933888246506,7.368797005273141,9.168349938342079,3.0629669392789793,2.9983685352576632,9.406083679042077,-4.260534670517986,7.9341634467421045,5.590977880127099,1.5487381200100732,7.6059879814845175,-1.660961560937082,0.7305821824625234,0.002100639041429986,-2.369193447084146,3.522823626706419,7.73505653706658,0.8093667334673267,1.089078434377317,-2.1920760369640675,-5.067845699157198,2.723903906870351,-7.1523668883754965,-7.289231817313584,1.9075170376671018,-4.07960785395116,-8.672965564375668,3.6096464194338083,7.0487096910773985,8.387630457956664,-3.2792030834161334,8.01797196514832,-9.726223736874434,-4.484643494258922,-7.6500981843429745,-8.589117331161217,-4.958386142519755,-1.7131227049288071,-9.640871151016723,-3.5902362048515313,-6.078560041646268,5.084332009296247,-5.5775023854475165,-5.730901444460617,8.792444877168538,5.753567642388708,8.04093416354472,-2.9418416689375837,8.941578787972173,5.304574770099553,3.558202845179,-4.315170982241259,4.828917523699976,7.726723084280547,-8.359471890213257,-6.649941586348689,6.335141025637984,-1.0745520605165488,6.514662618167108,-4.395992052884321,5.307504655170938,2.6422316587356764,6.320946034024082,-9.194260159454753,2.2619525269330705,-9.130468770840789,-5.7488745263995185,7.502071080350074,5.612779671049948,8.07219727441429,2.5473232954028884,5.0365166411165525,-6.06923578154621,8.858027025797647,1.0383221355816836,-6.2376188717356795,-5.612843503995332,6.458447299529794,1.0037710959302792,8.324706178108322,-2.412033040808046,-5.072307146658401,2.5159994007134667,1.73047407863071,-4.235146112240362,-4.207319124081879,-8.052276137365501,3.6342842043671517,-9.733016639601432,5.0247008352164,-5.71107766603427,-2.7405002492344233,-8.963481257054841,8.521844713611937,4.492700924640616,-6.4723207633023865,1.3368252309946556,3.5091455270975853,-8.284527488692534,9.671024933343833,-7.184979209199094,4.558875527484732,-6.598676586741902,-7.146505238782854,-1.6347004203457445,-7.276859538610518,5.9565623162267745,-8.414291443728981,-1.806367006446779,1.4628062717669437,-4.695708136125409,-2.9230264507881447,8.134150868751348,-0.6538276463704413,3.6388166144574097,-6.7652589515659685,2.8982583865393323,-0.32161112299582406,2.9312229064009827,9.675541961078167,-4.969520056298073,-2.6447094481582756,-8.556781604920936,-1.8063584822410341,1.6370763167349303,1.9397753691334803,3.635480741584246,1.86761637649699,8.390043987797423,-5.713268797465396,2.0273895593261653,-8.827834876512128,3.9232717550555343,9.141834407442207,6.779899918437241,8.326053332468405,9.924850817700648,-8.766904130758451,-6.348335457550959,2.298315023149957,5.8500538347377,1.3290662413737468,-1.8582906697037807,6.885847735964088,-7.055306892084785,-7.387186808924254,-8.235597857792992,0.061724055002688516,-6.1533869456322225,8.367201604797415,-1.7788130804748086,0.10002811348020657,-6.658107535003253,1.4794029700679285,-5.690713296339709,6.627323781750761,3.755035328201501,-8.331315707905105,-2.4255583656994073,-0.6463530124171868,0.3287286087128152,8.577236933494085,8.220220447032311,-4.521277105682955,-7.139591588453684,-2.5027344263008118,-0.002439707892348153,5.176446342015224,5.184724125010504,-5.601616718471101,-1.5406823110893786,6.667608065808501,-5.142453983536361,-9.54588091863557,-4.958497214114946,-4.215793768845542,9.87266965868642,-5.703900971116436,-0.4013256107385015,-5.786526200677786,7.266553731662103,0.6119044956302844,-1.7924519593139294,-2.92700115188852,7.190209858446437,4.238679206421011,-3.118181052756734,-2.496305213982632,9.195985217439222,9.799019075322239,2.088935459382146,5.365957652314496,-0.2855625865839322,4.938309141249405,-6.416138599996863,-3.1161130272479864,-9.09992666535651,4.436368769769576,3.2658821746433624,4.72987237365864,9.164799107326768,2.6085153804644854,-5.732201956538949,2.81756916366321,-0.005493082854606257,1.8789872999495056,6.937456078638746,4.1674918195999116,8.91644525072762,1.9193206960539566,-1.4092377074600986,-2.9013918989779626,7.276426566398172,-0.07143985027984101,-4.8272610249326275,8.761199439099553,5.355204934136825,-4.999841796016389,-2.370880884023137,1.8067170879510641,-4.4826152117194,-4.007010381110357,4.401068166710704,9.807065681385598,-8.740368385339355,1.544105275875868,-6.681064603493468,-5.732736071125373,-6.94576626386509,6.309076604950398,-8.716390502923524,1.0620816760605898,-2.8425735237351084,-7.472027144110722,-6.759531614907813,2.1411633947962265,-2.0114206697260144,1.2233175084605215,-5.273940194208649,9.156259239967625,-2.3337162181159936,1.1451452074837185,-2.834626548744506,-9.32440958742594,-1.391217016045374,6.224036323462073,-0.45551413174126054,0.447508143933133,4.508030799367013,-0.7390761939250865,-9.318295082537638,9.359908615327324,3.2436474857960835,-3.615913798558825,-9.209444924411416,-7.669002888507055,-1.096139412850123,3.460662575893064,-4.668852600842401,3.0450581586470697,-1.742601467880874,8.754283847136996,4.93373990024406,0.14628250367072937,2.486241177610184,0.40255226375881037,5.3638099130732915,5.678716106112823,-7.270642214355211,-7.273677041072135,-1.2895103108770982,-9.869046803989436,3.407408315557337,2.94031603836207,-7.85946761262,-5.029365073795158,2.7643867019903965,9.914339531414349,8.872112704825888,1.0710656219423562,0.9547638507283764,-8.118249648668252,-9.47666670692329,6.540834640020485,6.497175285985456,7.342923804707347,2.487070450683074,-2.624055568063934,7.140572884103477,0.3869285422246964,-6.618675786987572,1.4034692977388907,7.832443972653028,-2.095134374585732,-6.601219099993381,8.09732852312305,6.18149247847845,-9.937844521861162,0.7048605795993268,2.5268775614517924,5.353704409116977,-7.415003918180691,-2.555617872248397,-2.745441275030533,-5.882955427388607,-6.862630160637635,8.367018883712525,8.237602839914267,5.113703361561637,3.366621782887762,0.714410094336138,4.043833079572776,-9.934545349141485,9.27285546641788,-5.376272198333341,3.435161711988261,-3.5132377905274055,6.768690914139192,-6.420669230208054,8.851688066529128,-9.754100910632403,-8.896145598556801,4.822264645258365,-2.6648347888659156,-7.585077056042926,-8.708760255642362,9.360950850239966,3.7488832105055714,3.7588453431039106,7.891126383636063,-2.1848321181276287,-4.2192498647444925,-8.510325822059457,0.027107665540125225,-6.851259721071701,-1.7448563068375087,-2.1303326076415825,1.25525339052448,-7.798748599429124,5.902302948318397,4.310175983309845,2.426621402096165,-4.612456624867773,-4.977517837306127,-1.035134404620404,-5.636788207367678,9.513936360271234,3.557073876293476,-7.735971327679967,0.7457211483462594,5.390372254922497,-5.279639813833987,5.274697227440825,9.506545931933541,-6.521953965723883,8.845156747963351,-7.3198827328443645,3.776536956484799,3.809401602303886,7.4054417450651115,7.497593163658841,-9.585024761237129,-3.6100538545601264,-5.954628379311178,-2.6528956261303076,9.102088460578024,4.3923011803694045,-5.990322196049778,-4.791538221758358,-3.6759188044821567,-3.8141478843147603,-8.840394417037736,5.855476572634444,9.421999674182224,-1.000250272233389,-6.069390489928863,8.103276908881355,-0.7804540893829088,0.7613132492381496,8.267691314659942,8.256489235614907,-5.290759019929654,-7.4129343376807295,4.510433869295751,-6.011264521924328,-9.624382922382157,1.8236924394272904,8.605460727012346,9.329052722134222,-3.5359205704912196,-0.8476297833880491,-2.2856491674697166,-5.943001505833802,-3.8119898968418386,6.42798986971631,4.456815286578234,-9.162838858719656,-6.452868692395879,-9.571796801329471,9.466052382312455,-3.1285625436634135,-7.512909156454253,-6.723065734772549,1.125331042555473,7.883515362154455,-4.563138815776789,-8.792080173108829,3.5535110288055005,-7.980306969856965,-9.002467609665308,1.4492364608533066,1.0977612149798261,6.603589916102607,-2.4319017225021655,6.237954567533311,-0.51520523905522,5.214344333500215,-0.40457676403302756,-1.0050155027663763,-3.438855281628803,4.917083672661759,-9.280422664047299,5.099187947927888,-3.216567425276427,8.331012961385717,-0.42013244753196943,9.703994684438658,5.90375968748139,-8.620198927923216,8.470751518573195,9.190568418091381,-3.0367295314398524,0.19598538196436088,1.5202041876877672,7.822960028587321,-9.00831143280497,4.942774476428372,-9.29340007964367,-7.264173069220399,1.6174697568847094,3.2147647999722615,8.879456475128535,-8.51609812867419,1.4425501791351873,-3.690984866407354,2.827447827323539,3.90282302438332,-3.5069926517479466,-6.337948898843562,-7.4904203875986415,3.997473430276674,4.521709040879605,0.5501713670414468,-2.4907824688893925,8.784515498360502],"im1":[5.059388063565191e14,6.963994887715452e13,4.337065108268901e13,2.0386141772912867e13,6.530056609508359e14,5.758404702259831e14,3.0810652655837824e13,4.199332340766877e14,1.9668708607852503e14,5.4776652651541744e14,4.289838083947168e14,9.139352933302195e14,7.440360738973248e14,9.097425988790053e13,6.722151801013259e14,4.078147981891721e14,5.802876953944611e14,6.130084666376345e13,3.282896670509586e14,7.29514750111087e14,6.850739765505986e12,8.784321230101749e14,3.1796379801260656e14,8.330633970482081e13,8.407914924917214e14,6.290288842849632e14,3.984676228524272e14,5.4365457948859475e14,1.8667118447593444e14,6.242580298705972e14,7.023128513471439e14,6.073096827166906e14,3.147867503457168e14,7.90470097620572e14,6.694494476086296e14,4.228598523320122e14,9.191523421941024e14,5.270440960572288e14,6.395843959293944e14,9.216340913457626e14,2.3207948357520147e14,6.905429720742806e14,7.264235022122934e14,1.3033201635981362e14,8.319354388948828e14,5.672966082879893e13,8.005287862823016e14,1.0599129520622364e14,6.439626099352639e14,3.124434506063337e14,2.3910641559025438e14,1.4633555492521012e14,9.147527405144581e14,4.1026927681437906e14,4.157290218069168e14,5.817963154257579e14,5.832765652155708e14,2.859423836118173e14,1.111013098088337e14,2.233083357604966e14,1.8035452889825166e14,9.754008618367758e14,1.9258081379371162e14,7.456635823526559e14,6.615302998453568e14,8.207085542495762e13,1.7615400450843988e14,7.744763816586164e13,5.700924958883475e14,1.1140807306360445e14,6.842043222374165e14,5.978758160823025e14,5.220584148502286e14,7.608200110239359e14,5.710464689897154e14,1.9305439692482984e14,4.4557636702418444e14,3.615829872271928e14,1.6297142943310916e14,8.515926468498954e14,1.784784977933298e14,6.642891304098418e14,4.7759749042678225e14,2.4722514737103775e14,4.5768308465631344e14,7.235623776120411e14,5.963761415623142e14,1.028112993726864e14,1.9482430803090466e14,4.357035154544142e13,6.010127350063138e14,2.2157042946063056e14,3.9393784983662806e14,7.100524967180226e14,2.830165475961761e14,7.295606382997191e14,7.463374678418485e14,5.349576123120243e14,8.06034060901811e14,3.3844147742660556e14,6.279350132121972e14,3.3990385372540556e14,1.8340881130540044e14,9.170560978488049e14,6.343870348795749e14,9.403487961493876e14,9.967025229709141e14,5.526368058544628e13,9.307981436700419e13,2.352882936491505e14,5.961804974834318e14,3.452699119593209e14,3.661339960964266e14,8.189806623503606e14,4.7911912548089575e14,7.909931870147116e14,3.420279609721003e14,2.476253917527842e14,5.016407434313317e14,1.3414504015350492e14,5.3139189513467844e14,3.081439590980163e14,7.59582776067498e14,9.193930902597699e14,7.973472760844226e14,2.7238520655575094e14,3.3083354122145094e14,7.505648454078604e14,9.966769450578449e14,9.338186641074329e14,1.291363567443472e14,3.1851443864116556e14,3.214446488147855e14,5.432399058549422e14,8.366131495018728e14,1.516052681264768e13,7.236300272607654e14,6.428153466241538e14,7.37037564931111e14,4.412147443304083e14,6.644006494507689e14,7.804907906820164e14,5.3432548342285644e14,7.257900110006585e14,2.0674820113311744e14,1.4755918446550332e13,4.82988340720213e14,8.134774691564018e14,1.619290787399701e14,1.3094002109312719e14,7.220308090816588e14,4.543780937497832e13,8.470757886990036e14,6.919199678186851e14,2.4539936067252144e14,9.971667268069572e14,6.791336506998875e14,8.228294075824489e14,2.6367178228698572e14,7.454185770614205e14,5.3973549566177225e14,5.823191774403704e14,7.264214467285858e14,5.0782256429075344e14,5.860060474037831e13,7.654812017920554e14,9.307287436116866e14,2.6977959174254428e14,8.711030594463452e14,8.717844796380799e14,7.788638629456739e14,8.813725474496701e14,2.1736431066373662e14,6.449309828552452e14,3.278842925414328e14,4.85212696231363e11,2.759797003527694e14,7.146667231074436e14,6.469953239119518e14,3.4717940096495006e14,8.592518972130918e14,1.155814508574451e14,4.022412344140574e14,6.651501358583985e14,1.287554100533319e14,8.380628861398409e14,9.482775441101211e14,4.402502347800855e14,6.468709540827711e14,7.508701386023389e14,4.078877444921525e14,6.2524202242316805e13,3.35680201295379e14,5.4536328541102906e14,8.561192730618578e14,8.928818310361776e14,2.048104253099734e14,5.563057048296252e14,2.937437501340423e14,9.004808443946416e14,2.944777605300386e14,8.51318547403569e14,5.901488412737451e14,9.023811690352034e14,9.311839871488398e14,9.055252197500363e12,8.724107084015059e14,5.304646017909577e14,9.322049839358425e14,1.756670955525126e14,3.83972662066593e14,9.319610162329094e14,9.831922976519382e14,1.3937805257712533e14,7.700966467586001e12,8.636546573369822e14,3.595004615788711e13,3.7286303609875294e14,4.980521636068946e14,5.412569105547382e13,3.9142051988416606e14,9.521923631848536e14,4.796606868547734e14,7.86357523410699e14,8.460291064308055e14,2.1175537613261362e14,6.304962122130964e13,9.59945011681544e14,9.56187957583272e14,6.788526733294064e14,2.4634140360287103e14,3.4339374745380456e14,7.429867593585236e14,5.731821099928661e14,4.975276102227514e14,7.718190545478979e14,6.45754776380782e14,8.872160164660851e14,6.356471285876755e14,1.2895067180496189e14,4.189065450566404e14,8.688574992994854e14,9.624054151466035e14,3.902750523696308e14,1.1096372598313942e14,2.5193675652922422e14,1.1065887671575902e13,2.6115409820182312e14,3.9275837235449806e14,5.905566492140715e14,9.468306738483116e14,6.48718517360738e14,4.61744508872895e14,3.357115915812908e14,3.5426737667326244e14,5.94211753805757e14,5.079628481378333e14,7.92292810064194e14,8.198682899806895e14,6.428509395538594e14,8.678843807120732e14,5.905649143307959e14,2.246489932950454e14,1.9767098005784844e14,4.76263762077868e14,1.3847644358370392e14,9.729866136764139e14,6.996392990963716e14,8.897504133202726e14,7.396983740439942e14,9.40523463504429e14,7.134596848908909e14,5.8306835713647695e13,2.0346562558746494e14,2.4864152456239175e14,5.154727026634859e14,6.164770100118326e14,5.984544707919014e14,2.4098462500035734e14,5.002314325664709e14,3.33815757377119e14,3.976740860338351e14,2.461312647061016e14,2.8126332997667703e14,7.057391167433296e14,3.307603163001629e14,8.33168975944626e14,5.773582845508418e14,3.6084192957634706e14,9.440980913633519e14,3.6720562730368656e14,7.397455178975438e14,5.521977080699545e14,2.3134416100725997e14,1.2275621136240478e14,6.9782262474282e14,5.211274598599709e14,4.6728612714003125e14,1.4286315712582388e14,6.49587533096797e14,8.188504382899685e14,9.172542339489744e14,9.306887932298474e14,8.403990102046714e14,9.618301271367474e14,7.441695808291814e14,9.615656637624576e14,9.25835609499321e14,8.04726269115973e14,4.164823387027207e14,8.912182265507639e14,6.248906012367086e14,8.163379366274586e14,1.9017742508874434e14,8.877199107409279e14,9.149364929936199e14,4.699868242759615e14,4.5886342270396294e14,9.455263340246621e14,4.666828676607534e14,3.558186046029341e14,9.649555849061284e14,4.40565730780589e14,6.158486923994458e14,2.964055625502804e14,1.0605673558768403e14,2.7546062889718094e14,9.113463662559089e14,8.984355642150771e14,1.609139782943303e12,5.502677377985341e14,3.5254570089263294e14,2.2803065533547728e14,6.115483901124196e14,6.560441459915766e14,6.441568160042871e14,5.7213167601559e14,8.457310351172288e14,1.569715550243621e14,1.1425537191668834e13,5.3386414689959706e14,7.164901954108304e14,7.094018048418114e14,5.687470576372577e13,4.229580200750617e14,2.0297706252633875e14,4.6437845816520275e14,4.4877806630200344e14,3.2126814275754477e13,1.9085133617428328e14,6.327601299744809e14,9.232512818207271e14,9.000114109524416e13,2.724540206143584e14,5.668464242996105e14,1.0126448637850139e14,1.9826410661950766e14,3.061393426149439e13,6.62159665432263e14,6.702997149513612e14,3.866828772554972e14,1.586984230540607e14,2.340657632495522e14,1.0163336005794133e14,2.3481134673066684e14,1.1850686087306905e14,3.903976450285782e14,7.882051098910421e14,8.956138466468469e14,9.439781828376882e14,3.9464297961735075e14,6.783781413199249e14,5.211243857824823e14,8.329423276747194e14,7.46580796393832e14,7.90443873605526e14,6.367837368441665e13,4.406627454824107e14,7.973062923889706e14,6.808525112349926e14,7.836389888535195e14,2.38016822199013e14,4.095285864390427e14,3.705829349700144e14,4.88069714136556e14,6.083435247540968e14,7.105211917071862e13,4.481055273240032e14,4.4967094921966375e14,6.268679472463878e13,2.3684398556791387e13,3.3442357990815306e14,7.216596904814609e14,7.072764994313845e14,6.908017980851855e14,5.1779103894442725e14,6.038595897127435e14,7.255548787749951e14,6.577796813194459e14,5.5780870537668825e14,9.335019055175453e13,3.5520470998560325e14,8.75553620784011e14,5.855696815985549e14,2.828735681270011e14,5.589559646051827e14,2.52235163816256e14,9.058967259277278e14,3.3965216883633074e13,9.100213833417501e14,5.281749663795057e14,8.94966329882633e14,4.576199564651824e14,5.5941865300635375e14,9.644911196008071e14,5.064084099987371e14,3.0616785533279225e14,1.5346025160905384e14,1.3402148807631797e14,1.5842086492380447e14,9.004994796027145e14,9.000737373251595e14,7.095566906069896e14,7.226932257036556e13,6.85548064834169e14,9.5334551859611e14,4.727197719980858e14,2.9917094446987426e13,1.1584882004712638e14,9.962910450737015e14,6.75357649778773e14,2.824282716586284e14,9.215337785263081e14,5.5843170685400875e14,4.01863543558759e14,2.3716380814213e14,9.535930781571826e14,1.8259489635087944e14,4.345160860814966e14,3.6331898207520494e14,2.1099479538640553e14,5.360687906887437e14,4.240889974418963e14,8.527694899885411e14,4.735695014289318e14,9.980822695919565e14,1.5465778953558572e14,3.1885191992611305e13,7.189628637121622e14,5.779260149886811e13,9.248541729115342e14,5.5421218328754094e14,4.0574213152706206e14,8.084891916531589e14,7.376060145656452e14,9.252318195086871e14,7.62902840184492e14,7.728098007091545e14,5.1829528038469175e14,5.1808349493941e14,8.318797358876182e14,6.838719345967136e14,3.7480711739400375e13,9.231018842007782e14,4.647500746602724e14,7.190159775851972e14,4.780371467407495e14,9.2361621792124e14,4.052238627681803e13,1.3663264667238983e14,7.230542563910355e14,6.683743488116394e14,5.524734704329962e14,8.766495493026619e14,4.209109683640606e14,9.407110435452432e14,1.6056544796420725e14,7.709317268483732e14,7.106501497171845e14,9.138058601235941e14,6.075619238527264e14,3.604747677219515e14,2.2891974486761512e14,7.993700654801512e14,7.228404915578449e14,4.8001242706460725e14,1.3300112143655108e14,1.3056294836504734e14,2.980944964243418e14,3.784851709058359e14,6.756428901616838e14,7.193867226291886e14,6.475434649102738e14,4.9220068300549156e14,6.177223436999675e14,3.826727868326243e14,5.959415330298868e14,4.275556642803691e13,9.088899074886114e14,1.4575578116955856e14],"qim":[-5.4972784e13,-1.0179897e13,-4.613834e12,-3.070587e12,-9.858576e13,-2.7342646e14,3.563294e12,-1.2329036e14,3.3102615e14,1.9075431e14,1.1489446e15,1.7849688e14,8.119836e13,2.0754425e13,1.8573504e14,-1.1448515e15,7.21928e13,-1.0896897e13,5.1791836e13,9.881803e13,1.701544e12,-9.755591e15,1.1425881e14,-1.3623122e14,2.1000977e14,2.7736684e14,-1.920913e14,1.0803911e14,2.7953948e13,7.562504e13,-1.8844963e14,8.562771e13,3.200071e13,-1.40268876e14,-7.299717e13,6.1245097e13,4.237366e15,-5.8321474e13,8.071101e13,-1.334359e14,-5.2612234e13,-1.0425504e14,-9.81486e13,3.3357463e13,9.496218e13,-7.854003e12,-3.043002e14,2.3464897e13,-1.0663899e14,3.5325892e13,3.2319086e13,-5.4825065e13,2.7564233e14,-4.1351467e13,-4.410725e13,-2.9814888e14,-1.1845372e14,8.2966605e13,-3.1135e13,1.426639e14,-3.2322347e13,-1.0543276e14,7.4781295e13,1.4971088e14,-9.854749e13,-2.8749339e13,-1.9107328e13,2.94285e14,2.167217e14,1.7113955e14,-2.3768453e14,8.263748e13,6.1012934e13,8.575763e13,3.0126774e15,-1.4047937e14,1.4042079e14,-6.178092e13,2.9488803e13,-8.649049e13,8.645244e13,-2.7584394e14,1.79177e14,-3.0176753e13,-1.801677e14,3.949175e14,-1.0542984e14,-1.1960071e13,-6.912991e13,-5.207369e12,2.7793733e14,4.0160654e13,-7.055636e13,5.3509333e14,-9.739349e13,-1.8644193e14,1.040051e14,-1.1767019e14,-1.582655e14,5.3791206e13,6.4464188e13,4.2262155e13,3.3502729e13,1.1545657e14,-2.0866122e14,1.4985203e14,7.9566054e14,7.4906e12,-1.0358732e13,8.28288e13,1.0323233e14,3.4996832e13,-1.2271124e14,3.2714685e14,1.9530332e14,2.2615977e14,9.082324e13,-2.7397798e13,6.599077e13,1.9854594e13,1.2171378e15,-3.3754679e13,8.392451e13,-4.219494e14,-6.506161e14,-3.4450866e13,-2.2185882e14,-2.0809202e14,-1.3641601e15,-1.4503719e14,-1.976453e13,-6.1690905e13,1.2560291e14,-1.1003948e14,-8.366365e13,-2.0110697e12,1.8302216e14,-1.0563764e14,8.9533794e13,-2.3899528e15,-1.9984108e15,7.8463575e13,4.9996842e14,-3.745685e14,-4.8334304e13,2.0659215e12,-6.351984e13,8.4041064e15,-4.4208635e13,-1.4610379e13,1.1448517e14,6.1858025e12,2.9041337e14,-1.4771705e14,3.3348368e14,5.2058953e14,9.633893e13,2.1798034e14,-4.02826e13,1.059927e14,6.0347046e13,-1.1096895e14,1.7428669e14,-5.40888e13,1.3927495e13,1.3786519e14,1.9454127e14,-2.1831158e14,-1.1640688e14,1.7479123e14,2.3443532e14,-7.0483004e14,-7.174032e13,-7.912813e13,6.552247e13,1.8162927e11,3.090427e14,-9.649736e13,1.0690505e14,-5.0730026e14,6.296627e14,1.5783914e13,2.5932563e14,1.068807e14,2.4676537e13,-1.9101882e14,-6.067308e14,4.427079e13,-9.7112935e13,8.417462e13,5.839809e14,-2.4747895e13,-8.053339e14,2.7881312e14,-3.7125345e14,-9.06461e13,-2.144606e13,1.2748511e14,-9.744583e13,1.01466195e14,-1.7833217e16,9.21935e13,-1.1433477e14,2.0966901e14,-1.01812586e14,3.4204344e13,1.6636866e14,-1.3567589e14,-1.4827594e14,1.8556064e13,1.0680194e14,-9.670656e13,-2.55619e14,1.4779506e13,-8.358429e11,-1.2832444e16,-3.7383467e12,-4.3807815e13,2.3584952e14,7.022865e12,-1.0501907e14,-1.8234137e15,6.224331e13,-2.2407289e14,-9.01548e13,6.862589e13,1.0021887e13,-2.368215e14,-4.0198448e14,-6.984315e13,3.0806913e13,7.865307e13,-1.8580767e14,1.05062894e14,7.09756e13,-2.1119248e14,-1.0572079e14,-1.0589268e14,-9.154827e13,1.896849e14,-8.5008325e13,1.9638293e14,1.1301832e14,2.3549083e14,1.304256e13,-8.672207e13,2.0433278e12,-3.4970196e13,1.8398954e14,1.302579e14,9.560125e13,8.28697e13,5.555622e13,1.2140665e14,-1.9935827e14,-7.598285e13,1.7131145e14,-1.527801e14,-1.0084336e14,7.2273185e13,9.901008e13,-9.622339e13,-4.197577e13,-5.3224556e13,7.092463e13,-2.0664774e13,2.6401347e14,9.623396e13,1.06664104e15,-7.484152e13,1.3047203e15,-8.7880895e13,-2.695083e13,6.0832025e13,-3.935375e13,-5.978937e13,1.1208721e14,-9.1025826e13,1.3349357e14,1.6453832e14,4.145634e13,5.4319643e13,9.062718e14,5.1805002e13,-8.032391e13,-4.0240446e13,9.6990856e13,-6.777856e13,-3.652554e13,1.3926765e14,-5.679534e13,6.2115417e15,5.7025938e13,-2.4487836e13,7.663349e13,7.20312e13,-1.5258542e15,-7.5074904e13,-3.7326835e13,-7.887484e14,-4.117312e14,-3.414825e14,2.972503e14,-8.530173e13,1.4086567e14,-7.142733e14,-3.450391e14,-2.988688e14,1.114256e14,-4.5440783e13,-1.5390309e14,-6.563235e13,-9.932672e13,-1.6151354e14,1.28135475e14,-1.4789347e14,4.711482e13,5.3989903e14,-4.6211405e14,3.3916283e14,-4.7304887e13,-2.2139526e14,5.516998e13,-9.653833e13,3.4362328e13,1.093822e13,-3.3884266e13,2.288061e14,1.8177996e14,-1.8398336e11,-1.0606679e14,-7.151858e13,-4.17592e13,7.617379e14,9.365339e13,-1.1938589e14,2.1061882e14,9.258897e13,-2.6494422e13,1.5341442e12,-1.08001516e15,1.2308357e14,-2.1771045e14,1.0640548e13,-2.1526165e15,1.1414906e14,-7.944112e13,1.3131488e14,8.920603e12,2.4546478e13,-1.1218833e14,-1.1364546e14,-1.228318e13,3.2925297e13,-6.6303637e13,-1.6623326e13,1.2393301e14,-1.3924577e13,3.7299855e14,-8.353461e13,-1.8508477e15,1.6421306e13,2.368271e13,-1.034509e13,-3.2901536e13,3.178427e14,3.9259344e13,8.8590755e13,2.1668129e15,5.421663e14,-1.6819956e14,8.22401e13,2.2554826e14,-2.779442e14,-8.8010306e13,1.32404405e14,9.812244e12,-4.7208817e13,1.33001665e14,-8.315646e13,2.7047174e14,2.8465013e14,-5.1714816e13,-1.7196071e14,5.9784154e13,-1.4730909e14,1.7196654e13,8.842877e13,1.756802e14,-8.700914e12,9.780117e12,3.768438e13,-1.1579684e15,-7.574463e14,9.514636e13,-6.9189704e13,-1.8608067e14,8.5959804e14,1.0323077e14,1.0459574e14,1.9303437e13,-4.5885757e13,-1.04011785e14,-7.85116e13,-6.044008e14,-8.29354e13,-2.8115923e13,-6.130831e14,1.170873e14,-1.0244387e14,9.569458e13,9.516255e13,6.2376037e13,1.9509127e14,3.069461e14,-1.1404883e14,4.554335e13,-1.415014e14,-4.017023e13,5.4040466e14,-8.416505e14,1.6996811e14,1.4203941e15,7.3626477e12,1.7187087e14,1.1803806e14,-1.22352445e14,-4.628575e12,-3.8799065e13,-3.689223e14,-2.4238822e14,2.8357854e14,5.3091346e14,-3.5024472e14,5.0152866e13,2.4702876e13,-2.7115844e15,-2.4607912e13,7.1577165e13,3.885524e14,5.3026458e14,9.899074e13,-9.3661946e13,-6.821665e15,-6.569402e13,-3.7640775e14,3.9555676e13,-9.359039e12,-1.581269e14,-8.336175e12,-1.7979268e14,3.101913e14,5.492576e13,2.3193905e15,-1.7910852e15,1.6866994e14,8.278127e13,-1.19066686e14,-6.319935e13,-6.158135e13,-1.8029894e14,1.3090835e14,-5.0654803e12,1.866592e14,-2.825873e14,8.528984e13,-6.557468e13,1.7089378e14,3.132488e13,4.8615037e13,8.087849e13,-7.322037e13,-7.800457e13,-1.1630754e14,5.30765e13,2.0098303e14,-4.2967016e13,-7.464897e14,1.8922388e14,-1.05537775e15,-1.516203e14,-1.7309257e14,-4.0499847e13,3.5077256e14,5.4711548e14,-1.3584678e14,1.4052461e13,1.653178e13,-6.0860324e13,6.2378947e13,9.5983535e13,-2.2204515e14,-6.6182627e13,-5.5817005e13,7.550402e13,-4.777143e13,9.942809e13,-3.722191e13,2.105044e15,2.7739266e13],"qre":[4.656081e6,3.9995025e6,3.3359332e6,3.0031362e6,1.3737464e8,6.8617165e8,1.426258e6,1.0341037e8,3.1034396e9,4.723324e8,1.2747705e10,3.3092083e8,3.116668e7,3.0593164e7,1.2944635e8,1.9841032e10,1.1959712e7,1.891574e7,3.0538318e7,2.4159358e7,1.5395425e6,5.1091292e11,3.403448e8,1.161121e9,4.327671e8,9.0662784e8,1.1174727e8,4.639361e7,2.0990572e7,6.5612036e7,3.7213053e8,1.0921759e7,2.894421e7,1.6894034e8,3.7958876e7,2.6978404e7,1.1786692e10,4.5185468e7,9.099259e7,1.6983693e8,5.242062e7,6.447018e7,1.03868824e8,3.7363376e7,9.557227e7,4.1747832e6,7.352716e8,3.0439384e7,78413.61,1.1757552e7,3.2100172e7,1.7728742e7,8.994874e7,2.2008796e7,3.0244032e7,6.6456416e7,1.474504e8,1.0209148e7,4.788778e7,8.946535e8,5.757502e7,1.13102424e8,2.327486e8,1.09374104e8,1.4588445e7,1.5751516e7,1.0847239e7,1.2747606e9,4.0540368e8,2.0847574e9,2.957931e8,9.6828296e7,6.4751716e7,8.728863e7,5.6962175e10,8.699877e8,3.6527732e7,6.6251744e7,4.3276628e7,1.1036172e7,4.5448796e7,7.269405e8,4.5536534e8,4.457275e6,2.8146867e8,1.4062945e9,1.7821787e8,1.3800394e7,1.8398211e8,2.3076562e6,1.1053695e9,5.520638e7,8.900296e7,1.6678505e9,3.279954e8,9.77799e7,8.972433e7,8.4546824e7,5.899108e7,2.8965908e6,4.5573364e7,2.913275e7,2.8100126e7,7.674023e7,6.130242e8,1.1095841e8,1.6693426e9,3.2365842e6,2.3801795e6,6.897618e7,1.4062912e8,1.3704233e7,1.9160178e8,1.1981083e9,3.1994733e8,2.903977e8,6.159693e6,9.894459e6,5.9924656e7,1.17281e7,1.4319829e10,3.2352032e6,2.2713872e7,1.707678e8,2.1365144e9,3.7873636e7,7.6532506e8,9.236467e7,1.3202896e10,5.880546e7,264122.2,1.18608056e8,1.6672786e8,6.921088e7,7.347223e7,1.4440184e6,3.776343e8,6.287627e7,1.0013244e8,1.4906582e10,3.746593e10,3.8276682e6,4.6669266e9,1.2140486e9,6.35191e7,2.1202762e6,9.174228e6,4.498811e11,1.0897448e8,1.1144992e7,1.0262159e8,5.007585e6,6.518672e8,2.4982888e8,2.7880163e8,2.142264e9,1.2599801e8,3.379666e8,5.465441e7,2.0911962e6,952585.44,3.8111984e7,3.6778013e8,4.5190484e7,1.0903251e7,1.4180683e8,8.802337e7,6.548062e7,8.817236e7,2.7987955e8,1.8011886e8,3.804689e9,3.1263522e6,1.0924626e7,5.8912516e7,561566.9,1.6164248e9,5.604926e7,7.932568e7,4.464342e9,2.2101476e9,2.0981364e7,5.4077894e8,9.336424e7,3.2069024e7,4.082981e8,2.845609e9,2.6342912e6,1.2220877e8,4.8245588e7,5.0266465e9,7.32071e7,1.2041735e10,1.0076823e9,3.7323715e8,5.9991028e7,1.7083592e7,5.7255784e7,1.9896256e8,9.3114136e7,7.180711e12,9.720008e7,9.6456216e7,4.4257056e8,7.175937e7,1.04892365e9,1.7941571e8,1.591734e8,8.1019225e6,8.982848e6,2.873409e8,6.641643e7,7.847566e7,8.580514e6,630202.2,1.8872404e11,3.0929968e6,4.5575964e7,6.1289076e7,5.28746e6,1.5574514e8,9.606247e9,5.6965056e7,1.9868067e8,6.607511e7,816192.75,6.9767965e6,3.1416944e8,5.3151885e8,5.2284804e7,8.642134e6,3.3193516e7,2.165466e7,5.121151e7,7.485941e7,5.3646272e8,3.623899e7,6.3429524e7,1.2201142e8,1.6593929e9,1.2318083e8,4.0036403e8,2.8554166e7,1.7520563e8,1.2502265e7,1.8870619e8,3.1749952e6,2.4428112e7,7.403868e8,2.9622424e7,6.5086268e7,7.4261105e6,4.0408628e7,2.4948966e8,5.0370307e8,4.2559828e7,4.3775798e8,1.3653627e8,1.04598664e8,2.3039898e7,7.058911e7,3.551305e6,1.3469358e6,7.805774e7,4.15668e6,1.0480272e7,2.3599693e8,9.269717e7,3.6428887e9,3.5472884e7,1.618071e10,4.2138156e7,1.1270847e8,4.435591e7,3.0154284e7,5.0808824e7,1.3451282e8,8.867071e7,5.906984e8,3.6650214e8,3.2489976e7,2.7525272e7,1.2984148e10,1.8443664e7,7.433062e7,3.8097444e7,7.653533e7,2.0632666e7,1.613643e7,1.3935213e8,5.156447e7,1.194058e11,4.168668e7,2.466677e7,2.981183e8,3.7306748e7,1.0835761e10,5.887706e7,6.980285e7,2.6039314e9,1.0657359e9,2.9506334e7,7.483936e8,6.417635e7,1.4031477e8,5.2035773e9,1.2051936e9,4.9337075e8,4.266064e7,3.831448e7,2.8740522e7,5.043331e7,2.841252e7,1.2604759e9,1.6145523e8,1.2421449e8,6.3108475e6,3.117346e9,1.9212788e9,1.4336814e8,4.100018e7,2.870542e8,1.273352e6,1.1433637e8,2.7296094e7,313377.06,9.881004e6,3.229194e8,2.9566182e8,124668.94,6.6554216e7,3.715024e7,3.612508e7,1.0409815e9,1.0513564e8,8.4998104e7,1.0095449e8,7.395865e7,3.5328078e6,1.7127059e6,1.7093429e10,1.0325553e8,3.350164e8,1.8105714e7,9.2933956e10,3.260189e8,1.211723e8,3.602227e8,5.2653525e6,8.696375e6,1.4745283e8,9.372124e7,1.4463331e7,3.3179004e7,4.2508536e7,2.177538e7,5.4035686e8,885662.44,4.2287382e8,8.250241e7,2.2306474e10,1.1158149e7,2.1794368e7,2.2497878e6,1.8354496e7,1.4091592e9,3.5019464e7,1.2540527e7,3.3260186e10,2.4395607e9,2.2309726e8,6.693589e7,5.113532e8,3.7853974e8,9.707574e6,1.7315056e8,1.4529454e7,2.4142548e7,1.537075e8,9.4671016e7,1.5587541e8,1.9083164e9,1.6065349e7,1.276096e8,6.7161416e7,2.5738082e8,1.8269914e7,1.0867246e8,2.1046622e8,6.0499725e6,2.141197e7,4.065135e7,6.6186276e9,5.904924e9,2.8078084e7,3.6019548e7,4.7729347e8,8.994541e9,5.266091e7,1.8165608e8,3.0547478e7,4.7912012e7,1.3690124e7,1.850321e7,1.0405541e10,9.3367704e7,2.7902942e7,1.1984209e9,3.20228e8,9.9435624e7,1.624892e8,5.649621e7,1.8959328e7,2.9697002e8,2.0844668e7,1.6578365e7,3.8130472e6,3.3172128e8,1.0445718e7,2.8764375e9,6.202855e9,1.2768943e8,2.5346824e10,3.3671242e6,9.148244e7,1.2445603e7,2.4230243e8,2.0964029e6,3.3019082e7,9.9005235e8,1.8446174e8,1.0814115e9,2.2788004e9,8.2731194e8,3.0252494e7,1.1867902e7,2.7677663e10,1.7004814e7,8.517534e7,1.2054392e9,8.979266e9,1.369999e7,1.7538818e8,4.4036276e11,2.1051185e6,1.2163724e9,2.9028402e7,9.282764e6,1.9629237e8,1.0270261e7,2.3587645e8,1.5323391e9,7.305863e7,5.9641487e10,3.0165447e10,1.9891493e8,7.256356e6,3.824081e7,1.8681762e7,3.9457624e7,3.654291e7,2.8256486e7,6.0224995e6,1.9129336e6,1.6330944e9,8.7015096e7,6.7344056e7,1.2558179e8,1.1027634e8,1.1184329e7,1.857409e7,1.497495e7,7.964451e7,7.128257e7,1.1266336e7,3.8231085e8,6.09834e7,5.1891016e9,1.9377704e8,1.4189162e8,2.4263589e8,2.380352e8,3.5836336e7,3.1777107e8,6.0284416e8,3.6143305e6,7.0824215e6,1.6721613e7,2.7242618e7,6.4193852e7,9.704704e7,5.0687562e8,6.616837e7,1.8718242e7,8.627641e7,3.888563e7,5.2500236e7,9.096293e7,3.692648e10,8.258885e6],"re2":[-9.203442025294152,-6.840928793064069,-9.40013192375292,-6.639167543588885,-6.623732689677504,-2.1060159370029368,8.646676967070796,-3.4060508180147453,0.5941738443940725,2.87158149023651,0.3733720895950725,5.120175241514925,9.1631895779051,4.383367050151419,3.6192160737139734,-0.3562163468798083,8.038026950012213,-5.625532352827703,6.338636865117479,7.382405284738287,4.0261903891170014,-0.09004396974446927,2.7828382458022425,-0.6115069892481699,4.00358313002798,2.2678590035344257,-2.0743659481268217,5.032016302208266,6.677811495613362,8.254647871625906,-3.726793597084206,7.092443265045539,9.83686775897905,-5.635391935833942,-9.170895752597561,6.904386891879206,0.21691596052191997,-9.036878148786071,7.9243760293585055,-6.906942312370594,-4.41113151677238,-6.6235932231125805,-7.401262316477315,3.9071321694386967,8.760703344898474,-7.223024653928669,-2.630720314959296,4.517014968696909,-6.0387169157053,8.844601984719617,7.398303804736852,-2.669135998805361,3.318622222769349,-9.921516892175276,-9.425411717973429,-1.9513618706051687,-4.924088007176762,3.4464754797834694,-3.568373355271069,1.565275702644362,-5.579871388218236,-9.251401814734413,2.5752537026610423,4.98069027804682,-6.712807524510353,-2.854704004972051,-9.219185904993319,0.26317224418681207,2.6305280364968464,0.650977947256548,-2.87862368206593,7.234923264916546,8.556520425220679,8.871747638977702,0.1895478151784058,-1.3742544181578413,3.1731511267416153,-5.8526644388658315,5.526552847304533,-9.846083814773205,2.064470200964754,-2.408206235903034,2.6655069417798707,-8.192570165244188,-2.5403169447447516,1.8321861547084453,-5.656616298672539,-8.596211847452144,-2.8182345721817477,-8.367057172032272,2.162403763828566,5.517102078588497,-5.583307468557972,1.3269695241059072,-2.9059082164357726,-3.9130718046323443,7.175970116422498,-4.546245393144488,-5.092923250400294,6.291762254230505,9.740835096916602,8.042747315685116,5.4744441279928395,7.942866388459077,-3.040272701768356,6.275182385518235,1.2526730059875373,7.377737084553079,-8.985637898431278,2.840658115263066,5.775133818092172,9.865747693372203,-2.983703645690154,2.5034038831933376,2.4532054238112053,3.497497282409217,3.7658639750985134,-9.038149965126896,7.601680224586534,6.756372926700031,0.4365914342930566,-9.128925981582366,9.050786318393278,-2.1789178769770174,-1.2255265712063164,-7.906483373538158,-1.4911895275267852,-3.6068892231502447,-0.7306157771533073,-6.438477495521511,-6.533742785531073,-5.1630694884847905,2.559213487847618,-4.936772823776638,-9.999720862193088,-7.538538800307402,3.9537837107094393,-6.085097281047156,8.23194904573256,-0.1846123404728175,-0.3324644724845971,9.947173181504187,1.0687183803621103,-1.9376695803212467,-4.277462855116301,7.142535734172625,-7.603739521553821,0.09679523689859337,-3.6628382139085103,-8.962123784300545,6.3067620385055285,7.345499720454445,2.9167932463073356,-4.684089960421978,0.7358661917207865,1.9154567554096236,7.049420615981365,3.7747871840664278,-6.545550355695697,7.0327350177313335,8.943858889677529,-5.247586513006112,4.167968784755692,-9.388682652969344,4.2075483429873,5.552389393456581,4.784222832438376,-1.235754900390333,-7.483260883183487,4.987575317107337,3.322297412428787,-1.250475228732844,-3.029876526029951,-8.150464845191529,5.004150621930801,2.6714453529777344,0.8930147826511448,-7.406075313184674,6.052055856825394,-0.6843666557117718,1.364622594486029,7.322737280898107,1.5511047848229627,6.223295018107137,5.217725553377141,-4.387331465512736,-1.5629297924710173,9.94448423443788,-6.661017338695534,8.920386378553307,0.6984607690029776,-2.5264450538359418,-0.4168211892732465,1.9560172890781615,-2.306023485697364,-9.850195776661126,-9.55002593852226,4.36369172123846,-3.0144313266836313,8.87468845858766,-0.0165128764457112,9.234040421196163,-5.1615865892224715,4.303836454115771,-9.146059962212359,0.26473981207754527,5.243840537586536,-3.9097925664927473,-6.286960682400502,9.466829142492212,3.5951844723029946,-9.6369994108804,-3.846319097834961,9.430495669215297,-9.213413632406613,-0.06730242922766294,-9.616562460013471,-8.511335345119676,2.1117369652498112,7.707066302071375,-3.727137629017248,-0.5222031348733864,7.706220170697627,-3.50938283841542,-9.384182315539228,3.08564854765039,6.291193017707034,-4.053454103014957,-2.378668738662853,-9.719673756066904,7.996302626457773,4.365929192831228,-3.9986871174473286,5.455609537184436,7.009840061280567,-3.654576263138667,-6.108115427801821,-8.378445884697427,-6.9433002479737365,0.6798151622714208,-4.927829773183882,4.424302401781567,8.515481094699059,1.6572834124338076,8.507817819561517,-2.9051055521787283,5.41562023819154,-7.467904799662957,2.134677872694164,4.5337489845410985,9.903956510200711,7.828174459841332,8.311301713681548,2.7651828710207518,-1.7770388255340137,-7.8203403170553365,2.9651425564810907,-5.185837688293571,-8.130117619836199,8.894736020690523,8.765616327952188,-6.13743574736591,-5.3518735109551185,-3.713905877671424,6.715068537021207,-6.70108654288029,3.6853673221084584,7.27019137789781,0.8341610416538714,-9.883530962340174,0.7208621683799663,-8.1184840928288,-2.1634524612733035,3.344712333308376,-6.3181155812737,-8.621476917065305,5.499976029382648,-6.574557175656186,1.8052152613805195,3.040212197366678,8.052224632389724,7.320999650371348,0.27158658843881156,5.4292697100496135,-8.786164901598536,-8.219598626946398,8.590180797338402,-8.518303142278889,-9.879168488495093,6.779019533653525,-6.465417632705128,0.11909209396711162,9.683272751532844,-9.447309761646261,1.601861166091279,9.687781890112742,-0.3415316385463196,-6.224265357757648,-3.827358101181712,-0.8235675202908173,-1.9887985968131794,-2.686094390387126,3.1309939607753137,-9.852074510513159,6.827995458314714,-1.041855443199946,-2.786831115579165,-3.097799783463861,7.222095103438445,-9.16538659826682,-5.790775244588316,-9.52107645063469,-8.21871340014922,-1.1774705108662005,6.927979161869974,-6.186455488992488,9.975350818691563,0.8499060051842093,-2.0460887864078092,1.3759846370724098,-7.5218149881676215,-4.35851975821016,7.985606000331408,-6.379317659979584,8.625886609540416,9.695978444656447,-8.129455305935103,3.983051165863296,4.942434221792356,-8.746115968816655,-5.187936114712926,-4.929427862358688,-5.460609068985054,0.802833095673698,7.00502314982004,-5.395585997732779,2.7164319449733263,9.134252240957629,-5.924702011281886,7.4474989489056185,-0.49431168624360566,5.821168232176586,-3.2584648718377878,5.345092324294875,-0.19648553145894532,1.7781756136360833,-5.845568079947563,3.417572034305758,3.6014174910329224,7.775100886706216,-5.640160244406509,-8.123960596775163,-7.327186297003385,8.274914359903761,-8.549250845395246,-6.091709982280036,1.5997683846090833,-2.198554031194469,1.7752339737856726,-8.0242148229775,-0.20892203687706434,9.664177725506129,9.883402884739127,-9.824308493893838,-7.136789630289058,0.372847534588697,9.944068557524446,8.897148036894041,0.4133323361566337,1.7411230039036951,-2.346278107528601,8.248751292373221,2.310478415931289,-2.9967970780026265,-8.482879303477018,5.969921454833909,6.489684865205486,-9.334331798604731,5.994709558300892,-8.187607552717928,2.897304449765059,0.8361732441308334,-7.918980064247481,-2.1550442435967643,8.163863917007813,-4.12970773533077,4.131741161449412,5.067417527193463,2.559599741586819,-7.204622305488888,2.421688697778526,8.87432870968076,-0.6232118843435845,-0.9337645975626749,7.260412298470289,-7.4836424471252805,-3.2451496014324066,0.8440629138407019,6.37193371269597,5.332996169942646,4.835936511660764,-7.741066850220097,-8.417831338911554,-7.458384312518403,-0.4680231158922936,-6.739655048265876,-8.971256251654392,-1.4776084997300316,0.2900845502381362,-8.88312151877145,5.519382473508028,9.404606437152385,7.336469962156041,2.8674715037565424,3.1422164308225966,-4.440277171265217,6.722558422278503,-1.0845139871849252,-3.3363385751566383,0.29315226214975176,-1.0699208920474632,5.295544816169249,0.4995491469437585,9.815671036003938,3.988739129911636,8.0765945537869,-3.8635906491340943,-6.463564637368031,-2.9858662674839387,-2.700544389162096,-2.7862642922104897,0.9959436838792453,1.735751407367637,-1.5944044405593552,8.012773725018569,9.600656158096513,-0.3516737439320501,-7.420170154553178,6.0705962873871115,0.935057836693785,0.3979047648642222,5.415342983579112,-4.527868985555001,-0.12500900764333878,-7.208715314496576,-2.6515987676726844,3.9098760345979464,-3.406887582407161,-4.546746389349781,-6.932748180593209,-5.1440035123457335,1.786678656525865,7.3871009155216605,0.3485783168560346,-0.4118207164585179,5.485457362493193,9.215887417175129,-6.490562447722155,-8.200959541690587,-8.412993902863942,-4.613891799433274,5.224051486311012,-7.399241526017189,4.945386295936995,-1.6446247151148956,8.430265577925333,-7.289964960249304,5.404621516638407,1.2936166836853413,2.810501897974291,8.940006948433478,-9.128257899074843,-7.082578543195037,-7.53734079029345,7.9302697984475685,4.680549832024125,-3.7369467009144097,-1.0327426471345387,3.75560476858411,-0.8658566393143197,-4.007127616738422,-2.0825549314479863,-5.652361092001172,2.278884069986148,1.3211845275905993,-3.533484018816429,9.464613930878329,7.897694398115178,-4.898010038086511,6.067514627646727,7.039154670283601,-3.2398221250463948,-9.784190660016137,-8.818113227809778,8.18131668152845,-8.010495655816197,5.993694018198992,-1.1486666772939298,0.43176765616260937,5.254493349814709],"im2":[7.795125735667175e-7,2.6876812937355913e-6,6.796561862171126e-6,6.493328742937445e-6,9.229861814951965e-6,5.285107815983387e-6,3.4609517634900704e-6,2.8568412872386175e-6,5.5705046933319e-6,7.1104087543306435e-6,4.1426170414538735e-6,9.492450885659787e-6,3.517142164067352e-6,6.461324260176804e-6,2.5223799021445296e-6,6.173464434072959e-6,1.3316077344745104e-6,9.765265379320728e-6,3.737486629373204e-6,1.8048747843197379e-6,3.642865458301673e-6,4.715719076138439e-6,8.289291276003998e-6,5.2119742323266734e-6,8.250182968137088e-6,7.412941209109694e-6,1.206742437713283e-6,2.1608230803073514e-6,5.014357128222647e-6,7.161705996570074e-6,7.359279922348241e-6,9.046366033499177e-7,8.897313584146888e-6,6.787286004856421e-6,4.768909277702297e-6,3.0413753779362752e-6,6.033751919346797e-7,7.001461925602288e-6,8.933843544659914e-6,8.791141028416793e-6,4.395065783139333e-6,4.095957842518045e-6,7.832617199081728e-6,4.376341446319209e-6,8.816987437618967e-6,3.839386873400662e-6,6.356532147787545e-6,5.859609746689176e-6,4.440408664841966e-9,2.9437577310512457e-6,7.3481916075845094e-6,8.631165428870147e-7,1.0829463692469122e-6,5.280601856369998e-6,6.46293914270709e-6,4.3495226104922295e-7,6.129471888747339e-6,4.2409325897609376e-7,5.488404939807675e-6,9.815933316918262e-6,9.939290450915918e-6,9.924391752326297e-6,8.015195428778363e-6,3.6387373503685218e-6,9.937282181429542e-7,1.5640676450512305e-6,5.233736265441606e-6,1.1399888964568473e-6,4.920715074867793e-6,7.92996827762221e-6,3.582382791388377e-6,8.477331797424339e-6,9.080851484392961e-6,9.030132372118417e-6,3.5838741228195163e-6,8.51074727010163e-6,8.254333694638872e-7,6.276197148485329e-6,8.110555210582133e-6,1.256358439192682e-6,1.085310051191778e-6,6.346424096578664e-6,6.774193118006153e-6,1.2100880196395693e-6,3.968633737244705e-6,6.524383431939008e-6,9.56190524825782e-6,9.918928801844022e-6,7.500440258981853e-6,3.7078802911489476e-6,8.599978002908627e-6,7.584020838609455e-6,7.04303371926533e-6,4.136076304138828e-6,9.7863258581875e-6,2.0522197091928243e-6,6.190649580005378e-6,3.2665080495062583e-6,1.8983103667861768e-6,3.388038895424828e-7,6.8863452896487196e-6,5.544141038749746e-6,4.591642550821573e-6,5.279365203205057e-6,8.931993536323315e-6,4.646478587327593e-6,2.6281815662095843e-6,3.187816742093559e-6,2.064675514829436e-6,2.365575030895979e-6,7.867224579897986e-6,3.863278430634853e-6,4.6587655958104005e-6,9.168203750135613e-6,4.018858930769144e-6,4.490918721910827e-6,2.5540334852615203e-7,3.264043308547661e-6,6.902905482255106e-6,3.990986515027819e-6,5.136571293543835e-6,8.749580177828798e-7,2.449563316639739e-6,8.818332687356945e-7,4.024424310764178e-6,8.692009548957271e-6,5.144012750476222e-6,1.600970343340843e-6,7.071196311568603e-6,2.6104867952440915e-6,8.731309671929589e-8,9.926611560259158e-6,3.3971518766848467e-6,3.1050527036884516e-6,8.781613187744827e-6,5.412931719666144e-6,8.157943188436954e-6,3.6218927788261615e-6,9.206413816655021e-6,1.1514617108306491e-6,6.23299859831512e-6,4.852503129856534e-7,9.97589051663009e-6,6.280360044761969e-6,5.621278761669883e-6,7.330460699727101e-6,1.0982150722731122e-6,5.181556451238554e-6,9.02891238634665e-6,6.836427721192931e-6,5.653220847411457e-6,5.946392351350929e-6,6.5470882450890596e-6,7.922044612354799e-6,6.152045996027533e-7,7.882245229498751e-6,9.219668899959901e-6,5.8526006258204926e-6,8.880836319156758e-6,1.387531868014913e-7,1.411800038661726e-7,1.8022693558179806e-6,8.795256749030781e-6,7.844120814343653e-6,3.2939122636832465e-6,5.711135739092386e-6,2.164699465482434e-6,3.7065365651690834e-7,5.668194449743298e-6,7.986214732614146e-6,2.5525521133278074e-6,6.75009454944908e-6,1.3203819683826558e-7,1.1252736229332684e-6,4.4993284760725406e-6,8.259644285754247e-6,4.670847252881725e-6,4.301724376828792e-6,4.490746089336173e-6,6.0225612525007195e-6,4.789893751301784e-6,9.73402432381288e-6,3.2345618642400822e-6,5.43627873639408e-6,6.780828387650905e-6,9.377815063611359e-6,7.3302477327038315e-6,5.917371096765234e-7,8.382351950944515e-6,5.1128155298611414e-6,6.012037773257827e-6,7.4735128350945956e-6,6.2325084073512075e-6,7.069409089665159e-6,2.318345159591966e-6,6.51901600913052e-6,7.607399413952037e-6,1.9598100355684213e-6,6.15479325721477e-6,8.144179479044804e-6,6.649063182782131e-6,9.735495398365273e-6,4.354468323290287e-6,9.084562374588324e-6,6.446309958318305e-6,8.118613431509294e-6,5.655076078771718e-6,4.586924051497242e-6,3.4352478325612284e-7,4.58281945207592e-6,9.672517125799047e-6,6.618528308753164e-6,1.1808294834455369e-6,5.475047500538607e-6,6.946649219085058e-6,9.89802511740321e-7,7.956459463952187e-6,8.85486485937591e-6,5.487669517255522e-7,5.80259079915672e-6,5.527410607484551e-6,2.751110587274464e-6,7.052729856180517e-6,3.1116951750001514e-6,6.877734830285853e-6,3.669863554338182e-8,4.37965169551899e-6,5.377347055339618e-6,3.1451643781751284e-6,7.276179180062475e-6,2.2431690677369865e-6,1.8425287486399756e-6,4.6602062906979106e-7,2.659264324611015e-6,7.393420135602591e-6,9.283209112990628e-6,2.09374102460286e-6,5.018673894565835e-6,9.253719557857e-6,5.94712837269496e-6,7.140643958536802e-6,9.019783534411958e-6,2.1514426324423366e-6,1.2330220487333643e-6,8.155376739522993e-6,6.3214758564758775e-6,8.414981711305882e-6,5.216636585647036e-6,8.590093733868609e-6,1.0310363807940726e-6,6.7427105984669205e-6,7.014974149614639e-7,6.045197680945249e-6,5.682428273760383e-6,4.489905908156604e-6,4.380360928638328e-6,7.576929222028997e-6,4.6344710640854854e-6,8.432875194306185e-6,2.83554442098404e-6,6.249435131558065e-6,2.2651364892099846e-7,1.7173300508613434e-7,5.446717333589742e-6,3.9354997924108575e-7,3.39849839556873e-6,3.294284248740862e-6,7.002996814254999e-6,2.8489020639276467e-6,4.684530489891918e-6,8.939894924225193e-6,3.89274554356914e-6,9.047565559965181e-6,2.4388103728962043e-6,4.841171883857626e-6,7.326504211634778e-6,6.600372112573936e-6,6.404453726596037e-6,7.98793244200438e-6,6.771944012338307e-6,6.3106522859992795e-6,3.709754008567352e-6,3.891019064695041e-6,1.9329336571029435e-6,8.130594837290061e-6,7.781863863131913e-6,6.778497102724361e-6,2.593081077850589e-6,4.364466978448788e-6,6.783131116918546e-6,5.8699513093766756e-6,2.289332685454183e-6,7.078593869366143e-6,9.51634105592733e-6,6.231532695676532e-6,5.017543038967969e-6,2.425366039871152e-6,4.881344614480359e-6,7.15733026757581e-6,2.718881221730787e-6,5.147858619236603e-6,2.3209620074266525e-7,7.882972904737049e-6,7.4121618530196685e-6,6.801291675891375e-6,7.590056605478682e-6,9.734175699024833e-6,5.113829084720714e-6,2.76506650428088e-6,7.728013399165518e-6,1.0813941620748658e-6,7.316200013269136e-6,2.350972166566531e-6,9.189157960738896e-6,8.729498161265256e-6,5.195951728859317e-6,1.3361596881925743e-6,4.907308941168914e-6,8.506789279510106e-6,5.816449916519995e-7,6.5193206888143435e-6,5.651120604523129e-6,1.843117859382315e-7,7.555423488707714e-6,6.852068493274089e-6,2.777871027028578e-7,2.3706333567446416e-6,5.621372805102847e-6,8.038779876147891e-6,5.926489615286475e-6,3.2552982562443504e-6,2.560585377631639e-6,4.723867701997112e-6,1.0971417026148724e-6,7.863864026894717e-6,3.841446669885838e-6,1.3020489102475299e-6,7.296301156632253e-6,7.900089716765103e-7,8.31433089279432e-6,7.823483899264523e-6,4.883412198240996e-6,5.014178680039506e-6,9.09508833164896e-6,8.48278241216541e-6,5.07861314734163e-6,8.916301034418707e-6,9.375075916364443e-6,2.125723473963286e-6,2.7545784259342602e-6,7.41304852183719e-6,6.699674765567509e-6,8.627694999445165e-6,8.338677291250896e-6,5.4810887683666414e-6,7.979708912095028e-6,6.975105320965393e-6,1.3983669407342525e-7,2.012608408356821e-6,7.925062577567448e-6,2.517934907076243e-6,6.566733830680643e-6,9.09534942203144e-6,2.1365306625250226e-6,3.981339311295481e-6,1.653023813940191e-6,8.870142732590803e-6,1.2594419735908392e-6,6.344576638673252e-6,7.834450610306699e-6,3.112066483571491e-6,6.713726396096107e-6,5.238216437209956e-6,4.081419434255366e-6,9.356653758149958e-7,7.807106026248326e-6,9.609584201000227e-6,4.773568741570724e-6,6.927972671175206e-6,9.321333827432898e-6,1.6697439476394594e-6,5.605769875608465e-6,2.4600528585547454e-6,1.5992278275880902e-6,9.17127110969719e-6,7.2154918941229115e-6,4.389606954091063e-6,6.22748405639655e-6,3.066420145527891e-6,5.009561696551062e-6,5.30189351153945e-6,9.573022888812136e-6,3.5621066807625493e-6,7.279472405817966e-6,2.1425775788834878e-6,3.89591831603894e-6,8.323749321633633e-6,8.831985529191252e-6,3.2505020395860764e-6,9.262051780824825e-6,7.652816942882743e-6,8.082902459189999e-6,1.107962633991717e-6,1.7577538367921443e-6,8.057622774809218e-6,7.587425641945839e-6,8.903297710600471e-6,2.8883470310884798e-6,7.9336700577889e-7,8.622269937984198e-6,9.37190041536144e-6,5.583337407378025e-6,2.229935760929579e-6,4.364895585003582e-6,2.1338749203432708e-7,6.454474899020214e-7,5.628360660563037e-7,2.5424227133331505e-6,8.675693268909857e-7,1.5603755297868006e-6,7.885178222655035e-6,3.978305153475653e-6,8.914415609776212e-6,4.488953359965027e-6,2.1231031076015984e-6,8.515734887332183e-7,7.65131813470206e-6,2.9275162778650337e-6,2.5410551989512155e-6,7.247271993384679e-6,2.1203963277186634e-6,3.797977049216951e-6,7.450236610995995e-6,3.7661380350846222e-6,4.833350778327529e-6,4.6124043909009476e-6,3.589601617488857e-6,5.127562358979194e-6,7.223883835919796e-6,2.9009095120105322e-6,6.737942803151139e-6,7.494655735404777e-7,8.478733727820594e-6,8.069776305657532e-6,2.3099833905276258e-7,8.568716898645208e-6,2.869309138330393e-6,3.3791213499158724e-6,5.644147498750008e-6,8.541224471262904e-6,6.7486021605391495e-6,8.826158323547716e-6,9.825835109507612e-6,8.963444932766942e-6,6.935881485013601e-6,6.4690802210773305e-6,8.078367558157563e-7,2.0845827383733876e-6,2.4242081259443796e-6,5.3905399880371256e-6,9.35141646526846e-7,1.1276082322959535e-6,8.79717724974061e-6,5.0681652057725797e-8,9.504416006184293e-6,8.600793720065498e-6,7.486666879264543e-6,3.971601808526565e-6,4.554057460659924e-6,6.465812401009508e-7,2.053110902692227e-6,1.8669015614254804e-6,7.231480954036804e-6,4.619485262724203e-6,1.6833264605979372e-6,8.903362913986155e-6,5.303875920453489e-6,7.17894197904001e-6,3.845973029690361e-6,1.1641121463126015e-7,6.4125514573242686e-6,2.86390907248272e-6,5.0014978015883485e-6,2.0644816569913473e-6,1.4557591516542057e-6,9.401166784816506e-8,4.770151879666067e-6,7.98838402336029e-6,2.1924732328583333e-6,6.2440478322276856e-6,7.117148755078816e-6,7.395734364882808e-6,9.782082881795374e-6,2.9571556514697674e-6,9.348568512594437e-6,6.520491198709719e-6,3.164803155529509e-6,2.8071121834301763e-6,7.574026742448495e-6,1.564433794587008e-6]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json
new file mode 100644
index 000000000000..ee4cac9702ed
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[8.272966191311554,-5.493521258015286,-3.9488916501451303,-9.753901205568802,9.513780150070197,5.448488348249205,1.8175669985807286,-2.0944720018236485,-6.12578241104504,-6.8100170095808155,-4.733582946327857,-9.226784483995678,4.812940644421193,-2.5262538530123084,3.7813301703852087,-9.531726912884057,-3.1461584776226648,1.2300946777927848,6.587344614611194,-2.7488232111644573,6.604326618537414,-2.75719479657565,-3.6439668649160613,6.144957585799791,8.575068431179997,-0.8859432143613475,5.396142144198485,-0.5060240180085724,1.5154407220921904,-7.314184347209787,-5.096607646901239,-8.094465292347744,0.5443906927864504,-6.998822689776912,4.571818602025866,-5.71282335631558,-3.608430300613059,1.6987019335826261,8.005699548935269,0.03392598138371561,-3.4134923403397677,-8.036421589769416,-3.36944908778547,-9.800577635547514,1.2448386803024434,4.139373291063535,4.012854990052741,-2.833216078669196,9.760901494508186,3.5549162846061737,7.397963322587188,9.823497628382828,-7.212923041290584,1.062624687731855,-5.306463408683541,8.017503616860239,-8.38467151490022,-4.027685404297858,-8.78043323606475,-2.414611831616817,-3.298589203121141,9.880150359039341,3.361173408292789,4.714889022050212,1.5536097711386727,1.290777114030771,6.927833303574811,8.141205870134435,7.303475249739918,-9.231451665383625,-5.866795936387115,1.8447983269122243,6.988129298016219,7.330226601208583,-8.841959790856158,-9.542459340545218,-2.4151213078461,-3.1528239405279646,0.11212423689730677,0.44387086129193065,-8.238486497348758,2.690392888274264,-1.348453879663543,-1.2231800509081303,-9.40576236838552,-6.585257351686211,-8.944660738086863,-8.936240872588986,0.8288249690783687,-9.709098010771681,-0.5506108782926145,-4.08145305528876,7.147333716516812,2.305154354861042,-6.455710023981234,-5.995954063241616,-7.942085266318881,4.240837542396228,-5.6109729017346925,-5.2243735258223545,4.94356842744299,2.675355554301415,-9.696591906529108,-3.3021936186672303,8.325357577543222,0.05736107484193198,-0.4222683742022344,5.317799717398774,4.932079489992844,1.0817484399513955,-7.903402549821719,-0.5026491831653779,3.9624959742308654,2.9904961451965484,-3.5584976537851087,-3.269163370110646,-6.611763143568654,7.961182748141965,7.123658839981772,-0.4029736799636261,8.551175869435092,4.0283061516023935,-3.117812359905252,-5.522869573966219,-1.579019224121744,2.5324864821282596,-2.6818049624550238,4.8387558351261575,-0.740240045702576,4.751627101674913,3.964497526240647,1.4594163740473913,-9.963736130086538,5.055142513810171,2.2010812570751437,6.229293677709823,1.888548009506728,5.1245061430892385,-1.7124234409953836,-5.0834156263550305,2.686771998273233,7.141690850949434,5.591212586127984,-8.170393353994037,-9.916783922318785,0.9370407567088854,3.6196049073785765,-7.608073745926102,-9.92760465042302,-4.6381854973706105,-8.402443195683567,1.7257775869871317,-9.287159340536181,-0.7754528894627004,-7.514527656264578,-4.518634975237017,-9.640155384570566,9.032273695237972,-0.8863589340962523,4.847327590794572,3.6490230611163366,2.3238432018587183,-5.76081978190709,-4.505488202772603,3.6642627688327316,-8.755090242783483,4.395461734741136,-7.710376563587513,-7.2333830031665425,6.666848843254552,6.7454062950164975,1.3520511398827608,4.9094411425707065,-9.17209860717032,-2.3329403368024977,-4.8675011216002995,-7.033493229863419,-4.68340604132421,6.3471172850325,3.3138383896955776,-8.547471918016454,-4.2718855742536865,-1.3885650327440402,-0.745145078564315,9.500342676335215,9.468677157486116,-4.55130416676333,-6.69445920705499,-5.879052723211715,9.580697710121655,2.6714048597864952,2.9702255914843168,1.4462475003853381,-0.3801132546943755,1.762154243746492,8.164112964517631,1.5882750535274486,-5.892864881827764,-1.8836842600388426,9.221610725101868,3.9832045562322413,5.155824406335068,0.5298446131725303,3.883031061824042,-9.737088765793162,3.1235252158925526,6.111398957280709,5.842072335294748,-9.643864429779494,-1.9035872325556031,6.631249613179179,5.454964204580348,7.384408411437121,-8.152284289658178,-9.319562629401407,3.167327882752332,-8.26662571586904,-2.956114877045173,-5.4299914255836175,0.8149555634787315,-9.967080726611705,9.113424378900042,4.704091502958301,8.228729394782444,-4.979418360910179,-9.869432683375809,-3.9447636614749797,-3.7811349780490433,5.102962101691871,8.229200679200243,-2.2844471025857445,1.648382452977323,-3.5868356120074125,-4.340140207319059,2.1707550992077014,2.7827635731487366,8.529734683871514,-8.294186986225473,0.591252729458688,5.285224522302061,-9.978165210372755,3.005134189858831,-3.2995020446973893,-0.11621590210138422,5.888102040600646,8.307148109824926,6.008055518930526,7.290055921136009,-0.9673176568857258,7.782159220028628,-7.277633416232405,-0.1896184266585994,-6.360275122076944,9.680488445752818,3.6012881290062193,3.87054028555605,7.504531321165796,8.808742074146764,-6.810941088324998,-6.185457104400061,8.150685448999141,0.9547464430903858,0.11116821739580018,4.07653009801767,-8.593860999179888,7.2971042676037285,-1.3028643970996523,-5.315595183742731,-0.33754468195179044,-3.597306749445144,4.301158116051251,1.0393312300978188,-1.3177739656599368,-1.6355069961419773,-4.524443907237408,-9.391778414015002,8.729509163527855,-5.889616389699775,5.239174317778852,-6.428079713483479,3.780998506818028,-6.789210725712536,0.5136548112632475,-2.7217757870501424,1.5499361632635544,-6.29433547040672,-3.488058806188108,-6.244729912471618,-2.942247158043827,-8.210373545193574,-9.186505176232526,7.256657876673298,6.335789986773314,-8.894724213036415,2.4533986125217027,8.58669019268558,-5.03911607659131,7.47229443377859,0.5448260094455399,1.6359577817371385,8.691591747438874,-7.865926089899668,-9.328814792808842,5.657702240492135,9.51570457202509,-2.0272572095780443,-0.9081102919303383,4.076246007184288,-4.997079588754412,-2.5866874953458634,-1.9346125766277549,6.379447877300542,0.3990900673609943,-4.383258952813196,-5.384252543166655,6.502381718127555,2.133991341504762,9.768168239997927,-4.742286054471904,-4.298899073139079,1.8372061328209348,6.816799513745689,4.935566589478778,-2.533814046266805,6.45549367089253,-4.343787036083365,-4.196184270029304,1.0762244940507681,-1.1633581183271957,-6.761901446067311,-3.272600259385028,-1.7228277036491662,9.629432317538456,4.436605659947791,8.403642114654556,-3.7390200595120637,-3.873097644644523,-9.87887546973051,-2.877839772290052,6.158696895767129,-5.684243069034737,-9.46227430290585,2.7301382701787027,6.956503406243307,-6.49369044207792,-7.817980100609365,8.373581720166108,-3.5708463731228584,-1.808202049380828,5.4360987424028995,3.5106230488617367,-2.6772331021407147,9.160680963637443,2.700296732857435,-6.79430352878197,-7.146837319834313,-0.4696866440181573,-8.287500860847846,-9.412874817446284,6.791544714171579,1.8569961640514592,3.168608627840328,-6.991866028114373,3.5612947169749702,3.846568899439051,0.08313123152451318,7.672410987745089,7.537769948038719,-9.396479810360708,5.277940196580262,9.877567859323428,6.4764906659137225,6.061019895355383,6.758847398907502,0.8746161149908467,4.802007754265302,6.506979843617874,3.675771061798569,-5.495969952594725,-3.97895609992246,0.4871419052944166,-5.149288866357966,-0.9538185377101769,9.657592530846763,-2.135021526239271,-7.166931373878174,-3.607354188433723,8.385623475926653,-2.116277482588922,-0.5893224466724352,9.710101276980541,3.2355194160505967,8.91485954528796,7.927415791578309,0.6587837407381585,2.284121959105569,1.611028641845616,-9.040946193574474,6.378800366327425,-6.177300885957782,3.63578515401346,9.411764799631868,-7.51946827201402,-5.472167322281292,-1.8479595782457974,5.371555726030779,3.5308500959712585,4.386991221140125,0.8865271701759507,-1.1298049288049423,-2.3065140789259804,-1.3878180972616168,-5.712336169804864,7.658452355903364,-3.4916659438685844,-7.295249456606852,-7.049882196307746,6.683047136229021,3.4100749092234963,6.999370312066976,-2.0892605414064196,5.779091215646821,3.7837698338211894,3.19456728590918,2.512070370207642,-7.484346467994705,-2.856969109994769,2.0019174681303635,-6.305931846056952,-4.801049062047618,-9.901764154395279,-6.815462723299628,6.316636196811039,-1.9951412676881848,7.097720684258867,6.84779149283689,9.306561161925625,3.361113962850286,-6.836919526524188,-8.78039897413311,-5.565740244409588,-0.8751140224208562,-5.014616057340322,-5.288886360185863,8.565754023542492,9.315115789919268,2.6490485115748683,7.530813290512977,-5.047968546476344,-9.612066998674091,-6.930388909120873,7.521117848149171,-7.452857029579789,2.273952207710373,-7.186448639375258,3.499437789189683,8.509749118871628,-8.893465883562055,-1.6835496680895936,-9.434356041492142,-6.270453759874819,8.480023766789088,-1.687782460666627,4.955685699281311,0.03736991408711887,-6.660532061569322,-9.35092697586514,-5.274841857265917,1.0508091011186558,8.591494731274917,6.494601368594729,-2.773032041635666,3.5445489343898444,-1.6923951981526884,1.4491320358297983,-8.365675471588725,7.6877710736369025,0.1866688085473438,-6.87966976204579,-6.902081413459142,-8.796853836594991,5.991162514193871,-3.7130077000672674,-0.41821860691328716,9.369707528197399,-9.165896301121046,4.734550703065283,2.195741477841999,0.7701651144140911,5.8720829352420765,-9.771062737441266,-6.986762529206922,4.485559759795123,4.297249636498686,2.50333773309862,-6.963838260021122,-3.1112887018836304,-6.0537406437698715,6.260185175529976,8.1452975695187],"im1":[-3.877829901077667e17,-9.766268632155548e17,-6.145430454704704e17,-1.8229825703152646e17,-4.704399894862586e17,-7.145293851228651e16,-8.126262912479066e17,-9.440496528075138e16,-2.06808792325345e17,-2.0454901372851197e17,-7.215774155352947e17,-6.553178237145681e17,-7.395922368993014e17,-6.64231329951524e17,-3.6842001967930624e17,-9.114493950364052e17,-4.091313408411103e17,-1.7498432712361168e17,-1.1850693497336573e17,-5.564976861351668e17,-9.318800027184001e17,-9.765739386282678e16,-4.125329703467729e17,-4.3386155173066234e17,-6.583288631626476e17,-5.946890129618734e17,-2.5857391625745696e17,-9.567389021351621e17,-1.8319342695109376e16,-6.928321486310231e17,-8.541092978367913e17,-7.936072944828154e16,-4.563633439609523e17,-2.608834841403488e17,-3.521244750646121e17,-2.4215867258164538e17,-8.635044403891131e17,-3.607154096811234e17,-1.723261059590804e17,-6.760604389715953e17,-7.607332070434194e17,-1.202593839111178e17,-7.741996333538807e17,-8.110333492143773e17,-8.137004252485293e17,-2.5782253419028877e17,-2.8072903929193747e17,-7.546746156282232e17,-5.92569835347353e17,-3.1018886140784154e17,-6.036405058396504e17,-2.3319500184450493e17,-7.594355198853673e17,-6.407753370583302e15,-2.546322230379212e17,-5.928000298691698e17,-1.7726652534855837e17,-2.666399284355445e17,-1.8574215548570995e17,-3.7816065758748294e17,-7.966689439281572e17,-1.8846100044276192e17,-7.516235781058922e16,-1.3143683364988867e17,-5.7619971790224403e17,-3.3694204678836326e17,-1.7213706005468864e17,-3.476874892516097e17,-1.5967479698689757e17,-7.871075324558675e17,-8.80749031373361e17,-1.1984591009403334e17,-4.7429883670607584e17,-3.5654935430185517e17,-6.699833484825085e17,-2.3914520744084557e17,-3.7705925087909165e17,-6.476814898181636e17,-4.23701254940113e17,-7.626151248295453e17,-3.3977799028129395e17,-1.2281292323318827e17,-6.991611360322945e17,-7.12885992602641e17,-9.056450063678152e17,-8.58112280144583e17,-2.4747246147639788e16,-2.520790498219363e17,-6.407867869310659e17,-2.3753920212408675e17,-1.3685045154558573e17,-3.9334600731016365e17,-7.04576775481108e17,-6.763718280831087e17,-9.776310184488791e17,-4.8623197669367014e17,-7.931045472585321e17,-3.9610513923870874e17,-2.4935999839986732e16,-8.351474450774614e17,-6.542508567498506e17,-3.650406746264929e17,-5.97264914158548e17,-1.3720302917678674e17,-2.2500586264443168e17,-3.170408674489195e17,-6.48911379755077e17,-8.042365191429279e17,-3.200707196015937e17,-5.1452400507842675e17,-6.851926715061197e17,-6.660655134012088e17,-1.4486355636899728e17,-3.3932217246830746e17,-9.563026860584709e17,-6.424664501551547e16,-9.344470516566487e17,-9.546606764510189e17,-9.22531957415371e17,-3.61553968981554e17,-5.634772284602698e17,-7.751711785275e17,-2.00487465168384e17,-2.2202368260892945e15,-9.062690741169421e17,-7.379054710407805e17,-3.5708933730179706e17,-7.726071747815308e17,-7.330405841144992e17,-1.7796678469989302e17,-7.417704327761343e17,-9.501942034980682e17,-5.2524408809793e17,-7.516278630812091e17,-6.884088437283825e17,-6.114277771938413e17,-5.94551603275738e17,-5.3500019482711034e17,-4.229660934682633e16,-9.831883950398235e17,-5.261163812249168e17,-5.218288134978703e17,-2.071374723223973e17,-6.0032023472703976e16,-1.8294050121462547e17,-3.376156712575186e17,-2.177471935996801e17,-7.188567184132494e17,-3.312808594808314e15,-9.39246412569155e17,-7.262526182475379e17,-3.480151419432358e17,-7.675562779969363e17,-3.627208995281116e17,-7.451759264010141e17,-4.948539309626625e17,-1.0673526757805574e17,-3.135948751431617e17,-2.388368025333537e17,-4.143107461224642e17,-1.9684013247564748e16,-8.899423602375758e17,-8.359585061339156e17,-1.2952609454279051e17,-3.971797955592904e17,-9.002720400670936e17,-3.3101328687311296e17,-7.887296138375195e17,-2.9869389219531014e17,-4.795873799568199e17,-9.403501210620163e17,-1.986987634751548e17,-6.443385642091871e17,-8.484733708770621e17,-6.562085709007903e16,-2.9126300169268224e17,-2.5027425018003968e17,-6.064733151986884e17,-4.078989375365278e17,-2.7900113766655843e17,-7.316839258075941e17,-3.1326900377760756e16,-8.913189173539038e16,-5.668323924938351e17,-5.140926463463702e17,-8.954704966198444e17,-9.915311696151945e17,-1.2247877914810512e17,-4.096891908538325e17,-6.523249873399619e17,-2.6924662114493014e17,-2.3504029921702442e17,-8.93445833758499e17,-2.8556845547570698e17,-3.882771377194638e17,-5.125440984666834e17,-9.026300149183828e17,-6.599630031753121e17,-5.727141078862473e17,-1.3276881811792008e17,-9.942683125934292e17,-2.2694330443706768e17,-1.3267653011725522e17,-5.860403510623812e17,-3.7080211528341856e17,-7.20728268184529e17,-4.8751355909870406e17,-4.023537944697846e17,-1.154964916516823e17,-4.271935708504868e17,-8.59836389979669e17,-3.7977406619050426e17,-8.090498489485203e17,-2.787394069889112e17,-7.132091316559616e17,-7.023643000682724e17,-8.875134319459507e17,-5.131826980620615e17,-1.1381379635272704e17,-2.5688695000968598e17,-5.5021485447595565e17,-1.0686527141109869e17,-9.772471361355256e17,-7.260299869315212e17,-4.044686150721729e17,-2.940556042993288e17,-2.3919546658321933e17,-6.679396630522595e17,-2.8338880273246602e17,-2.2657194325760445e17,-2.0517483406686854e17,-2.1135746980772342e17,-4.314747179333046e17,-2.4895537860342688e17,-9.161713565970796e17,-6.288092862204375e17,-3.345767382870661e17,-4.9683567547707885e17,-7.742536449618564e17,-8.373817822312412e17,-1.3631263632216139e17,-8.874459262430543e17,-7.275991612706624e17,-6.818716581320737e17,-4.209175147407366e17,-8.485561018055181e17,-2.876267360799314e17,-8.838937580278272e16,-6.941407738148511e17,-1.660637597929365e17,-8.320384665438048e17,-7.615873720437247e17,-4.4672345481019757e17,-5.106788107281807e17,-7.197265274845673e17,-5.3963615245710426e17,-7.48958400185023e17,-1.7034756269875206e17,-1.387703179085008e17,-3.8295225503218797e17,-7.154234171882967e16,-9.066050536653146e17,-7.07807215051003e17,-7.304396249001688e16,-5.675992876580078e17,-4.774816295032404e17,-9.013503763286785e17,-2.146908351282557e17,-4.083107658181657e17,-9.05115941453325e16,-6.010586288933053e17,-1.9472209269204698e17,-2.9164237150216544e16,-9.232589598179424e17,-4.5451239162408877e17,-6.939825883474973e17,-3.590333812672453e16,-9.138278389431941e17,-5.6737866742238195e17,-8.334912753889455e17,-4.022639727427116e17,-8.342718207748323e17,-5.312208134586377e17,-8.407973395870012e17,-1.0965856379830042e17,-8.902868246160365e17,-3.941404797013328e17,-1.6951213586492576e17,-4.9217056040727955e17,-6.643167386770766e17,-4.4678910037789734e17,-6.858020863441495e17,-5.2405508587749574e17,-5.044888058787307e17,-1.25038429691247e17,-6.119096758720584e17,-9.350366532275832e17,-4.07457308445724e17,-5.0717292883184294e17,-4.039344549086488e16,-1.579663884509338e17,-4.3597765229942195e17,-9.863436354834452e17,-4.438207976177702e17,-8.316641454658332e17,-8.042036790662141e17,-4.030528425683468e17,-3.593428943775111e17,-7.541780031861221e17,-2.708970531777546e17,-2.701593233094657e16,-2.3449331710364963e17,-4.848913341494212e17,-6.498898346002184e17,-6.483147612907596e17,-7.650140430012502e17,-1.532163304831653e17,-9.851990096266732e17,-8.82459752459594e17,-5.50462835774809e17,-7.14999728964015e17,-1.9468578164242634e17,-3.2549778181564806e17,-5.3866398089538336e17,-5.482578949789551e17,-1.8839857968572016e16,-5.963241031680495e17,-7.838222148596152e16,-9.849492271867483e17,-9.74035768821942e17,-4.294448944181015e17,-8.063161621180554e17,-5.4806315488946944e17,-6.788123242387222e17,-5.701079340025074e17,-7.992385310366739e17,-6.877859614734514e17,-4.151600842298245e17,-3.591611569954428e17,-6.757777262509111e17,-7.724715849662317e17,-5.204523930598095e17,-2.378282529705874e17,-1.8123370447423958e17,-9.349605534467094e17,-5.275907782530629e17,-1.8673617549774934e17,-5.411785454368529e17,-7.796601630787259e16,-4.7383626245015834e17,-4.797957276786769e16,-9.330464491872123e17,-1.7102448321279696e17,-1.0232831760112749e17,-7.497919199698318e17,-9.053512415920863e17,-4.708242887166506e17,-9.32075514155646e17,-5.187030357453693e16,-7.429821237973589e16,-9.758757019032838e17,-7.858890102074623e17,-3.803301994727161e17,-8.143089472869713e17,-5.126430986349092e17,-4.073557755363498e17,-4.867568992104081e17,-3.1043100000916544e17,-7.225374963549225e17,-2.5374403346440022e17,-5.321634088455772e17,-3.7680992358776224e17,-3.9371226830613224e16,-7.373507450792288e17,-3.3673416961316314e17,-5.485444697824925e17,-8.323685596769252e17,-3.2394954682785972e16,-8.261162442836689e17,-9.556023403592029e16,-2.153916711037206e17,-4.5477773228483334e17,-2.1500698456556888e15,-4.0667398714620154e17,-3.971699784636261e17,-4.37009281444117e17,-5.1532849161173624e16,-3.049999217331785e17,-8.057747277442276e17,-2.323942008889739e17,-3.159222237053302e17,-6.209071964524701e17,-4.716556931158845e17,-1.641964096709323e17,-5.1750032910951405e17,-2.1804839558590973e17,-5.1030140353275136e17,-6.202615829474871e17,-8.28232209890636e17,-4.860141013623709e17,-1.9177841021283702e17,-7.04351316690708e17,-1.5439937702568163e17,-7.970850381926248e17,-9.985889315036873e17,-8.663635639998692e17,-1.7618002348698592e16,-3.7323519791495194e17,-6.94111200783908e17,-5.273681590214358e17,-1.0141599406233293e17,-3.67676991847361e17,-9.841827923210307e17,-8.705921600650523e17,-5.860565912557617e17,-2.7111755568269437e17,-3.958189492942784e17,-2.7708894819604812e16,-8.411409908018254e17,-6.995972854095546e17,-2.6463268785923434e17,-3.8375551478516314e17,-6.968289580820704e17,-2.2470869825962502e17,-6.697961312125589e16,-5.1035193455646746e17,-4.524242251658419e17,-2.250664959972395e17,-1.4002742576134453e17,-2.398336858468828e17,-6.431566095173952e17,-1.8971297291397348e16,-8.349420827461679e17,-1.4808796033605754e17,-1.5406991900908272e17,-5.596900995368462e17,-1.3013910745476954e17,-3.135463954865977e17,-1.26488423308867e17,-5.7116139180562784e17,-3.4884310375768544e17,-5.164807622421472e17,-2.0663702388742077e17,-3.769276800415301e17,-3.937658572807708e17,-2.5308331204214262e17,-8.224264636294264e17,-9.44107967232353e17,-9.952462171078412e17,-5.783461565231118e17,-3.171873073818621e17,-4.832059202997845e17,-5.508566001500822e17,-9.621825621882022e17,-9.6556219608539e15,-1.1080742984826986e17,-5.36520637235797e17,-8.105428288392699e17,-9.516217549798683e17,-8.246684242045558e17,-7.751932448258401e17,-5.068149775677189e16,-1.2176588654956234e17,-7.352118515606482e17,-2.395163666771104e17,-9.524466367600838e17,-4.330778359421871e17,-5.299321593859537e17,-2.133182769074129e17,-9.019708097635616e17,-8.458784395012019e17,-5.111474182368124e17,-8.347975322980405e16,-3.192387661833802e17,-6.563750516091025e17,-8.535946772579799e17,-8.657728154360736e17,-6.63062516269176e17,-5.850779751134588e17,-6.397760887806042e17,-5.907392040185196e17,-3.526819126035768e17,-6.447027723768863e17,-5.211195294598545e17,-5.320062187805622e17,-5.158318419120616e17,-9.09272747811997e17,-3.9758438276524864e17,-1.6647185105254934e17,-8.32408521788304e17,-6.931642434256338e17,-4.226154837671706e17,-9.745284331866584e17,-8.442777082807964e17,-8.314782206969523e17,-6.899031284783937e17,-8.31777979674901e17,-9.149585520587224e17,-8.879699528301866e16,-2.188305165916664e17],"qim":[1.8233135e-17,-2.3529101e-17,-3.8346745e-18,-1.4160748e-17,-4.881009e-18,1.0404272e-17,-7.155644e-18,-5.623784e-17,-1.07234355e-17,-5.4806163e-18,1.3122829e-18,-3.84242e-18,-4.4367234e-18,6.3620264e-18,-2.560448e-17,-6.109424e-19,-2.5210053e-17,3.708996e-17,1.4332654e-17,-2.7425632e-16,8.256957e-17,-3.526095e-18,-3.7446298e-17,2.6759975e-18,1.2782479e-17,1.3870203e-18,8.143477e-18,-3.3068226e-17,1.975344e-18,-2.6568816e-17,-1.7404358e-17,-2.0762154e-17,-1.0518967e-17,5.3915603e-17,5.1585047e-18,8.8349316e-16,1.4575556e-17,3.263266e-18,6.821912e-17,-3.9936346e-18,1.8045488e-16,-9.3256326e-18,-2.0836637e-17,-1.9362322e-15,-4.2737163e-17,1.1856439e-16,1.1324456e-17,-7.729536e-18,1.8257827e-17,-1.7380407e-16,4.6146735e-17,1.7219009e-17,-1.5029883e-17,1.5438476e-18,-1.1154962e-17,2.6605186e-15,-9.393084e-18,-1.7352337e-17,-8.293136e-18,-1.591651e-17,-1.4975711e-17,2.1935976e-17,9.023507e-18,1.2466679e-17,-4.018689e-20,-9.8501155e-18,1.9605675e-16,3.7275184e-17,6.942449e-18,-1.24507375e-17,1.06721215e-16,3.742137e-18,-2.4012777e-17,4.532864e-18,-1.1611911e-17,-1.28563074e-17,-3.1393483e-18,-3.9326193e-19,-4.8855917e-18,1.63474e-17,-2.1977256e-17,1.7654113e-18,-1.9516916e-17,1.7951379e-18,-2.1331198e-17,-2.2665708e-19,-9.548832e-18,-1.1846802e-17,-1.0068594e-18,-1.2327697e-17,2.7580227e-15,-1.1883078e-17,-6.402831e-18,2.1240967e-17,-2.1758179e-17,8.043766e-19,2.0316927e-17,3.5223625e-18,-1.3640206e-17,-5.993278e-18,-2.1110897e-16,-6.1647915e-19,-1.6956741e-17,-8.116595e-18,9.502585e-18,4.6775703e-18,7.566849e-18,1.3435355e-16,2.0732533e-18,1.3672775e-18,6.4309384e-18,-6.301567e-18,3.752723e-18,1.7738387e-17,-1.5173411e-18,5.893645e-18,-4.958347e-18,2.7456202e-17,-2.4517932e-16,-8.354545e-19,1.0823134e-17,-8.955274e-18,-5.7393047e-17,-5.5391653e-18,-6.0932986e-18,4.112406e-18,1.0856815e-17,7.425136e-18,7.923323e-17,-2.4324374e-14,5.7854708e-18,-1.0479542e-17,-2.7521396e-17,1.801172e-17,4.917255e-19,1.21231806e-17,3.8712896e-18,7.098152e-18,-8.9137355e-18,-1.8982978e-17,-3.3799293e-18,2.9234313e-17,1.22688165e-17,-1.0520954e-17,-1.6759085e-17,9.101577e-17,5.62611e-18,-1.4108156e-17,-6.839041e-17,8.3032e-17,4.2024752e-17,2.691662e-18,1.6956882e-18,-3.7883937e-18,-1.04041097e-16,2.393627e-18,-1.0050036e-17,2.2150557e-16,2.3084052e-17,4.390735e-17,4.873486e-18,-6.969089e-17,-1.5088231e-17,-4.8990475e-18,3.4833093e-18,-4.5147153e-15,5.4193255e-18,-2.3329562e-17,-1.6168334e-17,-1.1885071e-14,2.5378882e-17,3.4102372e-18,1.1462912e-17,-2.9038076e-17,-1.7480687e-17,-1.0125797e-17,-9.965875e-18,-5.4396347e-17,1.8929127e-17,-2.5163647e-18,1.5875326e-13,-6.136944e-18,-3.209935e-18,-3.9303247e-18,2.4023016e-17,-1.7747226e-18,-8.539249e-18,-1.143795e-17,-9.845979e-18,-9.517463e-16,7.137993e-18,-9.9162334e-20,1.17987645e-17,-6.8819744e-18,4.274273e-16,3.4579654e-17,2.2278913e-15,-4.238476e-18,-1.2796481e-17,1.8219517e-17,-2.2376796e-17,1.20542136e-17,-2.7764526e-18,3.667946e-17,-1.8870193e-17,2.1802067e-16,1.0326587e-17,2.3007286e-18,-2.0849494e-17,2.10197e-18,1.631131e-14,-1.6596255e-16,4.484088e-18,-2.5451418e-17,-1.7599643e-18,1.4891789e-17,-1.6126399e-17,-7.4565965e-18,-8.948158e-17,-5.9003264e-19,-1.189099e-17,8.518002e-18,-5.7731297e-18,3.245947e-17,-3.1802256e-17,-1.1337283e-17,-7.192226e-18,4.76859e-17,6.8499703e-18,1.3316986e-17,-8.4614604e-18,6.6283794e-18,7.4101615e-19,-4.2509143e-18,1.816663e-18,2.9504742e-18,6.081173e-18,-7.620995e-18,1.0095388e-17,1.9292246e-16,-1.3928922e-17,-4.106071e-19,-2.6655308e-18,-1.1379904e-15,4.3815265e-18,1.9010104e-18,9.952394e-18,1.0782269e-17,-6.9337038e-18,1.0538882e-17,1.352474e-17,-3.3872912e-18,-2.4897534e-17,3.8331045e-15,5.245772e-17,5.5258686e-17,1.2394688e-17,1.4057243e-17,-3.6063434e-17,-6.7121906e-18,1.7131817e-17,3.780374e-17,9.53842e-17,5.52239e-18,-4.2703725e-17,2.5698618e-18,-2.6519606e-17,-3.5911136e-18,1.09549186e-16,-8.983067e-18,-6.056499e-18,5.5055043e-19,-2.187017e-18,5.410394e-16,-1.29191955e-17,3.0139695e-17,1.0525459e-17,1.26278195e-17,8.057497e-18,-7.426213e-18,2.1699524e-16,-6.565503e-17,-2.530554e-18,2.1384819e-17,-2.0610072e-17,4.774322e-17,-6.499147e-17,-5.6319713e-16,-2.8562877e-17,-2.1108153e-14,9.046691e-18,1.2820994e-17,5.5493223e-18,-1.0983804e-17,2.9031723e-18,3.5404998e-17,4.2344557e-17,2.516455e-13,5.694285e-18,5.5068958e-18,-5.655963e-18,1.537355e-17,-5.0179764e-17,1.8439538e-17,-1.6348476e-16,-1.4180772e-17,3.0644097e-18,3.364879e-17,-7.385886e-18,-1.1924805e-16,-6.1528796e-18,7.408601e-18,1.0546585e-17,1.555337e-17,4.3989783e-18,-3.6879717e-15,3.0547691e-18,6.442109e-18,2.8588618e-19,-1.2429551e-17,-4.0632077e-15,6.70996e-18,2.7265347e-18,-2.1366798e-15,1.2989852e-17,-5.196244e-18,2.5657337e-18,4.968567e-18,2.3424435e-17,-1.6744771e-17,-1.1231006e-17,3.6895142e-18,1.5226263e-17,8.6927435e-18,-6.632899e-17,-3.065329e-17,-1.1840982e-17,-2.4217038e-17,2.4251155e-18,2.5263775e-17,2.6965747e-19,-8.976769e-18,1.20031815e-17,2.7089133e-17,7.433196e-16,-3.0774762e-17,8.719606e-18,1.130773e-16,-1.3739529e-18,4.069846e-18,1.0210266e-17,-4.213893e-17,8.530801e-16,3.7874503e-18,-2.1677347e-17,-2.7233163e-17,-4.9649574e-17,-2.071687e-17,-4.3275664e-17,7.439405e-18,5.5583878e-18,-1.9323914e-17,-1.2873808e-17,4.6572783e-18,-1.1471645e-18,-1.5776748e-16,5.4303018e-18,2.5725618e-17,-2.0534363e-17,-2.0008142e-15,-5.616892e-17,1.5755539e-17,6.6543934e-18,3.246803e-17,2.4215743e-18,3.990087e-18,3.810701e-17,5.7434293e-18,4.7234435e-17,-4.184529e-18,1.5618033e-18,9.924179e-19,-2.7431795e-18,1.04209785e-17,-8.182535e-18,-2.3390676e-17,-5.408833e-18,7.081619e-17,1.9538708e-16,-1.2106837e-17,6.7942577e-18,1.5990196e-15,3.2352577e-16,1.0140974e-17,3.1772793e-18,2.9697668e-18,9.393242e-18,-2.8580328e-17,-1.7862993e-15,3.2801414e-16,1.9418737e-17,-3.3742074e-17,-2.5838978e-17,1.2479684e-16,-2.1535235e-17,-8.6367736e-16,7.338641e-18,3.3514426e-18,8.422132e-17,-1.0417039e-17,-6.507692e-18,2.7917508e-17,-6.641128e-18,1.2619383e-16,-3.039058e-18,-5.454286e-16,-1.29733154e-17,1.0844004e-17,3.294316e-15,1.37251705e-17,2.360807e-17,1.1410823e-17,3.2283083e-17,4.2076386e-18,3.4564598e-18,-8.934333e-17,-1.9411062e-17,2.8926657e-18,-1.8016637e-17,-1.8697296e-17,-4.5827986e-17,-2.6215685e-17,1.16312025e-17,-5.4707554e-18,1.272169e-16,1.3624846e-17,-1.2885196e-16,6.113377e-18,-4.2095393e-17,-5.7704314e-18,-6.2251535e-17,2.5999345e-18,-1.2873481e-17,-9.775898e-18,2.2296377e-17,-3.8687973e-18,-1.919615e-18,5.167532e-17,-3.004117e-17,-2.244731e-17,-7.147055e-18,1.0571306e-17,-9.9841014e-18,-5.4572736e-18,-7.089418e-17,2.7540904e-18,1.5863162e-16,1.2757461e-15,2.7420495e-16,-8.436507e-18,7.386635e-18,9.436355e-18,-1.4399401e-17,-8.291121e-17,4.7435877e-19,-1.6458588e-17,-1.5864942e-17,-1.3627083e-17,1.969805e-19,4.14964e-17,-1.1980729e-18,-3.1642427e-18,2.3121372e-17,-3.1170343e-17,8.146215e-18,2.2170844e-15,1.03319706e-17,-2.3291504e-17,4.7395464e-16,-7.704412e-18,-4.036431e-17,9.656951e-18,-6.255001e-19,2.212668e-16,4.4150322e-17,-4.04406e-18,6.414686e-18,8.870259e-15,9.725958e-18,5.409323e-17,4.355781e-17,-9.291313e-16,-5.9823038e-18,3.3563376e-15,-2.0282426e-17,-2.7120577e-17,-6.557918e-18,-2.1025654e-17,8.211681e-18,2.5656739e-17],"qre":[0.6691352,1.5798095,0.91902995,0.24250266,1.7215477,0.4755388,1.1057171,0.9126737,0.41292512,0.20856377,1.0830119,0.9810713,1.0483949,0.8691826,1.2947925,1.1729312,1.0220529,1.8083643,0.46851313,4.052744,3.8388567,0.21914925,1.1583704,0.5151713,0.7802496,0.9975359,0.27922487,2.790316,0.022568494,1.6712329,1.3118459,0.19531159,0.79241604,1.8998344,0.47778174,4.9241385,1.6908813,0.43938038,0.8469631,1.0130438,5.683481,0.1433257,1.9701331,51.771515,2.1358106,2.7721796,0.44024643,0.89816785,0.8360437,2.6648107,1.604127,0.5185727,1.0009764,0.009503712,0.35463285,13.822003,0.19602849,1.0904332,0.19513872,0.92719334,0.9458071,0.32605615,0.14245489,0.2968275,0.61795384,1.0687749,2.511503,0.81864995,0.18302125,1.0608739,4.2699976,0.16168766,2.07722,0.87668145,0.7555558,0.33160788,1.1847311,0.9413628,0.46320558,1.2607836,0.627473,0.18189646,2.692809,0.81608546,1.9852245,5.545405,0.026422521,0.27919498,0.6671479,0.24458724,7.9746757,1.240238,1.3336811,1.1635281,1.719261,5.094038,2.3736925,0.4048517,0.058909602,0.85209614,4.579513,0.36997327,0.99849445,0.33147988,0.2982272,0.4044986,0.97801965,4.4665756,0.9002748,1.0030757,1.1906571,0.7066143,0.17748098,0.68595713,1.2967277,0.50161356,1.0125467,2.4869716,5.450754,0.38635102,0.5885578,1.4267211,1.251283,0.0022357139,1.2851666,1.4476129,1.1487583,0.9059591,4.159486,24.86617,0.993388,1.1989169,0.8700241,1.0494087,0.7287348,0.996617,1.0649576,0.55563056,0.19086264,1.495268,1.1307452,1.1009676,0.36836308,0.075344086,0.25109556,2.8251476,0.22414544,0.83599764,0.0231368,8.354257,4.0964093,0.3724104,1.2469956,0.5891026,3.2519727,0.6890586,0.119237415,5.677269,1.1869597,2.3936782,0.027866218,4.139537,1.1315289,0.1710116,0.48865238,41.269566,1.0189285,1.6518164,0.4999602,55.496082,1.980815,0.2043016,0.74416745,2.104885,0.25941938,0.3965804,0.26673725,1.7670138,0.6257937,0.47953594,111.06834,0.04784746,0.14371383,0.57536644,1.0047692,3.981947,1.3681476,0.2253613,0.44837463,8.694011,0.44598433,0.34534067,1.2345905,0.5365841,4.0607204,1.0210395,32.58698,1.1231531,0.80418974,0.22644873,2.4178686,0.33812878,0.31610847,1.515344,0.5611219,4.43026,0.6389942,0.5279271,0.21330461,0.8173398,39.207397,2.8502944,1.5606126,0.5313969,1.6809043,1.9184192,1.0788531,1.5758299,0.92621976,0.2996503,0.8448133,0.11139722,1.0467557,1.2900952,1.011969,0.39409795,0.55093145,2.4602222,0.35418436,0.2926678,0.36334896,0.4047706,0.46501976,0.24923441,1.3268046,1.545347,0.52947295,0.57786775,0.87909377,4.3481774,0.19455227,1.1319509,1.0816227,9.821152,0.5075021,0.8734093,0.31910938,0.12114825,0.8968808,0.3666869,1.9019607,0.83561957,1.0280112,14.403071,2.2578347,1.8048736,0.84967077,0.739263,0.5235872,0.40605426,0.13493039,2.33066,3.535107,0.08989386,5.4700575,0.61199224,2.3494384,0.31558987,2.2027788,0.19925088,0.94281983,0.2138241,0.040970914,36.34367,0.58447564,2.1664712,0.043715242,1.5243298,0.81468356,1.277801,2.8450959,2.7309546,0.58470196,2.5640285,1.028887,2.5893326,1.5000896,2.9240985,1.5735601,42.994953,1.3535323,0.9432786,0.75574243,0.66058,0.18948415,1.3982606,2.85657,105.84098,0.63478625,0.09642038,1.1614653,1.4843991,3.7519891,0.89854383,4.566166,1.7881258,0.5478558,1.0355066,1.4569633,2.5924726,0.06765795,0.31436458,0.7072362,1.4290062,1.0488669,36.760406,0.15873462,1.8933576,1.1527506,0.7023768,17.8241,0.23976225,0.42434666,13.190643,0.65010107,0.02285338,0.7424617,0.514701,2.0922327,1.0763655,0.5736778,0.8709864,0.9043106,0.704531,3.0830657,1.6580836,1.134582,0.6573991,0.5591801,1.2596666,0.8678068,0.5286832,0.46786347,0.47543547,9.056839,1.1756384,0.1948844,4.99386,0.081203744,0.5256411,0.12905602,2.6102679,3.9267483,0.15560567,1.0370651,2.3314347,1.5230272,1.4039702,0.38623974,0.09082899,0.9799461,1.4556779,2.7426918,0.8581838,0.525361,2.990209,0.6150073,0.751719,0.9393705,15.140949,3.9400582,0.5981595,0.043948483,1.9707829,0.5092242,0.6192429,2.4736202,0.05091485,3.4357529,0.12118545,0.36677694,0.8809802,0.006626285,0.46205443,0.4822193,0.92011654,0.082203016,1.1969682,5.5185966,1.3951434,0.74346787,10.327981,3.6097991,0.18160246,1.1665475,0.24022931,0.64143103,1.4396781,15.566374,4.5146475,2.7701948,4.0308833,0.6283187,3.9341702,1.3819672,9.269794,0.040735427,0.8082998,3.1294248,1.2185266,0.16950302,1.194027,1.2660106,3.1374388,1.2048677,4.7305684,0.5216418,0.044189133,16.52944,0.79434144,0.96659845,1.0964776,1.6407354,0.23534252,0.08730417,3.9380922,1.7131773,0.26506025,0.3034299,0.47435123,3.3093755,0.07053199,0.8674193,0.65456355,2.0288339,2.3079612,1.9218584,0.32907826,0.47352606,0.59384215,1.5567033,0.7515458,0.63427347,0.5344337,0.6386193,1.081388,0.87313676,5.4752584,6.0714283,1.0551375,0.40327674,1.047225,0.99610615,0.983309,0.09836833,0.113834664,2.6407614,12.08156,6.457316,1.2045832,3.2834153,0.05338472,0.99033463,3.1772182,0.6100429,1.7482835,0.48444092,0.659633,0.3461133,1.6495267,1.2086184,0.5951023,0.3536297,1.8043146,1.0454274,22.687603,0.8836638,1.8308045,7.461306,0.7549893,1.8272736,0.628443,1.0208201,5.2142496,1.1504936,0.69264746,1.3818704,22.291285,0.9333458,3.5442555,2.4241936,7.3574605,2.199746,25.978033,1.7882226,1.1446315,1.1547481,1.2022756,0.112545714,0.60363877],"re2":[-3.4277926825192706,5.729804620282163,-1.5066930129622982,3.6752545725210233,6.30107044378294,8.170049557782455,6.3998969905252245,4.078836674694413,-1.8285961291189992,-6.879909743294245,-5.178074731321313,-6.788697577288114,7.576186447653306,-8.500088608210694,8.547179697997997,-7.721664703227058,6.7956503301947215,-1.3044238275663247,6.322139704923657,8.614005511316194,-3.5008821473554725,-5.411355461455032,8.366809611428039,7.553437176116017,-2.8324754726420824,-1.7170575706156743,-7.682189922269666,3.8821239983438733,-3.8987753347347827,2.2141006630437055,4.752788172813741,1.7500062942394763,8.33199845782077,-7.580904326259561,1.611631304627796,-9.983704251474549,-6.536189122993892,-2.231145207087952,-6.935845314645186,2.6643472058202615,-4.8504341195115845,-1.4765172457394176,2.445868053150539,0.3965833599130768,8.206172311022367,-2.4845201276977242,-7.287591245189637,4.076557072630077,-3.8034535893471695,8.92597308063506,-6.213515084702019,4.01167749770465,4.186081637248726,2.283905168924827,7.6219184017924455,-7.675240509553869,0.5580693352470494,0.19755639548009363,-4.543637091700166,4.39716286577729,9.849472390907152,-8.584042576008763,-9.826468941712637,-2.71344119722489,2.574757529923584,4.113237273564483,-2.5919900409004644,-9.393365318725785,6.811312260396175,0.005920292753264889,-6.529183927752522,-5.745295687210237,6.003721321875684,6.258482073193889,1.9254876631442297,-0.8169098470514591,-1.1951863382722472,-3.061784300365038,9.889885323244926,-7.490775585274234,5.836499892542461,8.237773458395708,1.3810556688520848,-3.4203657662788522,0.163898290186971,-1.1811913159045346,-0.04757879357438277,6.303760379580055,2.6919074947317227,9.253806419093607,-6.00400798779122,-0.25212168236162746,7.895377113502647,-8.631040427500484,3.441443251924669,-1.192125565388892,-6.205703248741498,1.9626284054906904,2.7639919698935174,0.7624665455384871,7.665354272236122,8.875278375440743,0.4470177511919644,0.17301534075811098,3.875789936810598,-8.921809279644734,-5.565160667398416,-4.225484764308247,4.659671474008491,0.37924207325553283,-9.746081940691617,7.694869080719052,5.067854677815475,-8.43222591159397,-1.8812726226941638,-8.022154124165626,-2.010636312021834,-1.0367167521440273,8.919846727471786,0.9806085206351121,-3.0765819362084574,6.233816010093619,4.857428704092985,-9.862733032458364,2.114769014834753,0.3013447490497114,-5.272323381306656,-1.6484667573461316,-3.535000554171188,7.19213152406709,-0.3579242281059898,8.144778119962929,7.644919696137006,-7.476174861366145,2.382988313004189,-1.2124179799517272,-0.25610548716828596,-3.0777531563407727,1.3775777746023117,4.947958338762035,3.7668921426396818,-6.098799331254314,-3.5502277284366235,2.819115251337532,9.133451859845785,-3.518287394679767,-8.235310444573908,5.410579483252288,-5.844525113219278,-1.6725902416216556,-3.86997827522809,-2.1201438873753293,-8.284629822780918,2.6432207606432723,5.020354269421279,-9.052409432386588,-5.399938162734424,-0.5641819549391052,-4.660030836241655,-1.1498598371483588,7.410844625041648,4.1807593811970385,4.760077348089091,-4.648194543172634,1.7047019932943428,2.1742617211763093,2.585968765365603,2.0760841925276807,4.852686294511281,1.9708696105895225,-2.6770204390617387,-9.616482864189908,-6.740068419736205,1.2034248504803848,8.052012368275992,6.478509816145618,8.687535767390901,7.915315141105548,-9.573582103916202,9.963584626983383,-9.49293936914843,-5.305997210133779,4.19061570047344,5.43459525154123,-2.7778441829614264,2.4781298273564865,1.1967316610195144,-2.121891449980189,6.952718496327307,9.31580338709719,-3.6725406890849577,8.796287337473686,-5.744623336261312,6.117314137886005,-9.630682054452588,-9.004817420649278,-1.8449794336451237,-3.029277745888761,8.98978740370006,-6.450232606171326,5.453116471078168,-8.679098721891165,5.3626301133984615,-6.798649300484325,4.870180005688091,-7.3008687858680155,-2.7655283153683197,7.74462523549203,7.713659433935803,-3.6731479954819353,-8.954518383651868,9.6719356513318,3.242172917743055,9.781809645727591,-5.10011740249759,-1.1909787299919579,4.634253904472477,-0.33494063677341757,6.008829979358726,4.407751407482968,-2.6309346512611143,8.455848948963848,9.642997709179866,-7.7812598582847965,7.6400159698955115,-3.5781372957008024,-1.492284521554657,-6.799243505343671,-1.0667128978148117,-7.108020895036136,6.862674599860565,-4.478418232959774,-9.191860734210167,-0.3770962261778159,0.6906306347663573,1.0238484019570144,8.852216337096937,-3.0142761816918817,-9.441729463229947,-7.329098753957628,-1.1251263918831693,2.9392165914381394,-1.3927411359149353,8.032987236949484,4.441567205156723,7.396568737015837,-9.2835144901833,-4.759894497257751,4.904800409915495,8.206866745389465,-6.937163803778326,3.467575275480783,4.337479714324097,-8.763895207366069,-5.811132703685933,-7.009444970431787,-4.026266084514125,7.533918902637069,5.246929041607034,0.3567284694195507,-6.913856193190995,-5.899854576032062,-5.370948496468532,-4.569067006691436,-0.761000800478687,8.647293294678782,3.775902749484919,-9.102374372659765,-9.371691845159457,2.4257685162531892,8.657270350274185,2.515919710367349,5.833543047243992,-0.42317793459671194,9.447879509858804,-8.791431665001031,1.9432050907303466,-8.830063790409941,-0.4571016512695447,-1.23968231751455,-9.454739200221374,4.858214712312352,4.810562613426384,-3.796484725486538,3.641365210985615,-8.7705329550758,9.05819209496768,9.029867635406926,3.8076153702686852,7.394648448895516,-8.993311625418585,-2.188885340220164,3.2917551955311453,-0.7664907981998148,2.8373265640245364,-4.939937199691631,-6.616219613727656,-9.082402503339406,-6.30876359472375,-6.959621292475666,8.145605135739615,-8.340909040573688,1.02951252706859,-3.839768840696216,8.605073810639276,2.4329933143307336,-5.772633470870536,-7.339986233921105,-0.8056978412857987,3.8087126751064897,7.718866406011475,2.713937484306543,-9.659858015614411,-8.017242686587064,-7.725768870860781,2.2647216718633363,-5.131717342128798,3.388715336555082,-4.30374042206032,7.74843241146986,9.247567238844027,5.707088988058452,6.702446361073804,6.422841090015655,-6.921080994528359,-2.6302451397796878,-8.42724774472359,0.6208977915510481,-5.826672236358929,7.795633210377254,8.950544117684679,-5.899514707041682,0.44394025556291616,-5.59068689134123,6.704017833862277,6.656266959776296,2.9129053087454295,8.236465625706671,-7.932132237416491,-5.870322845032168,-6.826723064296196,-1.1826745449251508,-7.205988536491141,-7.087698822051117,-9.189570670235877,5.09748366609996,0.09517222125929159,-3.168870970525308,-6.02227012250726,3.362291125141649,-2.210517912634251,4.744887081310097,-7.129086348918349,1.347123577115319,8.560975687167133,1.4705297746140076,9.769255109891276,3.8933375881534094,-9.323595939703868,7.773986545129624,-3.753577705639617,9.343531066326445,-1.8983722221050066,-0.9996448627915644,9.452477545002715,7.215473146888403,5.486952566902172,-4.1051502221168406,6.810918671206437,2.563192934463018,4.4324253429022935,-5.765508679373166,2.2682243029573392,-2.7343329371099534,-1.4270647967707557,2.0467987093515383,-2.553325958705499,0.421706808440943,-4.90528454369866,-5.6051688146650624,-1.1724707033150104,-6.426469735732788,-9.616687767257424,1.0510470111742833,9.548258418352429,4.284748871185007,-2.6345909681027475,-8.069618494473715,-5.553024987628003,1.0230908877040612,9.177280294296509,-8.994578669638953,-9.240668488206907,-6.836779149245096,-0.64353277242658,-1.7126950453659973,-9.13882440875853,2.2730200687702347,6.515424292198723,-9.189846927926954,0.8271769191824045,3.7976321997446405,-1.8620303456270157,-7.817839392811354,9.922869831592628,9.287330816897185,8.761426358666682,3.5128687522638398,-5.68599418563103,2.772694722730897,9.363421129907433,-8.36200733449638,-0.4341162509191836,-8.719991388314215,-1.6710924848836832,5.065832731529046,5.356546584847898,-2.6411335082710563,-9.935559177990822,-6.406245454415762,-8.848155524124039,1.6283275384447862,-6.050351326931239,-3.49682427654761,-1.6003787373781577,1.039586172356593,1.3245557131703514,-1.7139009826358134,6.619062951681098,9.8078590037025,-0.3007755905410576,3.344373284203657,-5.624823057385342,-1.1571704762994912,-1.2633606619364492,1.5354289282418883,9.382482868927717,-7.486738609772909,9.308073206730242,-5.439761504573908,5.38591141885866,-3.5418376350436738,-1.293801328973485,3.004862991989281,-8.114309002417077,9.451326906363061,5.104785567066621,-0.251978672794273,-0.020346394868994366,2.5511754283690973,-3.246035448030405,2.52414954681673,-1.9391005564576105,7.743218304704239,-2.3140486579238173,7.191021884589599,-8.981980395648968,-7.820373629329933,-6.518719576980625,-3.0372728741506583,-2.440870173241696,-8.963345658227674,0.08349269664995873,7.5982934333034,-0.2440382953514053,1.318971050353868,9.974231179298517,8.599942304660367,2.685262598893882,-8.547287432666623,6.067340412133369,-0.09273924144226342,-5.411333009542103,2.118586748640542,-3.506217728948295,-4.045420472368733,-2.7555907222199867,4.709489421401589,-5.9030950702060885,-0.4945527467223165,2.3272493221716317,0.9096863136404298,-3.250298859659453,-4.3212236761774125,-9.601176138062717,-8.88501597611512,0.3717263335688532,-6.998834480389666,-1.033443281833284,-1.9277180761706205,-9.168329928966493,6.304200727634161,3.243934732655269,-4.033509216229865,6.673751376498473,8.19698965989194,1.396368069066824,8.273686741182637,-1.9433545612792358,-1.9146515108691595],"im2":[-5.795286086340914e17,-6.181927588626336e17,-6.686866156732772e17,-7.517371365495296e17,-2.7326572526447402e17,-1.5025680995137837e17,-7.34931524118948e17,-1.0343780491999088e17,-5.008384795585676e17,-9.80750473657646e17,-6.662691570176271e17,-6.679614340148759e17,-7.05451957831131e17,-7.642023279467817e17,-2.8453981616709322e17,-7.770697486496238e17,-4.003035097357866e17,-9.676387019068634e16,-2.529426121098389e17,-1.3731380464862219e17,-2.427493651698628e17,-4.4562049648353165e17,-3.561321971399243e17,-8.421694581108256e17,-8.43741364155162e17,-5.96158034781112e17,-9.260418406157364e17,-3.428782996157556e17,-8.117220416774308e17,-4.145635147294754e17,-6.510744656886707e17,-4.063288003700828e17,-5.7591381964083366e17,-1.3731906681987216e17,-7.369986167090011e17,-4.917787939674989e16,-5.10683041246028e17,-8.209638101661124e17,-2.034635384071063e17,-6.673555835455328e17,-1.3384986491260931e17,-8.390636463768453e17,-3.929681788695823e17,-1.5665630605821268e16,-3.809796676569588e17,-9.300354814519606e16,-6.376634493670829e17,-8.402378571496324e17,-7.087785340882115e17,-1.1640183437828355e17,-3.76304661819562e17,-4.496862780454687e17,-7.586946050350633e17,-6.742369548169691e17,-7.1801638646374e17,-4.288814366739469e16,-9.042895977442276e17,-2.4452658907360502e17,-9.518466728304682e17,-4.078552602070787e17,-8.423165644972247e17,-5.780016148674044e17,-5.27622139615618e17,-4.4280541193089094e17,-9.324317227752228e17,-3.152600562791041e17,-6.853946087539475e16,-4.247083993126881e17,-8.724385926918406e17,-7.419426031547958e17,-2.062645401420915e17,-7.412186556239505e17,-2.2833346773318554e17,-4.067034580036056e17,-8.86742393556878e17,-7.211686130705692e17,-3.182656891249138e17,-6.880253642522216e17,-9.147153058045279e17,-6.048739851945868e17,-5.415022059678857e17,-6.751804187586417e17,-2.596400638908044e17,-8.735433461116362e17,-4.561927267233517e17,-1.547429540722117e17,-9.365966657362427e17,-9.028782127822547e17,-9.604869243050522e17,-9.711839145004873e17,-1.7160628676441748e16,-3.1715367665171546e17,-5.2829477692039904e17,-5.813111487070761e17,-5.686344119480243e17,-9.54511896248702e16,-3.341226802294446e17,-9.783956168533386e17,-4.232926350683668e17,-9.801094256486426e17,-1.4286471746464368e17,-9.866677355756598e17,-5.981654430154409e17,-4.139105939100082e17,-7.544779857229807e17,-7.837873409101628e17,-6.634951987903153e17,-1.800566198358494e17,-3.555255733541524e17,-5.1294629862837715e17,-5.7547437349906016e17,-9.426153662256759e17,-8.162201611790684e17,-4.946696687063889e17,-7.374738648312532e17,-1.280799630497974e17,-9.22868045587176e17,-3.838647404813396e17,-1.692484920293347e17,-9.358172775820326e17,-9.5738650278153e17,-5.433235184934325e17,-1.6022550380642742e17,-9.930773232756783e17,-7.051762886186301e17,-5.097395090235012e17,-3.108481375586254e17,-8.528057634019195e17,-1.7623345409050928e17,-7.156983849528675e15,-7.467076113318035e17,-7.925438030033098e17,-6.037121598059607e17,-7.162394357734226e17,-9.446630563815958e17,-6.135031971843547e17,-5.5828669142535e17,-9.628702954451107e17,-2.216076034922053e17,-6.575332141678701e17,-4.652828699549172e17,-4.739728628621821e17,-5.62318766763415e17,-7.967715390227425e17,-7.28569247254642e17,-1.1950371647734637e17,-9.714549451972614e17,-8.598789335469724e17,-1.4318352893605912e17,-1.1242728704367589e17,-1.772900576575973e17,-9.344937029003478e17,-6.155244818887159e17,-6.157177495174584e17,-2.2914581844284854e17,-7.181593994944632e17,-8.95149176616683e17,-5.523692178093564e16,-2.0121727175124726e17,-1.730854055778417e17,-7.063754603672768e17,-2.149859812157844e17,-7.387867544219373e17,-7.574111864822408e17,-8.128064007561402e17,-2.1814427746874144e16,-3.248641008957996e17,-4.7749230218834426e17,-5.974352974084556e17,-8.641824269233322e15,-4.747288753727978e17,-9.72575686402854e17,-8.658515913804351e17,-4.0309725718289555e17,-2.529527911734707e17,-7.34436151475606e17,-9.382801330202751e17,-3.43219322689688e17,-6.518105909032609e17,-5.818148949085659e17,-6.587691340700808e15,-6.54724393995146e17,-6.202039663934755e17,-9.851676353776927e17,-5.116524595861606e17,-2.248825867339894e17,-7.247252983535195e17,-5.4347740844730266e17,-9.13720762336884e17,-7.503154279464997e16,-6.037131476422774e17,-6.80604148362219e17,-7.236778679654766e17,-5.321970446486715e17,-9.56178040924669e16,-5.0198265313083354e17,-2.7699098402341748e16,-5.875984376825271e17,-7.121629115317733e17,-5.863084982135181e17,-4.1121683431137626e17,-6.71174214338777e17,-4.1971836375456614e17,-3.867375182642254e17,-6.608227863035935e17,-1.6268306847694336e17,-7.629389606520545e17,-7.621389043438244e17,-5.4146272047366605e17,-5.226633817923335e17,-2.1930463963788284e16,-1.33240300286391e17,-5.184181612535106e17,-5.245408529638078e17,-4.243008789725282e17,-3.6611616974256224e17,-8.226452387664748e17,-3.256586675697456e17,-1.2287990520497227e17,-8.57289083014394e17,-6.512857199073809e17,-9.593172233813014e17,-9.335961347818565e17,-5.627724175940467e17,-3.9968478132416576e17,-7.46148479951666e17,-4.3416555206865274e17,-2.7149566271023917e17,-8.001165907675901e17,-7.741608296168673e17,-5.6467709544369504e17,-5.2216605702174554e17,-9.278631779314301e17,-9.988803911435645e17,-6.905096172640854e17,-4.069048876290323e17,-6.319052942626149e17,-8.597740485255261e17,-8.807406083949176e17,-1.9258225713810208e17,-7.006478281791764e17,-7.83996894771946e17,-6.726921715676216e17,-6.9428891211071096e16,-8.293907757306464e17,-9.715446238293399e17,-9.013421922081507e17,-7.295968456825487e17,-7.739499099158633e17,-4.52876163573717e17,-4.374635248420148e17,-9.114044532049672e17,-4.345511961637571e17,-3.54562461729514e16,-3.187684647437633e17,-2.9898835426503066e17,-8.814689431599336e17,-2.304288948974994e17,-2.6503762270514563e17,-9.431061366212732e17,-5.302166765038169e17,-3.8899068283157754e17,-2.0022231249131782e17,-8.125578111005934e17,-1.0376476947254131e17,-7.80208616908902e17,-3.8364504411876256e17,-6.802842944298527e17,-1.853616607509616e17,-4.542594530583418e17,-6.375115844488169e17,-9.106649564509792e17,-7.11827782085919e17,-2.54035694007253e16,-7.77641289350951e17,-3.203285542565734e17,-8.213001802398888e17,-5.994948280043155e17,-6.96440585359602e17,-6.522856270137012e17,-1.4138853948602104e17,-3.05487237710636e17,-9.085326027857699e17,-3.2792044892445536e17,-1.0657979794224437e17,-3.438286846254877e17,-2.6274462839983014e17,-5.79707335764722e16,-3.1277518420746643e17,-1.545104048213597e16,-3.30091200349943e17,-7.270408521056179e17,-6.934307790593147e17,-7.63705853357776e17,-6.598886043860929e17,-4.3762207232526765e17,-3.2732845204330477e17,-3.849712003679784e15,-7.98966442312336e17,-4.1893058568215725e17,-1.3600611808055107e17,-2.937064926504454e17,-2.62885526134758e17,-4.9393336186820026e17,-1.8213620269931107e17,-4.4974671028284986e17,-7.35691513863317e17,-3.4702135610424557e17,-5.176369187671745e17,-1.0449369955759514e17,-3.9930169698227046e17,-7.459278822066115e17,-6.856144001458774e17,-4.547844806150352e17,-6.181096252094499e17,-2.0810817966186668e16,-9.6523576923231e17,-5.203449054493957e17,-7.655253214436801e17,-7.837144322642147e17,-4.0114208595396824e16,-8.119952022481404e17,-7.670562802229449e17,-4.083682494087126e16,-8.433425692475151e17,-8.24379542391844e17,-8.031716211642554e17,-1.522869060875689e17,-4.707646744325077e17,-9.049303545114664e17,-7.485820123782376e17,-9.257505374367579e17,-6.060562924111578e17,-9.634953254953967e17,-1.8491592214928e17,-4.820254733305136e17,-6.062020350693276e17,-6.315190912419185e17,-6.422995915226365e17,-5.364735127012846e17,-8.901423580607003e17,-9.844315231008128e17,-5.083283105512887e17,-3.8119518053977984e17,-1.0323254282196347e17,-4.487696268512705e17,-9.581894114394444e17,-1.083687949404425e17,-9.601283332892257e17,-9.014445147404707e17,-3.717732179363705e17,-3.574523778350082e17,-4.355371581108314e16,-6.576130238792387e17,-7.229940687830537e17,-3.883236517787154e17,-3.09137153112941e17,-6.638855608722661e17,-1.3429561121567357e17,-8.180010209699264e17,-9.958462746980957e17,-5.398783677064286e17,-1.3867041772911448e17,-9.488747383764645e17,-9.757920981896979e17,-1.3622985644125662e17,-7.914652075424358e17,-4.129614908999856e17,-7.691719259827462e17,-1.6758793564272568e16,-1.3506485964158998e17,-6.29948874156465e17,-8.958494761502268e17,-3.7414104414709824e17,-6.612689451185951e17,-8.85830812811803e17,-3.36498159349238e17,-6.362574891739076e17,-2.4044694739310723e17,-7.885454156011345e17,-5.872551953790107e17,-5.1621790621186035e17,-3.244759075362882e17,-8.801430509972799e17,-8.236294160574957e17,-4.749499143388303e17,-6.26897251102011e17,-2.5481037401127725e17,-1.4601081990454134e17,-1.665737042910229e17,-4.2493055290278214e17,-6.0118933317514056e16,-1.3065981228309098e17,-9.041529957776129e17,-4.43617042586502e17,-9.076677441601249e17,-7.955670711377565e17,-4.308335452899664e17,-5.320649657302146e16,-1.0765272915604296e17,-6.922921482646027e16,-1.747387189226003e17,-2.4573416019886208e17,-2.0260564151996662e17,-7.225851067684169e17,-9.34609290287851e16,-4.324982764649437e17,-4.617534312464751e17,-2.2180152894163984e17,-4.32791659094377e17,-5.98313822936613e17,-3.079302182593925e17,-7.773890499230344e17,-2.7748498635307072e17,-4.8640742526330394e17,-5.7311836221218824e16,-7.587945688065617e17,-6.270522595699607e17,-5.088744316495442e16,-8.807261490126574e17,-2.73777275919184e17,-3.499893569906359e17,-4.247052781314394e17,-9.548155821635046e17,-7.671983367600876e17,-1.2959369929262765e17,-2.640848734755793e17,-8.491144516315401e17,-4.614819639794488e17,-5.056036008799416e17,-1.9434377449116867e17,-2.6897438197681744e17,-9.625588299196672e17,-2.26239265171714e17,-7.594014067576138e16,-2.4250413067726262e17,-6.771523850290095e16,-9.528018739803814e17,-2.671202972080321e17,-9.618067021779514e17,-2.240909456503134e17,-6.872246748782849e17,-3.257854094462202e17,-7.052841863497156e17,-6.165893560995835e17,-2.3403561161209053e17,-9.419217139796883e17,-1.724316700636388e17,-1.6392292713337354e17,-5.4812398400506726e17,-7.865251687626642e17,-4.6141554188926656e17,-5.530099383667433e17,-9.785149454719043e17,-9.815783414301971e16,-9.734068035168929e17,-2.031689312929792e17,-6.708925144483424e16,-1.473710967977365e17,-6.846089353620488e17,-2.3609355486824502e17,-9.493633677305015e17,-1.2295429012605963e17,-2.3140112993394778e17,-3.9262214518956275e17,-5.4478960584329837e17,-8.939745143122025e17,-8.033742218044252e17,-6.163249766827715e17,-5.468058302138232e17,-6.998722013091081e17,-8.589235469726802e17,-2.360654448738213e17,-1.7693076087450387e17,-6.278532978076646e17,-3.762383691936255e16,-9.797537315278899e17,-3.621700758617984e17,-7.841495528494379e16,-8.473974510155244e17,-3.2328995417217235e17,-5.6119953214511974e17,-6.31553701276636e17,-9.994141971287206e16,-4.624156144974787e17,-7.447249425066138e17,-6.58001462715757e17,-1.7835866492187158e16,-1.7836032804137203e17,-2.348613175955597e17,-2.8593598255001107e17,-5.7440396663044904e16,-4.430186184814271e17,-3.249967802992959e16,-4.649747026674861e17,-6.027294500236826e17,-7.203112263122202e17,-7.61022327120981e17,-7.889860454939795e17,-3.6251900956899885e17]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json
new file mode 100644
index 000000000000..65f5a169ffca
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json
@@ -0,0 +1 @@
+{"re1":[-3.783296125315129e17,-8.528752782174597e17,-3.688788950417399e17,-4.4725613959474797e17,-8.247627450131333e17,-8.747896412079201e17,-1.0681641522926288e17,-8.756486865901124e17,-6.775485662386897e17,-2.8693240781419936e17,-5.705746259008274e17,-5.020505832431379e17,-2.8421610749388538e17,-5.265953566252966e17,-1.566717858722829e17,-9.329873839237455e17,-4.686641837312674e17,-5.2750061251685984e17,-5.494561557803912e16,-6.883592975498629e17,-1.4338568500542192e17,-9.888410032948077e17,-4.304650324796144e16,-7.946592557336899e17,-8.648253714393069e17,-5.368463393460168e17,-5.30082318410785e14,-7.259808915013568e17,-5.466829601183069e17,-9.978086905612024e17,-4.504963223767455e16,-9.518974341300477e17,-1.0751787932119805e17,-2.932953309648868e17,-4.1486187489425216e17,-1.5512813546982662e17,-3.4474418731442714e17,-9.165585840327026e17,-8.493440381002435e17,-8.476578762692772e17,-9.848593403801667e17,-6.81795660685199e17,-4.924197048352054e17,-3.825849668649902e17,-2.877488327365545e17,-1.7377673289151062e17,-3.1951891959747846e17,-4.415109193050013e17,-1.673372275488768e17,-8.48236575541217e17,-8.530340384239126e17,-4.95857631605253e17,-1.618903075938135e17,-7.115728975856106e16,-9.863503779696778e17,-6.31890147988655e17,-4.190619790211924e17,-8.323679223898962e16,-8.217944699867031e17,-3.426994185234072e17,-2.960041225098988e17,-3.0123924605994336e16,-8.056101002155046e17,-7.814114780551052e17,-1.6552646964185248e17,-9.886950371097204e17,-1.468475922407726e17,-6.48377406966107e17,-3.536303417309383e16,-6.213275635974145e17,-6.863887267180799e17,-8.511771315101007e17,-5.6812545520577395e17,-6.358794307574364e17,-2.2251476835465024e17,-5.045314342230685e17,-1.962745968744428e17,-6.160662173444589e17,-8.524441006745713e17,-3.8281446745719706e17,-3.91752840451672e17,-1.643707686391025e17,-7.305574770027438e17,-7.305249313629229e17,-8.325623112312466e17,-7.135989638195899e17,-3.779467428677319e16,-1.2760651499396226e17,-6.990222656146644e17,-5.267273534746989e17,-6.010580484914432e17,-6.27982582544099e17,-6.443527350556346e17,-4.248776784097573e17,-6.007896048544836e17,-9.674788236439173e17,-6.98182531992546e17,-9.368462300980885e16,-9.995068898860973e17,-7.957963615183841e17,-7.994176412664484e17,-9.691066135440644e17,-2.4442559444249078e17,-7.009534169593898e17,-1.9074094233251882e17,-8.788743367905617e17,-1.6407659957755917e17,-3.5704224382722285e17,-2.6917985143999366e17,-8.431468032375858e17,-4.27517281263053e17,-1.845062238741041e17,-8.888561623275622e17,-4.383088363795884e17,-2.5771478512802592e17,-4.7409178927411174e17,-7.237935302040666e16,-5.305963077992851e17,-4.887227098758817e17,-3.329575183552909e17,-2.9902280756860077e17,-5.891168881495179e16,-5.846383855143235e17,-7.06192714362166e16,-8.060152466409587e16,-9.998608966976224e17,-6.007408746582065e17,-8.593176881181935e17,-4.315814363002132e17,-8.021115691842602e17,-1.696247841212144e17,-8.41160743846837e17,-6.386155319456013e17,-2.9013158169522854e17,-5.479958233691475e17,-4.2278297867687443e17,-1.7729565799733814e17,-6.303537170327658e17,-4.389867692062389e17,-4.581494062915692e17,-6.394917719863094e17,-1.822216374940284e17,-1.7693810731042826e17,-4.2648295619847123e17,-5.199494150241914e17,-3.198537472902877e17,-5.168647335530063e16,-4.5597707135736845e17,-9.152075281878915e17,-4.65792827873166e16,-4.0964339091997606e17,-6.620146252958947e17,-5.381466730454508e17,-5.428091852605739e17,-9.574654820169851e17,-4.7227749511360216e16,-7.487181174539841e17,-8.979922266550239e17,-9.040474012791218e17,-4.471894105562463e17,-2.6103328094581235e17,-6.029060954294399e17,-9.952526482888804e17,-9.523838374029366e17,-1.679023177331822e17,-1.0947907426679493e17,-9.132675340808058e17,-3.280091588399966e17,-6.243183295686612e17,-9.944955742633509e17,-3.9072648017847744e17,-9.436389413728271e17,-8.769699245958486e17,-4.8306423453342483e17,-9.685321937731398e17,-3.6192333518867936e17,-1.6983210340612786e16,-3.2532119398971725e17,-5.792678663814643e17,-7.069603183641134e17,-2.945666448900108e17,-2.864342909702565e17,-1.0132671394668646e17,-1.4541988432648934e17,-3.6667031798254426e17,-3.8344048034153574e17,-6.703837714135149e17,-8.818985675150067e17,-1.550870769899796e17,-3.0571220811715603e17,-2.8726846750546086e17,-4.839523436593902e17,-6.580191909225012e17,-9.941529638223604e17,-2.2267102275103302e17,-7.367818937633165e17,-9.900638859441007e17,-2.683400209618758e16,-7.325867728125133e17,-4.73587289034998e17,-4.696173840287859e17,-6.113683095450702e17,-3.062539727440722e17,-4.97859210163679e17,-5.442037638311933e17,-7.60733451742526e17,-3.024437267837374e17,-6.922888319542342e17,-8.942069461472305e17,-6.232603922924257e17,-6.524105583377619e17,-9.052357614334111e17,-9.781219451930546e16,-6.095173779442578e17,-7.246611878298216e17,-4.9748452645404794e17,-5.696717083925722e17,-9.538684073406374e17,-4.4043270177698336e17,-4.1786424341095917e17,-8.197795826737452e17,-1.1158885795915174e16,-5.635235449519305e17,-2.2513605783634928e17,-5.34108816495311e17,-9.594291853982661e17,-3.508253101941596e17,-9.845509851096458e17,-7.327888731331538e17,-4.095278960469686e17,-9.590941631711781e17,-1.4152998579357301e17,-3.297418235806231e17,-8.021681198407926e17,-4.9843811473867846e17,-2.0762286960174304e17,-2.7283553794726867e17,-8.286858822497864e17,-3.741107623366162e17,-6.486877698070598e17,-1.5883688409129027e17,-9.497049227074254e17,-9.852528709746304e17,-4.437797287211402e17,-8.076287993893876e17,-7.889898222530968e17,-6.304059482498143e17,-5.6230375387735654e17,-6.179063135304951e17,-3.0045261939328506e17,-1.049780959174631e17,-4.173110479427192e17,-6.179926421697216e17,-7.925543203964826e17,-8.326313294179244e17,-4.504011732880281e17,-5.2995335822453626e17,-9.327226440358964e17,-4.493668875648853e17,-1.5515011350226982e17,-3.9889200216377926e17,-5.499462469244532e17,-5.3839174240153363e17,-2.3381283492931616e17,-2.4574192806591354e17,-2.9307668989244474e17,-3.326989760881882e17,-2.14459182154498e17,-5.824085190150052e16,-4.115668932235156e17,-6.319249746875904e17,-5.183178728939538e17,-4.326775140869691e17,-5.161004175853519e17,-9.633304425864365e17,-3.4687767342449626e17,-3.5211383175419496e16,-1.7146613232570518e17,-2.737597785367254e17,-1.1442749196593216e17,-2.7954598322286694e17,-2.967304014541626e17,-3.676384856466508e17,-5.7553065632313984e17,-7.772273175543173e17,-4.467056865667589e17,-2.8585290885634352e17,-3.663740326079016e17,-6.793197995173377e17,-9.63262143476216e17,-2.7458218356319296e17,-3.9413746796748826e17,-7.853644338324361e15,-9.436374293632913e17,-2.690274519360407e17,-6.540511977691418e17,-3.5721453422732806e17,-2.5145728916197862e17,-2.223299166539602e17,-8.963768668402794e17,-4.843840930373907e17,-1.9416946262292557e17,-2.2528769623279142e17,-4.6785445371953235e17,-3.9726012027736115e17,-1.4193011434799386e17,-6.425776876561249e17,-2.3954892280403926e17,-7.313743957060895e17,-6.795245780350742e17,-8.662934135030061e17,-1.3442641083808126e17,-9.146634323919761e17,-3.12864206719661e17,-2.6654781206062195e17,-4.446439869026769e17,-8.607742521328919e17,-2.8076930776526065e15,-9.188488570255767e17,-3.7435713816187885e17,-6.369130160318548e17,-1.4502045509278326e17,-8.209621190165377e17,-7.239360585398264e17,-7.26826775637756e17,-8.599233560065687e17,-8.008647256444298e17,-2.941260204284758e17,-8.969218155249393e17,-8.78398912700734e17,-4.7674614445933184e17,-4.555885544114934e17,-8.663852342203228e17,-4.444675952259409e17,-8.360623445430217e17,-8.70622399971417e17,-3.7731167010941645e17,-2.6806598866815946e17,-8.240632310278746e17,-2.83454741814994e17,-9.557495875477679e17,-6.168207382350058e17,-7.794352163911532e17,-9.511319442214683e17,-5.993704380165796e17,-1.529899406883515e17,-1.478489673882185e17,-3.304422917699751e17,-4.85418093975793e17,-5.423292720026044e17,-2.3844724094865875e17,-6.369840532930496e17,-1.7746777453603357e17,-3.24128507931398e17,-5.044768512651153e17,-9.542087114460118e17,-1.806364294554882e17,-6.13494575898884e17,-2.920101662201758e17,-5.917281442139855e17,-1.6461342094085584e17,-6.461362065752497e17,-5.148939272390265e17,-6.425247846254559e17,-4.203599660270065e17,-7.790477811576686e17,-2.3122668344295715e17,-8.150666600025047e17,-2.763206170145288e17,-2.60713050707593e17,-3.556364677510515e16,-6.3156626168360376e16,-5.1148993726659706e17,-5.691987250848254e17,-1.6386168401582966e17,-7.211692867820191e17,-5.772304234428078e17,-1.5190826613303176e16,-1.9216033932616304e17,-2.4485127594729315e17,-9.672704559315549e16,-1.435462032186534e17,-8.166953757968054e17,-4.806321446217895e17,-6.681469950778285e17,-9.695564154667487e17,-5.778065012245669e17,-4.2921353515552064e17,-1.6057467441283958e17,-9.424231913937905e17,-7.775322699657083e16,-6.563055478890085e17,-2.731084036790803e17,-9.934823011076444e17,-4.820109399236999e17,-8.13180341573252e17,-5.441144938469156e16,-4.5692102497556243e17,-5.0552508136301434e17,-3.036530333491778e17,-9.863933230727268e17,-8.112503523443523e17,-4.3060315386273606e17,-8.379990713794182e16,-9.358503871670202e17,-8.020274432829724e17,-6.792592999026985e17,-9.050225428753344e17,-1.3194855611770074e17,-8.533430526029806e17,-6.496528460580552e17,-9.054454696104512e17,-4.919686124782885e17,-9.390648483788454e17,-1.854119420253363e17,-8.773366617914886e17,-1.0884501570476258e17,-4.4289484559537005e17,-2.5925981969636157e17,-4.014846075915842e17,-1.723734615511554e17,-8.972210595177261e17,-1.840259705974503e17,-9.433731389239868e17,-7.172559075855965e17,-9.023625980815407e17,-7.968084668851883e16,-3.677663871534678e17,-4.720340966926088e17,-4.379591073264271e17,-6.093016191980102e17,-7.40538404530301e17,-4.27450889554008e17,-4.307929172117128e17,-1.609553056918207e17,-4.116636428721755e17,-6.105791484008527e16,-1.0230377451743056e17,-8.200892616935496e17,-7.988026893251732e15,-9.709166253578359e17,-1.4795002663621693e17,-5.313569652388336e17,-5.5140249596833734e17,-8.163001542995941e16,-9.483820914723997e17,-1.836432889140901e17,-9.72288541247226e17,-9.496890353011283e17,-8.826411716809974e17,-9.28069298464491e17,-6.663120879796539e17,-7.895019119413484e17,-1.5646098226789917e17,-8.38855003780228e17,-5.672420126573665e17,-2.9483149334478784e17,-2.387346042812203e17,-5.132340611740153e17,-3.297330514760597e17,-5.383632122321258e16,-9.449661540804201e17,-8.989108129632927e17,-7.041129505298071e17,-1.4545727631144234e17,-3.162649615601669e17,-2.3775613309631104e17,-4.92361168633346e17,-8.522593739127205e16,-9.577229792152991e17,-8.899516903197892e17,-6.957955393901857e17,-4.850456995383028e17,-5.871749780863968e17,-3.0035493827374624e17,-6.107157335012476e17,-1.1576465843313522e17,-2.3276776419533642e17,-3.113570514953715e17,-2.1942128058001e17,-1.0843141308225523e17,-2.9086761115589677e17,-8.200644594613345e17,-2.2035559304224726e17,-5.827109670043791e17,-8.361771308613855e17,-4.0471378043860294e17,-9.380040166342705e17,-7.844118125788491e16,-1.4781322773452176e17,-9.044839911832394e17,-1.3023214118935123e17,-1.2789335368718669e17,-5.0040875493147064e16,-4.795857016159364e17,-8.510702463610705e17,-1.7437877347716746e17,-7.191433977395946e17,-5.893061243302636e17,-8.848396654785338e17],"im1":[7.723583666264709,-4.1453003006722895,-0.565852552771295,-3.514061689049141,1.8111049499005425,-8.302220230656799,-9.551697140051248,3.9533474362308105,-7.2516116893549665,-6.641039744503936,2.3608381476401785,0.9960384162621274,2.9583084660481322,0.20764960111316277,-1.9182366910539717,-3.55291829200437,9.217716279295725,-0.38450546001337393,9.681681074549608,7.479690752336019,2.898172429499663,-6.7573265341031385,2.757087677817207,1.6026622810554585,-3.0833310631580213,8.952060370817051,8.62809211849282,1.7586761184779292,5.71759337588367,6.701803964916763,-9.431631772145488,-9.260733518280105,1.2659181511252466,3.97388856950486,0.5414003818204716,-3.6843305794793535,-2.4485203358003327,-3.3212425693626146,-6.758693497855786,-6.801524625631902,-9.005864799732661,0.5694552662002046,4.999941497379119,-4.499336610406459,3.4950665961820775,6.64982398877185,-1.4087986970195292,1.932788962723901,-3.438960412741534,-6.859651951113468,1.1653375006427176,3.222437437440309,-1.020631393429131,0.30795815620478173,-9.46780187174301,-5.112223050037765,7.079634123395778,1.4648031989260986,-0.859825300105431,-0.9455379659229344,1.8273658771367813,2.5996593565108146,-6.386121848101922,7.916439317439554,-8.07986534333455,2.998357863167282,-2.730087510109948,8.105448378899442,-2.6151991526052987,-6.9942158088792805,-7.370879561511796,3.3348821656945056,-9.416302358401705,-3.6023518122284637,-6.304840722007484,7.043474636599456,-8.871990227363433,-7.517609370396916,-3.073375608144513,4.751524223690588,6.874954606980872,4.7962795072572355,-0.11102667471554639,-7.059484224507322,0.6042191881105516,5.164780553159735,7.380274610298329,-7.591514068292566,6.805354590076973,-8.205030588071212,-4.661547943253259,4.422063752959815,-1.8508153562715428,5.231346941471742,9.229549009008686,5.263542348909988,5.5186373969929665,-8.417194692839411,-0.6373533941475458,8.871585326550004,-7.225863530857232,-6.726838006532255,-9.810221001886108,-4.174242601314589,-3.2724488648496326,6.2427912553600855,8.322625841977128,6.104420608795067,-9.893745628499403,9.946478077928692,5.426680705541219,9.756562350446774,5.740655302473037,-2.737934397652209,-4.664767801385768,2.877293270331922,8.292827402455416,-1.6408029571366267,8.748812725272447,-7.150082586185162,6.488366772112528,-1.9876939640318358,-1.9305262503821972,4.692556944690175,1.4721652008580008,-9.965509926453391,2.921282584173742,9.533396203788342,-5.8371359603776725,-3.9012512456104798,1.9149840777510825,3.1973811722317684,2.968847750750051,-9.503246852714932,-1.9686625593370959,2.539424055633324,0.668765326685886,-7.983471149530055,3.972250535602228,-7.277144160183322,1.5270143316856775,-9.218646545246651,6.934953089640267,0.27887078840235446,2.1696304842635996,-5.843414185819071,8.16112279301526,4.361065747781863,-3.341292845233756,-8.036100827462827,4.519099662118723,-8.845699776633907,5.314193802411841,-6.916834507777234,3.003250243266349,-4.121368763826108,-6.287856606990165,-3.3650230794187186,-0.7670434905358565,-9.580671673478747,5.339513299044205,-0.7741893974185121,-7.24014571247899,-0.4531318185816744,-6.387592326827798,1.383129108395945,6.253050074033059,-4.005900671266341,-7.073178805069189,-1.1796550328926294,4.1342369684746245,-6.998251951482581,9.547006669373229,-6.510447814178009,6.025552303268022,2.1157947310708636,-9.577320173692137,8.574733821536459,7.406502274271858,2.565079620399553,-9.778892564623686,4.6119859345514165,5.418292042505236,6.374336064722161,-4.590659393764409,2.3521893316130242,-2.8775216722727937,-4.724521494639829,-0.9414279203004732,-1.9124114754170485,1.3837569475379894,1.6667612712077418,9.947099143370167,-4.336906056330944,-8.723964640785598,2.209846591689171,7.811772877966682,6.314447866268935,-1.5559867753718937,-5.967835578238187,-8.506257234592452,-5.605590003033996,1.352121182492457,-0.6284541229340057,7.976640607723894,3.6005360124475985,1.5607084294001758,-0.9193566422104293,-6.906725689357732,-3.1101471675113412,9.158528405889331,6.2324961651839175,-8.405396684715535,3.502383837514911,4.850953256939823,-3.782082211824502,1.9866443260219828,3.117337294840908,-7.092151273502971,6.30726513969244,-3.274724800624078,1.5636120668105526,9.399490223726758,-3.8814296541647515,2.2776471323670577,-4.091890615876728,-0.09454618264821946,-6.563130070304329,7.409093595048983,-2.307295155571585,-3.676984990729517,5.020011209914006,-4.419805464644675,-8.896726222953086,-4.515673408213498,8.755248909264697,-9.351318528664372,0.4564332302522427,-5.602888166288409,7.2701884412323174,-4.276847830949766,-8.270515392963462,-4.6381865812261935,-9.606147192900547,-8.145125612514448,9.071682749277457,-6.474622680516697,5.347456281773898,8.804516785995656,6.5975251925779546,6.0088457319334125,4.103077476903714,1.2540282951835735,-3.4597556686055064,-0.5182006312102487,2.2330582894407236,-7.696256217148052,2.4620287794000806,-8.003996229476542,5.595417260804618,3.1129151978929386,5.208252431305025,-0.20618594936448353,-0.3735257145772799,-4.638096873536453,1.968224345030949,-2.3102837766012314,-0.8715151664442349,7.5006421319584895,4.820462933121476,-1.6018706217288319,0.6934140855474968,0.49643088113377765,6.195982764449035,-2.3028916809175115,-3.0672785432429928,1.100591300583595,-0.582951892735565,-9.546954893426097,-5.741219237418383,4.737066900206102,-6.985031303046778,3.6585410662253732,9.680461612976785,7.16103230697999,-2.281811734868553,-8.073507955445633,3.420113668792828,0.8163346780732024,-9.882575437041051,4.279289152137416,6.17854520859996,-0.7106738658668128,-3.3463656599308162,3.646326500941278,-4.476714339003887,1.672574068535404,7.244868837307273,1.1316691479353107,3.567123089482001,4.8263334250161645,-7.3253374334905725,-3.8905669189126213,-7.779482309202333,-7.611761019837862,8.580108378486166,-7.829451629926547,8.712695323486965,-7.3993187767529545,-8.430179441563759,-2.875535367823985,0.006376513191447941,9.654790731468438,-0.3390989628799872,2.8466500255243936,8.615199215176602,7.886331620869456,5.972312759134088,-9.569063362072365,-6.727907894852885,-4.731927999684988,-4.197226159175664,7.972378331601778,-9.009802961326876,-7.962086006907345,-9.160580445659345,9.760336140525116,1.4666201107850103,-4.227090219854892,-5.8666254299695435,0.47731280074872373,-7.890065934228588,-5.095021133430655,-5.490013354849017,-4.769175405141071,-6.7487817589061,-4.806106130117584,0.6529850380703586,9.257271341758678,2.0663845511998424,-7.531597492097999,-1.1987200339504618,-0.49660210813606653,9.150721347482548,2.0415591416113763,-3.8863122594098147,0.8944591912126381,8.34409291640669,-4.394224831812288,-3.877527740625104,7.5140245224335445,-7.162504146598538,5.998368886716259,-2.6074886055104844,-0.45418237148619056,-5.440585394364181,-4.281290364747514,-0.7633787573027178,-0.048516645125996405,-3.5018738904035924,-0.2504019606850747,-8.614743017630385,-9.80775510594066,6.140285986886322,3.771201254592018,-7.058863310069851,-4.6297935524061735,-1.7545280729968855,-8.428716905418998,5.033581740824747,5.089790850600318,-2.296660787132576,-2.058761721210482,-9.886505238746013,5.634644741656491,-7.603200036369304,-5.832023167293732,-1.4942089209754918,5.5605923839258615,1.4900994640079368,9.874669085344976,4.78678064748032,5.875747281631551,-7.087036714884444,-0.7185724958769129,9.022744020354217,-8.165342364886463,-4.0916099099715115,2.548955668680616,0.4133742644590086,9.024950881148118,-2.2940370450851555,7.735108276597423,8.165557438644765,8.298306738076413,4.873100940426758,-8.233087116043944,8.682481699993932,6.6737280781644515,8.840824714960227,9.065554746331053,-4.319751992004601,-8.098711628757778,-2.2517400359454136,-8.613175925895312,2.375943772514951,-8.933660232851912,5.028855624379368,-9.493174689683567,5.391747940659904,-3.8988218359199305,-3.2309839284067676,8.052201715358049,-1.4657764196272023,6.442054035756396,8.888432885861807,-3.0441868814017674,-7.23158070509206,-3.8554139022805494,9.043608097605421,-2.3130354135600273,0.3490620063839618,-6.307943881622224,-9.18942401834082,8.733817148316103,-6.744624998847164,6.016187462575282,8.676473373839308,5.836603731627408,-8.25792706964853,6.65266647172032,1.7096361120143317,4.621299251430205,1.376411702858448,-3.6439294642230475,-4.691869750013542,7.20198582112862,-6.344449468782438,3.665019073233397,7.208667364719027,4.796093719699318,-7.8411933500497195,-1.6425336953794805,-8.15452871723788,-8.141358336368105,-8.8228568533021,-0.5222802923863625,5.869995995186827,3.4062722340826284,-2.5083428543430735,6.972336501114235,-3.430297703204708,-7.220167646179714,-4.443401274434837,-0.5470290336202748,9.640217676692359,0.5755934026387965,7.730227923889487,-8.741021490788984,1.6150845394400442,-1.6270902520536712,-6.420520486040124,8.475607552577998,-1.9407594394188106,4.169567362636069,-9.758766222740471,-4.0612623092081135,0.07551922617766671,-5.887231171198508,-3.4029417252186045,6.62270110752598,2.2848593224866995,6.958940514706889,4.205873244077029,-4.029489463178349,7.4727558830081335,-3.427710462469811,-1.7682202610996889,-7.086182139430381,-5.183146959436282,-2.288419026133914,-5.903799547541682,-7.777297057569514,-1.0398500346676371,-0.3705600038351182,9.617602198776986,4.949529218723367,-0.3902063919464549,5.888907292883472,7.840754987985946,-9.550301595434174,-2.5668814400152318,4.807844257636306,2.1492289680638894,2.8685309584229906,-7.52361686279434,3.695600347843847,-9.354026720395375,9.462638938840165,-4.556677486039515],"qim":[-2.6774422e-17,2.1516389e-17,4.6211236e-19,1.7325418e-15,-7.6386655e-18,5.075313e-18,1.82715e-17,-1.6881132e-17,-9.389022e-14,1.1414893e-17,2.4980714e-17,8.746716e-14,8.038712e-18,-1.5223851e-15,5.54263e-19,5.2626723e-17,-1.4555108e-17,4.7019696e-19,-2.268354e-17,-4.417766e-18,1.541112e-16,2.1172596e-17,-3.0849356e-18,3.6030445e-18,-1.7183063e-17,-6.17291e-17,-8.772631e-18,1.3214077e-17,-3.3265747e-17,1.1623854e-18,2.6176796e-17,6.352697e-18,-7.9620704e-19,-1.598291e-18,2.1334321e-16,4.4889835e-18,8.198733e-18,1.0190347e-17,2.6103812e-18,8.051094e-18,-7.204921e-18,4.8872937e-17,-4.52754e-18,1.4818959e-15,-3.2947152e-18,1.7540666e-17,3.487977e-18,-1.3840336e-19,9.361844e-18,-1.25595365e-17,-1.0632087e-16,-6.8048195e-18,2.1742535e-18,-1.5998429e-17,3.6812188e-17,-1.7334164e-18,-2.5735778e-17,-1.0865919e-18,5.6514522e-18,-2.4320483e-18,-1.6963837e-17,-4.8008616e-18,-3.7975564e-18,2.8559264e-16,4.8484388e-17,-2.5738658e-17,2.1828843e-18,-1.7156366e-17,5.047757e-18,2.2129778e-17,-3.2465155e-17,-1.31184046e-17,5.2389904e-17,2.1929463e-17,4.6885077e-17,1.1549477e-17,6.9707015e-18,3.0592632e-18,-1.4440982e-17,-4.079408e-18,-4.7445138e-17,1.07505455e-17,-5.00242e-18,1.2394458e-17,2.3155475e-16,-1.8292836e-17,-7.399656e-18,3.3328573e-16,-3.3901135e-18,2.3929845e-17,-2.6746129e-17,3.2421146e-17,-1.3874233e-16,-7.3281254e-19,2.0065293e-16,-6.587851e-17,2.0663663e-17,2.9434375e-17,1.8510393e-17,-6.9713525e-18,-3.1585898e-17,-7.995292e-18,1.4722007e-17,-5.1896303e-15,-3.203472e-17,-2.9805015e-17,-2.5368546e-17,-4.6919633e-17,1.2998524e-17,1.6120715e-17,-8.382303e-18,-1.4692256e-17,-1.490121e-17,3.2013253e-16,7.376793e-18,8.6112356e-19,-8.171245e-18,1.3832185e-17,-9.1010555e-18,1.0911966e-17,-6.849682e-18,4.2962293e-18,-4.318811e-18,-9.487192e-18,-8.531312e-18,2.5809473e-17,-9.391481e-18,-2.3101265e-17,-2.1149366e-16,-3.4053503e-15,-3.8927777e-18,-9.261998e-18,-2.7386828e-17,1.7613688e-17,-1.7635494e-14,-5.8295337e-19,2.6319456e-18,2.3214354e-17,1.3095799e-17,3.3988772e-17,-3.3361847e-15,2.1430778e-16,-1.27579184e-17,7.164257e-18,-6.71585e-18,9.7678284e-18,-1.08406875e-17,3.876611e-18,1.1871118e-17,1.1902538e-17,1.6584224e-15,7.333424e-18,-3.3496695e-17,5.1007735e-17,1.5475537e-17,9.013212e-18,-1.5495255e-17,1.6022541e-15,-1.8321459e-16,2.1958128e-17,-1.2834074e-17,-8.6012845e-16,1.2554128e-17,1.0881849e-17,6.3967788e-18,1.5889045e-18,-1.1177917e-17,1.706136e-18,-9.320965e-17,1.49343e-17,-8.360284e-18,3.2977137e-18,-1.3454279e-17,1.2865282e-15,1.195451e-17,4.937568e-18,1.7272023e-17,7.991383e-18,-2.1105077e-17,6.430028e-17,1.0255843e-17,-2.0506972e-18,-8.249822e-18,-2.121497e-17,4.486358e-16,2.0604128e-18,-1.8345673e-15,3.6390895e-17,4.6819713e-18,1.0579779e-16,2.0541815e-18,1.0973039e-16,-1.5421724e-17,7.379077e-18,1.2159847e-17,-4.113749e-18,-3.2171213e-18,-5.126727e-17,7.924323e-18,-5.486499e-19,2.5563036e-17,7.576802e-18,1.2365217e-18,-1.3936298e-17,-1.7186246e-17,5.0082817e-18,6.4398922e-18,8.332263e-18,-3.8182056e-15,4.2383395e-17,-1.8493833e-17,-6.793662e-17,1.0059525e-17,-7.161815e-19,-3.0249536e-18,3.6289245e-18,8.966863e-18,-7.901666e-17,5.7286224e-18,1.1539301e-15,-2.8764796e-17,-1.767258e-18,-1.6042334e-17,4.089139e-18,2.4199615e-18,-9.505176e-16,-2.4251687e-18,3.0757115e-18,-2.1077432e-17,-3.9165736e-15,-3.8668634e-18,-5.1854983e-17,1.0157642e-17,1.7624437e-18,-6.2166445e-18,-1.4912756e-17,7.34245e-18,3.3217644e-17,6.611447e-18,-8.71253e-17,3.5692562e-18,4.2370027e-17,1.5404748e-17,1.2307398e-17,2.1451788e-17,-1.3918426e-17,8.614337e-18,-1.2105993e-17,-2.1933627e-18,-1.5610768e-17,-7.9488475e-18,4.054722e-17,5.9589285e-18,5.4539287e-17,9.088456e-18,-1.09304275e-17,5.3718158e-17,1.1602179e-17,2.209112e-17,-5.9986236e-18,9.25397e-19,3.6239702e-17,3.9851697e-18,-6.8842574e-18,-5.3075026e-19,-4.6862495e-18,1.308697e-18,-2.3338243e-18,-8.366587e-18,1.5668806e-17,-3.6268628e-19,-5.885811e-18,-3.1729271e-18,-1.833584e-16,8.2820665e-18,2.0502616e-17,-1.5982946e-18,1.9561167e-18,2.0212228e-17,1.5268036e-16,-2.8822302e-18,7.699833e-17,1.6929034e-17,-3.278303e-17,-1.8491673e-16,7.0347145e-17,6.588436e-16,1.215403e-17,7.534886e-18,3.6526885e-16,-2.8315964e-18,-2.9509925e-18,-6.143554e-17,1.5988715e-17,-8.118107e-18,1.7138886e-17,-3.467551e-17,-1.5784873e-17,-1.5787724e-18,1.7438638e-18,-5.9406905e-16,7.004198e-17,1.0921092e-17,1.0515907e-15,4.1679576e-17,-1.1353609e-17,1.5797365e-18,-1.6095173e-17,4.0892143e-17,5.003127e-17,1.7007417e-17,-4.856811e-18,-1.1777381e-17,1.1438895e-17,1.2369513e-17,-1.4132138e-17,2.7108798e-15,-9.460957e-18,1.7196048e-15,2.4261864e-16,1.0143824e-17,3.3220775e-18,1.8401171e-16,1.797661e-17,1.6492602e-17,-8.946919e-17,-4.5478737e-17,-4.554438e-18,-7.9148157e-19,-2.6262041e-18,5.91466e-18,6.308746e-17,1.9004775e-16,5.0811823e-16,3.8049432e-16,2.3357987e-17,2.1973189e-18,-1.7629293e-18,7.9059756e-18,-1.1306054e-18,1.1136856e-17,3.3122419e-15,1.1511563e-18,-1.1631774e-17,-4.775192e-18,3.1479357e-18,-2.2920505e-17,-1.0343028e-17,1.5538121e-17,3.569041e-18,-9.716351e-18,6.8358963e-18,-5.685023e-18,6.089639e-17,-5.469466e-18,-2.6293272e-18,8.235469e-18,-1.28640374e-17,1.8462066e-17,4.3091187e-17,-7.337974e-18,2.4307852e-17,2.088908e-17,-5.44191e-17,8.757053e-19,4.8969407e-18,2.5903955e-18,-7.1819283e-16,-8.958481e-15,-3.556744e-18,-1.177321e-17,2.2176383e-18,4.051498e-17,7.270989e-18,-3.755899e-17,1.7935014e-17,-3.632102e-16,3.4106993e-18,-5.8016e-18,-2.5487439e-18,-1.0220274e-17,-5.31335e-18,7.171816e-17,3.2528501e-18,2.9978121e-18,-1.186337e-14,2.8850197e-17,9.50423e-18,-2.202075e-18,-7.3186955e-18,-9.860863e-18,1.4859211e-19,-2.5189446e-17,1.4218523e-17,-1.532406e-17,-2.0281017e-16,1.1533541e-17,-1.3372243e-17,-5.7005044e-18,-1.3939024e-17,-2.4992873e-17,-3.5959262e-16,7.528442e-18,2.7810218e-18,1.00374314e-17,9.403056e-19,-1.294677e-17,7.530832e-18,2.068157e-17,1.0369588e-17,1.8958487e-17,-1.9625078e-17,-3.7852968e-18,3.4164803e-18,-6.3919894e-18,4.8161578e-18,-1.5329534e-17,3.2374685e-17,1.623748e-17,-1.2044519e-17,1.012788e-18,-1.12952696e-17,6.2859213e-15,2.5719143e-17,-1.4026738e-17,9.787704e-18,-1.7647915e-17,-5.1206488e-18,-5.280129e-18,3.601207e-17,-9.7309924e-18,-8.1608533e-19,-4.72344e-18,2.9190985e-18,2.718291e-17,-1.3534587e-15,-1.0274229e-17,-3.654015e-16,3.0201454e-18,-4.0486143e-17,-1.426356e-17,2.1825711e-17,-5.9374707e-16,-2.805534e-18,1.2773799e-17,5.575365e-17,-1.8136001e-18,-5.5297024e-18,-6.241335e-18,7.716883e-18,4.6109135e-17,1.24648856e-17,6.0142167e-19,3.5876035e-18,2.5684977e-17,-8.54224e-18,1.7021947e-18,1.32204e-15,4.859571e-17,1.0901714e-18,-3.5645467e-18,1.5726429e-16,1.206013e-16,1.1155013e-18,-6.0996716e-18,1.6546704e-17,1.4885572e-18,7.28451e-18,1.2527512e-17,1.2602446e-17,-7.048712e-18,4.487699e-18,9.626305e-16,3.8399107e-17,4.3388026e-18,-4.7906883e-17,8.816305e-18,-9.202628e-16,9.841393e-18,3.4550799e-18,1.6617676e-18,2.911027e-17,-1.0324803e-17,2.4136175e-18,1.0180667e-18,-2.1555342e-17,-2.5222691e-14,5.883572e-18,-1.0943647e-17,-1.632426e-17,1.1717316e-17,7.789031e-14,-5.7011244e-18,1.6333652e-17,2.3574113e-17,4.7750386e-18,-2.7029855e-18,1.54891e-16,-1.1767794e-17,-5.4113676e-17],"qre":[1.0646989,2.1002495,0.37673855,10.359019,1.1897656,0.9929166,0.24077068,1.0672572,102.63344,0.49614188,2.0189254,153.26488,0.68475,9.314225,0.28775415,3.3235557,0.599848,0.5530389,0.11614046,1.0390378,1.9157435,1.6206905,0.04304875,1.0137423,2.5415862,2.0279815,0.00053929945,1.1183894,1.2208076,1.2220228,0.112688094,1.0884562,0.11447636,0.32571706,3.0837116,0.2123156,0.66524625,0.97291726,1.2941804,1.5483848,2.0137832,2.3577917,0.5438421,13.42083,0.44265875,1.1376697,0.46841747,0.4588048,0.27240807,1.4574393,3.4247057,0.5877666,0.19963576,0.33949924,2.9679952,0.69993377,1.5917484,0.23836158,0.8250432,0.35029516,0.92841804,0.055490818,1.5239125,5.951938,0.5791987,1.4947006,0.16029014,0.7794555,0.079188555,1.7900344,2.1067338,1.34048,1.3594984,1.7489926,0.92305154,1.2342526,1.0377145,0.674309,1.2902502,0.44294968,3.135457,1.1655312,2.0140326,1.4406703,7.4501452,0.933456,0.038434114,1.7481961,0.91584975,0.8904209,2.2121692,2.0166264,5.65037,0.518347,4.0571675,2.9336157,2.4154553,0.33112672,1.3849406,1.538974,2.6140676,2.1269035,0.28645557,21.28893,1.7220548,1.7538067,0.40497202,1.0367253,0.38979667,3.1828492,0.52628386,0.24736978,0.900026,3.8293378,0.26387027,0.6886353,0.0726479,1.0016832,1.1829247,0.35582942,0.4578589,0.09578479,0.6100061,0.1152305,0.2159398,1.3803061,0.80389935,1.0501745,3.7924483,31.326061,0.22024944,0.85559773,2.0496821,0.4358843,37.400627,0.6940795,0.30095288,0.9197977,1.5910658,1.2301377,18.648142,1.6875163,0.31484586,0.80964786,0.5329852,0.4643808,0.064770535,0.81869835,2.4354599,0.06792465,12.497967,0.98164845,1.6395439,2.5199199,1.4788971,0.12367521,1.6696047,12.816758,4.9679766,0.62975734,0.46583647,9.851993,1.6231433,1.2309854,0.1863692,0.3277134,1.0106288,0.55294204,3.2024803,1.8670502,0.54633635,1.0362962,0.894839,18.029703,1.5884001,1.2127835,0.030931732,1.1109102,0.8267976,5.2200146,0.34863073,0.3449407,0.1325059,0.32213938,7.7382536,0.5022442,11.4884405,2.3370986,0.60683197,2.0359702,0.40081534,2.5097659,0.7752143,1.0876827,0.48895288,0.8679624,0.99870074,0.20801628,3.0489461,0.6580702,0.7660372,0.6623024,0.32000837,0.8879593,0.67041945,0.9332429,0.81299657,1.0232552,33.789448,1.7236344,0.97651666,4.308661,0.11642281,1.2917384,0.72656715,0.7540509,0.87028617,4.015489,0.5645721,8.725935,2.0170155,0.012003388,1.1818033,0.2967641,0.70985234,12.327669,0.35176185,2.283393,1.1570213,14.456129,1.2022401,0.78455955,0.42750317,0.81326216,0.9300203,0.29527712,0.2788735,1.7944795,0.383705,3.8543298,0.23219314,3.2631931,1.0738169,0.5764785,1.7159142,0.81076086,0.7265798,0.6050619,0.69807196,0.5062482,0.13251694,1.9078007,0.80385286,2.5761714,0.84743875,0.89828485,1.6088793,3.4606376,0.96809363,0.16925503,0.5180668,1.7207742,0.9650994,0.48762512,0.5249175,0.55936456,0.6192689,0.33406818,0.06553449,2.3552103,2.058092,0.5248789,0.4466945,3.9333553,1.1657155,1.0494289,0.05966159,0.34837988,0.5149112,2.3608668,0.41858733,1.7031952,1.0591246,1.2416179,9.083382,1.8050883,4.985156,2.071825,0.9093766,7.7642055,0.281841,0.77868026,0.30509996,3.0803561,0.6259384,1.0435764,1.189844,0.4254454,0.22679646,1.0736946,19.249847,0.9231641,0.4592449,8.333455,1.0135846,0.25254735,1.1460375,0.49261698,2.0942597,1.8811731,1.3710153,0.59181976,0.9528617,0.769442,1.1389844,0.5563568,16.412086,0.0044576037,26.517212,3.0633347,0.7239822,0.18439986,6.779474,0.84215236,0.99227095,3.3681293,1.7493341,0.4512658,1.0031732,1.4832251,1.7631911,1.4154177,3.8546684,5.258182,7.861446,1.3808875,0.7999255,0.31740358,5.3821163,0.41342622,0.99362963,19.655474,0.9636226,1.0305748,0.90917647,0.26634058,1.4763083,0.33509973,0.81208706,0.84655684,0.48415357,1.1016648,0.28427812,1.7624211,3.2612362,1.0628803,0.25854602,1.2109606,0.7760346,1.9106004,0.3631113,1.2483522,1.3310806,1.6566381,0.7448723,0.83590424,0.3488261,9.914734,25.459253,0.30011132,0.099807315,0.15760307,2.1227386,0.8893805,0.6917997,1.3080856,5.8991566,0.030945247,0.21356861,0.49591503,0.10777251,0.18055594,9.28563,0.7996625,0.9302963,37.0692,1.0507846,0.5055392,0.19074579,0.9603641,0.08957151,0.73817796,0.53738636,2.2111294,0.6108541,4.435791,0.07217419,0.47842455,1.4755824,0.389149,1.6776006,8.482439,0.8580954,0.110447854,1.9347452,0.9279157,1.9106616,1.2610747,0.51212794,1.5523072,0.9731497,3.3110855,0.60087234,0.95539486,0.20237304,1.455742,0.7971929,1.6582829,0.599496,0.4265829,0.1861012,1.0864099,12.213233,1.3342297,0.9014753,1.2844089,0.22238678,0.38922054,0.5708718,1.8209515,0.7188483,1.3370496,0.7136498,0.57641953,0.7672106,9.034875,0.08457504,3.0949407,1.3397833,0.043947857,1.1147472,0.3255608,7.7176476,1.4834973,0.115016565,2.2397978,0.25502855,1.0216007,1.1379858,0.94648933,2.6526484,0.93207884,1.1050187,0.17926714,2.5553062,2.1451223,0.32788482,12.439838,1.7111117,0.43036273,0.2626807,4.0967436,3.8542106,1.9060704,0.33854982,0.4231099,0.3009434,0.6803806,0.1864668,2.0397274,1.0769694,1.1802174,8.891858,3.6865888,0.3104715,1.89451,0.25316507,5.5858316,0.3636132,0.31733394,0.17110117,0.77341944,4.7975445,0.22039442,0.85661995,1.163445,79.23659,1.1934447,0.145928,0.26591733,1.0007122,32.458298,0.14571582,0.4288466,4.6160293,5.0924916,0.32940972,3.482774,0.5954126,3.693378],"re2":[-3.553395255919506e17,-4.060828501409867e17,-9.791376258569448e17,-4.317552789933876e16,-6.932145383869042e17,-8.810303579087311e17,-4.436437538206619e17,-8.204663915300443e17,-6.601635282382001e15,-5.78327283998e17,-2.826130355222305e17,-3.2757054795256035e15,-4.1506548815275744e17,-5.65366780821569e16,-5.444640140026096e17,-2.807196499341573e17,-7.813048937396054e17,-9.53821877600216e17,-4.7309623673749856e17,-6.624968560841462e17,-7.484597260833702e16,-6.10135629501054e17,-9.999477557701011e17,-7.838868602198842e17,-3.4026992330648685e17,-2.6471953403589898e17,-9.829091215849944e17,-6.491306725704019e17,-4.4780439619060666e17,-8.165221671174255e17,-3.997727648665443e17,-8.745390994572858e17,-9.392147476936684e17,-9.004604846504969e17,-1.3453329936291147e17,-7.306487678007814e17,-5.182204153123626e17,-9.420725089993202e17,-6.562794576765691e17,-5.474465195341417e17,-4.890593099882361e17,-2.8916707405216314e17,-9.05446154618898e17,-2.850680438647446e16,-6.500466177422675e17,-1.527479675285045e17,-6.82124210327809e17,-9.623067140640896e17,-6.142888549721101e17,-5.820047667672301e17,-2.4908243121453165e17,-8.43630172861343e17,-8.109283497209615e17,-2.0959485298353642e17,-3.32328838315373e17,-9.027856434170143e17,-2.6327150398510035e17,-3.492038812661976e17,-9.960623211496438e17,-9.783162042898132e17,-3.188263336660777e17,-5.428632344050094e17,-5.286459036007604e17,-1.312869041632404e17,-2.85785291975856e17,-6.614669616477458e17,-9.161362072364991e17,-8.318337899598231e17,-4.465674602768968e17,-3.471036810196647e17,-3.2580706292497555e17,-6.34979396015436e17,-4.178934568585312e17,-3.6356898156668506e17,-2.4106430584115235e17,-4.0877486702471046e17,-1.891412130208534e17,-9.136259185019583e17,-6.60681202246812e17,-8.642391586935076e17,-1.2494281536151253e17,-1.4102649108867061e17,-3.6273365808044346e17,-5.0707296818065005e17,-1.1175114828658362e17,-7.644698575273793e17,-9.833626416073468e17,-7.299324851598187e16,-7.632499612552813e17,-5.915487339995167e17,-2.7170530195306163e17,-3.1140255004142106e17,-1.1403725745889814e17,-8.196780174064465e17,-1.4808104008680413e17,-3.297905586157067e17,-2.890480026857918e17,-2.8292681615692118e17,-7.216966109021937e17,-5.170953755540715e17,-3.0581370456254656e17,-4.556419670461375e17,-8.532757076443327e17,-3.2925722213375976e16,-1.1076357448907914e17,-5.011238456113729e17,-4.051553839086761e17,-3.4439425636021357e17,-6.905647367742318e17,-2.6490314708229155e17,-8.123320437073111e17,-7.458721338666403e17,-9.875894450045649e17,-1.1446074342814894e17,-9.7667232190224e17,-6.884511952604054e17,-9.963035242358378e17,-5.297046931779599e17,-4.1314777703903846e17,-9.357222496911117e17,-6.530894139060987e17,-6.150422089636092e17,-9.584139737633041e17,-6.12852223029207e17,-3.7325921908309734e17,-7.2437620171904e17,-7.472836962140252e17,-8.182618205495948e17,-1.138002181047656e17,-2.5605247613736948e16,-7.701485119301364e17,-9.831264493013204e17,-3.1156808611454176e17,-6.656160412903629e17,-1.465204997391989e16,-6.091275690682107e17,-5.891143421878903e17,-6.853177923011265e17,-2.7590738254341597e17,-3.7243749285212525e17,-3.4292518855876584e16,-1.0798214667355922e17,-5.619832699513123e17,-5.267511913962233e17,-9.755419635430697e17,-6.887746721249092e17,-7.979935832813563e17,-5.569536767727711e17,-3.7578429650785114e17,-6.857492932650345e17,-3.277680306427255e16,-6.743907348545783e17,-3.282295268241353e17,-2.1540732444055888e17,-6.474186343484527e17,-3.818691453338589e17,-4.484403798521819e17,-7.006391224521646e16,-1.8197496110286448e17,-7.100979970299272e17,-5.6035391294948736e17,-6.119635907637533e16,-6.131637689604456e17,-7.736759665620175e17,-9.009123167599373e17,-3.340695562958407e17,-9.03662733194382e17,-5.932071097149661e17,-1.9494835541159616e17,-5.326560249032024e17,-7.151756840577015e17,-9.105879552435123e17,-9.800310209672806e17,-2.679269066382306e16,-6.097533057519378e17,-2.984236912028257e17,-5.490546315387292e17,-2.928420295665152e17,-7.006162853432136e17,-1.354326341518438e17,-8.449245203722107e17,-8.303870398143224e17,-7.646959354132161e17,-4.5141914125497286e17,-4.738412047838081e16,-7.634543285480699e17,-5.835289621501394e16,-3.77347613411154e17,-2.555684017348727e17,-1.5015555059703e17,-7.167102550187948e17,-1.9282769567021274e17,-8.488222087302561e17,-9.140101230997331e17,-4.5540383063278835e17,-8.488638763824791e17,-9.913518860457166e17,-1.2899952879363307e17,-2.402754144132884e17,-7.196607119704993e17,-6.130477433558061e17,-9.230954899133152e17,-9.570186835495607e17,-5.6067794272288666e17,-8.117362369156987e17,-8.151505840379945e17,-3.7201106064189894e17,-6.765553550825197e17,-2.646408964754443e16,-3.6159664616006784e17,-6.680997275140735e17,-2.100967661281963e17,-8.401463328936018e17,-4.718582044529115e17,-9.973767796778386e17,-6.597492071743316e17,-6.545797217762604e17,-2.3754725179475578e17,-7.801177561979685e17,-4.788761834108901e16,-4.064320091958932e17,-9.296446658165266e17,-4.76833623273618e17,-7.586364014105011e17,-7.524223975062514e17,-7.782730189671294e16,-9.973375291292527e17,-4.311789469576901e17,-6.333408972696607e17,-2.832901462137194e16,-7.977559616239345e17,-1.8039420013042784e17,-7.713202137028956e17,-9.863585658647286e17,-5.35943257113483e17,-7.031458757022985e17,-9.783487441880436e17,-4.617973477314793e17,-9.749958154718413e17,-1.683010448408525e17,-6.840722447414724e17,-2.91035464949448e17,-9.175241256156305e17,-7.69811453553738e17,-4.706696936612554e17,-9.731474233604402e17,-8.676348503362113e17,-9.293325600744837e17,-8.851613774516538e17,-5.934888319752134e17,-7.921862178952371e17,-2.1873934169807917e17,-7.687883076119471e17,-3.076481442709432e17,-9.825268923827982e17,-5.014012446665018e17,-3.2939285209672166e17,-2.6952336261614618e17,-4.641771266513574e17,-9.166646895422154e17,-7.699624189065997e17,-3.1959231642374906e17,-5.5786143760136486e17,-4.794930076293653e17,-4.6815346038042e17,-5.239457408611871e17,-5.37244774739427e17,-6.419622943278995e17,-8.887054057454906e17,-1.7474741493905398e17,-3.0704407460936346e17,-9.874998158575589e17,-9.686206567602356e17,-1.3121123539501533e17,-8.263855684196177e17,-3.305394491097149e17,-5.901851123987823e17,-4.921814724703202e17,-5.316640877907414e17,-4.8468421606090104e16,-6.67831947360971e17,-1.7421984130061606e17,-3.4711542593010566e17,-4.635328290667492e17,-8.556586163861579e16,-2.474702702856415e17,-5.734080918761708e16,-1.7683638164679082e17,-7.470169774238408e17,-1.240644893926658e17,-9.742449228658409e17,-5.061608571558832e17,-2.574121858333889e16,-3.0634035902303725e17,-4.297985993592195e17,-6.267401930239997e17,-3.002196069436241e17,-5.910448083531875e17,-9.803058695675546e17,-8.348526957145885e17,-2.516301165241286e16,-2.1033036773739546e17,-4.9056112243203834e17,-5.614171453470074e16,-3.919358141949143e17,-5.619940706003097e17,-5.606952072063455e17,-4.862782378348026e17,-3.492281165903489e17,-3.6122381763355526e17,-6.318626926419482e17,-2.2714079917473296e17,-9.599120508302557e17,-4.06611794337322e17,-2.340223320740793e17,-7.992065414874863e17,-5.244758711437747e16,-6.298660307447969e17,-3.4651035108843376e16,-1.2220576313075504e17,-8.797356932105882e17,-7.864455784753028e17,-1.2109525512086427e17,-8.59625935488655e17,-7.324882477416049e17,-2.55311881370636e17,-4.578112078825586e17,-6.517799935414793e17,-8.940846486077658e17,-5.92222266110109e17,-2.703882320117953e17,-3.218757040089796e17,-2.2476258238914083e17,-8.45287591851034e16,-1.063496851733472e17,-6.304802831753348e17,-4.716835153614285e17,-8.445587913313464e17,-1.531113819502401e17,-6.856234685289395e17,-9.618770917928951e17,-3.138162740075512e16,-8.088593816053073e17,-9.229139676044481e17,-6.592454637474433e17,-5.7441473372713517e17,-1.001477666789391e17,-9.861013524258341e17,-5.977414899729649e17,-6.406294929716078e17,-4.925033040151119e17,-5.782013502373522e17,-6.242751303851607e17,-1.8391093769538157e17,-1.5468885242333062e17,-8.977575245315858e17,-6.986626040042541e17,-5.0661808359283e17,-3.762849880686967e17,-3.097079623580474e17,-4.533415083822727e17,-5.175912527487267e17,-3.868240151654012e17,-3.878486206148097e17,-5.643383048381525e17,-9.319820576272883e17,-6.628708914814167e17,-8.220761246564501e16,-1.0853445976672926e16,-8.687211236221486e17,-3.563230714184146e17,-4.0073220505725005e17,-2.4095756212231146e17,-6.399946081093038e17,-2.3686289655018157e17,-5.513165866915646e17,-9.784965652590549e16,-4.908937019351859e17,-8.997592935672462e17,-4.937363438184624e17,-8.975113255289536e17,-7.950233993731808e17,-8.7952606599917e16,-6.01043764483101e17,-7.182087697815473e17,-2.6155311540259184e16,-5.4988101879772666e17,-8.490212717503741e17,-8.418255741160954e17,-9.813185932883542e17,-8.680575748989228e17,-8.890885127607363e17,-5.0821610850020096e17,-4.493098723883613e17,-7.890771176643759e17,-1.8332249894916707e17,-7.538906679556393e17,-9.550534782306834e17,-3.425936151147048e17,-7.803001123712468e17,-5.8797862844505e17,-9.563879845181112e16,-5.018126861394072e17,-7.587282689167922e17,-4.8370733342484883e17,-8.643321804234843e17,-3.55510017748917e17,-7.176597928338493e17,-2.5764765183441286e17,-5.497256070156515e17,-6.675774755017048e17,-2.734588199046586e17,-8.187573365323405e17,-9.829075656253693e17,-9.161888661310555e17,-6.02673205743693e17,-1.365353579841062e17,-2.6708037035850563e17,-4.324629774194467e17,-9.411642664234079e17,-9.262351023940361e17,-8.258586685857144e17,-1.5067751963391606e16,-7.070544782746679e17,-7.956467767795169e17,-7.025508847389444e17,-3.5829848416937504e17,-9.448791781422757e17,-8.268653188353242e17,-2.4051114226299952e17,-8.476081251243168e17,-5.53860090734411e17,-5.989644587683274e17,-7.473600581389036e17,-2.0979286179348467e17,-4.556384412629666e16,-7.219377806553969e17,-3.305516506875994e16,-6.121058753274497e17,-1.817614639523193e17,-8.70974684239565e17,-4.544466653529756e17,-6.8849599926973816e16,-3.716909308942491e17,-7.097240081964027e17,-4.234231100462004e17,-7.200891030722981e17,-9.517304235791487e17,-8.345350002028755e17,-9.325421541650717e17,-3.4986517627323475e17,-7.148666899735729e17,-7.144692310188187e17,-8.72781204123782e17,-3.2827965650496506e17,-2.6443340280874416e17,-8.991923178015476e17,-1.919113404757722e16,-2.999419052800929e17,-7.661747486504742e17,-2.0494964981648544e17,-2.306627492399157e17,-2.3322824966196042e17,-3.6940551813566714e17,-4.296480816734386e17,-7.474771365661627e17,-7.900359815554815e17,-7.236555031983009e17,-4.5705691924360403e17,-4.6953480672903546e17,-8.26348234545475e17,-5.895486535713829e17,-5.45494205609417e16,-1.5927326085291715e17,-9.67415413498984e17,-3.223608029104742e17,-4.572695141278359e17,-4.167110487807934e16,-8.562864880987247e17,-6.914523089737795e17,-6.33726896883073e17,-3.760800578910224e17,-1.709342090591659e17,-9.998238285469903e17,-6.802444908416353e17,-7.187079496360727e17,-5.107662615057906e15,-7.859635002989162e17,-5.375334811400346e17,-5.558615745606047e17,-9.038402646607628e17,-4.012291229435583e15,-8.776902269986378e17,-1.1668712139828597e17,-1.038957242041737e17,-1.6712254878345834e17,-5.2936745386264083e17,-2.0648581626772346e17,-9.897441401138264e17,-2.3957462997016477e17],"im2":[-1.681626694614673,2.186471554040068,-0.300954007998385,6.88186207615945,-2.9284161585031327,-3.858043541936558,-6.004300038756913,-9.273353525152029,-6.109905377217084,-0.07960463223691328,4.666202263603477,1.8759203622760232,9.1929906357013,-9.218473985486703,-5.617505291673748,3.3760340461941034,-3.5913447745870553,0.11568566906528943,-9.039206849487819,4.381875579277848,7.533771767401198,3.8013604636808633,-7.611988234737545,4.36702853331369,-3.5136366606199987,-3.6434448794987384,9.999834037621973,9.242165910660802,-7.5187560389545816,6.260863347855491,9.168119346207792,-3.4039511523583883,4.525901978935348,7.781879108768763,9.483106527084274,-1.904995578519241,2.7061111634622996,6.453584145907431,-3.89864817672271,-1.5461152446709505,-6.221870812322048,6.2354528215476215,1.6558070339003361,2.812402761429304,3.057317203435069,8.200205417920905,2.0717307834044885,3.9223708004283626,8.486957279706651,-9.722094148054811,-7.3925548505803285,-4.284547259178955,3.7194358406987877,-8.969770798302472,0.9319251853341051,-9.539654894467393,0.1910712843434368,4.553422699648532,5.780755565559421,-9.491567565381695,-3.8572626035284507,-0.11807242602466239,-5.507983112299919,7.629617709179989,9.972845225448278,-9.3844310503497,-4.555914271940611,-7.910390370733609,-4.5591794183982515,0.38385396977946407,-8.519470701286258,-3.7263028460185943,9.177720001549012,2.498878811063605,5.414083318176829,9.53176924934943,-7.279018240234432,-7.003595565164311,-9.776600545490751,2.767673961216392,0.3020375321915978,5.415892265726441,-0.9560782439530691,-0.5376589215060115,3.5543907306523863,-9.448268026138265,2.6988841628007663,9.573351558707756,4.605395627910983,6.682951112975829,-5.392269994527497,7.199197982916729,-3.127690868002224,8.933544736143602,9.598431175991074,-5.611699551463197,4.757458359570755,-0.2700479943137921,9.185616978183159,3.4222351123496697,-6.459382842463864,-4.87555163977107,9.606063441670514,-8.222421560843536,-3.9608083779717624,-4.956767790534746,-4.828919555462166,-9.69825949899312,-2.3535927458364707,4.466723078456154,-2.6269723382952437,-4.859050693433009,-9.972626315248947,8.853925314263815,9.625724430221105,5.039147411446198,2.0893653028187913,5.676615793900069,4.217285900759753,8.600994253598515,4.400726212529554,6.834785154426523,-9.95028576823368,-9.734317138633315,-7.929180139069003,6.324870175597255,-5.0961833352221175,-8.921840084195061,-7.885450116529549,-2.907997010228107,-4.917301032771051,-6.905505652050343,-2.714574248336903,5.0947125793711905,-6.961509224380784,3.1470903745918655,7.374184522044441,8.616826956391552,4.767545282148021,4.374753865377826,-6.05310477531094,8.250448359261323,-0.7457090993572457,5.005449250835504,-8.221547587717835,1.904512500251796,-7.560173222012958,7.964054720024304,0.4597434506171716,1.8558360562141623,4.710916896261676,-3.973016867950525,-3.464628316509333,1.6153708993022509,8.805482210398157,-5.494238525855179,-7.927957596856164,8.49631166252458,-6.865473296466984,9.5461396638917,-3.9758799776040643,-5.4213320814489645,0.28191630570559134,6.4711511539472575,-3.3517086312761553,5.840266638742884,-3.80754661032233,-5.41432670914862,-7.882716917677143,3.628820518262035,-3.3767385449647547,-3.8554547329730138,-4.06621089721257,1.5507246293480605,8.382557163574909,2.9595407325879464,-3.0401147982155496,9.825228938820963,-8.926075631696973,2.159656071604923,-3.19386545504178,8.433663174618065,-6.719048114535338,-9.9413697601473,2.153916675673834,7.8153629347888405,-9.568733807780326,3.8541360045626654,0.42043933069137296,6.863417776411318,7.12550000207542,9.094800762597735,-4.054624962809914,2.213555340489153,-6.516627803016899,-1.4772141784398798,4.628487063024583,-1.4374165441383262,0.11414875986149475,-9.668690999443355,9.353469125210275,2.0965076800609683,7.923216971283541,-9.50745016683663,-8.910925496474766,8.232625950644895,4.866465319440369,4.610658830473767,-3.1948454280402894,7.087086331114197,-3.2740832806816256,-1.8661869959071442,0.3957720043203068,2.4497589814199454,2.5241090968615136,-1.8405946389174215,9.027112419755777,-3.8981186571813353,-4.64626458809369,7.055545374066483,-7.4197042926279515,-6.60728704663176,1.4807589253721396,-2.6258569959458296,5.773708422484717,-6.33275499612645,-7.144770522990685,-2.2934939882216536,-5.133964509203672,-7.834736337752397,-5.624333063953905,-5.52453480491703,7.988219513083816,-8.80198929245456,-8.437925855953175,-5.8609150199951365,-7.7735675711486385,8.802693508648108,2.1976381969639007,-1.9181259202205503,-7.903845771512456,1.2443839750750652,8.843260051557017,-0.22857970081492773,1.1373420185263612,-5.517035888111447,1.3755901769043852,-9.756087982947454,9.831418368127444,-5.268741702926691,-2.174224632386088,6.799635603001441,7.259018575926284,5.1701351763710015,9.925733234403388,-3.615191149044432,6.21433893961634,1.6150454575961444,2.3243583760906468,0.5712712461890934,7.384059424419604,9.75734194195778,2.0899261688258246,-7.535458424614427,-9.309214631476694,-0.8708385229090592,-2.5953070102404556,-7.093589354647256,0.9950686766388017,3.2092870947740675,-0.8324367023918722,-9.752388888708863,-5.768891409963189,-4.54133857424133,3.8957094996427024,3.5349176554039357,2.6365639823548737,1.090225223237681,2.328868364153479,0.7026897488777006,6.718362368965099,3.775025633361226,9.002596119827015,-4.442227005005,-0.953557553146382,8.38020772780163,5.958713614170106,2.6881556396497537,7.087297269097228,4.563804747805451,5.395313913121013,6.016420721929304,-7.512618106483442,0.5037154506746582,0.2511039509120412,6.003312596240939,-7.343563137724494,-4.900036918321426,-1.8342911921764742,4.678232231538054,-0.5258344139048141,8.023078679088385,3.1941483701386524,6.150944671395223,8.607033105857276,8.709050819302977,-6.058877970666503,1.798482830398033,3.285823647208421,5.125688524905668,5.740867318331116,-1.8532727657450803,-1.7321082257910234,5.604178677685994,5.040799841363743,-4.815789602365424,9.143593084788325,2.9561644867404553,1.886209759307878,7.482527507624621,5.790137122811066,-8.593244813888921,4.462783109276611,7.65105850988073,4.150631038434366,-9.50175219261525,-6.32260047921033,-3.3281297483659174,-4.919132302711285,-5.0039079120617025,1.177732374790839,8.772148637814215,9.75975071232449,7.124247612780298,4.540675849290741,5.777421849789624,-4.712522662074634,-2.633594632652045,1.9449165145375034,3.123205292765599,3.201081694716734,5.2272884652684155,0.45092493173312675,-1.5373996456824717,-1.2169964860545672,-7.802384709720216,-0.9489739279211147,-5.5362045001180356,6.025899328268935,-1.879489575716324,5.63599952404434,-2.913753826438194,8.61603419052673,4.875124334432639,-0.39869781814171823,-7.339570118479624,5.695402046188429,-6.012196122331279,8.88939942084312,5.152207303978667,-9.851001740788178,3.1776197404285895,-1.297710418803808,-9.034010552027645,5.7263446164339555,-2.984794575112371,-8.349993761097451,-6.131828136608172,-4.150126180101996,6.476806453392975,8.964517108892029,-8.933720908436536,3.629098819151375,-5.883996644390006,-4.714784589564069,1.7465759143273107,-7.0132086353205425,5.819370278068066,1.5945632845160276,0.46720091813463327,6.512395228735869,3.11561829639297,1.3120860596642139,-6.4176220607261065,1.5419630049188306,-8.127162085885784,7.326747814439219,7.868200967012754,3.644603816842615,-7.047949940390616,5.193103917031944,-2.928732080679053,-9.428177124962154,6.582193020291797,-6.210253374309298,-7.2831578129907015,6.400368036837566,-8.54622874658041,3.1992598776648933,-5.23140764681502,-3.355816779732452,-4.563635345989018,-5.035389270186837,-1.2829607947200614,-1.9423732876138526,3.436389869892997,-7.084649179578282,8.273443981436998,-8.131985094298933,7.145606192009353,8.99906441157092,-2.5966211804697785,8.24295274846573,1.9806554789508546,2.8945791011823925,8.099650487940263,-6.4441245020999744,0.853329523705753,5.282262026542654,-5.373547132384258,-7.388215012946535,-8.265050805633997,7.238604691945451,6.7420261088491955,-2.691711114215445,0.10256448783272276,-1.38062837015128,9.86093642920818,2.576144131996198,0.22151980752893508,-2.219385773189164,0.9406076133004166,2.5112127902445778,6.172638585978195,2.68355405420351,-7.344943330173859,-2.546474786518327,-5.952571822880417,4.115343304308592,-3.4166347410045006,-6.842004637523427,6.381077017005374,-5.50968191307434,-6.199754977504064,8.0380927210621,6.6008305812526125,-7.168742471027343,0.5943713635765313,-1.5837986941225033,4.953014684342262,8.709906041820751,5.87979604963008,-6.145117848720036,-7.319848979096449,3.0856677433307986,3.4409991761011494,6.423578233033304,2.6609408612468997,3.409986810866519,5.693676988530402,-8.975318228320512,7.287372224922219,9.496948006691486,-0.8020097907526242,4.574970313197383,6.167468339345913,-9.587345390682083,7.858829313238061,-0.8658131107123666,1.2326867411088642,0.740977880290842,4.177684813569842,6.688127705158937,2.799830657159026,0.5409028688068673,-4.207180204418808,2.384676713559603,-7.181846965981578,3.687625357576078,-8.804996829404494,-7.219776011033088,6.5216765394433125,-1.9889673379205277,6.2312930550163905,0.375865903222266,-5.049137114129369,-1.563412447948556,3.547768728420454,0.04338426806292084,-4.6378101611671525,1.0395399053603942,9.54922920602581,-1.344927077394063,9.45595892999912,1.1520248975907137,-1.3206894693759352,6.87510934195052,6.497340357235039,-3.668827799988188,-4.743879862324755]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json
new file mode 100644
index 000000000000..f232b7625f2b
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-3.565138926611029,-6.690491541368868,0.24068374156176908,-8.600920113610183,-4.9859999155511385,-6.401361573889437,-0.8233283146066448,7.9098862364925395,-3.522807029846735,7.061455395393015,8.395802001685016,9.85575925466436,3.8943834437410736,7.212706236130316,-6.76035610694123,2.873411344420882,-4.296623489770357,-4.416227175606638,-5.39229820904001,6.164011842018795,0.389271431700994,9.118765526932332,2.6894158059793725,8.361166637334566,-3.0326293091746486,4.226253856625352,-1.1205101766386942,-5.685870750732109,-8.497168447311491,8.214464519297547,4.482294586371545,6.727110370920297,-6.221965910121958,4.205592425840845,6.647010893437319,-5.29126609543761,0.2445201483164432,-6.205254905722983,-5.390098572745772,-0.21472336142469217,-8.6114125033541,-0.3017743417529495,-4.969648544976151,4.139661109204148,7.447852942595375,8.431685600308093,-8.505020415954867,8.701378054637651,-7.758252981315758,-5.832297702590856,-8.025463967219704,-4.603277040764839,-6.066423120951963,9.025395702115365,5.55014020745228,-1.423056811348978,-3.0751577498459763,7.756225757362433,4.470709263761348,-0.05150683550233914,-4.878408382262567,-7.286443718254347,9.076906943127597,-7.991292751117703,2.7098916338801615,7.30409774699794,-4.832738912065784,-3.2298492887415353,-1.6584811938533957,4.035788152120233,-0.12594558911003162,2.714932038419221,-6.427293624553023,-6.727456134049989,3.176741150152708,-3.852715103343762,3.372726892211782,2.9158753950297083,0.4020350610936134,0.7309260227259973,4.95822423902348,-6.602632516857048,-8.989529560494478,-7.765924557661972,7.325057194329418,1.682291206438201,7.072830230134674,6.3591818536206475,3.46407990103512,-8.483916582280004,7.628267351360769,-6.3308164979443475,-2.5865093620841684,-7.459833844173039,-0.5449561005540726,-2.368712252239016,8.375179930216316,4.995524030364795,-5.523501038439815,-0.32331349398060105,-0.8326893438532341,-2.7033254681659358,0.9229381407018309,5.864700746109271,-8.3755154670279,-2.8645523583546195,-8.826206201287032,-0.5998084278094158,-7.37000468751944,-1.5216940005004282,-5.1832961645724795,8.39651085853507,-7.3299377478100585,-7.929102555424663,1.455081284447859,8.637086355888044,-7.045401200715437,-2.185037452745302,0.5368347004074003,-4.033394381380533,-9.775841505329677,-4.3217772383911495,-5.142916591035558,-2.399547776617437,8.563344559791584,-7.455407993775629,-4.32469535335807,8.892206785225941,-6.676513308674405,7.832398923764202,-2.558628743954796,3.5495952607709373,2.0448798011740603,7.52326314851253,-8.159388550379852,6.331395494916116,-8.477334664954249,-9.615454041954955,5.279460849582394,-7.886918381452355,7.4880723073674424,1.135960932242428,3.4338505631547136,8.155707766632567,-1.0800274657717264,-6.609231654547929,5.871802902378274,1.3140553223105673,-8.516565236317854,-6.0893161418094,8.965536769884796,-5.530711893212974,-7.754231032086867,-5.126295600190314,-1.7074325998400308,7.489353138252163,6.775473183564365,0.7682525736703649,1.9898421513962656,-3.5664621837176487,-0.11562410832146597,-2.179807354493965,-3.33557196235499,5.505557928959615,1.1337886474069947,-8.98226855776115,-0.22938079509447817,-6.387103274822832,-4.070267485416171,-9.312376775759825,5.424569608715874,-5.583624056160941,-8.317338994391585,3.2081905389071785,-9.349735414507226,1.8925234509928082,1.2756914805014308,-6.966290108908062,-7.793568422133479,9.205486977207336,-4.282222298183706,0.7410288928883002,-3.1157341174361264,-0.5163005436766177,7.800100434937946,-6.267198385605446,-2.9245685750974637,8.823325395927025,3.440222729206564,-9.28855533323553,4.556164200060406,1.69882678221831,0.2438279035619182,0.24362918287765822,4.413683472390758,-3.1111240183686935,7.865171622341535,7.547642239485992,-2.9618450360155224,5.280626973527037,1.188089819495925,-0.3905773553474319,4.378439772459446,5.69758259669689,-8.607969176813395,-2.388442115826921,-8.603417722157637,5.8996580139359445,4.172259305218521,9.00907349735568,-4.019469414818049,-8.501493388132078,-4.57960830488102,-5.593988795437399,5.190881383613814,-9.316384612549705,9.5306187524769,8.741880624361166,4.110819939720319,-6.147828309105547,0.4758254940992721,-2.542175264178228,-0.6354822298872325,-8.92404163684716,-6.4762727328129515,-3.145190157979223,7.733152478646346,-0.08709278883740268,8.997398260434252,2.065608673674122,9.078206219362393,8.16579452120806,3.8751287276758024,9.159567983804987,-5.760531098929933,2.9671170720450117,5.0949129850539965,-8.14279655605447,-1.3458044342272029,-4.432862583758634,1.0930374492589827,-5.350801382596324,-7.081980860404762,-6.18249527519956,6.027583960499044,6.186550457018317,4.789094597034538,-4.63018463123551,9.222153919803993,-1.9510299194241725,6.644370585161511,-0.13768980778766426,6.679755570545897,1.8645552547597433,-6.472654219554141,0.03346179914134595,-4.876971422747733,0.44258549757396004,7.806369612552221,-1.985901681631475,-9.388383932558487,8.178703448244654,6.960525505351537,-5.700215262119588,1.5668010020754295,-6.32794449660069,-8.078630490508154,5.696107399313227,8.082629875425184,-7.225145226078082,-6.836451669188834,-4.058090975328201,6.716813011685463,-8.05974077192289,3.5219216255798518,6.974974086992493,-5.301427827053926,-6.273375536435841,-7.3328447833427735,-9.432061344503119,8.063974447978786,-2.8778524074531786,-6.800692694617599,-6.417255243180575,-9.077863255267813,9.470381262550973,-5.567546257090776,0.23182292382376524,1.322556296242123,1.3870245940571166,-7.032108125117946,-3.063610256372879,8.66452325954755,7.670757761627684,-8.033976680446806,3.7140423406502094,1.327245542653781,1.8350616117290457,-6.386349734659764,-4.030552068447342,-3.0433777110275617,-3.715897767223815,2.0312281519473103,1.403290596036511,8.465324058793929,1.6647484355554738,-5.488942991258252,-4.0357777951077445,1.1276687113047146,1.8291055217250225,-8.159403980948719,-4.358582307730545,-3.3525238426789716,2.7542535555241,-2.860614009188085,-5.716484296755282,3.7415564779961112,0.7733218106387802,-3.835317838411008,-9.980994195459933,-4.347924953095035,5.297518797768163,-4.187561892146183,-6.757357733109728,-9.133874394976022,1.3727396921396622,-0.28037043342173895,-5.9519075691408,3.9455196267789177,5.8301555372411435,-4.788239021738612,-6.798441894403635,-6.47390056071816,2.4776604921110668,-4.704124621711728,-4.507822871442489,6.354124683942729,-8.486705341917267,-9.45347970145712,2.480982995669878,-3.119281674048553,-0.020464389249216453,-4.872683153214858,4.401151532080178,8.237863912922606,-6.527766366942888,7.318365211112237,-0.9106948927739662,9.063848935675043,9.339530951352362,-2.351199935452078,7.011327137536615,-4.751526485189443,7.568755548318361,8.521796823517576,0.9685271067684518,5.794406231586599,1.4427178762564896,-0.022396261076210067,-2.7635177905964747,-6.889415161715464,-7.54198492567272,-8.657426827618359,-3.9077280199846065,-5.078294798839263,7.721573155691971,4.539498567045499,-5.145941250671775,4.556548197254887,8.960663622423468,-9.698787310730806,7.512558246391009,-6.613391208156378,7.975821453789678,0.21933525015543154,-9.42213394052798,5.787502128720874,8.775870161059107,-0.005762699114804093,-4.752691951582464,2.2200400947659826,-3.886076998109438,-8.472054867370176,6.942223243872242,7.411849106995941,1.8862636904126422,-5.731754356711159,0.6398675184662643,-5.265235832171802,0.6121962041721201,3.524610184815467,-0.8532464326004501,-1.3294572946753753,5.082110514559865,0.21140451138063732,8.123302822299852,-7.80467539727211,-0.28846026387572543,3.3426503751620658,9.625626800701696,9.719621789221762,7.990349216730046,7.931878478344167,-0.32354287845157614,0.2556170737650003,0.9631720570931641,7.512823699731609,9.616310716511368,-9.785001739918126,-0.2080594429634175,-6.394002346035057,7.228631011301914,-8.647361713860525,1.5281782378246138,3.44706936987812,6.325890190368732,7.401221681659518,4.143218492151684,-5.0089698345068845,5.095491158159508,-5.267805884633921,-6.155797617420409,2.969730262735702,-5.428869816804209,-7.154355948016001,3.1423223106299165,-6.445610417337275,-9.607052022924671,3.5392170040234845,5.4711491743115985,-6.30778555690136,2.103782430649801,3.357899393406079,0.07210217629266147,-4.16740502780339,5.680343294561874,8.384563079523918,-3.5817678516788165,-4.974239461274353,-5.959013705884411,-3.807569471433827,-5.6754640908051375,-6.688724737869762,1.702708564398641,-1.8475395866085425,6.008174707513362,5.01807907333597,-6.027064960590152,-1.3917655490755827,7.142176065419964,-8.30317818874893,-0.2894042131778445,8.842401330641529,2.3640017365199046,-7.276542104386358,-6.3824772348791186,-1.3774840037578073,9.53081372829854,4.443864517999966,6.79771129541388,6.779689335007124,-2.652412969146914,3.8902825977308346,-0.9267950397341203,7.900040098051878,-1.116368526969529,1.692394966994943,-8.12042120293306,-1.0663214689017266,-3.076156021378054,8.46219295018685,9.426050751386622,-3.9346962800532985,-5.731153800331339,-1.799731839917861,4.157923775780086,-3.3539178799260423,4.206801544652247,-9.20731052592105,-2.784935377183646,6.755218178874518,-2.045199980566233,-7.730396296324784,7.660561079286595,4.496853476227351,-4.7093779738827894,1.0094992515916363,7.672852159354164,4.578664146465856,-4.592665365884172,0.29030079083168303,2.998204102099402,4.758397089760123,7.310870868914861,9.28289753125927,-4.0795440066874145,-4.450031039402291,9.18693069512019,-7.8632961351494846,9.566393159288523],"im1":[7.259041876068876e17,7.143048273506715e17,5.080597092044903e17,1.4939379081451142e17,4.598120154839795e17,1.0792724059450331e17,5.5364903456652205e17,7.544998904822109e16,2.3375682419488653e17,3.765532782829329e17,2.4829845491008362e17,2.5800487325528608e17,2.1571290476755277e17,9.190639827393007e17,5.883824405551578e17,6.242784068565167e17,1.736869398774731e17,2.608759622699609e17,9.121445796686566e17,6.023904113867688e17,2.785675425070633e17,8.626439622741999e17,6.055215782015735e17,4.511777692906504e17,8.913696090637226e17,5.709939404438894e17,2.102695277695884e17,5.972172958849548e17,7.561985160600756e17,9.147164949598043e17,9.892990497997193e17,9.665826108548901e17,9.331183580249462e17,7.552912280929381e17,6.904554398006995e17,7.903940581438225e17,7.277201514291534e17,7.430668822454884e17,1.8069722675808685e17,8.986602882347706e16,9.970975352649914e16,8.653473804897613e17,4.4526568706621997e17,8.981701143019625e17,1.6860949309900963e17,2.84891019249619e17,1.792870636836218e17,4.740023439056876e17,2.358929755312844e16,7.881758972610239e17,7.715676116207782e17,6.469729210681661e17,2.73487678382757e17,8.503397213016488e17,1.845204325377825e16,1.6046896499314067e17,4.045973717199709e17,2.7614212817517568e17,3.1485826829818176e17,4.7847059473386744e16,7.469062761767576e17,7.7136451729592e17,5.918804115772042e17,1.6280750541502333e17,4.5978037648162886e17,5.78091563358929e17,1.9512635913775677e17,6.241133990114298e17,1.964986065213672e17,4.3221264591655194e17,3.8570080695297926e17,8.630939489154726e17,7.302773672959494e17,8.729634779692719e17,7.09926791812317e17,9.055741834383069e16,6.411494795060498e17,9.059893273247816e17,6.401250064467672e17,9.975947503557764e17,3.5256072736961894e17,3.032732638053296e17,9.027353152691263e17,5.342595105113774e17,5.1821533926283416e16,2.8667160296028317e17,8.15175583733078e17,7.353852875061623e17,8.99123782164148e17,8.387528705430829e17,9.843310747971524e17,8.825764248446285e17,8.894884725613737e17,8.397234461871479e17,9.161683175710365e17,3.9848558253679e17,2.114627008124115e17,5.7128239897709984e17,1.905897832247708e17,1.70255321875718e17,2.9928152784196685e17,7.143116312351667e17,7.442911469647496e17,3.9182526428474394e17,1.0211474441563251e17,7.097225961236792e17,3.0827702794464864e17,8.330145475707485e17,5.892759678308936e17,9.674530687309713e17,3.730437372258993e17,9.265127764980042e16,5.6215879797406746e17,4.1241555593526835e17,3.954889967544333e17,2.516075720703681e17,4.202189461773754e17,6.890033038253134e17,2.2939659738328788e16,1.8905739658526365e17,5.7142368619614336e17,9.703467464998689e17,7.532556082644625e17,2.3600455683358134e17,1.0669026016352778e16,9.746328650426341e17,8.054217940988019e17,1.7715728416403786e16,2.4747770672869107e17,8.909304399108497e17,3.918735365138165e17,2.3533997670911632e17,7.352293320707747e16,7.922108996765659e17,9.045386517396241e17,6.844719178204516e17,3.3386943610860954e17,8.566388611164944e16,9.889677396603809e17,4.470505492706055e17,4.4636851183519354e17,1.962347384740386e17,2.1295012597872877e17,4.4660458472170874e17,6.587979356936646e17,3.0107470244978304e17,6.407779536405755e17,1.4309919880840072e17,4.0382555190096403e17,1.3681759584068098e17,1.1957810416136016e17,3.001202182195976e17,2.6794969320160323e17,1.0170650206255904e17,8.417646874850884e17,3.203936549063453e17,9.52765063549314e17,9.550137900173861e16,5.165388159088175e17,7.418267862181317e17,5.6333697649435456e17,6.7853872241422e17,5.324410241560817e17,9.808621761114726e17,3.8280921551516736e17,1.600300618969318e17,7.768199443773645e17,9.418803771424051e17,5.333847381058454e16,2.570929994610538e16,9.660222201931464e17,5.45018376633355e15,4.111402096454442e15,3.600955677111956e17,5.588854879781937e17,4.726030769061197e17,9.426099456957697e17,3.601829521155554e17,4.6505188984125446e17,4.9959803363899603e17,4.851134216928109e17,9.658352670545367e17,2.289339478584862e16,3.885034022755629e17,2.997512836737879e17,6.346940701127315e17,5.938415854056785e17,5.2763797575808525e17,9.628578033269846e17,6.465196117405674e17,9.875603560195707e17,3.698390250760759e17,1.1058391331095795e17,5.5045770366415405e17,4.764609343045223e17,8.811483813122915e17,1.427219712608998e17,3.4963482157268744e16,1.107743180394991e17,6.649015559461334e17,7.64988701570995e17,9.877190267588724e17,7.2928318406531e17,4.5261023421899616e17,5.073889197726411e17,2.3107869736025645e17,4.673347885998624e16,4.834946424824069e17,8.976578848032337e17,3.0366674541794035e17,8.453260967831274e17,1.4192112576091243e17,4.241367906579607e17,1.9666462013402198e17,2.431254932148468e17,3.555354656336628e17,6.7695704540695064e16,2.493848108728166e17,6.102627329179958e17,4.3784525584814285e17,7.770537510306042e16,6.849307709161851e17,2.927758151315743e17,7.519669323674877e17,6.4183551934855e17,5.810820464144858e17,3.103458856887771e17,2.4671692610458883e17,6.466467261827163e17,6.066350047792347e17,4.59634960382487e17,9.403864555273128e17,5.1279933830217197e17,8.081090027978643e16,2.817747017240053e17,3.400220723108084e17,6.065680912601902e17,6.086661832360294e17,6.689854888037066e17,5.0524656056146144e17,6.166502979956093e17,1.34219023844098e17,2.4166337346286924e16,1.2873208012649694e17,6.361323493831973e17,7.171964905467459e17,3.7584611215174534e17,3.982079966204366e15,8.279617946569619e17,4.9548943540449184e17,7.350528868284581e17,8.540842120845503e17,5.643511086498271e17,9.316707416783754e16,5.4841662133214784e17,9.12610643682741e17,3.670886946889201e17,4.356532761220656e17,5.42708899849309e15,3.270787813589564e17,1.4267618831232776e17,1.833546235971828e16,2.221097364680138e17,1.4251806943243838e17,3.543372465973437e17,2.1157400668645942e17,4.553520155950753e17,9.750004946180497e17,7.688903599989414e17,8.136062063644731e17,1.2561369016033152e17,1.2390853029909722e17,1.278366598135724e17,3.742692279148556e17,7.140885843997957e17,2.5585343504880688e17,2.6765115056504563e17,9.701161914999825e17,7.214626980383662e17,6.209640111210168e15,4.095236043314814e17,2.7388232475018637e17,7.907493790350161e17,2.2888897241839366e17,9.922579161723203e17,5.1572427606288454e17,4.65877489513804e17,4.0170137589279795e17,9.09695813628545e16,1.7973256105714096e17,1.6047139648779862e17,5.910034577993796e17,6.145876481691304e16,6.497492037934281e17,7.383697431555483e17,7.088112925112739e17,6.335947782559855e17,4.2379177497261997e17,4.932990686580759e17,8.807450718309752e17,6.973094367694936e17,7.066804610623213e17,9.329470440774153e17,8.415843949516069e17,2.9377460103582886e17,7.863744654961292e17,8.987214525526133e16,8.270865085148247e17,2.070333639805366e17,7.858316932935461e16,6.457285655299267e17,9.083428263410934e17,7.81702521792791e17,3.597022198594324e16,2.011542490306899e17,9.381468494445592e17,2.281125397019722e17,2.2492076831281404e16,1.2299637754137016e17,3.022540953456848e17,2.8040347616990237e17,4.504001129622659e17,8.966160978037887e17,4.87677172664315e17,5.4313638860255597e17,8.942181483350205e17,7.979060965502261e16,7.641457812336707e17,4.7921329278483603e17,2.1467562737379408e17,4.890558159621402e17,9.947043518603862e17,4.169919767284449e17,8.07978580239765e17,8.741310701955764e17,2.543881496003576e17,1.1111760813686677e17,4.3918415315061e17,6.338833236281832e17,4.574450751301832e17,9.532384946963923e16,6.439137347110868e16,2.6520839111527917e17,3.0121352435090086e17,4.802254337950006e17,3.5945643401338534e17,1.3754568370280973e17,7.352704582048788e17,8.237885842566542e17,2.5589499611914022e17,2.935675397741128e17,3.2417767193568435e17,5.7484152716105043e17,1.2713807775404872e16,2.1231715562888077e17,3.5975388060948166e17,5.765625605364093e17,9.140946739924283e17,6.209036122143149e17,7.483335136676741e17,3.6698916425080474e17,1.3832621739072893e17,5.974824015361565e17,9.303135416439338e17,7.660174628306524e17,4.649046196093332e17,2.1766891053802352e17,4.43794007887109e17,7.136949447396945e17,2.2446372603225994e17,5.948191379692969e17,5.512598862583977e17,2.984168220256643e17,1.635360896038489e17,3.793910796851645e17,5.2376654157267546e17,4.279756408706947e17,7.940947227243452e17,2.3341449552372573e17,1.0972035064234354e17,2.5654235565186355e17,3.247658137545153e17,9.268816407162815e17,5.7426528366733984e17,6.460346381922445e17,1.9208716975304797e17,6.248388004940483e17,6.21938309649972e16,2.575980551169588e17,3.2304897618195635e17,3.770338499894528e17,7.984602316564111e17,3.3406763232780154e17,7.147693245421414e17,7.959699811353402e17,7.918793990823032e17,2.816846915369634e17,2.0268953313182557e17,1.3069202197278074e17,8.60079928004201e17,6.664700911656202e17,1.263576956395559e17,4.1379128300395974e17,4.8214383049013696e17,8.839755075224942e17,8.870553244631151e17,6.045536687776659e17,2.787161106111835e16,3.883851862851828e16,6.923755759359677e17,3.414358069335317e17,5.607306698581726e16,5.817785126711156e17,2.464373077011871e17,4.573822603265859e17,7.650161589063864e16,6.943072107766227e17,4.0204722215963315e17,1.8637390896908755e17,2.2753407224901178e17,4.574071011880596e17,9.987799347307419e17,2.5583899996128422e17,8.302200916382627e17,5.248068887582794e17,5.3757644182496736e17,5.1103468610596646e17,4.1112949498579366e17,2.9104724766601197e17,9.63654006190298e17,9.733373324697646e17,8.84279100921631e16,1.2747351910658344e16,4.987747015658019e17,1.4570171515604835e17,3.7610540550322304e17,3.7196649534653824e17,5.575254039159363e17,6.890664848272055e17,3.3314643410836676e16,2.4196383564446512e17,4.625349253103352e17,9.76490819725762e17,5.5282452588909005e17,7.794896227821516e17,1.779587845270314e16,8.2723771045454e17,9.531841492411649e17,2.2499362350570883e17,2.9813881195284164e16,7.084509024403315e17,7.209544519021573e17,3.654786690031584e17,3.730401871364364e16,6.455636886589307e17,3.980577071614243e17,2.499593970432257e16,3.211365829843526e17,7.853108444291532e17,5.48503160299614e17,6.317820745744933e17,1.5399244687962166e17,4.23519158843617e17,3.9272130436337306e17,7.668384148645815e17,1.6032513544077155e17,8.658625434510558e16,7.807144188172837e17,6.107753163709631e17,6.330746088706337e17,4.2032046852647597e17,7.644360720964586e17,1.8842655655837325e17,3.621616467177504e17,2.3428569976533965e17,6.532113978763429e17,3.0095033522329805e17,3.15005653966934e17,9.96106929095133e16,8.961924301246079e17,8.490727476701778e17,3.783697762142809e17,1.6381604127217e17,2.7008650588545914e17,5.922176458980276e17,1.3947642229483736e17,7.027311846582181e17,2.821858092525026e17,1.3445489379728392e17,5.1282980252443654e17,9.682815597411886e16,3.36562987928283e17,5.574245600297911e16,2.1374161307961238e17,6.656771097196718e17,2.8043095052148714e17,2.006933433160836e17,6.972352546143493e17,6.542445965826419e17,7.035320901141427e17],"qim":[9.088706e-18,8.3312035e-18,1.8099115e-16,2.854715e-17,7.624515e-17,1.273048e-17,6.733672e-17,-3.753603e-17,-1.5213187e-17,-1.5034747e-17,6.009373e-15,-9.254902e-18,-2.2428671e-18,-9.250656e-17,7.89181e-18,2.466176e-17,4.493702e-17,2.3279614e-17,-6.4009506e-18,-7.695089e-18,-9.349708e-19,-4.3832397e-17,8.6625934e-17,3.2723053e-16,1.7469791e-17,8.108038e-19,-1.402282e-17,6.5611834e-17,4.006979e-19,1.9681603e-15,-3.5249213e-17,-2.3517221e-17,-3.1479675e-17,-1.4634786e-18,-3.3605515e-20,1.3629136e-17,-5.2337123e-16,-5.3995393e-18,8.283886e-18,1.9437653e-18,9.268778e-18,-2.1573302e-16,1.0542454e-17,2.438855e-17,-1.8003282e-17,-1.66838e-17,2.2279907e-16,-1.5635561e-17,1.9942065e-16,-4.753572e-17,1.7758985e-17,-3.370206e-17,9.340207e-18,-4.4491984e-17,-2.5812184e-17,5.0179067e-18,5.716422e-17,-2.70105e-18,-2.4280583e-16,6.381917e-19,-1.3671513e-16,5.3962966e-15,-1.05158876e-17,1.6498854e-17,-7.56499e-18,-1.606749e-17,3.025259e-18,4.1153805e-16,9.972544e-19,-5.4603056e-19,9.298351e-17,5.453537e-18,2.557337e-17,-8.674638e-19,4.1322214e-17,3.5500685e-18,-6.1611042e-18,-1.9889002e-17,9.471062e-18,5.963762e-16,-7.4483114e-17,7.443846e-17,5.218659e-16,5.4656807e-18,-1.4148134e-17,-3.2459285e-18,1.6952445e-15,5.1052955e-18,-1.7834244e-17,2.1357545e-17,3.9723603e-16,2.5912035e-17,-2.4096436e-17,-3.816252e-18,1.0013963e-17,-9.946555e-17,-9.635931e-18,-3.5933222e-17,5.783312e-18,-2.7848674e-19,1.8077766e-17,5.2067798e-18,-1.6395246e-16,6.911297e-17,9.856955e-18,7.43554e-18,2.0988327e-17,-2.86109e-17,5.680396e-18,2.6023057e-16,1.6093373e-17,-8.850944e-18,2.889285e-18,2.323118e-16,-6.940084e-18,-8.3330225e-18,1.3860974e-16,-6.962239e-18,-1.5308843e-17,5.5994796e-18,4.454716e-18,-5.0143374e-18,3.1834982e-16,5.821134e-17,-1.7668808e-17,2.4357645e-17,-2.9789494e-17,-2.2985758e-17,2.3344245e-17,6.8764693e-15,-1.9189517e-18,-3.059616e-17,-1.5817189e-17,-8.089627e-18,1.13386134e-14,-3.2478496e-17,6.9147977e-18,1.7070518e-17,-8.984417e-19,1.1671851e-17,-3.7245248e-16,-1.4866714e-17,-3.953804e-18,-1.4321084e-16,-5.8133385e-16,8.09775e-18,-9.2656795e-17,-1.1425473e-18,2.3701507e-17,1.1569901e-16,-7.644463e-17,-1.2560947e-16,-2.9908434e-16,9.17784e-18,6.907289e-16,-4.8597974e-18,1.2513433e-19,-4.82546e-19,-2.470515e-17,8.614703e-18,-1.8074285e-19,5.5585313e-18,-2.7982713e-17,2.3618068e-17,1.2277693e-18,3.3237675e-17,-8.76319e-18,5.8589397e-18,7.815596e-18,9.379461e-18,-2.4579247e-17,5.9859343e-18,1.6405511e-17,-4.493978e-18,1.4740458e-17,-1.4851138e-15,1.5919297e-16,1.0281359e-17,-8.830603e-18,-1.4241261e-17,1.6045463e-18,-2.500966e-17,4.7233026e-18,-5.566555e-17,1.7412268e-17,3.7283088e-17,6.668712e-17,-5.638386e-18,3.701645e-17,1.8595505e-17,-4.7735313e-17,3.4415025e-17,4.8211453e-18,4.990906e-18,-4.909996e-18,-3.299796e-17,-1.0995414e-17,-2.5396086e-17,1.6761901e-18,-1.9661307e-17,-1.1512098e-17,4.812506e-16,1.8186239e-17,1.36665325e-17,2.339923e-18,-1.2238864e-18,1.4954199e-16,5.893975e-18,-1.3884212e-17,-9.373717e-17,1.15138404e-17,8.281475e-18,-1.4143462e-17,9.392834e-18,-5.4800848e-18,1.744348e-15,-1.4745108e-17,-1.0597179e-17,-2.1068138e-17,-6.998041e-15,3.3158114e-19,2.521781e-18,-5.786811e-18,4.5735832e-17,3.392382e-16,-2.7358655e-17,-3.5535865e-18,2.7261745e-18,-6.2091643e-18,1.1284902e-17,-5.33515e-18,-2.2324253e-17,-5.903412e-18,-2.5114535e-17,5.1407574e-17,2.9161537e-18,7.4696534e-17,6.994945e-18,-1.5303475e-17,1.6116673e-17,-6.427405e-18,6.3421257e-18,1.4634473e-16,4.421608e-17,-1.4077461e-17,-9.0393126e-17,2.3710314e-21,5.8751678e-18,-1.2621672e-17,7.632356e-19,-3.0017888e-17,-9.4037226e-18,-9.028711e-18,-3.2726733e-17,1.3382282e-17,-1.1134015e-17,1.9384817e-17,-3.510591e-18,-7.937675e-18,-1.0241884e-17,1.1589652e-17,-1.0632518e-17,-4.4152343e-17,-2.0085957e-18,-7.874694e-18,1.188431e-17,2.0045021e-17,-6.915875e-18,-4.1694287e-17,-5.4164117e-17,8.070288e-18,4.558097e-18,-6.4415437e-18,2.3607915e-18,2.4282486e-15,-8.845086e-18,3.1637025e-17,-4.2072007e-17,8.344404e-17,2.7030621e-17,6.3213614e-18,-8.005235e-17,8.4606976e-16,1.3122663e-17,-1.14496215e-17,-6.1163252e-18,8.648229e-18,-2.5103704e-17,-6.7647786e-18,2.4939276e-19,6.683416e-18,2.612416e-16,-3.8077992e-17,5.011898e-17,2.517972e-16,-1.5096097e-17,-2.5605427e-17,-2.5285857e-18,-8.073935e-17,-1.0958761e-17,2.3042322e-18,-3.4350544e-18,2.1047156e-18,-1.8679916e-18,-7.017859e-18,1.4559613e-17,2.4623785e-17,9.065691e-17,1.2550779e-14,-2.0761042e-18,1.4033835e-17,8.442879e-19,2.3791561e-18,-4.9955174e-18,6.6412495e-18,2.592452e-17,-1.4720878e-18,-9.017006e-19,9.0292695e-18,1.4249637e-17,-6.8042595e-18,-1.0552826e-19,-1.4836593e-17,8.852199e-18,5.914508e-17,-4.616239e-18,1.5011951e-15,8.107873e-18,-2.3748154e-17,-1.0507033e-17,3.77708e-18,2.4911585e-17,5.9094643e-18,-1.34772e-17,5.201309e-17,2.7784285e-17,-1.1658686e-17,1.1063369e-17,1.4264442e-17,-2.0203842e-17,3.991863e-18,-9.3448e-20,5.2208957e-17,-1.4830335e-16,1.34878516e-17,9.438601e-15,-1.7117432e-17,-1.1529076e-17,1.8270277e-18,-1.3628277e-17,8.5139364e-19,-1.1465965e-17,-1.9113156e-17,-1.071932e-17,-4.6621494e-17,3.0042826e-18,-5.6439542e-18,1.7050355e-17,1.2511339e-18,7.92011e-18,3.307471e-17,7.845951e-18,1.24939486e-17,-3.3293496e-18,-1.7408704e-14,-1.016364e-17,-1.170159e-17,-6.170845e-17,-9.734241e-18,-1.3204452e-17,2.1764029e-16,-1.173465e-17,1.12422895e-17,3.263722e-14,-1.9060872e-17,7.6855576e-18,2.4676419e-18,-7.590332e-17,2.1329915e-19,7.544542e-17,-7.670942e-18,1.5605892e-17,7.489138e-16,-1.8114837e-19,-1.7047267e-18,-1.9966507e-16,-4.903354e-17,-2.2677506e-18,3.4136418e-16,-1.1066237e-18,-4.0742475e-18,1.1237526e-17,4.56859e-17,1.1477788e-18,6.4609258e-18,-5.8971215e-18,1.618682e-17,-3.9812803e-18,-4.5151228e-18,-4.3809862e-14,-2.3309596e-17,-1.154175e-16,-2.5733114e-17,5.5312783e-17,-1.3112072e-18,5.552512e-19,-1.471905e-17,-1.24591706e-17,8.6996656e-17,6.2245573e-18,-3.774148e-16,-3.0496276e-17,5.8430124e-18,3.2097143e-18,-7.0750035e-17,-7.261831e-18,-1.2878873e-18,-3.3072776e-18,5.9918416e-18,1.6952056e-17,3.2955663e-18,5.2855703e-17,-1.0591628e-16,9.2356295e-18,-1.5550096e-17,-7.923537e-18,1.1672168e-17,1.47709e-17,-3.600896e-18,8.880716e-17,-3.4527726e-18,-4.6987035e-18,-3.7991926e-17,1.8300192e-18,9.3488565e-18,8.373422e-18,-1.2722585e-17,2.1225674e-18,6.0202267e-18,2.7742544e-17,1.2182619e-18,3.0524094e-15,4.049145e-17,7.4527855e-17,4.742662e-17,-7.3712074e-18,-3.931735e-17,2.8408833e-17,-6.0002144e-20,-1.1482136e-17,4.2791827e-17,-5.6526913e-18,-1.6449766e-16,-7.094962e-18,-1.0887727e-11,8.961675e-18,1.5173776e-18,-2.8032413e-17,5.5095854e-17,7.1350416e-17,-9.856362e-18,1.356295e-17,-1.997832e-18,-2.1513062e-16,-3.904131e-17,1.8846264e-18,-3.3323347e-18,2.3759041e-17,-2.839781e-17,-3.9586928e-15,-7.020885e-18,-4.7105793e-18,1.3258697e-17,2.245354e-17,4.9559305e-15,-2.043671e-18,1.7986624e-15,2.1059587e-17,-4.490416e-15,-5.7978673e-18,-7.972637e-19,-1.05371964e-16,2.34177e-17,-2.113801e-17,-5.5610277e-18,-1.3388365e-17,1.15349675e-17,-6.205657e-18,-6.8295195e-18,1.4826303e-19,-2.8382639e-18,-6.138713e-18,-1.9581767e-17,-1.2788935e-16,8.370746e-16,-5.5021593e-16,1.064009e-17,2.5168739e-17,6.817112e-17,1.2504424e-16],"qre":[0.840113,1.2554042,5.367356,0.36327964,1.8805751,0.18889242,2.0409188,0.3762352,1.0011733,0.8050211,13.374787,0.31891412,0.33634984,2.7648618,1.0995655,1.6801602,0.781304,0.9635386,1.3116548,0.6748672,0.28760204,2.7612107,2.7127833,4.796874,1.1638112,1.1763936,0.6720744,1.7906121,1.287933,17.875757,2.3063245,2.0707157,4.9819245,1.3565526,0.93000954,1.8886312,6.1646476,1.8175017,0.21955268,0.13420483,0.10937005,5.1506753,0.48490816,1.7967385,0.3733104,0.55811346,4.8084497,0.5328503,0.46384946,2.356258,0.8427016,2.0255132,0.5350307,1.6014813,0.07985493,0.31092817,1.4031491,0.6869432,3.5260804,0.24570128,5.9255276,24.140621,0.6685563,0.47279945,0.7844389,1.1822813,0.31949335,5.0560703,0.30179083,0.55048794,2.107286,0.9098432,1.2439616,1.0458771,2.0478313,0.103011824,0.7757176,1.4925736,0.9454732,25.358055,2.0499957,1.6305015,6.9682646,0.5497653,0.10389194,0.4409304,18.578947,1.914441,1.2572265,1.0262879,15.305252,1.853461,1.9412726,1.076795,1.1570907,2.4575834,0.38132122,2.528088,0.19914576,0.17174508,0.701557,1.8131982,3.784772,2.6859014,0.1094359,0.7199386,0.5947368,18.7287,0.6299517,5.757696,0.60104686,0.09969584,0.8862637,3.1736145,0.7424808,0.42622712,2.4851694,0.85665697,0.196597,0.20576377,0.78560704,1.160894,5.6887083,2.5485125,0.022325309,1.4429597,2.2696593,0.04385305,0.5061635,35.467533,0.58105993,2.0223327,0.3709496,0.9091045,36.637177,1.4059057,0.44271493,1.7485663,1.9171375,0.5138526,3.7921743,0.49979815,0.32431078,2.4029157,8.961233,0.4548577,2.951715,0.14526422,0.65070444,1.0748819,1.1386207,2.7149923,3.4742186,0.21584836,16.354841,0.3889354,1.2344681,0.18055804,1.418141,0.97556204,0.6137924,0.7823182,1.887465,1.9180752,0.5090705,0.44006574,1.13461,1.1056767,0.08971977,0.025815737,5.7795897,0.005899242,0.008104461,0.3839953,0.7653824,15.031477,4.4776783,0.39077526,1.4506397,0.8389671,0.53817475,1.5212464,0.039646003,1.7047371,2.2077131,2.0727344,2.2724247,0.81992364,3.695106,1.2054201,2.3009624,1.3661306,0.270137,0.63878185,0.48201367,2.112782,0.6184204,0.10978112,0.20755751,1.9094368,1.1048403,22.972467,1.9309545,1.1552587,0.73072207,0.36724377,0.6233778,0.95757407,1.2576844,1.5182648,1.8438718,0.16109543,2.4609878,0.85867596,0.31497508,17.22031,0.10362694,0.2815728,1.828153,27.33385,0.112036005,0.8247663,0.6298903,2.2151067,5.5237346,1.7089117,0.7762261,0.3678451,0.65512234,1.1659746,0.48028997,1.1132624,1.1939951,0.367631,1.740775,0.5697161,6.380438,0.66131157,1.4964683,0.78997165,0.6299075,0.14008003,0.35945573,0.91419476,0.8344178,3.3009405,0.49452496,0.005082129,1.2627981,1.0095981,1.2987598,0.90803933,1.0222187,0.47133118,0.60849226,1.0186191,0.92531353,0.59897494,0.0054824636,0.81733114,0.22942357,0.024478832,0.72374487,0.71932477,0.5729986,0.30067125,0.9144329,4.2326217,1.9638761,7.1955547,0.71096665,0.12395578,0.13195814,0.87993854,15.008331,0.28543523,0.732115,2.8211622,2.241554,0.017992716,1.3132602,2.856729,9.503276,0.34586385,3.5537262,0.5198742,0.72740376,1.1819974,0.23756035,0.2548025,0.20264634,4.022963,0.5463838,5.2588844,4.272034,1.1641791,1.8412894,0.49054313,2.3427877,1.7453998,0.7320977,0.9516131,2.1287053,1.1621336,0.383246,1.2208372,0.28770393,2.5592418,17.461233,0.10528312,0.8769382,1.1072043,0.78365123,0.07027117,0.26346615,2.1728604,0.31117076,0.034395523,0.25207582,0.38374,0.72625,0.70267755,1.65055,0.77713794,1.4547355,2.0913913,4.7158165,1.0177821,1.0805044,0.26607543,0.63387465,2.553581,0.43664715,1.3004581,10.235005,0.7613259,0.17647564,0.724667,0.7239792,1.8027946,0.11591846,0.09419512,1.532097,2.0941722,2.7997136,19.859484,0.29230005,4.41356,1.6509422,0.3878942,0.58193535,0.45037773,1.3350285,0.017612714,0.8828333,0.5024836,0.643356,1.8551456,0.73321605,1.3403554,2.3256943,0.16978395,0.8060816,1.0593965,48.733337,0.9955186,0.35314742,2.9608784,0.8495992,0.3129708,3.4092474,0.66091007,0.38331026,30.479431,1.0591034,0.5470259,1.1660252,2.0661764,0.27874985,1.0746682,0.57452726,0.71416634,12.626634,0.8516428,0.68590325,1.9068785,2.3045568,0.102218114,5.584691,0.40828508,0.5220088,1.1887199,1.3931438,3.674136,0.8373851,0.87581915,0.6452953,0.62554187,0.17089003,62.093662,0.8758134,1.1918974,2.4750924,3.1746633,1.2922294,0.9044522,0.6959578,0.03704441,0.5790335,0.9635198,6.2272935,0.32409316,0.7340558,0.48060888,1.6952531,0.088434316,0.7655035,0.46299553,0.31450152,0.9319973,0.7134723,2.1204476,1.946328,1.1738372,1.3789191,1.2807866,0.9417244,0.6117862,0.30212668,6.7341113,1.2933462,0.38347617,0.30941176,0.9823883,0.27688393,1.1385585,0.59476733,0.6779603,0.9017238,0.19366251,0.417121,16.969002,1.8160144,2.2311845,1.9034705,0.02186958,1.6428878,1.7927846,0.581775,0.05103353,2.396362,1.4894753,2.263565,0.095919825,1220.7358,0.5033995,0.025926437,0.80229867,4.053366,3.0055497,0.70981145,0.44482183,0.6076012,3.9246092,1.6844152,0.19645856,0.17114846,1.5596045,1.6782728,17.069906,0.6447094,1.9123958,0.38038245,0.8268563,18.556673,0.70859313,8.408294,1.0875028,7.895802,1.0080515,1.4091557,3.1590085,0.40828076,0.88225746,0.6302235,1.0953962,1.5406129,0.38325518,0.15989083,0.8100173,0.21756661,0.3573414,0.19011047,1.8361871,8.875729,7.303341,0.4925117,2.4457462,2.0579543,4.727609],"re2":[5.104082915312432,-1.5534208305656279,3.2367576058506344,8.639919172833348,7.261821312441683,4.618700036961156,8.546836580640974,1.0164722235057333,-7.06653499027142,0.03585692104229388,8.968949821105163,7.426598202275848,7.301785644233718,-8.51300271298986,-2.307650455889581,7.164023618852212,7.2866040004213986,1.9580712992526745,-7.504730911970563,-1.0441598650385302,-1.7952897930021976,-1.6569321122403995,8.1190519083355,8.159348445861951,8.89111702722942,3.9270862909892195,-8.195194383129449,9.045756468620933,-6.414854107881361,6.093547281344772,-4.612479147481712,-2.0526318320854102,-2.4324199336959555,2.499547790030494,7.120423488771618,0.21843385058113007,-9.982411748898281,-4.628772073892399,6.502959282195555,8.098499659831646,-1.474950232107897,-7.095447676269018,9.715103580229066,9.0893768628321,-1.8309560725195713,-0.15161764674995482,-0.04112973392221342,-9.772710600490333,5.1382717728071405,-9.223587711416304,9.771492236402281,-7.587269269302781,-2.414924642624225,-9.11565189338588,-5.1877738041342365,3.752209598890939,9.555731686036903,9.710321491935346,-4.880894836158081,0.29618294367168474,-3.7315158745242165,6.840803363082813,-0.3484033931560564,-4.885680959384078,-2.1979391895534235,-0.4671540253678135,-9.343236100184145,9.408446497332662,-3.3439062967454936,6.552505694092069,8.01647967901713,8.66990889823829,6.901942676525316,-7.124645089045723,8.54660986531842,-7.104612614167998,-2.2167545621863516,-6.13484693214331,7.207334242876566,0.9540391133509267,-3.8299944588121875,4.44214343610464,8.412128931176262,-4.464450486039889,2.578986109054309,-0.9707983640718219,4.384204457856583,4.346049176744177,-7.3895512628912545,8.741146787131601,2.1676103284129944,3.2414556090113393,-7.019860996305369,-9.691616225427115,6.3814887636065265,-7.526329143017829,7.950118437720221,-1.2358957936984023,0.05694322028741183,-3.4899664601649842,9.80564188988469,-0.35964537044203126,-8.275002649203278,5.937319923346164,7.511410739591145,6.2025803528702035,3.4518175764785646,-0.09997293592692458,-3.264360435010616,7.330063804148498,7.994655891651,1.715011965417279,-6.202734982362701,7.014126755332125,-3.019089619667308,8.72302807979423,6.596013839776244,-9.087323344578188,-6.355423885604193,5.401592884837825,-8.319214590066217,-7.333200838348328,6.505967658168718,1.1736664259753837,5.357637156318507,6.234910488717567,-6.563070104411485,-8.974643663449605,9.358933403602364,5.091038968659882,-6.630627544114587,-0.005388272393249238,-2.9387222430017186,0.5211812110482299,7.418167151638237,-6.743633680142791,-7.3695357491779045,-5.020772288973532,2.5120755204531875,4.412867779383124,-9.586185145946502,-9.406050316375696,2.582983457302051,-7.682908655051397,-4.8896867238392865,-2.7464690021873084,-4.8252459028654044,1.2978878213366833,9.516655514371365,8.03582913050758,0.8231993176507562,-7.151332542037174,-8.871393013380205,-3.7144134914177407,2.0693310467415866,8.962911179710026,5.566812258899649,2.8413171115605866,-4.942157744741264,3.0589967255219435,-0.4586393770505559,3.376311313253682,-5.949410604184471,9.16717196413585,4.04078158310773,7.0549111292853155,-5.490141289904146,-1.2626781913315952,6.421221492294574,1.1006333689042762,0.22775014917455394,-9.043101464209453,0.6409328800337875,-2.6200420483668267,1.8471932204283235,-2.980464292040626,7.769181633268165,6.423592072741236,-7.324022641760319,0.8640786920814882,-5.2694334851504205,-9.950746243535475,-9.793812452714315,-7.744465132517191,4.603969569791225,2.484299423005229,6.381928100658882,6.335841330195617,3.5413977509615453,0.5682906637795355,-6.923872436059348,8.063406171309065,8.208512516674702,7.11423484931197,-0.9123190972572708,-7.9862101059707165,8.614848108679997,-4.9242820383447565,-9.959914786402887,-0.8200361270807015,-6.139221715804018,0.8837172143037098,5.82459156259681,9.566596052961216,-9.556581175237861,-8.60066577330507,4.182805258277611,9.268861659946651,-4.561906545479837,-6.414698797613452,0.6828404556144285,-7.484484643670866,-2.851355384434311,-4.009341562876923,3.050620420619632,1.5503743604276075,-0.9825929207172095,-2.286736308749038,-1.5983432057797593,-4.325970085148834,6.299777463756584,-0.543124879398448,-5.2790422607810195,2.9804412354183896,5.963687425754468,-7.284149091335845,8.132140184482473,4.73399355409569,4.378670464719214,6.807124372704003,8.2710365331234,-9.604005287911031,1.1220481907824382,9.898539852364117,1.4709992849548321,8.262987128469359,1.9114795450586914,-2.5777583826531902,-5.470957473473432,7.43693348574045,-8.25374331072608,5.18251712761629,7.669448935369932,0.04788924040553688,-5.638184827986857,-4.075564370746855,9.68787608470507,-5.2581513867338,0.7496624315120606,-1.561462884194098,-7.9650676331211105,-9.892357570167157,1.6582992365893787,-9.769079097555991,9.184032486277786,-9.760104243977207,3.040415246165633,-3.5239832977609176,-9.326399498462,-7.444337339823979,-9.50598527298651,8.766450565754134,-9.104543203589152,-8.47763614148834,-5.764132287659982,6.767241186126238,2.0810836292861623,0.9693777616740906,-4.196486419663077,-1.855245275336447,-7.610190901522527,4.019723927804581,3.610687258550591,-8.018300604786104,7.932709082593433,-3.3402648110612043,8.556895841970903,-7.3518367458038325,8.71016556034078,-5.739133833185837,7.641448931391036,-3.6939756768686927,6.692340040672974,6.555128542915554,-3.4540600547074902,6.545584103450942,-0.039384707639264604,-7.021725870944524,-5.337159125521477,6.133932789105579,-8.584666536029077,8.778291457181947,8.018914094723634,2.636127714737217,8.306615494795448,-4.70479766382681,-4.064370289592871,-0.7123599331107968,-9.982501952733951,-5.477509872755699,-1.1591885667245556,-6.585464475848397,1.3875388123823882,0.04349220531578979,8.051832059859958,9.045425095699152,7.65705976020071,9.871046905575739,8.586967639713315,2.654787368248506,2.4794590339480465,-3.310982888131626,-1.2496426326074541,2.8057206139377744,8.387891961835052,2.5204559329799654,8.556075939871242,5.340162546494284,2.262693347799164,3.23859900557947,-9.604178576932146,7.442784831444701,-7.420033010179572,-1.5471370923134486,8.900851041543,-0.2873828381266126,5.326655734212956,0.13307727490280996,-6.096222731072434,-9.948882870200785,-2.9565677872558354,1.137792073334838,-1.9018656296152123,-4.533607174056962,-0.025588021263683203,6.27322894433577,-5.591415824187928,-2.4587232692631193,4.193238065548531,-1.467490670471994,1.4093395967605957,-0.8954289835090883,2.7183453286043893,-8.084308342291083,3.7687388183170594,8.273668870974,-2.5195729301182457,-0.6415148029230835,6.042307203800462,0.8995107460002867,-3.302255889822174,-2.757167387011778,-9.723642718808387,-9.596953131353995,-3.0475144644452135,6.208058178899588,1.1446374706345992,5.306332742826278,1.41444224306297,1.2372513622356802,-0.7181954750353974,-6.771777579891925,0.7484549025818161,-6.448398736314555,-5.719244575416673,2.9885728099236157,-7.569054783496593,-4.861790832143553,-4.261510902064025,-1.6283118920431843,8.293152210964607,-3.44255686809624,5.580384144713342,6.006983421716335,-6.239838270482969,-3.7719681787019947,5.740202710712525,-9.871419127084422,0.6200752313730327,2.745085595579898,-2.0978087914704346,4.4956936621701615,3.6829579084632336,8.008139362868793,8.465058762980185,-9.558429181819562,-8.255951315447659,-7.238717069278209,1.8766381066643323,-0.64514211121827,1.1147010804393034,5.632085930557711,6.9093741223583685,1.443985870370355,7.586458702474076,3.1871525987564304,-1.1448957185406954,-2.5233864906067343,-0.6459840146761753,-9.617717744541443,-9.155310388367448,-3.561976823155857,1.4665154346437284,2.5441893001258276,-0.4963054709804311,1.6670235689292294,-7.576738171399695,6.539015918811689,-6.8212365164948014,4.4263171211811585,-4.34976268879085,6.023915114861175,-5.4716025776547,6.604108920054404,-9.226595149083867,0.4966333887737804,8.142503651066605,2.745832158924962,-4.636539391424317,9.907859172151618,-4.42206147884505,8.83797486368854,-5.627339542559524,0.9398374232698874,-9.480333710232742,-0.14317241293257688,-0.11851699091492485,0.5217733366448698,0.2329196735642558,2.699612081941332,-6.886206080967565,2.6606141161155055,5.793841515324674,1.019182565567462,2.716463149662749,7.418481937732221,0.7194070749173385,-2.7085059904979154,-0.4145259981553515,-6.127279326157426,-7.434004165351544,4.568683870252963,8.306086914245313,9.03941710648358,9.232673348210273,0.4582063840904471,-8.99589901171561,5.063233447603732,-2.4321611771125085,8.50992296968996,1.8142612946226162,-2.031245835197417,-7.827317792543527,-4.121024907953153,-4.7226032637366355,1.3982336247137752,3.2952878794982183,-2.1061210400616748,3.729811859672232,6.5941125925048,-2.8080210949848645,4.592696415711073,4.110795666132203,-5.7213673086887145,-5.861803227708746,2.14615236936619,0.03811356832742163,2.419199999396911,-6.79338988054292,-8.781119487034081,6.0258204259796635,3.944322286382409,6.922356271168809,4.962721789240174,3.274884195011049,3.2091483510464958,7.257591485529257,9.477596569531052,-8.340741024357685,-7.87602540317883,4.452903711892784,-4.642630894076268,4.079489458331247,1.348310835677811,-1.1564386696969624,-5.855519759674079,4.070477214971751,8.098278546984663,-7.282431030446414,-5.5539535432665215,-4.471597685139783,-7.789636162235913,-5.17167535130093,-4.125998946469085,8.119136513530027,-3.451369703688383,-0.23208770895978148,6.690005265409834,6.710059593639837,5.959601449996903],"im2":[8.640554376333604e17,5.6898388485291206e17,9.465735653320328e16,4.112363486749531e17,2.445060621705518e17,5.713687708884127e17,2.7127441300906874e17,2.0053942165992822e17,2.334828958054238e17,4.677557891741896e17,1.8564666473923184e16,8.090104591522171e17,6.413349407526707e17,3.324086482025871e17,5.351044611014618e17,3.7155886078861875e17,2.2230394134732045e17,2.7074781899196355e17,6.954151122002664e17,8.926058035874862e17,9.685867954338152e17,3.124151168824511e17,2.2321044086353693e17,9.405662460501784e16,7.65905635345159e17,4.85376635783611e17,3.128664476945351e17,3.335268764739523e17,5.871411701825793e17,5.117078377148543e16,4.28950509037055e17,4.6678674065334605e17,1.873007713113438e17,5.567725413639734e17,7.424176092917381e17,4.1850098287847917e17,1.1804731944030699e17,4.088397317320801e17,8.230244263653239e17,6.696184663750339e17,9.11673280176437e17,1.680065909076287e17,9.182474126509421e17,4.998891479392138e17,4.516602949276566e17,5.104535934409138e17,3.728583674237196e16,8.895599908241093e17,5.085550482541068e16,3.345032489842682e17,9.155881656207677e17,3.1941183447337043e17,5.1116257182696154e17,5.30970772352721e17,2.3106955553391152e17,5.160965727525297e17,2.8834950939457837e17,4.019868493919967e17,8.929413450396328e16,1.9473672263366502e17,1.2604890828166981e17,3.195296778322587e16,8.853112850887855e17,3.443479189492462e17,5.861264168693976e17,4.889627778859191e17,6.107368288672023e17,1.2343843700396006e17,6.511085726735729e17,7.8514467296049e17,1.8303202588679955e17,9.486183672218991e17,5.870577975539695e17,8.346712274992383e17,3.466724908762645e17,8.79097309083752e17,8.2652435019924e17,6.06998121807239e17,6.770419555609842e17,3.934035043751516e16,1.7198120292766506e17,1.860000056264002e17,1.2954951841856133e17,9.717955813407035e17,4.988022316534886e17,6.501516288072211e17,4.387630972177881e16,3.8412531389047955e17,7.151645464671291e17,8.172686061920398e17,6.431328781135837e16,4.761774838420475e17,4.581986665145389e17,7.79835896995845e17,7.917861394110047e17,1.621452835376226e17,5.545526633930393e17,2.2597409140352854e17,9.570365922267643e17,9.913257064528352e17,4.265961944207258e17,3.939512144815301e17,1.9665416705480378e17,1.4588222883029968e17,9.33100930813457e17,9.858099598228845e17,5.18341891992473e17,4.4477968195776984e16,9.354304027317738e17,1.6802781107817165e17,6.206566513481793e17,9.29339469761741e17,6.343019642997403e17,1.2995136171740462e17,5.326588911866138e17,5.903133960787451e17,1.690906677243591e17,8.042931799969363e17,1.1668367227143083e17,9.188079991379863e17,7.273657683512275e17,8.358615614713384e17,1.324124170515023e17,9.2604831352171e16,4.7788929397295277e17,6.754401744119727e17,3.548646301980197e17,4.0397940332821094e17,4.889283793359044e17,2.5119604871500444e16,6.74411543177012e17,1.1637055706434818e17,1.9820195777658602e17,8.714189612554903e17,2.4689093648166404e16,4.8685473851575334e17,7.541408784766606e17,4.899092888233758e16,5.158564704199487e17,8.699975525964695e17,1.1770779531501197e17,3.926279848827898e17,6.56623692911314e17,1.8585945035777574e17,7.35164428030326e16,6.61909609308709e17,2.1708664518676314e17,9.850959025291476e17,6.205974720669618e17,1.2728616969616402e17,1.050201247116812e17,1.1054182822318792e17,7.712516470376829e16,4.711942156217308e17,5.146883715149997e16,8.237709153813695e17,7.718020699130573e17,5.289234296271721e17,3.642365413468743e17,7.60409677101534e17,9.177971846510733e17,8.67343668613173e17,2.8209317355870602e17,5.113783405699106e17,7.51976856987137e17,3.6365037761236806e17,6.846580558033066e17,8.518588264026655e17,5.94500802621259e17,9.958771154076394e17,1.6714374331185622e17,9.238786086924727e17,5.0730109856916096e17,9.377603503321242e17,7.30204244185214e17,3.144089282403084e16,2.1051309801421414e17,9.217138404083418e17,3.205839747356419e17,5.954918085167794e17,9.014050073779613e17,6.348973549176397e17,5.774452586934954e17,2.2789637404154205e17,1.3577457305283424e17,3.062109851766673e17,2.6132508771071562e17,6.435208862804968e17,2.6057651538174666e17,5.363438442622211e17,4.291945085318247e17,2.7072009618711734e17,4.0936230186997466e17,8.617303277177875e17,9.884801101977235e17,4.170560125086117e17,2.3078468542380093e17,3.1848354945574355e17,5.3370423026820826e17,3.4821865232896685e17,6.923975853449729e17,4.2995773428137544e16,3.7768015750708614e17,3.9178261838384096e17,6.943664909117508e17,6.292242753329617e17,7.496814306066512e16,5.049161781761968e17,7.137385776386591e17,2.00009061827529e17,4.584516759385119e17,8.809755766597431e17,1.7234412075891037e17,2.2903241642991757e17,7.718879977521298e17,2.0646287798120388e16,6.532635338173211e17,8.856850465317548e17,3.33813820903201e17,1.6018424783621476e16,6.935750428675218e17,8.304543807609676e17,4.648044409507086e17,3.394720801791592e17,1.1619592995020512e17,3.4003049408617824e17,3.99813759946196e17,6.707087246694518e17,9.870624974676945e17,5.2028148062459046e17,9.569947514356659e17,8.447123134045074e17,4.294819611624656e17,2.1981526523827232e17,1.61867390823216e17,5.968272348949388e17,9.506683859371734e16,9.203924478488229e17,4.470428876552838e17,6.395755052551773e17,9.789537531496161e17,9.5815958220599e17,6.723035761502106e16,1.4081473258970334e17,7.623666548822785e17,2.1727035772001514e17,7.600144893647589e17,7.835456911133096e17,6.556565304237146e17,4.907789119437174e17,5.659652109345871e17,9.405806853784641e17,5.5208447078762566e17,1.9766796834156918e17,9.012712995512059e17,8.959292556100425e17,3.967181676589637e17,7.273313920162657e17,9.898996606776124e17,4.001790243053077e17,6.21889850846354e17,7.490333922747875e17,3.068895418137518e17,1.9812757582096406e17,6.183911143108019e17,7.036722583579315e17,4.9796113332470214e17,2.3035381664596544e17,3.915167137414061e17,1.1307067227472834e17,1.766801439469966e17,9.996187995152125e17,9.68766753872859e17,4.2533561428321485e17,4.757947862052681e16,8.96362491383346e17,3.655862129874692e17,3.4387113796575354e17,3.218582487556656e17,3.451196717685222e17,3.1183736620084934e17,9.587270048578966e16,8.320808829496862e16,6.617892750259196e17,2.7921619345948867e17,9.920174084917082e17,6.404661144686522e17,3.398496204363759e17,3.829325213681211e17,7.0537993495976e17,7.918790571451899e17,1.4690750077244397e17,1.1248277626339742e17,1.2355266636909878e17,1.7283798283604755e17,6.088507095639325e17,3.441038951079139e17,8.639235841066323e17,2.105607096664087e17,5.046093647172495e17,9.524814560319249e17,7.426132022446644e17,4.382697031413012e17,7.241717931945586e17,7.665431297450618e17,6.441272096592596e17,3.123771848230742e17,3.231763807097864e17,1.1856743899036016e16,7.463985944367318e17,7.363443823843593e17,8.203931800249172e17,9.975133088619086e17,5.118773693172084e17,7.634918119853889e17,4.317566044390694e17,7.330782500132762e17,6.539245031006906e17,4.8793403952813606e17,7.876533366333074e17,3.860977259098087e17,6.409770196184831e17,5.432226351419096e17,6.275297779256865e17,3.7335749852878554e17,4.2757094439192256e17,1.691978744770073e16,7.50795143907105e17,4.435088210981488e17,8.068224066335846e17,7.715339576004762e17,3.895330745034867e17,9.549861857379164e17,6.213030685278362e17,8.540601969951312e16,3.341383180789759e17,6.296484116209267e17,6.060495473301197e17,8.755545654042081e17,2.537421988030305e17,8.223354292947444e17,6.835956581723215e17,1.7310157003671757e17,1.438341607711312e17,1.7152663639086762e17,1.8099988257633816e16,4.705633514967017e17,1.665935055365989e17,4.989808820478122e17,6.597030554830678e17,5.0446763477290854e17,7.197905940927624e17,4.305836875585208e17,7.218540142623007e17,2.4049517909345885e17,7.159514345701825e17,8.961796863235396e17,4.927347116730535e17,8.468221900446505e17,5.5830978241807584e17,1.5779766002482064e17,8.147190446067962e17,7.412182305424078e17,8.781543080538071e17,1.5718550710425272e16,4.6699740072020314e17,6.163683907094524e17,1.4988593247547955e17,8.400372153602976e17,7.172033630340488e17,1.744722774642605e17,8.34092147100885e17,7.785255958609545e17,5.365457260347095e15,3.58219131423201e17,9.574803475635891e17,3.670380853926348e17,3.843305366305332e17,8.373618723163636e17,1.0209695982392774e17,4.4652772700804166e17,4.5474812205439405e17,7.340686759395398e16,6.743029678217574e17,9.41874306545911e17,1.0073382403366992e17,2.711318483796592e17,6.084423760588873e17,4.612574875512254e16,7.912338335885606e17,7.22274873722764e17,6.716975843529869e17,2.3979408247389312e17,1.9454080718347987e17,9.505423020116278e17,9.04158586864041e17,4.3652056587502496e17,3.240223406100654e17,7.647726396066021e17,1.3851332266272776e16,7.609726509685443e17,1.0601391039313534e17,1.6718215091002064e17,1.5187242612953178e17,6.840700713943805e17,9.807652909525788e17,8.686642946331383e17,7.523837215081692e17,6.707473191984059e16,7.185899012805244e17,5.482892709093867e16,1.7301526679316192e17,7.925535616434566e17,5.127606227929432e17,2.6980174704087677e17,8.650669900907542e17,9.0699413491006e17,8.683609064563023e17,5.926009957106619e17,2.441359724758967e17,6.411000131350376e17,4.7102316064227104e17,1.3144701303226469e17,7.07270169610695e17,3.805929639317923e17,4.197236518417002e17,5.4265843558046925e17,6.720149718317792e17,9.633284950096639e17,1.4310038760003995e17,7.525728666329435e17,2.3059559638018544e17,4.1198666446990664e16,5.0771644634074586e17,5.262194759799692e17,3.303347292269382e17,6.253983557655292e17,8.223570323171601e17,7.641657890407931e17,1.7202422732441325e17,5.800807029117e17,2.7257637864095184e16,5.377109601223752e17,2.477717744826222e17,4.095097204378366e17,8.137275151104536e17,5.0352659627567066e17,5.316780322108184e17,3.867364849091893e17,5.842018197335133e17,2.956359874885127e17,4.8403250279085286e17,1.6146153804417584e17,3.889083173090088e17,5.288316218147182e14,7.907392207727585e17,9.64110081851433e17,4.002706520261199e17,1.937428871725684e17,1.824967857345615e17,8.900702726866102e17,3.461890378036818e17,6.970347902696584e17,1.0006634459910058e17,4.552550022283257e17,8.160760698921837e17,5.0591312113941734e17,5.005848596438881e17,3.639308794227831e17,3.708717659347527e16,6.519533816776279e17,3.997269145386135e17,4.9536081488201824e17,4.3799829679298e17,1.2625416580242966e16,9.218427232800831e17,3.579208508038645e16,2.896595908199607e17,1.261565251570973e16,8.890343668639021e17,6.025400997138611e17,1.1977485107150088e17,4.0123382545182515e17,3.061311890966218e17,9.396946558410072e17,1.2732966592171912e17,4.5613742579686854e17,7.362869826203204e17,8.409168373694266e17,6.331097311118378e17,4.450506215112024e17,9.418527265426618e17,2.932108465493083e17,1.1640513359200378e17,7.499971757418688e16,3.839762456474405e16,4.074894869727035e17,2.8508079887030147e17,3.179101675254956e17,1.4881350572237184e17]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json
new file mode 100644
index 000000000000..ccbfa1f60537
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json
@@ -0,0 +1 @@
+{"re1":[5.953919233478368e17,2.62178536009807e17,1.4754419258572016e17,2.083828284245548e16,8.470945583015025e17,4.358071749815016e17,2.001192079768863e17,3.1963325739947526e17,8.546964048295849e17,7.85821407225743e17,7.58456202109397e17,9.296242392901972e17,3.9028939454548685e17,3.646694838313609e17,4.5146403204997677e17,8.385861377380795e17,1.8028438830935456e17,4.546004731802148e17,7.34339035977565e17,6.245695463780238e17,7.254736060283802e17,6.209997186474139e17,5.7173634770979386e17,2.915338060525319e17,3.5868398627127597e17,4.776701320834863e17,7.674417746753188e17,6.5223797249088776e16,6.806501913246798e16,2.906046403496402e17,5.902310713087734e17,7.27763858835586e17,3.584687723163643e17,8.087659165095285e16,5.303203902055603e17,8.149276736104513e17,1.4981036176509933e17,8.591130209176977e17,3.532877402931793e17,9.711736472875031e17,7.02594802872735e17,3.066606981322041e17,5.396379102201864e17,6.361815008240732e17,7.818423278474079e17,7.34488244215124e17,2.8123063267082048e17,5.3275827298391e17,3.061418115104679e17,2.3382910033882998e17,7.880197252237417e17,5.137348989285786e17,3.268090357833875e17,4.5041692565478586e17,7.277738255270628e17,5.760324148794071e16,9.146456271929887e17,2.3688403569165572e16,4.719638565057884e17,4.848565386960165e17,4.27025973570453e17,6.4594401788124e17,1.756491203823204e17,5.918141018027553e17,1.5801526419415914e17,5.1386431563340384e17,6.307963871687606e17,8.425674886500749e17,4.2353583269012275e17,6.794431161903789e17,5.608925713709383e17,6.172356277734147e17,8.702159291063414e17,2.7004360750750266e17,7.1272809953037864e16,3.092090111123061e17,1.3971635304721498e17,2.8988912614122874e17,9.109501869791593e17,4.332422963531379e17,9.338973219579309e17,9.363735515624972e15,9.187287905948035e17,5.584952887650703e17,6.408527504403935e17,4.251796008359684e17,9.442921432984033e17,1.6536010993140115e17,5.905509720527695e17,3.5942343528420326e17,8.594257772206856e17,9.470426980092635e17,3.216096364082135e17,8.114721122577564e17,6.595939528832347e17,4.0298467921068346e17,1.466633020064153e17,4.816182302204119e16,8.390076654886399e17,2.6271861997780954e17,9.736203435428902e17,5.460765439633106e17,5.710417460254874e17,2.7363177644692672e17,3.040953512851707e16,9.002017032067068e17,6.949606034338452e17,2.3063803778964576e17,5.88172102771841e17,1.601345026847286e17,6.585156391954584e17,4.5554294613438483e17,9.697936438153779e17,2.2175669230853923e17,6.391435012611084e17,6.38419219611477e17,7.795510070587182e17,6.916850023421147e17,2.6220413092773997e17,7.157814060048255e17,2.622896369550195e17,3.484559083755444e17,4.670285264597225e17,9.050707520593524e17,8.094010412167948e17,5.6257972628106003e17,1.8924705425021526e17,5.7218737950791245e17,3.973680875462582e17,4.905551906877869e17,8.486710887501947e17,1.57921776745334e17,7.913004595472228e17,8.75456899819213e17,9.192577371809407e17,3.741498555126592e17,6.25235373867481e16,5.195725738866986e16,3.3630839024717805e17,3.056181771224175e17,2.646539491852735e17,9.51172371500476e16,3.7490942184315725e17,8.958349988187538e17,5.377870539500006e17,8.002662384985925e17,8.37205411715564e17,9.407509345155613e17,5.985263366511558e17,3.066405029752547e17,6.870288031907983e17,2.1631138519490544e17,1.1850631714917714e17,9.362736151802175e17,5.4255435328345216e17,7.27802360082292e17,9.731192305724936e17,6.019335698329293e17,1.9813827273515216e17,5.562457463258231e17,6.172555423221115e16,1.2513313005326365e17,2.107587134538703e17,7.599144721118412e17,9.658538853521622e17,4.618972284492252e17,5.943915048624397e17,5.773545425808223e17,9.792621517618964e17,2.5884497424727594e17,7.953585379477672e17,2.0715187352370966e17,8.531748107203835e17,2.5740155954685174e17,9.838777180638842e17,7.512214267579165e16,9.079493909404399e17,3.272099748897657e17,6.028271429631306e17,7.38463473382802e17,8.817886722956891e17,1.6143439297402794e17,8.262108806273068e17,3.505840059213043e17,2.100179592069925e17,1.7172758020754608e17,9.074344827475089e17,2.3405548489999885e17,1.7388976477042627e17,2.6809158038665936e17,5.538817218532341e17,8.794059229634125e17,9.470317402154673e17,9.064242612671602e17,1.5982691323103594e17,2.7792232667785754e17,8.125346619380598e17,3.951619724658769e17,5.651736895925602e17,4.864961181877705e17,2.652372313227761e17,3.9224032547265517e17,8.901111046651277e17,6.755227329346618e17,2.8576174528145536e16,6.565412919425956e17,9.506011921667448e17,8.522172394035397e17,6.454070658522158e17,6.456478549827101e17,1.3973377852745894e17,3.46953890521433e17,8.64363714098176e17,3.7493992968323174e17,9.819657446510537e17,1.2504961404660165e17,7.240625683363996e17,1.6696600333477862e15,1.7695453363571366e17,7.125379202772012e17,9.577957866597679e17,4.8626308488188243e17,4.952505164195393e17,8.842511770100703e17,6.917756810840005e17,6.254432963958881e17,2.515769718154649e17,2.859196526169262e17,7.216139983165592e16,6.691177151105636e17,1.9854522550489683e17,7.73720479071695e17,5.294071226475353e17,4.464514214726694e17,2.9688494372824237e17,8.366496189927275e16,1.47711292945919e17,8.17064565571736e17,9.164586939642612e17,2.5421338703664454e17,9.742330118016663e17,8.490628508000642e15,6.804511336354538e17,5.729244207911213e17,2.5454987216845392e17,4.6380752012947635e17,2.3322354539020963e17,9.086923875727282e16,1.9995496234257248e17,3.616568539243884e17,7.321675519384452e15,7.892015490548493e17,4.9603209264595496e16,8.573296865590569e17,8.045865610188983e17,2.566812486686676e17,9.097965377193553e17,9.567935610631395e16,5.815466166764918e17,4.879063296360181e17,8.163052399190578e17,8.888368501067899e17,7.097340215311909e16,5.997360483156965e17,4.531065260918139e17,9.100741061216168e17,2.851104006352241e17,4.940607645828684e17,4.9095434520470317e17,6.103664025352219e17,4.647079108120109e17,6.195404770763269e17,8.868129893918104e17,9.045973498247692e17,8.977197206957871e17,8.730518440326761e17,9.382454346076585e17,9.146515042915526e15,3.6239114831899264e17,9.125047860702995e16,2.0429910656964768e17,2.4221184092271818e17,9.739511377378364e17,5.775835945236963e17,9.665314664863043e17,2.4985708633498093e17,7.96829867793833e17,6.323544579543626e17,1.4653795915408784e17,4.3414956006567864e16,3.270432713860998e17,9.69744110713186e17,7.666103052790593e17,2.4714962413997978e17,7.175109302500518e17,4.826685697818367e17,4.392813189264665e17,1.0624249315423018e17,7.002877782071151e17,3.021204629323764e17,5.444279451266951e17,2.928920682228358e17,1.7907471934406672e16,3.6356204346078234e17,5.32989376062495e17,9.635314837289354e17,8.739163557967936e17,7.356619878666134e17,3.091306909811068e17,1.87282827858416e16,4.014915179893488e17,8.565173380414665e17,5.490984822729943e17,3.966036582798965e17,9.970111653960781e17,1.3506803426004032e17,2.735423265826803e17,2.3154895979649014e17,7.503598262953357e17,8.893266826104591e17,8.599107258900983e17,6.924925787758894e17,5.025117167926595e17,7.094707058586236e17,3.1474205820174304e17,5.718532815791639e17,6.010939753693032e17,7.722969801392028e17,2.6194985739912202e17,2.4895708806361827e17,2.960209181309086e17,7.319533573491744e17,4.4064678348409766e17,2.279565612139621e17,5.871787587640973e17,6.117727092028539e17,3.189056480748067e17,7.703300490193692e17,5.2108090855107283e17,5.669531108088297e17,6.534184735674255e17,8.95421861628752e17,3.3630785578883405e17,3.85148256369842e17,2.437902207697329e17,4.6015778540912256e17,4.654245150423944e17,8.926292096449425e17,8.86798760530738e17,8.101262868566441e17,4.639661325366862e15,7.304013508651135e17,7.920056471922938e17,5.2343166980527066e17,5.628753841154613e17,6.26281865035576e17,9.151974221534705e17,1.3839317088585123e17,2.8025034178679165e17,5.029126726156052e16,4.528812639762726e17,3.9721949542352294e17,9.597734772740895e17,5.36499494494425e17,1.8376067236050752e17,4.675290361038365e17,6.23609114728292e17,6.643406302093263e17,7.75562824237536e17,1.8304030653750426e17,5.568005878460963e17,1.9639201546926154e17,7.768420297591914e17,9.253842390638365e17,8.043165787178488e17,3.5358123115808326e17,3.470524183294119e17,1.5029666964635146e17,8.561097735333402e17,8.143542224312706e16,5.33808823200469e16,1.92736277932266e17,5.862605699228582e17,1.3455947392619938e17,1.7715846395141354e17,6.19733649516668e17,3.931877751177767e17,1.1827161751270299e17,1.9910295968306403e17,8.376020923424748e17,5.432515006917475e17,4.647235210796755e17,8.535853802993187e16,5.164598358769259e17,1.1368738384584043e17,7.209559584496265e17,9.160101035242271e17,7.821798540151091e17,5.5834799443451514e17,9.8466520874951e17,8.526994157787704e17,1.2255972853870733e17,3.3895084588934163e17,7.645824536533009e17,7.154689015607889e17,2.6985577252022154e17,6.71588917393122e17,1.4470926002416163e17,4.6722826243501203e17,9.208969229764442e17,1.1440996119657686e17,4.122843229759898e17,3.716415536305858e17,2.6336853302219408e17,9.06782488584622e17,1.671118888601625e17,6.07912699237256e17,7.362751074786134e17,7.134032627718621e17,3.2903593361051885e17,4.4011635563712736e17,3.792999543651421e16,9.339585089970666e17,7.580860154774129e17,7.228156217709656e17,9.84246296545764e17,8.294316470309023e17,9.741388228331364e17,8.969860891895558e17,8.837803781699418e17,8.217386987515651e16,4.1512576643558163e17,5.223735878344518e17,7.374932063308198e17,6.242829649444352e17,7.325783957552611e16,3.8321732300383296e17,2.587837091875156e15,3.2996324342672634e17,9.641525540293344e17,8.89380670276334e17,7.154529592378451e17,7.594207508700092e17,6.653386972618574e17,6.752015657151736e17,5.307313572946788e17,1.5257133538052947e17,7.109950617545979e16,2.2166756829352896e17,3.1642012062857075e17,7.832430909513548e17,9.652409898018758e17,8.356402176572098e16,4.846133548302486e17,8.593536479575423e17,6.556472292104965e17,8.307636446264753e17,3.672545898216506e17,2.235790502013125e17,7.731159816614868e17,3.814326276532567e17,1.4597715551503677e17,5.1967946654741184e17,7.888858233253437e17,9.431130273702147e17,8.688948756899006e16,7.51068475263353e17,3.1874958228632986e17,7.271871221343233e17,1.5484919486504624e17,6.990713518293996e17,9.808165448115415e17,5.311232425372251e17,9.72994659674182e17,2.2111273050065648e17,1.564738223068408e17,7.77961269369899e17,7.940379736881953e17,2.4275765850229923e17,9.850537568990223e17,2.9354376681052166e17,7.99285673363678e17,8.571237627643501e17,8.475447498590195e17,1.6295557714867648e17,9.96664342157392e17,1.6840147730873578e17,5.027448398743417e16,2.2453211716809018e17,4.9875508578365466e17,4.383763975338967e17,3.5209923032344595e17,6.436403886000856e17,3.365300556929429e17,2.6783476779706848e17,9.802499704846264e17,2.4931897830786477e17,6.84384484321882e17,4.275101471976379e17,6.127480095618149e17],"im1":[-5.838669998245711,5.902390609482522,2.572580753107175,8.284772129292275,9.017151024862741,1.2596285662002238,-5.192724370942267,2.4719253381189077,9.570746640092423,2.166805298026418,2.944185836085076,-2.5572476906931785,0.8297339113410871,9.902793033048113,-2.6779726438600937,-6.798883586790502,-5.6358837416726075,2.4746329021443003,9.507509689218047,1.4361277707884632,-4.109236111868815,5.819560562306885,3.293068125946432,-8.450195742170479,-9.578671999630226,-5.1656597920815255,-0.7967920658768719,-7.6618527828732175,1.288962158895373,-6.342338906510143,3.0862552263710725,-7.258845983207028,2.8205214275319346,-4.765534899819352,-3.2409797046726236,2.6033964815181463,2.3093444883190664,5.956980170039824,-6.232733249319569,2.9777801359723473,-0.18255768876419332,-4.508835308553469,8.943386484057648,-2.0144747849572138,-6.416733606198804,0.5538945996649751,-2.503035892643344,-8.351526213719247,-0.2845591241355301,-7.14557568018275,-2.754293699667521,-7.1212809241283,-1.490530580181865,2.2807801273094785,0.8501389110911344,5.800572918855551,5.345432862611858,-8.265872288987254,3.2769621555966424,-1.8774158212347807,5.280409412890064,-1.7676434369303884,9.257341446122677,-2.8224743111305823,3.6775371021113816,-5.484964112804727,-3.937154079160745,-8.767253998823685,0.07364070173732706,-4.3544221322445615,0.7900561147458127,-1.8157486024929277,-5.735697424259836,2.357509473540066,7.409400168448325,3.4181028641828632,8.602503939732951,-7.825108514216725,3.7356468614322917,3.277645687140293,1.3803032742214238,-4.8496743759773775,3.678206437025782,-4.077232451890991,-9.835552379400678,-7.242419254794983,-2.9156308100642487,-3.4027585325504672,-5.423685982605438,-5.130238439119066,0.6312377097814768,-4.88218072681502,4.086972808783898,-5.61710549445462,5.894276916569838,8.652481042937811,9.144799485133856,0.1573745897518144,-9.38818429449217,-0.3678151975924031,2.675945352293976,6.01629210489174,-3.8316548532951806,-7.144203250046825,-6.415969482448145,-9.493758983412071,-7.682017320898867,-6.973142333457741,1.6346191595511232,3.265039217178426,7.534898544435762,6.156019002182003,-4.556321452827268,-1.8150380346351085,9.238653370952065,-8.987262195629553,5.697313945479134,-4.587221348451851,1.867049963247016,-3.2709948265318056,1.8891190001490976,6.896178410788604,-1.9816511749129333,-4.115552644760649,-4.722156875626324,8.638954162882744,-3.65587055607649,-0.6417473762448207,3.6051946395488965,-5.455012040173203,4.9337814539581775,-5.1293553800344505,-2.8600859372580967,-9.327213055336133,-4.23964107456171,5.159175276987398,4.366464928072036,9.917343873718792,-3.113010551543134,4.479429728145449,-3.2920376595867378,1.3883511626962726,-4.514436808937898,-8.878243414283558,-0.6008658949939019,9.09338127158994,-8.096836519956296,-0.7497115746859215,3.608613259773854,3.427516574383443,1.4149018804489817,7.36214602180873,-2.438528999460279,9.691413986418723,-7.611200171181649,-1.4082571669402775,-9.78969866184257,-9.213625673289606,5.322917314840778,5.594449941661759,-1.8650787284314383,-1.582232546444743,-5.66058368992082,1.2422507524904773,4.396606707787152,-4.172327618302765,-5.272166013029185,8.889035800978526,1.15760084890033,1.5693437994262194,-7.20537049215598,-9.886143816527182,-6.775956665684557,-9.340820070048604,0.04988820097731406,3.0249468363907024,0.6269848906287017,5.951893053041864,5.2748431406596055,-3.4210334433195317,-6.160382776775282,-2.4722705549058466,-1.1362196303787968,4.294862522004568,-3.652708957993487,-1.2805679338946092,-7.785634575046916,-9.39068688593694,5.351104902514972,8.971702187101766,3.6730889431794633,4.189817210813915,-8.011307144041862,2.499095150587669,0.20565607661099605,-8.27171653093993,-3.8571766001199403,7.4138380830963015,-0.4275516421809389,7.849601894166064,-4.552831399846308,-6.559385817854782,-6.949517977933095,2.691812596737833,6.395708279367398,-2.6134816900196274,-4.366502265985545,-8.99714513377335,7.672832208691702,-3.72072168015708,-1.5342360957283532,-3.516152469957947,-3.735737644245159,9.143823754910052,-6.684443439379509,5.082112588615999,-3.90636573790103,3.618460878040846,-1.5668193342572607,-6.084565212952759,-2.8399068747678484,0.0001467177124947483,3.483838637398403,0.8251322686241593,-4.696639820826443,9.981016876173033,-2.457336321301879,7.05312084019431,9.071908089062202,-2.47519582101895,-8.075083897245941,-3.809845417313655,-7.890758369063285,6.97148514092671,-7.171321892622968,1.3342589310798036,8.117627695469174,-6.834448696145474,0.7325342999277957,0.1043163814975756,2.880193558803793,-7.048047660086352,-1.9930725294132916,-1.0377854258824613,7.242441938952535,-2.001997536552336,2.2313587964568597,-2.551304580952416,0.5232059360525394,9.25403277418831,-0.01945885551366544,-7.910064191125354,1.7081538977186739,5.640838656097042,-4.023479490762821,-3.2208602532450286,-6.092097947148054,-3.525364537011912,-8.333343190788899,7.9015308526630825,-9.053794772324276,-2.002157241913139,-0.22274849062195656,-9.756340328522693,-8.509812366330301,8.629077520086543,2.6688019966158762,4.134621824898932,-9.708415351168835,2.494013282155249,-4.4805229566792875,-5.0920940849162815,7.834275904965942,-2.153822055820034,5.653298684564387,-8.258308098299556,-8.040536806371408,8.794838708080373,-0.686525200479938,2.367821764186509,-6.4665017983866395,4.318113106488159,-2.221052481868508,-0.6678479411589464,9.917043653124395,6.6891341628748044,-2.224053363267746,-9.027820346431618,4.828156453633003,3.3387599680077056,-0.8301786552225661,2.890087042092265,6.694938801202209,-1.6106383993433244,7.832513031745428,8.839705983510097,-7.501707531447208,-0.744415044301185,-4.183385842462341,2.659745941500658,-8.595153033750227,5.022109092438692,2.023154739167314,-4.7949613708715555,1.4070978102182163,3.7430024337395356,5.454825766574567,-4.686324944570616,-4.740403218399658,1.6460516830796639,3.9015268252407793,-5.4528811789896885,6.017401245889836,-2.8087783249342806,-7.489576535045737,-9.297246053649726,-9.894907619666942,-4.246599950826688,2.0335139914903557,-1.729789704836275,6.303087761532556,-6.105598334875351,-4.693963359992443,3.844059678253199,0.15588834687137876,-0.8122663132885943,-1.5239667229299148,-5.562288743556792,9.626153375372152,7.793414415085948,-7.87292609352217,-5.84784667633153,3.1820450285795037,-0.031240050101363437,2.347474850379598,-9.471368830466457,-4.648695334390447,-5.761962709058704,-9.28201276916932,4.809815197005765,6.0027510671082,-3.611376732762359,-8.073602761362139,-4.479151669553065,-9.060801563791511,0.26412501980684766,-0.3721531063015284,-8.311818040091563,2.732332011689758,-9.007967634929898,9.837499099805257,-3.989348702988085,1.4898481531351706,-6.079499338953045,-9.96659402297288,0.8239640692966237,4.164926847942693,-2.2316817801765243,8.893986935905556,7.661883664126805,-1.5649460244620421,-1.177224245565089,4.777501278934617,-7.365763035829063,9.063620247145174,0.9436188259325089,8.799184725683158,-0.6615863260159056,3.7450714741433195,5.338551324663536,7.310019987281912,7.952425564407154,-4.691249072501309,6.054139492837521,-0.17071262211936222,4.037608616627352,-5.098273779882751,-1.4486834227910723,1.279273158510497,-7.328248811134288,8.427936942002141,4.372602697270953,2.17641975501029,9.81951914038071,6.818183379311467,-4.360387363181326,-7.753710785120489,-2.1096522462701373,-0.8316713910424021,5.51752326627901,2.0619034172027018,-6.724150505175926,4.928391788496949,7.054452114461974,8.594679546038059,-5.144860115828289,-8.281449144440137,-5.068701948022351,5.40042227696218,7.383567720898199,0.25301379631382126,-1.5229594339681682,-9.63680415023555,-9.00102303542036,4.355536679782215,-4.358573837994493,-4.9309800319189705,4.0548466790328614,9.129465364108356,-4.3287715177549035,4.381435429066203,-1.1405122110171728,6.616440447970085,0.358065607603157,5.7364447748039815,5.239493178957588,7.055345565930544,0.7311878305683273,-4.815583800554986,-0.7710345079231828,-4.423282312907528,-9.10509052982583,-1.8831348076375942,3.062945174541696,6.037183135103607,5.143880630181769,-6.4210876356641595,3.0373590019883334,8.940037720359545,0.5976087278450457,1.0734861013834234,-9.171949448712644,8.819079346708406,-4.114664888884456,-4.44865071730963,-1.2568098354732022,7.961070389410018,4.543819540888963,-0.5484460174171542,4.586557590985356,9.662386933267136,-5.967169479429993,-3.7585598913906315,1.4048508791220549,2.7094603406057,-6.236623333960194,8.597085733236419,0.29897348990206574,4.074704130089277,-9.349165594263415,-1.6914708839966952,8.89802590341316,-8.613776906240435,-5.374886393686893,1.8106448923415712,8.068561739094676,-9.768694338020897,-3.907186712534781,-4.591690440035641,2.073654163840853,-1.1255546576422653,-8.997749956852633,-2.519115542256742,-1.1152181086395458,0.14700373003607048,9.772036867643337,-9.300320308824901,5.345281581034573,4.162200658520632,7.054391257413364,-7.934850173729067,-7.7890997589986055,0.1326251393682547,5.35213506152154,-6.799112380802024,9.345427107003776,9.691811835159957,-0.04809701399506494,4.511122286405714,7.739452642890605,8.477306670830515,6.9517350325964635,-8.359331966172302,-8.56773746556212,1.729699334240074,4.890558187808216,-5.236820738465912,9.652011385709539,3.143854549225919,3.546367857872408,-0.6787163509332963,-1.5417701719826127,0.32907463113103574,2.638182292048942,5.244412913025826,-0.4599599136345027,6.846558630789804,-0.07732789121025263,-6.910414025358868,5.316877654451881],"qim":[-8.634294e-18,7.22014e-18,1.9070232e-17,1.0419483e-17,3.424635e-18,1.2114772e-18,-6.302035e-18,6.3950736e-17,3.075709e-17,8.3713e-18,4.0755842e-18,-8.290716e-15,3.144221e-17,1.498969e-17,-3.942115e-17,-3.2054963e-18,-9.2652944e-17,-1.2973059e-18,1.9072037e-17,-2.350326e-15,2.7281315e-14,3.064002e-17,2.4042676e-17,-1.5473464e-17,-6.0377144e-17,-7.9826436e-17,-6.3453356e-17,-1.2348118e-17,3.4288524e-18,-3.4495235e-18,1.3857987e-17,-4.352515e-18,3.9478152e-16,-9.746546e-18,-5.7841307e-18,9.231446e-18,2.9586892e-18,2.2530736e-17,-1.3898297e-17,-1.3996556e-17,1.9474617e-18,-8.859876e-19,1.000224e-17,2.0331474e-17,-1.9824063e-17,1.8404927e-17,2.5042345e-18,-8.415127e-18,-2.48856e-18,7.38986e-18,4.5377424e-17,-1.4681163e-15,-5.562028e-18,2.6096222e-16,-1.9344515e-16,8.908885e-18,-7.176034e-18,-9.694988e-18,4.92805e-16,-2.2844913e-18,1.9645788e-18,-1.4088604e-16,1.9850533e-17,-6.1301755e-18,1.4844508e-16,-4.9354277e-18,-1.5389963e-17,-3.7603088e-17,8.991928e-19,-2.2002402e-17,1.9793696e-16,9.673178e-16,3.5910276e-18,-1.9466648e-16,4.1952848e-16,-6.040113e-18,1.4934106e-17,-1.33390434e-17,-6.330931e-17,7.720148e-18,3.3508924e-17,-5.2527474e-18,-5.0996466e-15,-3.3051767e-18,-8.625037e-18,-5.9195857e-18,-2.4534071e-17,-3.077202e-17,-1.17955955e-17,-2.4253065e-17,-4.7349383e-17,1.8058479e-16,3.267227e-18,5.1912168e-18,-2.1542336e-17,2.0542319e-17,2.875286e-17,-2.0629986e-18,-2.7160686e-17,2.7640536e-18,-2.7120537e-17,2.3813043e-17,1.0392125e-16,-9.228907e-18,-2.0544577e-17,-5.2150263e-18,1.0116366e-18,-1.1558254e-16,6.1263143e-18,1.6696381e-17,-1.1485425e-17,-2.1545683e-17,-1.3109015e-17,8.240102e-18,2.0253347e-16,4.829832e-14,8.981281e-18,1.6059116e-17,1.0852455e-17,4.2289954e-15,-3.434021e-19,3.9450173e-16,1.5169639e-17,-1.3513764e-17,-1.2866e-17,9.4658455e-18,-1.607676e-16,-7.6458236e-17,1.4535413e-17,6.595535e-18,4.4395124e-17,-9.454281e-18,-3.576987e-18,-3.5170208e-17,-1.5029033e-17,9.829955e-18,7.137177e-18,-1.6398626e-11,-3.9879013e-19,1.2233627e-17,-5.2185923e-18,-3.696665e-17,-2.5290359e-18,-5.37725e-18,-4.2711777e-18,-2.7098063e-17,-5.8761444e-16,4.4396715e-18,4.8511707e-18,6.366684e-17,5.4796638e-18,6.428734e-17,-5.7958312e-18,1.0262903e-17,-2.274254e-17,-1.260803e-18,1.1470251e-15,-1.33401634e-17,1.4724983e-17,1.3007784e-17,-1.7830592e-18,-1.6285677e-18,-8.445178e-18,-2.889298e-17,1.7255664e-17,-3.457408e-17,-4.096558e-18,1.3375566e-17,9.008319e-18,5.5899613e-18,-9.796602e-18,-1.1079887e-17,-1.1709063e-14,-2.0139699e-17,-2.2732402e-19,2.839274e-18,-6.7831366e-18,1.0333673e-17,-1.4732616e-17,-8.065103e-18,1.5805044e-17,-5.7117665e-18,2.0091956e-15,1.5012274e-15,8.695849e-18,4.1733898e-16,-7.624553e-18,-2.7579371e-17,5.410303e-18,1.8900468e-17,-5.22232e-16,-1.6458538e-17,-1.32662805e-17,-4.7472553e-18,-3.2758319e-18,-6.0608454e-18,1.0332039e-17,1.3420981e-17,-4.084712e-17,1.9443448e-16,-2.5280605e-17,-2.9476313e-17,2.3505745e-17,-2.893055e-18,9.433004e-18,-7.237564e-17,-5.1262856e-18,-5.1728927e-18,5.563069e-17,2.1066521e-19,-3.1204396e-18,-4.9061947e-18,8.0140045e-18,-3.0690524e-16,-1.0240313e-15,7.623511e-18,3.267384e-18,4.393761e-18,1.5285826e-18,-4.4359635e-17,-6.6814224e-18,-1.1779588e-18,-5.7137863e-19,1.4930448e-17,3.970934e-18,5.3115207e-18,1.0535245e-18,1.1078438e-17,1.3955364e-15,-2.8734484e-18,-1.1534976e-17,2.7606547e-17,-4.370327e-18,1.9638477e-17,-9.9772664e-18,3.180487e-18,8.215429e-17,-4.0092663e-17,-2.840701e-17,-3.0061332e-18,4.5162333e-18,-1.0111997e-17,-6.12218e-16,3.405249e-17,1.0447528e-17,1.7900417e-16,-5.6754774e-17,1.490062e-16,3.507721e-18,5.964718e-18,-2.3035713e-19,-1.1244009e-15,-1.1239741e-17,1.8064991e-15,-3.7394917e-19,-3.6945662e-18,-1.0093023e-16,-1.3976578e-16,5.1044885e-17,7.534689e-19,-1.3917982e-17,4.923933e-18,8.1337647e-19,2.7309527e-17,-2.7842136e-18,6.6294853e-18,2.6407213e-17,1.3884738e-17,-1.869458e-17,1.968698e-18,-8.1704666e-18,-2.0830454e-17,1.7682216e-17,1.4099548e-17,-4.5518583e-18,-1.28822304e-17,9.2986044e-18,9.039862e-18,5.6572436e-16,6.2257683e-18,8.725245e-18,4.0819854e-18,6.526409e-17,-2.8218363e-17,4.7023994e-17,4.735055e-18,4.1632182e-18,-6.0352375e-17,7.397755e-18,4.279788e-18,6.133021e-15,-4.8336296e-17,-4.0415522e-17,4.0603567e-19,-1.2061031e-17,1.1388585e-17,-8.364089e-18,1.9392224e-18,-1.4423342e-17,4.2928118e-18,-4.4690062e-18,7.012915e-18,5.7037227e-17,9.225266e-18,2.9137402e-18,3.7149052e-17,-2.8165275e-17,-3.9522003e-15,-5.0057033e-18,4.3136774e-18,3.8595002e-18,-1.2363576e-17,-1.0017318e-15,-5.925358e-18,1.5728323e-17,-1.3973517e-17,-1.1995274e-17,-2.315587e-17,-1.1181166e-18,3.1361292e-17,-8.41841e-18,-1.2094957e-17,-2.4676002e-19,1.5949147e-17,-1.1767046e-18,-1.2454768e-16,-7.800803e-18,9.3218676e-17,1.5030697e-17,6.950869e-18,6.368552e-16,-1.3057834e-17,2.6684845e-17,-2.137335e-18,4.451886e-18,-2.805583e-17,-1.1210694e-17,-3.0992816e-17,-2.4987308e-16,1.8232118e-17,1.6176972e-15,9.4122665e-18,-1.5353695e-17,-1.6556836e-17,-8.159223e-18,-2.4256445e-18,4.364099e-15,-3.4828415e-18,1.9458142e-17,5.1116758e-17,3.186988e-17,-1.1587286e-14,-9.912527e-18,-2.2702727e-19,-1.463151e-17,4.522437e-18,-7.116253e-18,-6.6551974e-19,1.7523065e-17,3.241423e-17,-3.9656328e-16,-1.1601915e-16,3.5634663e-17,-2.1680728e-17,-3.3647937e-17,6.6886924e-18,-3.8613072e-17,-6.003263e-18,2.282303e-17,8.811672e-18,1.449505e-17,1.0700102e-17,2.2026988e-18,2.4435701e-16,2.612273e-18,2.9479317e-17,-1.583559e-19,-1.3639235e-17,2.6505989e-17,-7.840497e-18,2.499289e-17,7.0096195e-18,-6.3663852e-18,2.2269696e-17,8.962038e-18,-2.1798626e-17,-4.99492e-17,-1.6890543e-18,2.3576074e-19,1.5665821e-16,-2.9769928e-15,-2.4416385e-15,1.0118607e-17,2.7080686e-17,1.07794554e-17,-9.488719e-17,-1.4046012e-17,5.334986e-18,-5.6056365e-16,4.9286576e-16,1.01500214e-17,-4.3116545e-18,-9.299402e-18,-1.4523882e-17,-1.2800875e-16,-4.6490495e-17,-2.4021345e-17,4.7708543e-18,8.2071065e-18,1.4587028e-18,5.0942253e-18,2.658994e-16,5.5110597e-17,-1.7709958e-17,-2.8396827e-18,6.756984e-18,5.4947e-17,-7.894684e-18,2.7998343e-16,-4.018366e-18,-9.632297e-18,-5.2812637e-16,-1.1909162e-17,-1.5656448e-17,-1.3517908e-17,-5.0716643e-16,5.6478e-17,5.5066116e-15,1.0966448e-17,4.808154e-15,7.4916916e-19,-1.060592e-17,1.315298e-16,-2.348543e-17,4.0632445e-17,-4.9524623e-18,-4.185429e-16,1.7849793e-17,1.0285225e-16,5.609362e-17,2.833675e-17,-2.3116768e-17,-5.587735e-18,-4.059312e-15,1.3292677e-18,-2.3253878e-14,1.02576865e-17,-6.5832745e-16,-2.5143218e-18,-6.8343515e-18,-1.8001675e-17,-2.07391e-16,-1.38252585e-17,-7.603855e-18,7.0320675e-14,1.9879288e-17,-2.1674052e-16,4.1082045e-18,-2.4140793e-17,1.9479744e-17,3.550749e-18,-1.2428657e-17,-3.199474e-17,-2.6722645e-16,2.736437e-17,1.794263e-17,-6.448708e-18,1.8227469e-16,1.2319835e-16,1.7023036e-17,-2.7464616e-17,8.342832e-18,-2.1923949e-18,6.5025645e-16,-6.348614e-18,1.1586512e-16,7.0716084e-18,3.5155054e-17,3.8881785e-15,4.294822e-17,8.188504e-18,-1.8299972e-14,-5.0448356e-17,3.6106524e-19,3.9320523e-18,-4.7006956e-16,-6.8593344e-18,6.364127e-17,5.981913e-19,7.0240406e-18,-1.4990566e-18,3.154532e-20,-2.995594e-17,1.3288479e-17,3.9320746e-18,5.137031e-18,5.7324473e-18,-1.4803847e-18,-3.1702195e-18,2.4264307e-18],"qre":[0.75757444,0.30688852,0.6190118,0.025974873,0.8652814,0.7712933,0.31739157,1.382471,1.6315475,1.0760543,1.9957668,45.962074,1.7611151,0.47235063,1.8396423,0.8668456,2.1784923,0.806812,1.4650856,13.785515,69.82106,1.123491,5.2103157,0.54062116,1.0697008,2.4665504,2.258801,0.10561041,0.23130617,0.488686,0.8789244,0.7845061,3.7861507,0.47009292,0.59363914,1.2708752,0.15601909,1.952363,0.679778,2.7874599,0.75480384,0.5141958,0.7935631,5.2155523,1.0418085,1.196239,0.5499353,0.8300052,0.47928482,0.9457242,3.4658997,15.205835,0.63639396,5.04605,10.89259,0.093426354,1.5806836,0.028622638,6.6747026,0.56153965,0.5639705,2.969594,0.586443,1.352528,1.9635621,0.7296916,1.0193992,1.4678297,0.4325139,3.8776052,3.3703547,7.834295,2.6812222,3.689337,2.1278882,1.0061322,0.28504184,0.37830663,4.2564993,0.51780814,2.0048091,0.010220887,35.75499,1.3640678,1.4883809,0.49718094,2.123543,0.5696775,0.6188955,1.668273,4.065897,7.684493,0.3337755,1.008159,2.0765243,0.69635874,0.68204796,0.17758033,1.2380403,0.3069228,2.192289,1.5091808,6.195452,0.48710454,0.086458825,1.0793585,0.8520213,1.4234273,1.3529012,0.41666797,1.7987906,1.594476,0.9968434,0.56439257,3.7459786,57.720528,1.5878297,2.0830052,0.5950784,23.306835,0.27923822,3.6056488,1.0042177,1.5659004,1.2072242,1.184153,3.7269623,4.223229,0.7708499,2.2286017,3.578851,0.30312565,1.0373873,1.5345916,1.6451049,0.4055113,0.09549298,417.36823,0.35824805,0.46799994,0.39638215,0.75185126,0.88876307,0.9656454,0.60392445,3.0507271,8.975997,1.5952286,0.62365943,1.441743,1.0848308,1.4778926,0.19920823,1.3604714,0.95908487,0.90218955,15.014534,1.091655,0.46279916,0.9409208,0.081065394,0.14133528,0.22800289,1.628617,1.8121599,1.1049557,0.690815,2.1866999,1.0127586,0.65584064,0.80784225,0.22351283,65.79377,0.39311573,2.0135872,0.109784566,1.0902355,0.36471048,1.3227842,0.7765614,1.7713395,0.24369495,15.260624,15.019087,0.8082503,2.9705634,1.9304005,0.4938994,0.20341788,0.42847717,6.0739355,2.4689786,1.1034087,1.6713699,0.55708665,0.30553383,1.7386732,0.56917524,1.6546791,3.14544,0.9264798,1.1465356,3.2275035,0.90264285,0.043156646,18.963022,5.1331086,0.96029556,2.4393613,0.664246,0.15440741,0.36306652,1.1042941,6.7405763,11.538597,0.17182827,1.6816713,0.0020343186,0.4033871,1.5079095,2.6605,0.5016496,0.6613413,1.4600239,1.0595592,0.8561059,0.3703671,0.8518455,2.9718404,0.80527514,0.25705624,1.9379269,0.61826277,1.1328528,0.32886636,0.19927342,0.78031224,2.7616334,2.0261168,0.34883788,1.1055907,0.01216977,15.260772,2.3661222,0.37386942,4.899791,1.5809293,1.5414711,0.28894916,0.5920719,0.019576592,9.772028,0.34340104,12.608659,0.8418338,0.29650053,4.104241,1.8166925,2.760859,0.8334556,1.0972966,1.6784576,0.09281463,2.40134,0.7040176,1.367093,0.7733842,0.86836773,1.0823958,1.1010048,0.4696075,0.9116621,1.4075189,1.496579,1.9812664,2.028728,1.9422011,0.009444734,6.7754087,0.14824833,1.6083853,0.82583445,3.1793282,1.4257973,2.1565447,0.3160687,0.8112177,2.2485507,0.616811,0.053639833,28.32206,3.641759,2.9617586,0.2481361,2.186879,0.56306607,0.62221795,0.18649828,0.9629204,0.66539675,0.8976977,0.32296386,1.7663102,0.890565,0.5406797,1.7891273,2.0183449,17.732979,0.39908445,0.043269146,0.53621346,0.8787697,8.109229,0.47863874,1.6939838,0.22899625,0.4329878,0.65230286,1.4121497,1.9974128,1.5528651,0.71196485,1.4257655,1.2680392,0.33746073,2.7724895,1.0941665,3.581574,0.38571906,0.26968002,6.545347,0.9114186,1.014623,0.31274834,2.6437535,1.0044736,0.4916663,1.4936688,4.9176016,0.8928385,11.816125,2.141043,0.65273434,2.6360843,0.2941996,0.5456893,19.553902,0.92778206,1.3357079,9.431596,0.014961091,36.727135,1.0265082,0.67235774,0.7296471,0.9417586,1.4829817,0.21896017,0.5006394,0.2288911,4.2424917,3.4975204,1.8031982,0.9382753,1.7125634,0.56089187,3.0147567,0.7640321,1.2452791,0.4492104,0.70443505,0.25586158,1.6741098,5.2403765,1.1454403,1.8130704,0.55003715,0.5334377,1.8778263,0.08843582,0.16438457,0.3467372,1.3126118,0.3906334,0.21577,1.6705844,2.0787332,0.20851691,0.40637758,4.0663195,20.012417,13.500333,0.13895305,0.9572595,0.1325658,3.0843725,1.4176084,1.3834298,6.807342,9.63604,1.3658586,0.40778264,0.9788267,0.76611024,3.4622416,1.0918676,1.1248149,0.29305872,1.9190627,0.98480004,0.12818259,3.7343972,1.4485692,0.8767329,1.0768831,0.43926075,1.7423677,0.8946071,4.8596373,0.80118805,1.4004436,1.1908014,1.4794617,1.6668386,2.0793471,9.0345955,2.5233688,50.695713,0.96959704,23.841139,0.09497317,0.47072738,2.7658625,1.2584381,3.4721034,0.42489025,5.5351224,0.009963919,2.3916526,2.2194457,1.4832774,1.1414028,0.8733352,18.578003,0.6869364,51.81928,0.15560536,4.8765435,2.171652,0.34117183,1.4199741,5.8947086,0.13022213,0.78171384,105.08494,1.5438311,3.8656318,0.83808374,1.18957,1.1962163,0.4588074,0.20080723,1.1906824,9.09845,2.080426,0.14580849,0.92105854,2.2630541,3.2232943,0.48123986,4.518185,1.8775182,0.7084927,18.997173,0.2804827,1.5060241,0.94483835,2.0780783,23.691553,1.7523022,0.40322876,46.95367,1.9660816,0.9866977,0.1852545,7.3996854,0.20980953,0.74149066,0.32781428,0.73249555,0.46970114,0.48656958,1.8708332,0.61354494,0.44877967,1.4738165,0.26521897,1.7177579,0.60371554,0.680332],"re2":[7.859187568285281e17,8.54311914527181e17,2.38354401570671e17,8.022477096437905e17,9.789816144027488e17,5.6503430928973485e17,6.305120284890227e17,2.312043146334398e17,5.238563104917171e17,7.302804506629754e17,3.800324701786698e17,2.0225897825297268e16,2.2161492060312272e17,7.720313994289454e17,2.4540860941381094e17,9.673995952619009e17,8.275649731473278e16,5.634528038388146e17,5.012259888665094e17,4.5306217372173e16,1.039046977642366e16,5.52741080480446e17,1.0973161143199606e17,5.392570597165157e17,3.353124398699192e17,1.9365920612527888e17,3.3975628076064314e17,6.175887511203703e17,2.942637523942742e17,5.94665361721021e17,6.715379247052767e17,9.27671411643506e17,9.467894531382138e16,1.7204382343590154e17,8.93338031258364e17,6.412333822145816e17,9.602053363557563e17,4.400375259017968e17,5.1971046962154963e17,3.484081142994151e17,9.308309936427977e17,5.963889596714132e17,6.80018902617097e17,1.2197777695303802e17,7.504664248344988e17,6.139979238210732e17,5.1138859554794605e17,6.41873406472274e17,6.387471544578664e17,2.4724871760454947e17,2.2736368456217536e17,3.378537674322857e16,5.1353257692606355e17,8.926128825774082e16,6.681366247514431e16,6.165631164912607e17,5.78639263621792e17,8.276108202548076e17,7.07093432275323e16,8.634412705402222e17,7.571778429836515e17,2.175193078204245e17,2.995160662829204e17,4.3756148463462016e17,8.047378385827275e16,7.042211990392001e17,6.18792351943755e17,5.740226680953537e17,9.792421647875149e17,1.752223571951609e17,1.6641944561824195e17,7.87863700532968e16,3.245594062245335e17,7.31957005369821e16,3.3494623080556284e16,3.073244211721543e17,4.9016083077927565e17,7.662808377474509e17,2.1401393475165443e17,8.366849809935578e17,4.658285482119737e17,9.161372058396882e17,2.5695120436405316e16,4.09433682224408e17,4.305703904899335e17,8.55180864650462e17,4.446776653837067e17,2.902697005364251e17,9.542014504992058e17,2.1544641576498358e17,2.113742171599482e17,1.2324075728636464e17,9.635507459859786e17,8.049048263000559e17,3.176432712675339e17,5.787027133256946e17,2.1503369844919795e17,2.7121146860868317e17,6.776900604631763e17,8.559762959510276e17,4.441113099805244e17,3.618363954474404e17,9.217111524774957e16,5.617516415454042e17,3.5172275168763565e17,8.340154936656031e17,8.15661084609046e17,1.6203008820337296e17,4.347487596871797e17,3.843216223884236e17,3.6608799358612045e17,2.8570072054354755e17,9.728645845121306e17,3.929121282153554e17,1.706212363540859e17,1.1060522295261444e16,4.9095377923154157e17,3.320610954435862e17,4.406211266848077e17,3.071122099433332e16,9.3930418565519e17,9.664167019300939e16,4.650669791574991e17,5.779874581524116e17,6.70464547199879e17,4.7509042593752934e17,5.07778281186938e16,1.3548574958661242e17,5.15493462188239e17,2.201179280353186e17,2.3713506651794624e17,5.209779018903002e17,7.627821563154835e17,5.704820673348698e17,5.5878368024716806e17,9.226619731465946e17,6.547448438436868e17,1.2448781221297e14,9.387584224310798e17,6.53030406759997e17,6.676736900643103e17,1.265107080959974e17,4.2183277379902426e17,9.277060163941307e17,8.90487337474831e17,2.623198358868497e17,9.32715786432755e16,5.897280401009271e17,9.597007183444512e17,2.126873554227111e17,6.333050837591432e17,1.4636475597629517e17,5.948866685383071e17,6.881979412223213e17,5.657000548551693e17,8.067066309802867e17,6.481182119250195e16,5.513954424960055e17,4.281301341370206e17,5.911716341724748e17,7.614292090010054e17,8.853637891860306e17,9.243686673872051e17,4.666010902871415e17,5.329849147234692e17,4.180233288280999e17,8.604206698717257e17,2.6403006777085693e17,9.669255861026423e17,3.946765974353915e17,9.845468514859187e17,9.268008221866225e17,1.2967410716284266e16,6.547729941955936e17,4.8861935306293114e17,6.842686649857677e17,8.328012658195988e17,8.971773511323003e17,4.557259973397365e17,9.509402300284942e17,4.978089498117233e17,6.62444543787463e17,5.4140045440835064e16,2.3342563721740816e16,2.598427289561469e17,5.7809770887952136e16,4.700757997066735e17,4.7389302250430285e17,8.548400353248442e17,6.256846389343392e17,9.118993131705578e16,3.5618203776571744e17,8.582783936726495e17,5.4232415563524275e17,2.8689777366481107e17,9.096287454362035e17,4.673303212975869e17,6.942711867166455e17,3.4156090481158016e17,1.5466711404988464e17,2.86284953791332e17,3.421091579670113e17,2.7578933914692115e17,7.483832073552566e17,6.621500450101152e17,3.462218649082638e16,1.8519016027976397e17,8.874530479819854e17,2.6458034788055827e17,9.720011479350149e17,9.049681157538582e17,9.556206910884998e17,7.827296128787748e17,5.562431586375649e16,8.510270128336528e16,7.27759241336038e17,4.30561289949443e17,8.207465925291991e17,4.386717279740964e17,4.72533557050728e17,3.600058991061857e17,9.693281316158245e17,7.48857649737137e17,6.056415693736287e17,6.528900407521569e17,7.305676687638173e17,6.792637726306833e17,3.356472989972673e17,2.4281722979281884e16,8.30918123368646e17,7.723805161506167e17,3.9925163226004634e17,8.562817019622033e17,3.940947909491443e17,9.027524764091322e17,4.1985006285260986e17,1.892976849211321e17,2.958627628837816e17,4.523226920611548e17,7.287436799896443e17,8.811877828159726e17,6.97681893218558e17,4.458825128272203e16,2.4213644767640352e17,6.808523917402765e17,9.465862755037869e16,1.475230778833584e17,5.894969000643679e16,6.920074691454077e17,6.108326565605956e17,3.740015273868859e17,8.076128690041584e16,1.444468840100468e17,6.799531137103032e16,9.557545810664134e17,8.657024921354117e17,2.216723019050487e17,5.266678526645796e16,2.106397237141764e17,5.854017200170284e17,7.439239709876316e17,5.2955571376059885e17,7.646789850430802e17,2.4975055702497718e17,6.436011724770099e17,6.657002231111685e17,3.686529853840905e17,5.689534013554514e17,4.535811960630667e17,5.543721489575767e17,9.895665555364014e17,6.795725392391571e17,6.300540158419781e17,6.044433802954821e17,4.531040080856964e17,4.303444571277856e17,4.8308356402840134e17,9.684248404854346e17,5.348624492402487e16,6.155244430678833e17,1.2702124734407427e17,2.9329346573579194e17,3.063386325888967e17,4.050951487446839e17,4.4818522842061325e17,7.905150900425821e17,9.822639071481484e17,2.8122754782218672e17,2.3757354147818733e17,8.093790273501334e17,1.1547298703108554e16,2.6628453824738406e17,2.5883619016061344e17,9.960245020043948e17,3.280981598872087e17,8.572147951869624e17,7.059926959565318e17,5.6967011340515117e17,7.272540396160122e17,4.540455981334369e17,6.064713637691667e17,9.06888024385172e17,1.0138350837271214e16,4.0823754668767686e17,9.857764930404116e17,5.385482920140287e17,4.3298665719405274e17,4.1485526269619544e16,7.745996714314203e17,4.328322568229357e17,7.487531083925492e17,9.746778364731428e17,6.7712786275790136e16,8.286075698002067e17,5.885600536492581e17,5.898264259793024e17,6.317552341940941e17,3.549715445309681e17,5.313600216084923e17,4.4523929727858355e17,5.537574699937997e17,9.726499347982362e17,3.524504879430377e17,5.595021939616475e17,9.326775489914646e17,2.0625986652447725e17,5.493624562998848e17,2.1563059691704144e17,6.791208635159758e17,9.231573680713759e17,4.52261581715232e16,8.03092376183393e17,4.3429606592701e17,7.288816932632068e17,2.2210042224531402e17,6.090481806935219e17,6.486221721923489e17,5.157301835388721e17,1.0596240290131365e17,6.350007371712113e17,5.5298875857912824e16,4.1821758879630886e17,5.15229322548694e17,1.461061983156299e17,8.286559295039599e17,8.432596359146516e17,2.3802129437811904e16,9.621108721540662e17,6.63916648088309e17,8.589493229682155e16,3.101151830244184e17,1.9887240258800508e16,7.715531323346226e17,7.785017688594765e17,7.714350920630787e17,6.650132152756671e17,6.171333672836969e17,6.320472526658339e17,5.597848537367009e17,2.1971700447279264e17,1.0674889683221022e17,1.135717437401107e17,5.322617655674982e17,5.717932449640395e17,1.0730152462632358e17,8.335458096204788e17,2.068522211472261e17,8.695192558674618e17,6.228024402334084e17,4.074711993119412e17,7.904214796541676e17,7.675713144327899e17,4.640328879504658e17,1.7658736069449098e17,7.02189840170047e17,1.950179159925247e17,6.309618410625423e17,2.8175111443458355e17,4.5590465690116275e17,9.208420341185981e17,3.247316928917401e17,5.558569523679974e17,4.466366736203629e17,3.444648201047631e17,8.210523327653021e17,3.7096818404041574e17,1.8914776447118518e17,5.672039369275961e17,4.899457359961995e17,2.0598531211451232e17,2.7145722792915052e16,3.442311775501561e16,6.142977674088842e17,5.3951917993054234e17,8.575921023633207e17,2.3374478397217757e17,6.461657991987052e17,5.6539183189716e17,8.202144090990826e16,1.0218567526016653e17,6.242955841770438e17,3.005515943248743e17,3.462827908976879e17,9.980057291826134e17,2.0664904371679437e17,2.4715063755635226e17,5.970661676608474e17,4.9378930487491136e17,2.434669120317372e17,9.351105745175296e17,8.925545566460598e17,1.104018381110291e17,2.5655768402647018e17,3.0039766646937197e17,8.420436102592387e17,3.804389400717663e17,3.489003328773955e17,8.230150341680723e17,1.4680176190587712e17,4.1068500356812243e17,3.142692348279679e17,3.1852496111343e16,6.312827025371988e17,4.548046636083548e17,3.4761665200705837e17,1.089419378312606e17,3.2870014683619494e17,1.921540845377867e16,9.251122332304157e17,3.7069553868156024e16,8.652325332210867e17,8.818815288698714e17,1.8886462621525546e17,5.860385043005061e17,1.7979964503340806e17,1.724159171678311e17,6.923375739576066e16,2.5972079013958838e17,1.3796453667953069e17,4.3441140211446374e17,5.996050290409695e17,6.268189780305445e17,8.695638875628251e17,3.5813252611825664e16,9.829172307073079e17,1.0241966684621628e16,9.805018968505843e17,1.4579898079201236e16,1.0207324920973826e17,9.274509517608877e17,5.515897006218707e17,1.6374702736590086e17,6.417036130945682e17,6.199370342132741e17,8.177705348476283e15,4.2468846124680506e17,2.149101840949843e17,4.382074943937697e17,1.8794947951458618e17,6.463010954699223e17,8.313567514234099e17,7.269517365814344e17,4.3645517648721434e17,8.670551941921555e16,4.533268806065296e17,5.95915198602199e17,8.154405798754412e17,1.4084929746260866e17,2.256036835852374e17,3.217713190454038e17,1.547239356261193e17,5.224005372400764e17,7.496523707836716e17,5.1217865642466776e16,7.883292750347204e17,1.0389862006278661e17,8.233802976304506e17,3.821020564200721e17,1.0246590484110918e16,5.6214832531653203e17,7.279832192367256e17,1.7022857138293768e16,4.3595533522940576e17,8.589710868478075e17,8.796309048007587e17,1.346900978849127e17,8.026397489772818e17,6.780190875834469e16,6.849369422987995e17,6.808984296329478e17,9.333092024991136e17,7.236359153169788e17,3.440394295308736e17,5.48501062139073e17,5.968067864360727e17,6.651098761971018e17,9.400495911981119e17,3.9841731807771994e17,7.081317258639885e17,9.006603075846495e17],"im2":[1.250284970137736,-0.8663144198876012,-3.187165479216514,-2.857931569685226,6.546421157695168,0.7456337919583866,-3.841359171767664,-8.907066776209247,-4.009413625949447,-3.6676505730057984,0.6991454668946933,3.592743367955949,-3.4854783074277957,-3.5349135250158987,3.8030858027927916,-4.265912452203898,0.9326400859008181,3.9731731334644564,-0.03541834701657365,7.828544168257185,-4.118742011272635,-9.894548268632946,0.12567885790885036,-0.19610944503300765,9.9715114470077,4.173223175262578,9.19154994545828,-0.33892452776848536,1.2104094140435144,-8.780744379111292,-7.076726762995024,-4.105948829294704,-9.127205702105073,-6.570407126916433,3.2447390833945207,-2.60931562885371,-3.4073049038960406,-2.026973857764977,1.456883256594356,2.817724378663991,-2.643488887979533,-7.7411021173135826,2.6988080674786055,-0.8617424320223304,8.121032892918404,-8.98373423197232,-6.8802146104767665,-3.5542912091674106,2.7228098342034794,-9.487659212384083,-3.7714511659150602,2.7936364432697722,2.1460794580717604,-4.1642559519789675,1.2646136647853545,3.2933228542561306,6.008646047121413,-8.461675953894222,-4.729641681664818,0.1693703520244867,6.725305127398936,9.72448991462921,5.6472454565522625,-0.10361749714279611,-4.210917947671147,-2.7536713998820472,5.479735089342835,8.732464301926097,-1.8655742300537153,-0.12871584363013255,-9.539205266865965,-9.959697362311546,-2.573900486725731,4.501149462625165,-3.1216622910311864,5.242230257175425,4.498952873916799,6.334398933159502,4.060783211578411,-6.144527627680041,-7.097488431646992,-3.662785115271328,3.7677046891238124,-1.9969547474785436,-4.113104986777758,-4.384928977781854,3.7645208461229593,9.706239692030064,9.422736185813395,0.05694362731661684,2.6168094108316513,-3.5314739382334785,2.8127698666023964,-9.71626609931917,6.133834135807138,-4.646189889520755,4.342751875598447,4.036953207493674,7.284367332872378,-8.907060043758117,6.7146632271229265,-1.7228773144619112,-2.1645218293997086,-4.023467493815893,9.368918399460156,-4.76611477474674,-9.984691783728323,8.25803127152107,-0.7604312556700972,-7.564154831765757,6.526371066897298,7.721430762758882,8.222932117494892,-8.952410480377793,-6.758676696536973,-9.410722829464156,0.8111197949127185,-4.762267597575709,-4.898129400543212,-5.7128567691519105,7.920398734142953,-8.661166896666451,-8.998596062583387,2.3598135060232472,3.233897970063847,3.4977082926206577,1.2094456972109118,2.3009061898936967,-5.043415097294868,-3.099166276939278,-1.5630322537866785,-0.6726051981436125,-0.12688031820435697,6.996493426510515,2.527703324390453,-9.643503915295838,-3.2103369270895543,4.914955721310184,-7.64454426554374,-7.498933880685552,0.4850853945203788,8.066792498823474,-3.8791063687626988,-4.028120982557921,5.302921168859884,5.310779850080118,5.203978225665589,-2.11123990668054,-1.678894774028608,-7.014853073051633,-1.8946706735479992,-1.3852525727052107,5.066725847522015,1.932055117898832,5.478405583894714,-0.4335662932240183,-5.6032702389584355,-1.7019305291776003,-2.120340591661291,-2.226949844566864,-6.259211907080622,-0.9930836966043337,9.41161165027037,9.040644017890294,-2.6489949580044048,9.303943666042716,-2.529479966422336,2.450031894792133,-7.457624306226385,-0.9710943317812664,3.020196801494423,1.7122267805816413,2.2047720794242345,9.783660077951271,0.07993848959303662,9.856763366779376,5.756545236527483,-9.101039754741373,9.063367590267752,5.470781260595949,-7.919585185104239,5.381556808635571,-7.202468973194945,-2.0472372094699516,-7.31488997167403,-8.552868525328837,-2.176500118438982,7.4488546674459855,3.5697991515748217,-6.660869997072338,8.445165833591542,4.071340718476538,3.0585720546327018,3.035621336379714,2.0562059861246738,-9.02877776117857,-4.995563006718249,-3.3451241089925325,8.173324714135997,-7.0651540918384175,2.8976627526524545,3.074244649801898,-4.161777435897935,5.38078423593457,3.4674705336413574,-0.005678361829165368,-0.6657105935331398,-4.588634259706581,-2.8884423893029414,-5.909690641745038,8.352333512819897,3.228908926553572,-9.063288640304767,3.889165745550219,6.973411241979651,-2.7118233262820857,-3.159460979976336,6.044599289121294,-5.546447307387108,9.865878449410065,-0.1633359476331524,2.2764400928173707,5.91482721022733,-5.628242372634926,-6.87948663390652,7.12597793072608,-8.567060646869686,3.914644847073589,-8.34974883191446,-0.1087770958127443,3.245621463593027,-7.6534385279929085,-6.7099741665436134,-0.6778783582947838,5.581841743897355,-0.005363146250727979,-9.526940200751206,1.8204725388671896,6.7033002243883715,6.57903569523906,-0.994451365116614,0.5677597601535833,1.658150545238863,-3.923353807147727,0.3456230877403943,-3.8667544038297175,6.707445465547806,-7.353478089251384,-6.5899595521498515,9.476194228340166,3.4068780675491723,8.483192784004743,9.702065343762015,-9.294614789108806,-4.354868733854249,-0.07576779100325126,3.966954599149057,2.1113372948577442,-6.912857050068384,8.951225333608377,1.1848451332468954,-2.7463631669638406,-9.101155466471367,-6.903191000332325,-9.542218591129803,3.083790194621356,-9.136850809456021,-4.335890270491703,-1.1353567376925948,1.273947273343257,7.675979820287175,9.941962923155724,-2.3491520276015043,-7.133736076606915,3.8943598919116162,-1.338036548986972,-6.452750486513046,4.27875752359653,-4.56725159547736,-9.877283877113003,-4.709563947209919,3.779078871155818,-6.986998999510963,7.548950922586236,-5.174210405145265,9.320763407679877,-7.782660428280441,3.533355465869736,4.978260423750365,-2.334283042681129,-2.5298302807262774,4.32793462711653,5.792483828052202,-8.120784424287535,5.391114884867939,-1.6388079254599486,-2.566177856678462,-9.915008578685455,6.5488765583240784,1.06795483302915,-6.555467901944045,-4.1423204138949865,0.8180280667320652,-9.613067681907253,-2.709919996134942,-9.090217867236294,8.744795723826911,8.981728059324414,-2.1624168692591024,-5.108656552737565,1.8867748650453482,7.507793217091269,9.106594341558182,4.389570412426329,-9.885949944295138,-4.6083552026805314,-5.350799790648868,6.090844663864019,1.8607352307224279,-7.856698750342021,7.061041374204258,7.947809116473735,-3.23124177612792,-4.00580885757575,3.7141341581371847,8.972774104027096,2.5238403671386695,-7.165310141316148,-1.507592250716316,5.1048236895350225,-5.603284197842595,5.089648018428498,-8.285913795023877,4.881318631682131,0.5139318128074333,7.582062995048236,5.334531945700206,6.843530890099139,3.496650985718251,-7.579862419739573,-7.062728253795065,-3.5252688301175983,-0.24960939744802246,-0.7814982780570645,-7.816506777992325,4.232395562530016,-5.331263133497552,-5.347094373910264,-7.626107847659651,-1.420612033952306,-3.06364015188662,6.165735464169082,8.901915179213614,-8.779192999921992,1.8100075403937197,-2.3185521906409274,5.769865267326077,-8.271101681062374,-1.82798183927442,2.358877173788045,9.609387479976174,3.4307942425635822,-7.869055716533113,5.362105699548676,7.400657615653255,-8.257765201660746,5.568072644685362,5.966197689263556,-8.407085786207247,3.891380724572837,-5.887240052874818,-1.018778807585143,-3.4127829356652573,-7.0789225639907905,-1.7504395351514113,-0.9439163422643269,-9.087308541791979,4.48822042733633,-5.753956161692564,-1.2256312264842713,1.897702262652981,1.3735385894042764,3.824345443896835,5.499765897639177,-2.503216303906923,2.230482553623256,0.8149523156922651,-5.5228805098471145,-2.330791440276654,-6.5788649320253505,4.141155433804917,5.727611344486673,-9.265329784032033,-7.893468733735829,-4.900936850153932,5.522849930606084,0.5605240056174932,-5.844213963517639,7.547535835610603,-4.460364853160557,-4.454047762966999,-0.5568771152435321,-6.555380633811443,7.171152675804631,8.898402918470786,6.531544537587159,8.367022877734772,5.797643006359639,3.716036140042476,-5.780686586192056,-1.2906466557331768,-8.166324076389186,-5.193129529309295,6.47642615008391,7.54732035909473,6.075830157508744,-6.953572701739779,8.080229884676683,-9.448779858186601,1.0974304911788941,-0.9969321317407918,6.4805536549534,3.8087586273723666,6.109512175824111,5.163271347246043,6.684922947179082,-9.901610700818381,-2.027280582777669,-1.2429467220674173,-7.450924064613506,4.477902361236277,0.38497032460213454,-5.792857791018138,7.667203707012771,-3.3853685496505115,-0.9483073699117668,6.673450934751205,-9.247676398784106,-6.162437297851023,-8.91265439001229,-4.940728959878653,7.467005427350287,1.2599201856247806,7.900849713808547,2.042256312209833,4.475724478484246,-9.386532708492359,2.0295770729632565,1.9944950855218266,-8.824409831158404,5.80156172385478,7.270534385408169,1.980780390341426,-0.8455461848377794,-5.455122057451753,-0.2422173236454057,9.522647991509064,-6.810098533932862,-0.04576520165723075,-8.791157956228497,-8.887157652261076,0.18566722145118852,9.612264479150017,2.424016278046512,-5.892063263856977,-6.311349261731531,-4.388193142551451,-8.982542084299073,-7.331568351361142,3.2766751598777226,-0.8156852196888025,-6.46992395652153,2.5069546504720144,-1.4714090587706004,-6.397235228525027,-1.7880181969660498,4.095080284172983,-6.4872027227127464,-1.4912255209915415,-9.361294873372898,6.240162341519866,6.782633127516526,6.934553859592867,-8.997571267655708,-9.333405586777754,9.217185988246712,1.280943286106611,7.197678729199083,8.340488710142239,-1.6877785071171516,1.533670839974473,-3.215567746537986,5.684685549374073,-7.579823652928022,6.456896808817451,-2.6303479308136923,5.496491368058617,0.29834414704571266,-7.727945825211615,4.60288217643518]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json
new file mode 100644
index 000000000000..a82d8623a59f
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json
@@ -0,0 +1 @@
+{"re1":[4.180991982056985e14,6.144365173675534e14,1.6957189703888486e13,4.5120348641439925e14,8.315728303564581e14,9.274008244279197e13,1.9230824430617156e14,7.399432199594158e12,7.024998576921892e13,4.296080351816986e14,7.340640766702626e14,2.1306293037345547e13,9.951313424597874e14,4.358546282229588e14,9.004444648976835e14,3.879061680172435e13,6.187146716887825e14,3.3790628233248775e14,8.270859749544201e14,2.6248786020284297e14,4.455852371097079e14,5.94840844509326e14,4.2663704969664406e14,8.643764609015531e14,3.8716696513881956e14,1.449183751010441e14,7.080049554136304e14,1.3874147927353919e14,3.179081785740572e14,2.2018194134554303e11,2.9721830687532325e14,6.178555639421056e14,4.439709953116978e14,1.897004720263754e14,4.333276102153492e14,3.031191220629567e14,9.031356765327944e14,7.80997205168431e14,2.190818692930211e14,5.74865954359501e14,5.204995412606759e14,9.94756864120759e14,6.316991693463174e14,5.3058196572552344e14,6.504176519890422e14,7.342319787635275e14,3.0983468960759775e14,7.869853158544961e14,3.737064003749674e14,9.62495816486361e14,1.496376814569812e14,8.959185161783698e14,4.249334157206751e14,8.006390402087488e14,9.438625745031959e14,5.0632466111932836e13,8.112328927691556e14,4.580742890050071e14,1.7563443169069938e14,6.611297379344518e14,6.133505312727115e14,6.630717928260556e14,4.9473450892299244e14,6.377788531109979e14,2.6317912171522406e14,4.217511681899306e14,4.4386621575013594e14,3.861407222712403e14,3.289341901055728e14,8.404355542444065e14,8.169796904852114e14,9.63999601239412e14,9.984601987179281e14,5.0530207981350006e14,9.62981056001531e14,4.534219916194775e14,3.507948653207323e14,3.053544275473796e13,4.0133993391067944e14,2.646437591182561e14,5.0962457903209125e14,4.420641228604089e14,8.396703446664611e14,2.1763924304716997e14,9.98505027904684e14,6.22307862739306e14,8.023418555802019e14,1.4133444288442475e14,4.082965993327726e14,7.479845637143799e14,3.884036723520948e14,4.696780043396374e14,5.164032934849127e13,9.843349157955172e14,3.2842316839154606e14,6.634729495755096e14,3.695170435638047e14,6.790328997513951e14,7.949398834775606e14,7.602842283512086e14,7.194835461059682e14,4.8954955047253825e14,8.564017664573481e14,7.897679046635502e14,4.949379741973281e13,9.733337099763549e14,6.620298855135258e14,9.541667673422346e14,4.09529402771607e14,9.095971995266674e14,5.1936911921421625e14,6.247813037449039e14,2.6100134097479078e14,8.659364228568419e14,3.866533786753044e14,5.4144042555328606e14,5.859408433593127e13,8.733459298264335e14,9.392497806087445e14,1.4680016702718203e14,6.241815950724151e14,7.255633915498591e14,3.819608365797709e14,2.359180262891525e13,5.880735335530252e14,1.2094143703883264e14,3.228964997108144e14,3.3192106161875156e14,5.2959067036564725e14,6.985119367542699e14,9.005205579213126e14,6.26479028086424e14,3.699798478995021e14,2.2724404607095262e14,5.5590213789347806e14,1.3481988804149558e14,8.585441320265931e14,8.551675261385746e14,4.0229152754931806e14,1.07930903768798e14,8.008132173164148e14,9.657447755789098e14,8.020776683656526e14,6.711129739590349e14,8.377620363313604e14,7.245670672437677e13,1.97714283362172e14,9.0905330582426e13,3.9880334273976556e14,8.762577108098499e14,1.3267999963996569e14,8.625128551364896e14,7.037679557739018e14,1.4304865198738525e14,8.173857592630552e14,6.98965927818921e14,6.519070658980109e14,8.408241726800941e14,6.013166097537301e14,2.381245173964338e14,5.3425287530211375e14,4.167872552834456e14,4.39835740169325e14,7.887165688121715e14,5.708702608281786e14,3.7016906387538094e14,4.1194357021533956e14,6.513270631687539e14,4.014562141951533e14,6.458887284072108e14,5.739080707281604e14,8.317046232190082e14,3.891793391800313e13,7.701969275948218e14,4.835170533049216e13,3.9760614254514994e14,8.987516752960479e14,3.061771264524845e14,8.481895049380942e14,4.399380020461678e14,8.822350171956814e14,2.1457338424793794e14,1.0852631024885773e14,8.575062860257712e14,6.706964378981166e14,1.3165364054649786e14,8.84649815454461e14,4.3169854986097125e14,5.697745479776746e14,6.642615007128139e14,3.293066727066096e13,8.627377695191221e14,2.0614669666523634e14,7.066615807405066e14,3.2281464388774494e14,7.890487907834021e14,2.6505184184760756e14,2.1181308159094503e14,4.281947724959345e13,8.118685309529104e14,2.346037608796748e14,6.574685143758222e14,5.358962516219863e14,3.343751602490751e14,8.333197314412977e13,6.940559307225828e14,8.172137713544274e14,5.048221754459091e14,7.237520440002762e14,9.439123201079759e14,2.798916380902702e14,5.374880692136663e14,6.228566517540406e14,9.90706261724824e14,2.650416550053717e14,8.855980151128018e14,9.661711049484829e14,6.999673303249254e13,7.915783651027579e14,6.108327984296342e14,7.373899641425364e14,9.611542855687128e13,1.0342798159079803e14,9.479689038635362e14,5.6283823973699056e14,4.559296042121214e14,1.4005305931234212e14,4.368978879840135e13,4.0312078646726856e14,8.812401885842124e14,9.829944109553258e14,3.8134110952481406e14,8.508191432216978e14,7.964018045770839e14,5.4068775930557875e14,2.419077410192706e14,3.977857670460293e14,7.512175797411714e14,8.197500826621574e14,2.6878285203572228e14,3.269933350964005e13,1.9650935758240062e13,3.60084003021196e14,3.747297565085225e14,8.799891489517439e14,9.43449765893656e14,6.885458037215306e14,3.34132712842685e14,6.220789617526492e14,3.4247694872390875e13,2.6090565018325684e14,1.7532237458638044e14,2.0377208981122484e14,4.280551834065227e14,7.188160856423275e14,9.236299772713751e14,3.9897513243812375e14,1.6758351981038044e14,7.984872901669238e14,4.611390035750467e14,3.6487477388925925e14,3.751204141044229e13,8.64163201765717e14,9.42042503870813e14,6.571617975564803e13,8.074115180008096e14,7.430053910976771e14,5.51609054804437e14,8.225443992023158e14,8.007356512859236e14,5.279048316664373e14,8.41031001738696e14,3.702172194936213e14,4.335851075703292e14,1.3603318256663777e14,5.866333787705813e13,1.2445108307441211e14,9.962765306216725e13,3.042689758082764e14,8.527116239858964e14,9.625574181000288e14,9.113431099701996e14,7.534562314054471e14,8.128944997462528e14,5.3071922431672156e14,6.262117806686335e14,3.730412664709478e14,9.955562937942294e14,7.5182550283772e14,7.78499827618465e14,2.8697242908861444e14,8.973585650373762e12,6.780783983897316e14,6.04252569222831e14,9.850767650933731e14,7.53496648222064e14,4.749804462888577e14,3.204991837267699e14,7.56426735663415e14,9.256230828650651e14,5.5866112893976925e14,3.8906334649884456e14,6.676956587883262e14,9.715138777786647e13,3.9216372510029975e14,6.545725396304971e14,3.989136098633518e14,5.843405824643699e14,6.371481203950315e14,8.312914291827649e14,4.757580514228581e14,2.0716021032403275e14,2.3620877014232956e14,9.698830779316521e14,7.454634633095475e14,9.016750806671218e14,3.6255233164832244e14,7.837275886281306e14,3.0995704378767694e14,6.349515835268636e14,7.617710687011244e14,3.788279424082789e14,1.9553045778606016e14,3.684733545229282e14,2.0367212526450928e14,6.311360543738844e14,8.008466731322738e14,2.931102594080074e14,3.2157093743961075e14,9.722898561467198e14,2.3287359129453978e14,8.459516352255135e14,8.671064061675722e14,8.142068733638126e14,3.738689731044682e14,8.425930097108272e14,1.0287003495539616e14,7.391998791862264e14,3.091284875494706e14,4.871269339945673e14,3.501941166568556e14,9.86823781226625e14,4.982923592493379e14,6.612789910014115e14,8.234507542106638e14,7.773861217960762e14,1.4427241935651903e14,6.705104149761409e13,2.875035498181112e14,6.910899249700098e13,9.438555763278489e13,8.279318761545352e13,8.568026888811785e14,2.7895772369863293e13,9.32615731150926e14,6.984254597397828e14,6.881245352114536e14,5.16239461595432e14,2.4018275842101078e14,3.4771430427778194e14,7.020873357399682e13,1.7588990562751528e14,6.192614167293076e14,6.025471262943219e14,4.80090448246862e14,4.04316342025291e14,5.648194298121952e14,6.271401356047666e14,1.9367301849173647e14,6.260072057807751e14,2.476001921767962e14,4.2658323963844944e14,9.16158069537574e14,5.537404080547008e14,7.346467636985288e13,4.5963934119102644e14,3.823003891834048e14,9.093952737621784e14,3.265072362573026e14,7.775570214773445e14,3.3962036913734117e13,6.559471500431285e14,8.147893651290122e14,2.861941441489691e14,6.771709407517196e14,6.247320653977688e14,7.860665393606156e14,4.419986070410904e14,9.160326192593545e14,1.953666904094533e14,7.591707162811734e13,2.9089045350868456e14,8.981922451929249e14,1.753631014935445e14,9.507141733248991e14,6.369799699660745e14,3.6943015834395675e14,6.116355498494605e14,2.616967054702275e14,7.035447757519819e14,8.196748210025309e14,3.1993266746765056e14,5.1022051419843706e14,2.1279281217905144e14,1.6075808489200816e14,9.304502721695941e14,1.6020442619455756e14,9.649581484382335e14,6.250060161477019e14,8.42734457085577e14,9.601886226236178e14,1.189689304859699e14,8.55292895960228e13,3.6818330305303294e14,3.6912737412126706e14,6.638494169948902e14,3.5088455412176844e14,4.985656952789611e14,9.223768136855458e14,3.0782662936639294e14,2.3241053242501975e14,1.2231674506141277e14,5.70085015761109e14,6.478237616193389e14,9.469946125970865e14,7.634423056960465e14,3.9228708365180456e14,7.52919683052471e14,7.616370422338294e14,6.776937147831789e14,8.585788410557615e14,9.209454002586589e14,8.158431383313994e14,5.858105588711125e14,7.102097855238405e14,1.7040478752152256e14,7.090067664349236e14,8.672730699705404e14,4.147704931270646e13,1.9504998822418306e14,6.9596985671730445e13,8.413791402604336e14,8.733045679132167e13,9.287759583151476e14,5.737883640923292e14,9.080068507720304e14,5.397113990034581e14,7.744041534384069e14,6.783434114213088e14,7.594526930457008e14,3.419690557647659e13,3.9570454539686825e14,7.465391383959061e14,2.1793348909647638e14,4.5469926147180925e14,9.169529952765441e14,5.66678567085862e14,4.8451710906353906e14,7.502237368564561e14,8.264223403718616e14,2.0141341237596112e14,5.409963978503124e14,6.015803405584831e14,7.559277172700955e14,1.424130604093774e14,3.686923450379647e14,3.7198227549386756e14,3.508736282031966e12,4.1390618652516806e14,7.76145627436707e14,9.561305142664206e14,4.027658671661759e14,4.225279941980834e14,6.708229150600778e14,9.883094206671865e14,7.220204810366104e14,2.1628070397901056e14,1.852893002008106e14,6.015805503644699e14,3.788720425517298e14,5.82762486312915e14,3.0414955314984614e12,2.282989862782845e14,2.320128247001546e14,4.174897918843392e14,5.576666703360529e14,6.115069065114601e14,4.877488212020874e14,3.7452082270093445e13,4.060875195620368e14,9.510177170271476e14,2.5297638813036116e14,6.018631174264449e14,9.000929080218875e14,8.731028629791452e14,2.5694071773359516e14,3.006554378670592e14,1.1618086826652197e14,4.360989157952971e14,5.719719193092549e14],"im1":[-3.2874778288799273,5.970462350476954,-5.679866531823208,6.398535676816717,-6.261495244851297,6.274697199600123,9.360930102185446,4.528927128474784,2.235510156055094,9.830203169918537,-1.3099168015300773,-1.1565722280279918,4.80099919439324,-6.375422839155609,-0.4409719516119548,6.3510990714563995,-3.154088567988871,-8.92530777300246,-4.122534769278408,0.9819321008957953,4.22390263553565,-4.400816264136147,7.648477605172765,2.181314175567996,5.030026333616766,-9.35204029403106,-4.087179948842854,-3.597786791515727,-5.850709390863389,-0.8522453223480682,7.586429713190636,-8.395712815461078,-2.949677359445144,9.381135113581273,-4.526745018109041,5.685914502027563,7.297226923101039,6.5522517665467745,-4.578220928559864,7.6768927642785485,-8.98276510981627,-9.989583508081212,7.085100688464657,7.852402183217862,-6.639888603395246,4.125785452089348,-8.334391636463616,7.659930990735127,2.2426733210980583,-5.012605116073745,-2.0325204412058433,-6.816890271454157,2.2876765915051056,7.8191461031475065,7.0347417397215,0.17258482627239147,-0.6195238479879492,-7.073778338917423,-3.2362937565844785,-7.023587423855345,-8.781413570543915,7.213884543141372,-3.9464045518465056,6.541745872150166,-2.828527212866476,-3.795290563378943,-4.497575160367713,-4.015609506385318,6.57583162376887,0.841490650419459,3.9960956319143506,4.2940911838057225,5.062894264818825,-6.983406891471777,-8.103474931754588,4.204783022600422,-7.158634555691112,2.6599186763023503,5.411148834239652,-1.4307658131106145,2.4291416384570663,4.840607133727822,-2.9100085478934856,4.963774859689124,6.162727230215236,-7.009024908993484,6.049793685845437,-8.888041305703869,3.4404077311242336,-7.157472627411938,-9.345819489062537,0.944625683090802,2.4187925918713447,8.457562407601209,9.429976760570277,-5.441102936863997,8.345920944361708,9.846004378303082,6.057724386027065,7.93127414091779,-4.0498170840465475,-0.6059921622306739,-2.096831059211368,-9.141765994573065,0.9777029804272424,-2.2966419040782853,-0.05994947241013193,7.117602093705791,-6.666316524183589,-0.023922389829934332,4.8124395073128845,-7.997788554433686,-6.259298044122996,1.520418249534945,8.735225312920079,3.90289692208448,-5.60272708906197,6.789745104184785,-2.614534300106131,2.6037953296363803,3.7822694098415006,4.738192413234806,0.0317044505919597,5.855167006660809,0.2195513295394207,-2.013688379773823,8.04504721684146,4.712316039195681,-6.603034818262891,-8.879619735552831,-3.7561780609862456,-2.6329073823496385,9.247941175801863,3.939397289043427,-3.241979940105546,2.239744403652038,-8.565009802087136,5.598605092375827,2.565837819525136,9.87510294486787,1.0593658132782373,3.787513721203851,-5.020524156370594,-0.3492932277664629,0.9880039204802422,-6.190559436380227,-3.786701805696497,-7.466378446597743,6.358248655584372,-1.1000646769384517,7.640789129118744,6.365052996474681,-9.398561331847283,-6.791293055903012,5.3888095449336415,7.8028534351111425,1.521671976786962,-1.243285055069478,4.028842171632647,5.314036028910753,-1.373786297860459,1.5918331402536232,1.2225030686264287,5.821731957155654,9.134902865335508,-7.301509479890487,6.957245378484348,-9.870942177382759,-5.362127152963798,3.335726239213315,9.965672351015119,4.687433788357101,6.473840090835612,-6.484783300800978,3.3543159365176614,-4.356547571389326,9.309433838677421,8.876846000804285,5.412599483641296,8.459151727436517,-1.675749799385697,3.568980064637694,-2.333533058442139,0.925053851125968,-1.8578544852298862,-6.164210878671714,9.449698631057998,-5.624003910105735,9.833270831210324,-8.682958070269331,-4.139663220036551,1.6929807974177713,2.7944578978229107,2.555359644012494,-3.769117950910461,1.565426309885103,4.632768003694681,-3.1261518274534916,7.685572333317644,1.4694677958362323,8.526503650935567,9.307297803731018,-6.92512538724996,1.2886305522350145,0.05039673116901611,9.02117665528323,-4.500381913552857,-5.381446347794281,3.5879856915925927,-1.5602226028770865,5.629792093687826,0.6922199429388254,-4.628352405143586,4.424510444293865,-1.5903474892795835,5.572739573059305,9.981296988591268,9.276030729859261,-1.916185410835693,-4.6896606083788805,5.352472267135136,-8.662519821606587,-9.346587327402398,-5.612776852328418,6.147703900824027,6.481839469514895,-7.89043949072612,9.205352065553473,-7.987444502493477,5.07350798058992,6.802855954582693,-7.924325098140461,1.9309239737426154,9.95828166908574,1.9807141023695873,-7.066420175868162,8.252327749206078,5.740217268626978,-4.861348697437659,8.830741444976638,-2.347006756095271,9.079000456092043,4.564991307556721,5.9318168288763395,8.210670827557095,1.463052144672334,3.8425099556788407,3.729722120446935,-3.833707841454233,9.171622214291677,-7.766591658807345,0.4603880733288115,4.321503747212542,-0.5965643799099603,8.265416642365484,-7.404534122350126,-5.859006595811427,-9.835439226241174,-5.983125963369666,-9.446574172597373,-1.9272843128703006,3.42272585157961,-9.64985638929382,-3.67247196342497,3.803331333803035,-9.668161137727427,-3.3444408370630496,8.81878332908978,-6.209866908237524,-5.213778536153086,7.625909861258876,0.7180215527641707,-5.636092935108275,3.760306147700309,3.091679211195226,9.000113626193766,-2.1896379547192124,4.815468265559877,-1.925879234737934,8.044618395975832,-6.67057905337545,-6.247559350141472,-5.61094079878629,-7.784516042716412,-8.941373874243526,2.20546845899705,-5.407103904511912,-7.488560281873382,-7.818707170981469,-3.039660652802252,-9.336288016594196,-6.110449896116272,9.884822286688934,-2.8397158332876398,0.8792402661885763,-0.5923485547725811,-5.425131018626351,5.295214900028567,0.741610948007569,0.4272131429842432,6.561762221979201,1.1378792415525911,-7.164874638769323,-2.4464595267404636,-8.881405334886882,1.6174642237509538,-6.966104311817096,8.962401287025742,0.16838913402246902,7.500694482622883,8.594189690270262,2.7517920977942296,5.610975077065486,6.327076187518788,-7.985894232056749,-4.434322986926693,-1.6876517941018125,-4.330818869367241,8.754991911478164,-8.377536416248581,2.0050231697358036,9.04778545341011,-1.4537080446091615,1.3898736452775609,0.8735258352023152,3.690305082680453,3.3117708147555547,-9.331366825145137,9.034917692799603,7.489376778279087,-6.388758758677097,-4.725390332044697,7.182643723046741,1.5904325971342779,3.6989694906450943,-0.9627244629126999,5.242120585217423,-6.331106930554871,-5.790903409664914,-7.454705754497793,9.77933391867196,-5.961541669590367,2.6416342266129647,-0.6559661845594729,0.3930120690582424,-7.902941367475473,-1.847182574344309,1.854112796045051,-4.782203853239901,-3.1179204920943793,1.9908902791281378,-3.0839175311084137,-3.5952434099408563,1.0979594492578766,1.3150932033910365,9.215509330595019,0.09972258347433538,-0.4220727628160432,6.433300131648451,1.2322595192402392,-6.393511605967495,-1.7176986322486378,1.3803618577478396,1.7858794605112305,5.293800994193267,-9.656890377583755,8.426005352849945,-4.194175582441398,0.6376622894089401,-2.1162457983722627,-5.057511740089962,2.498434710668718,1.308145686762618,-3.318107034407989,-6.953230654537961,-0.3404858264781936,-5.971119799939581,4.405299797821954,4.07116168110819,-0.3405860950064472,-6.322448871841237,7.808350390867137,5.968408580604233,-4.590714470664041,1.8781065181701635,-5.49414288752738,3.491909153431658,-2.7003359372049047,6.702375076199306,8.456799890716002,-4.998891129445509,-5.90982012767747,-7.908788873442347,-0.7221954490659073,-8.106430269885612,-6.093219733341632,8.788355806898814,5.832659382227279,7.179637904269441,7.533291909042617,-5.35147264166741,1.8077687014719714,-8.755046525506,6.334218966339552,4.305439383884245,7.528723540642993,7.338628711671856,2.42417082381567,8.38244389781314,-9.764442746232774,-7.458331528544115,-3.9282706135993095,9.266136431323627,-2.613313296371043,-8.365967702384463,-0.9707267346247743,-5.5100882213698394,-6.249437108320189,2.7568643797057213,-5.163842645386223,9.213456890688757,8.18982273515839,-0.12042154275592232,1.7293713844771315,-9.50094256206522,2.2728932224293015,-2.883691709671674,-2.2434446098494902,6.77318667677476,-1.674511139127528,-4.435132034590286,-9.42208456390141,-0.7359990224296968,4.571390643126396,6.4782719569509055,-4.977016882348593,-4.349123588051258,0.15927985450044524,-4.06091063699974,9.937868425371203,1.4948343421039212,4.997635185176836,-1.6794087307669407,4.8115048596417775,3.272289331742801,-7.188424232454089,-1.4774249929750045,-6.4742350695844175,8.69206629237527,5.230511989947853,-1.678482044735972,1.6257358160385138,1.792616712094965,-4.0808389384154236,-9.125235592554741,7.529681857529276,-5.4387011011600634,-3.1469045532397777,-5.824216546573828,8.236393184917759,-8.94796959183883,0.34292260985868595,4.162880443353341,-6.816198334642884,6.462692328149732,4.593428221414532,9.732267061147844,3.2721981193846688,-6.361304117693997,8.830235480907447,1.1150432577753744,-1.3395361282621128,-8.012791556481641,-1.1565500907220532,7.671025541012153,-3.531252203700072,9.099838102225686,7.792556433302337,-3.0451680084704797,1.1167952136222397,-3.267725564084138,-7.1981586457338365,-9.853130601670053,9.743694831917121,1.4965112887036902,-2.195377381237744,-0.12219691846818215,-1.4269811642911847,9.58781896484927,4.124632227782632,7.160131531274271,4.1544274511275106,0.5220735863180543,-1.3780250442509345,-2.1834848579260813,0.5847126989363076,-0.16972900607915342,-5.819253359878158,-5.52761229140817,3.419763063152798],"qim":[-1.5425657e14,-2.3220794e14,2.286558e12,5.0993794e13,1.2073981e14,7.068676e13,-5.7575425e13,-1.534388e12,2.6816127e13,-7.35021e13,-2.5057233e14,-5.1565243e13,1.861823e14,-4.519306e13,-1.1896125e14,2.0945016e13,6.9903923e13,5.7627803e13,-1.03931665e14,9.873239e13,-1.4613014e14,5.1783914e14,3.1014972e14,3.814954e14,-7.208445e13,-5.645003e13,1.7006435e14,-1.830975e13,-3.6984098e15,2.2502226e10,4.8575673e13,-2.2269602e14,1.22842985e14,-2.343638e13,1.8151706e14,5.4651555e13,-2.5755228e14,1.2641273e14,-3.2293545e13,-2.5789604e15,-1.8315e14,-1.0493849e14,4.3792497e14,5.313539e13,-1.7074897e14,-2.0133159e14,1.01918056e14,-4.5257792e14,6.222118e13,-2.985409e14,1.6831463e13,4.8941555e14,1.7209828e14,1.3201536e15,-1.6610582e15,1.8436338e13,-3.8583983e14,9.322606e13,3.2074984e13,1.9898308e14,2.6071161e14,-1.5831077e14,-5.714574e13,9.192038e13,-6.4668534e13,-1.2313609e14,9.60041e13,-6.702718e13,-3.3465083e15,-9.585574e13,-2.0319682e14,-9.998547e14,1.3582762e14,5.715074e14,1.40662125e14,-6.484334e13,3.0433034e14,3.9451083e12,-4.5192124e13,3.0116562e13,-5.3455e13,-1.0353632e14,-9.521285e14,-2.5125225e13,-1.31584015e14,-8.408345e13,8.172337e13,2.9239724e13,6.881049e13,-5.2374566e14,1.08697616e15,9.210321e13,3.61625e13,-1.1616448e14,3.3331228e13,-2.669918e14,7.4848026e14,-1.609274e14,7.091921e14,1.1936177e14,7.5262465e13,1.2922783e15,-4.6108172e14,7.59389e15,2.0632387e13,1.0341755e14,-2.155401e15,-9.869551e13,1.0420929e14,-1.8775099e14,7.146873e13,-1.4247876e14,-4.394761e13,1.4312296e14,-1.3631198e14,-6.7627007e13,2.3969151e13,-1.04745855e14,-7.347862e14,-7.415315e13,-7.791644e13,3.5299018e14,-4.703399e13,3.444482e12,-2.4431999e14,1.955225e13,6.8691505e13,-1.82045e14,5.7628177e13,3.0377327e14,-1.0407036e14,-3.284062e14,5.5962702e13,-3.0105508e13,-9.8199855e13,-1.6356908e13,1.7666853e14,-1.1099712e14,2.8441683e14,-3.0196095e13,3.6107015e14,2.4167735e15,-2.0352142e14,-1.3377016e14,-1.734745e14,7.334463e12,2.8975429e13,3.690708e13,-4.977622e13,1.19085375e14,1.6819117e13,-5.2069395e14,-4.700912e16,-1.7805724e13,1.2912904e14,-1.2450668e14,-2.0025726e14,-9.055474e13,1.5192464e14,7.599029e13,1.2291618e14,-4.7172958e14,7.458247e13,7.976285e13,-7.416565e13,-5.5448057e13,-6.865078e13,-8.544567e15,-4.9936524e13,1.0411977e14,-2.51284e14,-9.421641e13,-2.0991097e13,1.0281844e14,1.0629875e13,-7.894996e14,-5.3900803e14,1.2059327e14,-6.598241e14,2.4988209e14,2.4981347e14,-4.0955906e13,1.8456758e13,-1.8682115e14,-6.9633994e13,1.858666e13,1.10377614e14,-4.6085653e13,-1.2289543e14,8.077238e13,-4.3515605e12,-5.2990807e14,-1.1844554e14,-5.416469e14,2.0584183e14,3.2074427e15,-3.1345965e13,-3.002367e13,7.622685e12,4.002596e14,1.0524865e14,2.3968758e15,-1.193274e14,3.992315e13,1.022996e13,1.0308588e14,-1.2277859e14,-9.319984e13,2.8775117e14,-1.1301778e14,3.4398867e13,8.43925e14,7.754916e13,1.2783358e14,4.6005064e13,-1.1289849e15,4.305074e14,8.348793e12,-6.4265616e14,-6.8442804e13,8.0834195e13,-1.0464293e13,1.4711867e13,-5.1090757e14,5.695192e14,-1.2498271e14,2.3804548e13,-9.593154e12,-4.9205658e13,-1.9163822e14,-1.5383863e16,-8.444985e13,9.740272e14,8.0331156e13,-7.29344e13,1.14484375e14,1.5787055e14,8.7666566e13,-5.332551e14,2.6953147e13,4.2514385e12,3.370942e12,-2.2075978e14,-5.1644943e13,-1.28875015e14,-1.883136e14,-7.293503e13,3.780729e13,9.3328566e13,1.0603635e13,2.7644213e13,2.3046348e13,-5.2085597e13,-5.3224548e13,-2.6687925e14,-4.4186385e15,4.5214547e13,-2.6081868e13,2.281463e14,-1.08705924e14,1.590589e14,-7.3966357e12,-1.03276884e14,1.9512016e14,-1.453571e13,5.6778045e14,-3.496049e14,1.6383869e14,-1.3809281e14,9.873617e13,2.401908e14,-6.8189424e15,5.67454e13,4.5596304e13,-1.7574604e13,-1.0059003e13,-1.5311896e13,-1.1844034e14,4.1038438e13,8.6779915e14,1.5643254e14,-1.0703608e14,6.66248e14,1.830681e15,8.8308044e14,2.470427e14,-1.2063729e14,-3.258745e14,8.472901e13,-7.673434e14,-3.112769e13,-1.1321514e12,-2.8029644e14,-7.420033e13,-1.0832542e14,1.4949212e15,4.973534e13,6.763452e13,1.2765102e14,-1.359229e14,9.410417e13,-1.21239855e14,7.63362e13,2.4149557e13,9.05215e13,1.0115594e14,6.443961e13,9.65007e13,-1.54795e14,-9.8840015e13,1.0247684e14,1.668312e14,5.678532e13,-5.766152e14,-1.2123575e14,-1.6856884e14,-1.0910159e14,-3.625837e14,-2.0196616e14,-2.953704e14,-3.7510442e14,4.713231e13,1.6378985e14,1.27934585e14,2.7021845e14,2.6716512e14,1.7568923e14,3.0235918e13,-3.7699084e13,2.4919209e14,7.847013e13,1.8228578e14,2.256247e14,-1.413166e14,-2.4839026e14,8.6871995e14,-8.361257e13,-1.0133248e14,-7.8857096e14,-1.5723538e14,-5.6119788e13,3.6891997e14,-4.18187e14,2.5498937e14,1.7042335e15,-9.584782e13,-2.2586291e13,2.1383688e13,-4.69511e13,1.1649051e13,-1.4384109e13,2.91338e13,1.02744535e14,6.4849775e12,9.502946e13,-1.0292968e15,7.208177e13,6.2321263e13,-1.0217197e14,-4.672135e13,1.5051705e13,-3.905641e13,8.196019e13,-8.6116955e13,1.760041e14,-5.67644e13,7.666768e13,1.7049784e14,1.9926312e13,-9.4014796e13,-1.7746255e14,2.8296872e14,-1.0042528e14,-8.088058e13,-8.3763585e12,-1.8583017e14,5.4900466e13,1.1837536e14,-3.9277818e14,-1.4533413e14,-1.2661414e13,-9.211251e13,-1.06373905e15,-3.083763e13,3.0261483e15,-1.2384724e14,-1.06697993e15,1.0676706e16,-1.0950105e14,-1.3573322e14,8.625959e12,-3.6651634e14,2.8570824e14,-2.129944e14,-1.0803613e14,8.908785e13,-3.7558815e14,7.3829985e13,-1.2083387e14,4.8041447e14,1.1364827e14,-7.2811465e13,-8.791884e13,-2.3101595e13,1.3757286e14,5.424708e14,-2.6131504e13,1.2176145e14,-4.0303436e14,-1.0990631e14,-1.5718085e14,-1.3755457e13,1.8867923e13,-7.836467e13,5.7766232e13,8.939849e13,3.7884065e13,5.591367e13,-9.97399e14,-3.759602e13,3.951511e13,1.7641962e13,-3.4746886e14,-2.347942e14,-9.79367e13,-1.26538385e14,8.724448e13,2.1134566e14,-6.7909734e14,-1.5025705e14,-2.8232764e15,1.7704551e14,1.3262865e14,1.8201428e15,-1.1383785e14,-2.6969886e13,1.2277109e14,4.452884e14,3.5226076e13,-4.005575e13,-2.0002145e13,-3.2624045e14,2.6933172e13,-1.106671e14,1.6499938e15,1.437083e14,7.503977e13,1.4337354e14,7.448062e13,2.0235116e14,7.3126684e12,-4.744938e13,1.21319144e14,-2.0017984e14,5.255971e13,1.4484131e14,-8.542108e13,-6.4624016e13,-4.419048e14,8.569313e13,3.0870034e14,-7.092637e13,6.250951e14,-1.1226836e14,-1.4840361e13,-4.767206e13,-6.74665e13,-5.8659445e11,-6.9839886e14,-3.473879e14,-5.512485e14,-5.5056968e13,4.314486e13,1.2459913e14,-3.5083732e14,1.08165086e14,-5.586155e13,2.39606e13,-9.7548346e13,1.0314075e14,-1.2714982e14,-3.1783584e11,-7.390419e13,4.613031e13,-5.8757443e13,-1.1074439e14,1.0578885e15,-9.784035e13,-1.151961e13,-2.2770388e14,1.0995854e14,2.0922745e14,-2.0721088e14,-5.507526e14,9.880604e13,-5.318333e13,5.923668e13,3.695306e13,-1.4635916e14,-3.1613308e14],"qre":[5.6356595e8,7.867943e8,274231.44,2.3556892e7,4.174634e7,7.675032e7,8.375983e7,2.5015042e6,3.0606524e7,7.876427e7,1.1260104e8,5.397553e8,1.5675424e8,4.5491324e7,8.021744e7,3.9428704e7,3.824037e7,5.2163024e7,7.5614985e6,1.2338505e8,2.679346e8,9.1656224e8,2.3784203e8,4.014907e8,1.0112836e8,9.7521816e7,4.017103e8,2.3758168e7,3.23359e11,15275.333,3.3012374e7,2.5533344e8,2.5602331e8,2.1111428e7,4.390218e8,9.7000856e7,5.811448e8,1.0854347e8,3.976585e7,3.4770862e10,1.349663e8,2.319596e7,1.8335808e8,4.335856e7,2.4217765e8,4.859414e7,2.3842338e8,2.5648796e9,9.370893e7,2.0517941e8,1.3348095e7,5.3076925e8,2.8429726e7,9.968574e9,3.2458404e9,1.2395484e6,9.609507e8,2.8736344e7,2.3883876e7,2.2216269e8,7.0333216e8,3.2593315e8,3.7071324e7,4.2234275e6,3.8324036e7,3.2429578e8,3.7615976e7,3.611612e7,2.5006116e11,1.8194118e7,4.3302608e8,8.0843566e9,7.726232e7,2.0255264e9,1.9016936e8,3.7293452e7,1.3072895e9,2.6545562e6,1.1730404e7,1.3693759e7,1.1417243e7,1.2008745e8,3.0436913e9,2.174117e6,4.7519908e7,6.744519e7,4.513442e7,2.0645434e7,9.272375e7,2.1550656e9,1.2246121e10,1.3558995e8,2.3492604e7,1.1626411e8,3.2736365e6,9.8284326e8,1.1716181e10,3.483463e8,2.2965422e9,1.4058694e8,7.550068e7,6.192983e8,5.2413558e8,1.8930932e11,4.630853e7,1.0625437e8,6.7163865e10,5.361668e7,9.758834e7,2.7953715e8,7.6426136e7,1.4065638e8,2.704423e7,1.2290812e8,2.3970035e8,5.0175096e7,3.620644e7,3.6120276e7,5.573974e8,6.3636516e7,3.61888e7,3.3633206e8,2.5109754e7,3.8720722e6,4.883286e8,2.8913674e7,6.648548e7,8.8070266e8,6.2554908e7,4.2617418e8,1.0374283e8,3.14521e7,6.479706e7,1.915583e7,8.849896e7,1.9724488e7,2.6666408e8,5.3650732e7,3.551447e8,4.6917172e7,1.679007e8,1.1835531e10,2.5692733e8,1.5109992e8,1.2712052e8,7.16097e6,1.9853322e7,8.714188e7,5.532187e7,3.894047e7,1.9656666e7,3.0417672e9,1.6015086e13,1.2650639e7,3.493071e7,1.5289125e8,3.305013e8,3.0882848e7,3.2246413e8,1.5331382e7,2.8209267e8,4.1044265e9,9.960537e7,3.4378628e7,3.0039698e7,4.5752424e7,779861.4,6.7727905e10,1.1629446e7,8.051937e7,7.8438784e8,2.5453426e7,9.9667144e7,6.1498508e7,1.5583511e7,4.7374203e9,2.3642063e9,3.997918e8,4.0602586e9,2.383554e8,6.1800986e8,1.1877013e7,1.8173248e7,2.096645e8,5.1885028e7,2.4036282e7,4.2402384e7,4.701878e6,1.14012056e8,4.093205e7,2.6307992e6,2.5033638e9,1.6259733e8,3.6316577e9,1.1450816e9,1.22276856e11,1.471212e7,9.6657e6,5.0243115e6,1.4746833e9,2.5568718e8,7.4404024e9,5.1055835e6,3.6893668e7,5.7159035e6,2.059546e7,1.0449757e8,3.7174655e6,8.454754e8,7.631091e7,3.1899702e7,1.077435e10,3.6847076e7,2.2731266e7,4.900632e7,7.0374e9,7.104075e8,6.17541e6,2.0543916e9,5.972089e6,5.56528e7,9.443681e6,181335.77,2.5088238e9,2.0155123e9,2.727848e7,1.6593215e7,5.2384015e6,2.6715978e7,2.3198723e8,1.3027011e12,6.40203e6,6.988046e9,5.135294e6,4.4444584e7,3.3592902e8,5.021462e8,3.8238816e7,1.4056723e8,2.9537668e6,5.176463e6,2.4898982e6,8.407555e8,2.0828422e7,1.632388e7,2.4067904e8,2.3448482e7,5.481261e6,5.8841748e7,3.0798208e7,2.789607e7,1.2868969e7,1.2355274e8,1.3629246e7,2.9532208e8,2.5424933e10,3.8632184e7,1.5728456e7,5.843123e8,2.1116717e8,1.6388587e8,1.3977058e7,6.550404e7,3.271841e8,4.7388955e6,6.202695e8,1.8748158e8,5.6100135e6,1.1959087e8,2.1556272e7,1.3565526e8,1.2537687e10,1.2868263e7,3.257569e7,2.249023e7,5.8451495e6,1.6514807e7,9.0301414e8,5.3878372e7,5.175892e9,1.4673067e8,7.638117e7,1.9815273e9,2.5056096e10,6.574169e9,8.4880986e8,6.6034296e7,7.757663e8,8.6344616e7,7.5346975e9,1.1389978e7,893519.7,6.794571e8,7.352635e7,3.0534464e7,7.962598e9,3.8214116e7,4.5698516e7,9.626936e7,1.4165936e7,1.2102451e8,3.6657677e8,1.5188864e7,5.435395e7,1.4050845e8,2.6991298e7,7.306079e7,1.5449504e8,2.4705474e8,2.0545452e7,3.0866144e7,2.7149418e8,3.3102734e7,2.231234e9,9.094879e7,3.451203e7,1.7279502e8,2.5246123e8,9.302421e8,1.595652e8,7.1357824e8,5.410129e6,3.979042e8,1.1799569e8,4.5208714e8,8.7723565e8,3.808205e8,2.2834096e7,2.455461e7,6.374613e8,1.3735013e8,1.7339824e8,2.5433056e7,1.551135e8,1.6197509e8,8.5489055e9,3.3890237e8,1.15462456e8,7.395731e9,3.776177e8,6.432558e7,8.593251e8,1.505173e8,7.523553e8,5.381333e9,1.0008664e8,2.310231e7,6.13924e7,1.8474886e7,1.5209575e7,1.8926196e7,9.8353304e7,3.59712e7,494418.0,6.8645976e7,1.5047975e10,4.366005e7,3.2366034e7,2.1995894e8,5.412763e7,9.253463e6,1.8402074e7,6.7040915e6,7.5644575e6,2.3382248e8,3.6287504e7,1.1219459e7,8.441683e7,8.797559e6,1.9861234e7,8.822679e8,1.4924586e9,5.7481564e7,7.267523e7,8.0775465e6,2.6841254e8,6.543512e7,1.4965952e8,4.2501207e9,1.8038874e7,554994.0,1.7842906e7,4.557399e9,8.592992e6,5.908239e10,7.591342e7,1.2461798e10,1.9585912e12,9.212234e7,6.960308e8,5.831161e6,1.2809612e9,5.507399e8,1.1930551e9,5.655961e6,2.3249118e7,6.948693e8,1.1210897e7,2.4225541e8,1.00623046e9,3.8459412e7,7.783632e7,2.2597902e7,1.4432864e7,7.675073e8,2.6659686e9,7.1648545e6,4.685956e7,2.1075277e9,3.537198e7,8.641507e7,5.7996365e6,7.231872e6,1.6155024e8,3.68187e7,5.2803772e7,1.0139234e7,5.6476136e7,6.816482e9,4.374213e7,1.2815811e7,1.8612748e7,1.2525636e9,2.1045592e8,7.324566e7,1.6104512e8,2.5429394e7,1.37218e8,4.6846054e9,2.4781659e8,6.2103003e10,2.992858e8,1.0330441e8,4.427067e10,1.5254194e8,8.292829e6,1.616657e8,1.4318012e9,1.080379e8,3.2392376e7,3.2909874e7,1.0171995e9,1.0469298e7,4.791108e6,2.7389368e10,2.1065832e8,6.6516996e7,163085.25,2.3028118e7,3.374086e7,6.9619055e6,3.9856116e7,9.621906e7,1.086863e9,1.48191e7,8.172413e7,1.2520645e8,3.005623e7,1.6234884e9,7.387762e7,1.9542541e9,73493.64,2.214817e9,1.48346e8,665728.2,5.55425e7,7.17992e7,362292.06,1.0202882e10,1.03190534e9,2.8435744e8,6.3447844e7,1.7512928e7,1.4735258e8,6.4353434e8,6.5980004e7,6.3451788e7,833377.2,9.1572504e7,2.753156e8,1.9975824e8,215357.22,1.16702424e8,1.6564722e7,1.6723404e7,2.6577484e7,1.4332576e10,6.2437744e7,2.5505546e7,1.0735453e9,1.0982155e8,5.570328e7,4.5178486e8,2.429064e9,2.8337865e6,3.3128222e7,1.0398682e8,5.1230165e6,5.67964e7,1.4529258e9],"re2":[9.902315316794369e-6,8.965697809571109e-6,8.894168990089858e-7,4.087481239807165e-6,2.3813196923546767e-6,1.424530094218779e-6,4.8591398457462235e-6,7.861930027168672e-6,2.989978923439637e-6,6.2632842429527825e-6,1.3164674839074231e-6,4.325045866956491e-6,4.500108352463629e-6,9.707932943352154e-6,5.1040471360449585e-6,3.4864048213214263e-6,4.841828163597188e-6,5.307560137546471e-6,5.789789342924634e-7,3.3224044315789994e-6,5.590878292700419e-6,2.0331668627531132e-6,1.0548833339566433e-6,2.3845133819492583e-6,7.535083895503497e-6,4.435033026952816e-6,9.83383108248839e-6,9.832285289481063e-6,7.515477668352375e-6,6.642306524885442e-6,4.158289056172116e-6,3.1810443292753436e-6,7.532399628047372e-6,7.291299872681127e-6,5.773876646375357e-6,9.844277756264433e-6,7.91237046650914e-6,5.304831049135658e-6,8.35382297489079e-6,3.0053333831429664e-6,2.0942659062979775e-6,2.0953647810901547e-6,6.039638390163804e-7,8.148161285025854e-6,5.402691101937899e-6,8.80224269196347e-7,7.11175172935991e-6,9.854778167535938e-6,9.045552388355115e-6,2.215771145030293e-6,7.050444920598736e-6,1.9852660991059293e-6,4.078875637914503e-7,4.579529177323665e-6,1.1103661273235588e-6,1.846474254385189e-7,5.236397029013329e-6,1.5145819334066091e-6,4.077383856491836e-6,3.7095862568059016e-6,6.346707755957473e-6,8.623194798184726e-6,5.616200502397673e-6,3.187950795307526e-7,2.4117741240164516e-6,9.02042097262001e-6,1.8115271675517032e-6,3.1041650390026023e-6,7.344655658310795e-6,1.6641757618434218e-6,8.568237869840546e-6,7.795581157339458e-6,4.181406036099757e-6,3.1336119209377248e-6,9.255586316926366e-6,4.021651464957946e-6,4.951473322276119e-6,5.208088044978918e-6,2.305153434376477e-6,3.995522117982845e-6,2.036268053358751e-6,4.952191664529835e-6,2.819150492940225e-6,7.495491101926989e-7,2.7404350829710445e-6,5.9365662916758474e-6,5.422190159122341e-6,3.412914883609472e-6,7.995718212868248e-6,5.8764122495331836e-6,4.025703651921549e-6,7.507203986252165e-6,9.27690919590355e-7,8.480898723361785e-6,9.677467868032765e-7,9.147694309862586e-6,7.7278710580231e-6,9.133599465234138e-6,3.6297853761242e-6,7.5022312068403844e-6,9.589916024341074e-6,1.815450464265345e-7,2.111375181653195e-6,2.5926440160358625e-6,5.3840962940001086e-6,9.669857068761727e-6,9.570995193502568e-6,5.252056439928389e-6,3.680189359231414e-6,7.213137286967229e-6,7.771159700396093e-6,4.328996200666985e-6,3.6546589405891496e-6,5.1957473085065445e-6,4.987954750821455e-6,5.940165514107754e-6,3.692616390611692e-6,2.875170603566729e-6,9.696700900921952e-7,1.698923244544286e-6,3.7207203824013092e-6,1.9584767728246844e-6,4.335484983628068e-6,7.699399650610057e-6,4.810894364364642e-6,9.147131779553863e-6,4.5497140555123445e-6,8.82077184098102e-6,9.975437075481697e-6,3.225981020960276e-6,8.625764107076987e-6,1.8269788198791883e-7,7.654838331290246e-6,4.802878333948595e-6,5.101698974549782e-6,9.939333826883421e-6,7.335145038422316e-6,3.723946331278194e-6,1.7661828147659154e-6,5.5536186656437644e-6,1.0313368388964662e-6,1.9569430601302074e-6,4.975153465562896e-6,5.666845468828198e-6,3.5388736184439286e-6,9.645257108404879e-6,4.6753209693968604e-6,5.815631221187617e-6,8.904546509124247e-6,2.406114243663399e-6,9.219534206530758e-6,9.67668152369335e-6,5.100285436979281e-6,5.707907856342688e-6,1.712326946693399e-6,6.893715142732284e-6,5.372573291815714e-6,3.1666512201579837e-6,8.400946403971053e-6,6.322214852970576e-7,9.975175582568142e-6,7.687421333245856e-6,7.87589220483801e-6,4.261948318806499e-6,3.1176503199663766e-6,5.508604401735472e-6,6.816532503572726e-8,6.042083301771051e-7,1.8722360633484826e-6,4.7972423532043825e-6,7.129244259451493e-6,2.3848564352160496e-6,8.803016198278045e-6,4.480478504453779e-6,6.668387320108505e-6,3.0219768457462307e-6,7.313657679020573e-6,8.4170618570442e-6,7.910251674719143e-6,1.6793692504633196e-6,8.73671097508541e-6,1.5193224482503066e-6,5.789708246370971e-6,5.151220022360629e-6,7.176710314101303e-6,9.160041056271606e-6,3.078929312977118e-6,9.55697640298806e-7,4.301127686636655e-6,4.167511254285785e-6,4.575075314605233e-6,7.691335199600596e-6,2.389198991248752e-6,8.74749765953708e-6,8.724135935154226e-6,9.378434191236642e-6,3.968649626345498e-6,2.2712165059638955e-6,3.702559470467434e-6,7.47310183754264e-6,5.415155121173111e-6,8.514914549244468e-7,1.9215240629651521e-7,7.73991509986937e-6,4.551439039095878e-6,1.3451403105253935e-6,5.664957080288268e-6,2.1605040693862712e-7,7.3902065484170015e-6,5.639294629166646e-6,7.545504593374653e-6,8.13115421321607e-6,3.8162505285896835e-6,1.3780934293049797e-6,6.136983376855062e-6,4.889591766513662e-6,3.7033976419377284e-6,6.201492758145787e-6,3.937492960188185e-6,7.787410156253639e-7,6.2804972818074935e-6,8.289240536693292e-6,8.665282683089193e-8,9.111283840990538e-6,3.497457165382082e-6,7.96192397058676e-7,4.101127025438607e-6,2.48688489386394e-6,4.448116514465998e-6,5.566652518395894e-6,5.410844156589571e-6,3.423211114091762e-7,6.266871673542605e-6,6.337669166484939e-7,4.5175254220041755e-6,6.200187646559407e-6,8.01451461671264e-6,3.737680867203002e-6,4.0522438146170737e-7,1.0928459211385688e-6,9.364835400899779e-6,4.305886161951717e-6,6.212031855657358e-6,2.9263003190991755e-6,8.648946778003797e-7,6.403149572764836e-6,3.035115762637647e-6,1.2812929188265765e-6,4.202443948828232e-6,9.380961724351159e-6,9.52397031134218e-6,4.2479254549991e-6,9.280295033463264e-6,2.0594329011570835e-6,2.980465299086701e-6,1.202765327493871e-6,7.5394343150527535e-6,3.874717601988365e-6,8.963677112665222e-6,8.240466379079152e-6,2.3635755458561507e-6,9.583364951548058e-6,5.3071034101689634e-6,8.09577459457747e-6,1.4739300117893618e-6,1.5535115222443365e-6,1.1397129975865196e-6,1.1528228273150476e-7,5.158402916893924e-6,1.7705582356343053e-6,1.241308041882624e-6,2.2677509656168994e-7,1.4795006541519164e-6,6.793737063036721e-6,9.905301041395221e-6,3.388850611436656e-6,8.76625785582179e-6,6.413204919173389e-6,9.733980113258909e-6,5.860691875540852e-6,5.771561426485673e-6,6.075861335603351e-6,3.36345970336174e-6,6.077461983330948e-6,4.474093985678329e-6,8.709387413712714e-6,1.6926348334472064e-6,7.272705306249935e-6,9.042490289707816e-6,9.961960084354359e-6,3.373411439294443e-6,6.2554915012405904e-6,5.864173289577506e-6,8.069558827771611e-6,2.563301453409278e-6,2.684722788563575e-6,7.337858662811073e-6,3.2017852526943437e-6,4.468959671276288e-6,7.097317249117742e-7,7.634912822243256e-6,9.702740580876168e-6,1.7403747341720122e-6,9.054445128053723e-6,6.724598433907611e-6,1.7266279412150466e-6,7.018711782943748e-6,9.694371258145316e-6,6.5693098864577065e-6,1.7482494713663011e-6,1.3983539211742104e-6,2.020748707192399e-6,2.424866180030321e-6,6.508671711246163e-6,4.612770843988016e-6,1.0951309405225563e-6,5.263077655755462e-6,1.5050235097820099e-6,7.068712825978841e-6,1.1613011561149101e-6,3.8633286521416155e-6,9.225974885787447e-7,2.9001396030089855e-6,2.6564173042524067e-6,1.2610250961610437e-6,7.75674959800609e-6,9.880510967674602e-6,7.320967832117728e-6,5.555820511738456e-6,9.9811614342636e-6,5.19446262472875e-6,4.414531788800706e-6,4.3320918714970684e-7,6.324089169475599e-6,9.815187094532165e-7,9.544842436283985e-6,4.9867817882098175e-6,8.311996329137901e-6,3.6765344286803075e-6,7.4403592532084746e-6,7.152543536547056e-6,6.230641943487481e-6,4.2887385981597476e-7,7.65179909997409e-6,1.525700639953902e-6,8.469317843874343e-6,6.533545249286345e-6,9.002329358429631e-6,2.409536142518185e-6,7.745876277580836e-6,8.63381998360418e-6,9.593770197324012e-6,2.9195663107118854e-6,3.279562993486796e-7,7.0892674491362275e-6,9.920118158083546e-6,5.782295949167171e-6,4.301977944042617e-6,5.060808460237192e-6,8.622056293308607e-6,2.8676356080996757e-6,2.1218906277239827e-6,6.18027923700456e-7,6.145984410160799e-7,3.6237964741980414e-6,4.553299551357008e-6,1.0780946762535026e-6,1.8211927712617871e-6,4.291186388051285e-6,1.4066729287590542e-6,6.9364623554685315e-6,7.951136219672136e-6,5.221711867714433e-6,6.151828105960094e-6,8.4576086059132e-6,3.572626365521372e-6,8.29972268418113e-6,9.712574851174213e-6,8.994962831151895e-6,6.640587162570744e-7,1.1757621156125554e-7,1.379422070828893e-6,3.2816496646896045e-6,2.5860871986443825e-6,4.36893862962331e-6,3.0920018503990914e-6,8.604536926255623e-6,7.5943421504892675e-6,7.03783896808469e-6,7.380854957187376e-6,5.94948858709622e-6,2.7738233042436667e-6,6.059968287886292e-6,4.611713610175808e-6,4.6070019069169747e-7,1.8659296339757415e-6,1.8197500215571916e-6,1.2579621176753065e-6,4.342045656776561e-6,3.067305348520174e-6,2.4407233298520093e-6,4.697224254315491e-6,1.4916336793865805e-6,5.7547375421984295e-6,6.519132782934916e-6,8.429376463918865e-6,1.6809430022730766e-6,3.0499101052096457e-6,8.109111720005012e-6,2.467771103718589e-6,3.3585109958772854e-6,3.6465678066131204e-6,1.7374705564471205e-6,9.68569921166584e-6,4.072832781758736e-6,4.3860559749877344e-6,2.478884298978149e-6,9.006402717293557e-6,6.320200272358811e-6,9.526257067327745e-6,1.9075484237510755e-6,7.314802581092963e-6,5.914358092825727e-6,2.47310914387211e-6,7.231669512226776e-6,7.678550949225264e-6,1.310581884400176e-6,2.312986369564637e-6,7.736720966041698e-6,7.438650329373541e-6,6.68938272413429e-6,8.793264325940864e-6,4.7912722838478644e-6,7.828208008677523e-6,8.359927226679777e-6,1.9427921335068755e-6,7.604594798178634e-6,6.262617021322442e-6,3.611232869084279e-6,3.937848223262462e-6,5.724841468512093e-6,8.041226371932111e-6,1.2603996874946334e-6,3.633371725805823e-7,5.77256862586338e-6,9.261985137107186e-6,6.375454483509349e-6,6.143858490752497e-9,2.8159273992962332e-6,6.25814377620817e-7,4.4520816736214435e-6,7.0049476217197395e-6,4.880395288887173e-6,5.9109613533041176e-6,2.439158957825454e-6,3.572008388570405e-6,9.723740916591487e-6,3.4870304929512797e-6,6.237098714325163e-6,8.314248837333145e-6,4.130429626331814e-6,7.903662839966465e-9,3.4098818829891476e-6,8.8969545044771e-6,4.304844254734453e-7,9.010764729449484e-6,5.86766746899652e-6,3.694307331135698e-6,8.658004342409745e-6,6.6367233419584874e-6,8.947194835402384e-7,8.430336229288639e-6,3.975174452786018e-6,6.3670104422897706e-6,5.167173553666165e-6,4.0718119633004595e-6,4.3978020474500785e-6,2.689658316085575e-7,5.78920701703797e-6,9.805342351098354e-6,7.20053604369356e-6,6.483990380165841e-6,4.878044126249443e-6,1.8060239039820737e-6,2.0222962101255562e-6,1.2084957967595568e-6,7.831516350028649e-6,3.1813203698853887e-6,7.198384269506977e-6,8.408124813632442e-6,8.638100990091179e-6,3.219018250050288e-7,6.332923448610106e-6,7.207973196386502e-6,2.5343437544263496e-7,3.009400426190057e-6,8.909758550589665e-6,4.358724252202884e-7,1.156287937704106e-6,8.315306614116127e-6],"im2":[2.710414174687754,2.646061602308329,-7.416032440227278,-8.84820393932544,-6.887312946829205,-1.311986638274874,3.3401100869077247,4.822400159382429,-2.6196915839588586,5.844840125099399,2.929549397790028,0.41319097152613615,-5.344930300347683,9.644282735397542,7.569224894548768,-1.8520212909407423,-8.850928789994956,-5.86359857936568,7.957978369652295,-2.6585791862624504,3.0492357519329936,-1.1486981147853275,-1.37558423094168,-2.2657586309520727,5.371019271033322,2.567197361744501,-4.163159399139262,7.577464393847208,0.08595807277576029,-9.784896301871449,-6.1186659116026725,2.774434654805656,-3.614133845644667,8.094273876831927,-2.3872554815854796,-5.546395515498215,3.506611077099853,-6.178153232218538,6.784076372792704,0.2229060655970052,2.8419301908010013,9.479427663817255,-1.4424826187249948,-9.98547285418928,3.8092036086147303,3.6468791306174886,-3.0400371502944186,1.7388946059194623,-6.006096788518622,3.223999661519013,-8.89035465936108,-1.8305885846657493,-2.4691322384331205,-0.6064741007886418,0.5682296825049349,-2.7463408403006273,2.1025120048686397,-4.913586562218404,-5.475745038996744,-3.3225424373148638,-2.352601631753279,4.188418773681228,8.6574168240012,-6.93838288647834,4.069662717751587,3.4250814348803704,-4.6234085819631225,5.760957063599065,0.09829176514674565,8.767712177063881,4.020632401880471,0.9641396178186596,-7.350936383163207,-0.8841565574936574,-6.846057887950838,6.99257603801826,-1.152677928066586,-7.740077215843753,8.880749910178288,-8.787316599952097,9.533712483799622,4.269652857399828,0.881887642180839,8.662181374307274,7.588345666263244,7.401074753804593,-9.817776414921351,-4.833645005459417,-5.933639230132741,1.428144684915189,-0.35732489921602095,-5.099474794762919,-1.4280076805943747,8.473630449234602,-9.853317062665957,2.4849938150788287,-0.493689765853615,4.2194979289157235,-1.1209090653589264,-6.369579006397757,-9.559659127346807,-0.3788267158291614,1.8573752236157492,-0.10400044213842463,-2.398840112202709,-9.41168823805999,0.30714928655019413,9.667783054542372,-3.92987431252656,4.844699810230997,-7.267081172917718,4.385083896707609,5.93891996258529,-6.050297362298833,2.83653271625006,8.006275506848851,-2.4445621699635804,8.337761341559052,1.2782626484643167,1.9796890312513753,8.010911391846939,-2.055477734029245,8.12095320294268,-6.849158133733213,2.406980951844771,-6.185551230289619,-4.700675841491746,1.8232911451538047,-9.189786975721928,-2.299451596949198,8.65299742924002,1.9076346487290436,-6.611186693458226,7.548255004269542,5.660926237760478,8.242382175743085,-4.8596325061898575,7.704411493028633,-1.414443447787539,3.5743331844791086,-2.217888085893258,-0.3996008723906215,3.940998809904606,5.016911065617631,4.82930948724389,-9.878938656188048,-6.823515377127327,-2.4630863712458755,8.011925197536879,-7.3582311270430045,-7.888642471571526,1.6564679200429246,0.014970880368219142,8.033857448012,-6.329991803918054,5.61388324547198,3.2553480710452014,9.285259423822307,-3.9579928097771777,-3.133617570109446,-4.346481327726184,0.8835300152473842,-5.897307581047011,-9.88826970499634,7.697233272087921,6.675960849173212,6.000566715416614,0.07622704935077351,8.039330853949632,-6.2033244557233,2.2839021033870033,8.827598311831654,1.8540210348575634,-7.490844540051218,-4.548661913575609,0.5036178873392956,1.667417969295606,-2.5389236255158494,1.2854783069209201,-1.76058233132256,-3.531574931896251,5.239131401399501,-5.880030847724962,4.589984867100959,9.631738466244975,-7.083233079397456,-8.014757701459978,9.367308642926591,4.636254774468734,-8.22386965211734,7.5675533219014355,1.628089538687112,1.7404344579814257,1.3046534689471407,-1.5682655401759789,-0.24600557476095375,8.455691940615882,7.0548697592840455,-5.61737418887599,-2.028354918426933,-2.2290430368306424,-0.2743022737504184,4.4909739871345735,-8.37546998192071,-8.145874732066323,-6.732792869405886,6.655995831423457,5.416555908212377,-2.515201028869363,8.351892935391042,-8.13665301495362,-0.6368908046813893,-8.031765221234275,-7.749968896897457,-5.761140976473349,0.7844197006037277,-2.2442612908877413,-8.384053825535032,1.2317292350644582,8.924718500296631,-9.122253155177113,9.18508666655487,-7.030241325503597,1.8554606132623128,-0.9882692186924551,3.647941306493694,-5.883457966174445,4.5542671102098815,8.192569825491645,4.598457377559482,0.06389775593607894,4.515592462151382,-0.8735065615828379,-9.913984467253744,7.413343777244496,-2.1130197641455206,-2.519696074900242,-8.569031536221225,1.5372569367898592,-9.972225516880908,-7.691356977090365,-5.829508575433254,1.6311124549601956,7.255884414531025,6.828237050481292,5.009992744966272,9.440536223335897,-8.837785687231,-6.665472640134194,-3.229807082436535,-9.437984915259943,-7.607382409863172,3.912254207124592,8.042439104951896,2.6934130814494743,0.20903045221033523,-8.824044244167379,6.425288349843207,-3.4998915120246776,4.242077673426774,-2.293960289806652,5.07150077590012,8.367439902716466,-4.828011759392849,4.5210160953193785,-1.4220488117707362,2.1252715529302613,-3.366781561508616,5.9564607830385174,-8.109850826597416,-2.1978562559107857,0.1233374574892121,-6.52417978298832,-9.509215979834082,7.740327283173048,5.831923868196018,8.127738441963352,0.8411631614406989,-7.414243370910894,-0.9826139628957069,-6.153178569816946,8.514354631466649,-1.1308945984164218,-0.44403939429792594,-0.6009862365647507,-2.5348323044326593,3.092254795663072,3.0550299243057353,-8.87329443509697,1.0145389582633726,9.219201288357553,7.926135254086049,2.4191474693188795,8.143529401163846,9.093681485598644,-0.5040376726676339,-9.550159684795045,-4.738692323989242,-5.925740290651371,6.80991305592741,-5.9366243621432835,3.209038299760687,-8.746776455097764,-4.0229059674151735,-4.33227136634695,-6.470925414782089,-6.190503049585123,-6.055298915235941,4.1160770446121155,8.410474330745341,-4.642591004277237,-1.241735511989397,-4.15968016737577,1.6820282723279973,6.148874751866945,5.3490021677854305,3.3230710298812127,2.1615080030300255,1.5346979783677277,2.149679298574039,2.0308239025866435,-8.037542115406442,-1.1937885610191898,-2.880170146770147,-0.7537313753655361,-2.362344481165419,-4.558313959169043,-9.694107690102634,8.529940495830544,-3.901768415798042,-2.9676721733746962,-4.640799051131552,-3.8431359437352652,5.761579694538321,1.5051677065160352,-0.9699247684678429,1.2303178511537034,7.294797565286956,0.3920110311350271,3.098074424440254,6.2401183982793,-2.6748993595057824,1.1915538994320087,-2.5933590367799475,-0.4831795273706021,8.110629422035018,6.387609879289187,-3.1356162891483947,6.123467531903035,-5.932585774398533,6.561793974891266,-2.841826031937109,-8.3391560630456,-4.301598790613818,-9.813965205781471,0.6785461677080828,-9.54644334545376,-8.283520346032136,2.3507694041024294,7.442300449109446,-4.664503488150129,4.5034835203135515,-7.555636882515168,6.996846612993657,-2.7277231681127923,7.122709501230517,-7.367112039306749,-3.678288083461945,-9.719460392918881,6.658602678216155,1.395225071647122,-1.507527837833111,9.12278335900038,6.846395548898062,8.770479420296716,2.473437820124065,-6.963518086888396,-7.682302187000143,0.8312764161701143,5.350133777875863,2.682325952386602,7.121151542973326,0.7659673851892617,9.280678916409439,-0.2237732038519713,5.044376241997799,0.7367210056572109,-0.04139840483869506,8.365514534138278,1.4393431654062656,-8.80100098530517,0.793663031673919,-3.143739560867022,0.8233225333745509,8.799964655405393,-7.1500205010953,0.9836044175741527,-8.284378966204011,2.1657561995161743,-1.464453667307282,-7.2123826879290505,4.393987134698872,5.803312853429468,9.211173697342772,-1.1685305537518147,-1.7152078845039913,6.130700685359905,-7.924988902309695,1.550751125867535,7.667753298431187,6.1088142977019615,8.648852975623164,-4.533052615549449,4.698332427633487,-6.390019984091698,-7.4257341629267,-9.262061773921197,-8.916705113730963,0.9247822029900927,8.187744123062519,-5.881561267219366,-6.933284243579905,1.6406794561324105,2.759112963681938,9.669456516362324,6.03328641393151,-4.496412009584738,-3.562503804113028,1.1215431863670027,4.510229272431747,0.3041072893753167,-5.201743712416304,-6.151334124366503,-0.3218486830129752,6.23878400059575,6.318335510194963,-5.775030466121411,-1.947666067209413,-1.177453084222586,4.869462788110042,3.479475976479808,2.5790154717032276,-3.2424870523401577,8.392520629319407,-0.34775181837223457,-6.318402238398924,-7.1923373209195525,-5.401304507536777,-9.107649552845212,-3.7531424226047445,-4.676392122094377,8.339508961382208,-6.153514887063373,1.088688525400876,-8.651099069001255,-6.330742001205836,6.633942958792009,7.497477747294447,1.6977045789940313,-9.64397564809705,-0.6524561070363948,7.627577988069326,-0.9623821532739267,6.733221530042762,9.596334455288645,7.733929163394492,5.513585092169141,5.981536848560404,0.5926501943903961,2.2342334533107966,1.7344818401681206,7.315438337593893,-9.793241916467927,-5.38384864148947,2.8170019362190484,-6.67517182321763,3.871727776777883,-7.733082869440253,6.166999395205018,-3.673349619574598,4.58327428489012,9.569391084011677,3.089120821711692,-5.029509627250521,7.105308785765395,5.035620145609387,-0.5780447479235384,4.985149873034086,3.2511589952676587,1.7834018071166327,-8.64887478630624,-1.2090974704874569,2.9045921251725453,1.6342963120788507,-8.836533614429294,4.8312263682289025,-5.075494225366048,-3.1440122956016587,2.9796488975770696,1.8092757516589675]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl
new file mode 100644
index 000000000000..c8e76b0b7c54
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl
@@ -0,0 +1,168 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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( re1, im1, re2, im2, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `re1`: real components for first complex number
+* `im1`: imaginary components for first complex number
+* `re2`: real components for second complex number
+* `im2`: imaginary components for second complex number
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> re1 = rand( 1000 );
+julia> im1 = rand( 1000 );
+julia> re2 = rand( 1000 );
+julia> im2 = rand( 1000 );
+julia> gen( re1, im1, re2, im2, \"data.json\" );
+```
+"""
+function gen( re1, im1, re2, im2, name )
+ zre = Array{Float32}( undef, length(re1) );
+ zim = Array{Float32}( undef, length(re1) );
+ for i in eachindex(re1)
+ z = Complex{Float32}( re1[i], im1[i] ) / Complex{Float32}( re2[i], im2[i] );
+ zre[ i ] = real( z );
+ zim[ i ] = imag( z );
+ end
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("re1", re1),
+ ("im1", im1),
+ ("re2", re2),
+ ("im2", im2),
+ ("qre", zre),
+ ("qim", zim),
+ ]);
+
+ # Based on the script directory, create an output filepath:
+ filepath = joinpath( dir, name );
+
+ # Write the data to the output filepath as JSON:
+ outfile = open( filepath, "w" );
+ write( outfile, JSON.json(data) );
+ write( outfile, "\n" );
+ close( outfile );
+end
+
+# Get the filename:
+file = @__FILE__;
+
+# Extract the directory in which this file resides:
+dir = dirname( file );
+
+# Large positive real components:
+re1 = rand( 500 ) .* 1.0e18;
+re2 = rand( 500 ) .* 1.0e18;
+im1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "large_positive_real_components.json" );
+
+# Large negative real components:
+re1 = -rand( 500 ) .* 1.0e18;
+re2 = -rand( 500 ) .* 1.0e18;
+im1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "large_negative_real_components.json" );
+
+# Large positive imaginary components:
+re1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e18;
+im2 = rand( 500 ) .* 1.0e18;
+gen( re1, im1, re2, im2, "large_positive_imaginary_components.json" );
+
+# Large negative imaginary components:
+re1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im1 = -rand( 500 ) .* 1.0e18;
+im2 = -rand( 500 ) .* 1.0e18;
+gen( re1, im1, re2, im2, "large_negative_imaginary_components.json" );
+
+# Tiny positive real components:
+re1 = rand( 500 ) .* 1.0e-18;
+re2 = rand( 500 ) .* 1.0e-18;
+im1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "tiny_positive_real_components.json" );
+
+# Tiny negative real components:
+re1 = -rand( 500 ) .* 1.0e-18;
+re2 = -rand( 500 ) .* 1.0e-18;
+im1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "tiny_negative_real_components.json" );
+
+# Tiny positive imaginary components:
+re1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e-18;
+im2 = rand( 500 ) .* 1.0e-18;
+gen( re1, im1, re2, im2, "tiny_positive_imaginary_components.json" );
+
+# Tiny negative imaginary components:
+re1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im1 = -rand( 500 ) .* 1.0e-18;
+im2 = -rand( 500 ) .* 1.0e-18;
+gen( re1, im1, re2, im2, "tiny_negative_imaginary_components.json" );
+
+# Real components different scales:
+re1 = rand( 500 ) .* 1.0e15;
+re2 = rand( 500 ) .* 1.0e-5;
+im1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "real_component_scales.json" );
+
+# Imaginary components different scales:
+re1 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 20.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e15;
+im2 = rand( 500 ) .* 1.0e-5;
+gen( re1, im1, re2, im2, "imaginary_component_scales.json" );
+
+# Components different scales:
+re1 = rand( 500 ) .* 1.0e10;
+re2 = rand( 500 ) .* 1.0e10;
+im1 = ( rand( 500 ) .* 1.0e-10 ) .- 0.5e-10;
+im2 = ( rand( 500 ) .* 1.0e-10 ) .- 0.5e-10;
+gen( re1, im1, re2, im2, "component_scales1.json" );
+
+# Components different scales:
+re1 = ( rand( 500 ) .* 1.0e-10 ) .- 0.5e-10;
+re2 = ( rand( 500 ) .* 1.0e-10 ) .- 0.5e-10;
+im1 = rand( 500 ) .* 1.0e10;
+im2 = rand( 500 ) .* 1.0e10;
+gen( re1, im1, re2, im2, "component_scales2.json" );
+
+# Normal:
+re1 = ( rand( 500 ) .* 100.0 ) .- 50.0;
+re2 = ( rand( 500 ) .* 100.0 ) .- 50.0;
+im1 = ( rand( 500 ) .* 100.0 ) .- 50.0;
+im2 = ( rand( 500 ) .* 100.0 ) .- 50.0;
+gen( re1, im1, re2, im2, "data.json" );
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json
new file mode 100644
index 000000000000..da5b453d2c89
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-3.4266891076240347,-4.247801047365984,3.3584881208453368,-1.2019480715688413,-9.017512067607347,3.6917740994832204,-4.231380320098241,2.9793389591452684,1.215185199687106,6.769571768363193,-9.345148218680425,9.769677066497188,-6.001361065932618,8.548083149910369,6.660348242805437,-6.70846290779243,8.491909206669973,-7.570457453039645,6.1848721424772926,6.451812490263759,9.534215415826914,6.417786933394755,-2.0565344171049293,6.574761831489262,2.29299147779283,-6.197519527171824,-1.6008903917956978,-9.283644838133988,7.734143937029035,-7.308436223332828,-2.1722459911758296,6.647210744136814,1.6004763636909942,8.075298147224526,-0.5662464582393607,3.255350649779487,-6.52959721089786,-4.9316108945524295,5.031873570085438,-8.383859170551421,6.127039546244038,-9.158305667924076,-4.597699938574539,8.543995143665683,-8.97024052357499,0.5546478063400855,4.98614150976673,6.668837207948506,-7.3294562357264965,-7.189565916041958,-1.5965964095430056,3.6780239886360953,-2.1993948913484207,1.7456316179501066,-0.6909492081960718,-2.1311484685933575,-1.288850645171033,0.19504063351116585,6.3025758394049305,2.8738100179966075,2.9305714384573065,9.082391922065742,3.6280208927967106,-8.839444136794173,8.62612891208775,-2.409543543894401,6.014165862829287,5.784122880124832,-0.09011225241562926,4.7132405211837884,-0.5728217347930737,6.063389847493344,3.516646764135917,-9.714578938492558,7.824318396516091,-4.539834374836749,-0.3526664542813496,-9.606032903564257,4.396967355347039,-7.244959784474174,3.4772882052551743,-8.8841471622111,-8.505713591984438,5.41009838592603,-9.11774494443166,-6.222329094315587,1.4985775507437324,-6.374003560048145,-3.062338491097547,8.347715313114254,6.320616640359244,-3.994777545992969,4.575573936124018,-4.028838081430357,7.1581474759546,4.593172538956354,-8.153085830272282,-0.627657056000281,1.8054612795696272,-1.9763737060786752,-2.115292175366874,-8.230777063331345,1.9313201319561557,-0.342102195615432,-8.684779396776563,3.4032289258505273,2.553065554171443,5.2736931742729265,-6.261217637575484,-2.730635542977316,-7.227567837180371,-6.805368016826721,-0.32539723148013167,-9.369117601172308,-6.547717076836406,-6.181389362467076,-0.25516376471740543,2.879523805014104,-7.468293543100977,-2.20119413996467,-3.821855978038018,4.75519591762496,8.923325670451927,-0.8642094299648999,-8.794107303752671,6.182763985193219,-6.986847587728606,-7.338821721345341,2.8659518362486853,2.0976382606291146,7.094218086251317,9.568477867992542,-7.743410076676554,3.5650623314861427,2.1185659832367687,0.34522836065765894,0.8868641319508264,-1.0593469706202736,0.5848183427962397,-3.4250650356991263,-4.809827420765926,2.062602969158423,6.364427997179636,-7.962624026689154,-3.3509945110360073,2.3212071477837437,-1.3158610894301237,-1.25265199551629,7.872961812497703,9.083305444928381,-7.469631524315032,-2.2914455914209686,2.2266485675990726,-8.1277028838171,3.6031603461323574,-9.382552294359117,6.346965497688515,-6.019349311786137,-3.109757577544878,9.86401607781367,8.955982435453286,-1.932884651736785,-9.235170664069107,-1.8408996717351656,1.2038947717137383,4.266721854934625,4.442299008383834,-6.456034096215091,-8.97114517928786,-7.758627399733184,-7.654924141471131,-2.236154664209198,-8.289586465152306,8.48518125849942,-5.135298900281473,-7.451087781847987,8.88612428957774,-2.695764660366047,-4.108804255199847,0.8752393467909965,1.0158083047207906,1.0937476340637264,-4.32326754041326,-4.964571840951013,-4.757402013877607,6.953936033227048,-8.34511260572648,-3.5043473837043226,-6.369451698421815,-2.4161984498233258,-1.641193224858812,9.416779112148859,8.206885100297207,9.62641496490274,5.408058002504596,-9.999807215925166,2.2767090891153856,-9.451943966484782,-6.887389244422939,-6.242808337512054,6.474587352389264,-4.200106747090057,5.843783430509477,-2.02995411381508,9.26492701186201,2.4128231691453568,-4.635682609449294,6.425068921565035,-6.888834725787039,0.4933404828569916,-7.976375946133354,-2.990257336473494,5.869950521792651,-8.83812471615136,3.8016213917195874,-1.299060522982634,9.814301939526356,-4.447709682356125,-5.092704325974071,-1.9297020262631435,-2.877737721901365,-0.8231128638115734,3.154160054612012,-8.580555890885957,5.253666494944682,1.0693636728241191,3.311144982903091,8.224518678203914,-8.390885721927114,1.005801049739567,-1.4061021872349926,4.933532218726214,-6.144304401776575,8.331479380821158,4.24626621840469,8.634577248916482,0.8070725810128287,8.100533396057287,4.698975830770912,-5.89768911342607,-6.6478092182303605,9.893397310111244,-5.93414576480513,-7.376470014887642,-2.5335468791975906,0.2849909494130536,-6.648653903474139,-3.2168736845593093,-1.1159524852278917,-8.074901998516149,3.772703300933557,7.0922622663686745,-9.619727826130047,-0.8997872039001926,-5.056394864301335,9.820814570425995,-4.513087639443865,-7.680148199467165,-1.8222087989432545,1.8836015523693828,2.768405099057741,3.718354477317236,3.4640820398753718,-7.48538611196476,4.056992593101988,4.60640966035192,8.764583090020707,-6.98964589285395,-3.314718048138796,8.460315289037979,-4.262423983678632,3.733658256836467,2.4910806159800654,1.8982736711929,-8.606817446286108,-4.382738147880505,5.486914843514699,4.688411401943725,9.272281040834539,7.974748562546804,-9.795542884076287,9.320829439258944,4.235917099849484,-8.797743387521308,-2.6675272590127292,-8.45250101738992,-1.9898252477634326,1.6259978366063415,6.61223883351839,7.789085269712643,-1.9840581787562428,-0.6000375031949474,-2.6726890682781796,8.290103407537085,-6.419209615724519,-1.1210008578970658,-3.7906093239205436,-6.86468713801556,6.983524639722063,-3.537574440982385,-3.1872171047935582,-7.974081669291784,-2.7794264107085294,1.8968545763470814,-2.5942369039573165,-8.122678410750602,-1.3969189950295853,-1.7876887447586682,-5.5400128803757624,8.316059257611336,8.223387182090786,-2.0350985917943447,-9.156401260268318,-9.57467662549173,9.665715075707023,-6.329668554880811,-0.06274073532875946,-2.865572017437186,-5.922867957261473,1.4971516220443544,6.97921795283731,-7.436417194106371,1.7740996345926714,8.942348579196452,-1.2152604609876114,-8.690928341543437,4.57628269327677,-3.8752632156949023,3.4403075339807927,-7.981632189627222,6.723697307359732,-0.3707931004090419,1.6363736396182276,-7.34946259900984,-2.114123461672264,5.438457985474665,-3.414584967425074,-3.687402516831839,-8.192326459481013,2.120105784326782,1.375146466582855,2.2971147717107065,-8.353993078379967,-8.339968150385618,2.4157287339703704,6.517422835148341,-2.128355744584008,5.133168500540151,1.7828080271340987,-5.0440928228042425,-2.0550553236563607,0.4165217982502263,-5.965141172877506,-6.108890771352948,-7.321317441401147,8.282367562164197,-8.851953628929095,-2.2337041872479313,8.034052283101278,-3.0247373870471517,-9.125538071302245,2.2577261608936343,-9.770597995078049,3.4380174669537578,8.6924336747269,8.59995337577168,3.7891485753775385,-0.8546104280635287,-1.0798096508585342,8.492016156764972,3.0323103106250286,2.3596691822953986,-5.678538064779026,-2.765277008735203,6.60437818282108,6.931001545856596,1.3001957145770877,-2.6324224193050583,-9.26432148337332,0.7309870451178178,0.7529376244108086,3.1836468375974913,2.2433116335740895,5.34291544727199,6.483397610963962,-4.863902412046112,-7.8543570724301,-5.5233265574736095,-0.27620419170377986,7.255609478976982,-7.600120408609841,0.5288273632693468,9.32527775450469,6.611724990528042,-6.9270680015707224,7.907090720393338,4.733971120847526,-6.946543319348352,5.916057770600272,1.8575421661818243,1.0028897021795817,-3.2354020129360084,2.1350299653652964,4.72934136984227,-6.531807409398844,-9.770956392329813,6.067777324800431,6.68867148716258,-6.694747019027472,-0.9956085733470132,-8.43114821984177,-8.614930935748186,-3.7546585864184534,8.153497445909519,-5.70711856101958,5.377685923780643,-2.4352366508214107,-6.952017912760031,8.911515099234371,7.866976385578937,-6.593206707834289,-3.2136839939872353,-5.009243527625182,5.7699500332418445,0.9721380537642688,-9.666181359585318,-8.46370003115389,8.01678324343867,-5.939225598576325,-7.716385687439975,-5.517038469458444,-9.099460134344515,-4.505765229362593,-5.299973250508345,5.214965742343622,1.9140085088548453,-5.303788469557031,7.155864136356421,9.239657552639247,7.566936011443492,-5.634361940228043,-7.299986339481077,-4.385022091884769,5.566195332331061,-9.375226793776415,-7.566932634660319,-6.706614378301799,-9.798320505661035,9.647417166855472,-6.541093361998254,1.5735784241304884,6.926765126091354,5.948736176752378,5.833609903326922,-2.6137151734834436,-2.073827011345779,3.198087072017522,3.638667379205474,8.772300689144487,-0.5487460934939854,-9.089426495434527,-8.223712826289717,7.82222513900809,5.859829450885215,5.254609420708396,6.528249907664129,2.0900612067924946,1.660867824729662,-4.509382507392914,8.960243701324512,4.993825643405728,6.51439653407617,-4.45572073416288,7.962991764424235,7.723822580412389,-8.950425625967071,1.0091233439030933,8.836188930645832,-5.8210186132311055,0.3690256901364961,-8.597815270467715,1.5510468769233512,5.3021321115425675,-4.379794026543693,1.0803419389724311,-4.74361087390349,-6.209651187892485,0.14802243463079634,5.761014442492222,-3.7609268658582184,-4.588115026912416,2.279326540795685,-1.1288688539882568,-6.33352535950761,-7.01831538819383,-4.37880593731109,7.421841420714728,8.524852416534202,0.7338714146460141,-1.0619339995189954],"im1":[-4.877998241238711e-19,-3.719802343596229e-19,-2.593242079385347e-19,-7.662514530086609e-19,-1.8055316410086954e-19,-9.522712659503393e-19,-9.498983942442634e-19,-4.407508007187811e-19,-1.377085060444846e-19,-8.381197767615842e-19,-6.665527911143989e-19,-7.864613831152066e-19,-2.663496000223931e-19,-7.553949377813881e-19,-6.612044956232242e-19,-8.516095213528421e-19,-5.4426877852578475e-19,-9.000854961827651e-19,-3.973204991408674e-20,-2.323070685765467e-19,-2.251560025591347e-19,-9.329521238493226e-19,-6.889730315782541e-19,-6.942360161886849e-19,-9.259954921310532e-19,-9.582384598830648e-19,-4.437157380553925e-19,-7.302329904120865e-19,-4.1507163491865785e-19,-9.54699891214029e-19,-5.476602928303218e-19,-9.714863954564468e-20,-4.550201041264118e-19,-5.0742654621174334e-20,-2.9724188990055725e-19,-2.4220465632589617e-19,-9.999819032530235e-19,-4.658788377655566e-19,-7.288749236508657e-19,-3.8589514319207e-19,-4.624831400310765e-19,-6.469665795102658e-19,-8.866358617601216e-19,-4.72059757035578e-19,-9.998696916434085e-19,-6.771931787152995e-19,-3.997102461550152e-19,-1.0117341499122856e-19,-9.74074587269339e-19,-3.997023199227712e-20,-9.687089744657544e-19,-7.773672038313833e-19,-1.2463750544613907e-19,-2.0809999470044029e-19,-6.099554128427751e-19,-1.299069789650459e-19,-3.125051807529863e-19,-4.3277940294577093e-19,-2.174291482809959e-19,-8.471697278035762e-20,-3.9391836524019864e-19,-7.659605918551949e-19,-4.482653050820103e-19,-7.337930109436719e-20,-9.937053162015763e-19,-1.5355578345624355e-19,-1.5286117477847017e-19,-5.036374998189798e-19,-7.362786380589978e-19,-6.72999114271426e-19,-4.72632504319011e-19,-7.423606196027788e-19,-9.44500346530565e-19,-2.5007464873348973e-19,-9.48567024744152e-19,-2.3255195977309942e-19,-2.124799318150952e-19,-7.760181529088655e-19,-7.228324969792767e-19,-7.969882860977945e-19,-7.347932040725555e-19,-7.721303881063358e-19,-4.434566170366547e-19,-2.1249881993581322e-19,-6.944476937390052e-19,-5.941961592238175e-19,-7.9621537219427e-20,-1.7117105675713286e-19,-2.863946389540979e-19,-3.569671502062747e-19,-9.394326782479967e-19,-7.2752624764411445e-19,-2.0247414597847337e-19,-1.2351404480182194e-19,-5.550218699879898e-19,-3.6320392612687237e-19,-4.507305155207267e-19,-6.473650761549814e-19,-6.934893622378817e-19,-9.134481045510229e-19,-3.635581187891085e-19,-6.635061649235645e-19,-6.98211597146983e-19,-2.5172642109931867e-20,-4.976553607693783e-19,-9.774091976841586e-19,-7.909170171263615e-19,-5.389374158091804e-19,-6.680536449908823e-19,-7.378035180238539e-19,-6.75887357221642e-19,-5.280632520069818e-19,-3.9805706128088817e-19,-8.268271894969374e-19,-7.484080253239765e-19,-2.5644204332576707e-19,-6.559165835495018e-19,-6.943079264229228e-19,-1.7474256366395547e-19,-7.322920530747679e-21,-5.997629834368383e-19,-5.564490044425068e-19,-2.6498375118894206e-19,-9.002859317989735e-19,-7.184747436549328e-19,-3.918717150383977e-20,-8.632331300989272e-20,-4.125654746290272e-19,-1.1328459250106948e-20,-8.417526593039869e-19,-4.17517347901792e-19,-6.546314830779109e-19,-4.1746421217450595e-19,-9.07909390285625e-19,-3.8776736570893556e-19,-1.2971676421090052e-19,-5.948189399148609e-19,-6.781377023558799e-19,-2.6657950704050383e-19,-7.421951538926569e-19,-2.4884540199420024e-19,-1.6175255574034554e-19,-3.359253971022337e-19,-4.80580140500977e-19,-4.9120145579539704e-20,-7.506702457189526e-19,-7.79109644841812e-19,-9.184387666879365e-19,-6.266031881639585e-19,-4.820667100033827e-19,-2.6857155463457575e-19,-7.014512721743486e-19,-2.6919246845064086e-19,-4.1396034904489735e-20,-3.298005034323899e-19,-2.3776976721897716e-20,-8.715128363408712e-19,-6.776700026101651e-19,-1.4498479282959622e-19,-1.7955483674149287e-19,-6.182825753867682e-20,-4.869650832492316e-19,-6.048668505195659e-19,-5.078995944279128e-19,-8.567751009041317e-19,-2.7074705533491008e-20,-4.051881388038981e-20,-2.8751616335083166e-21,-1.25163186535327e-19,-7.666252857588367e-19,-4.690761972795593e-19,-9.734128858260072e-19,-1.4075742478464182e-19,-2.2836168713106e-19,-2.609887478121204e-19,-6.011118683485403e-19,-9.22536372264809e-19,-9.055418467779577e-19,-1.0394981394220649e-19,-3.1847875581742095e-19,-6.642318351616619e-19,-7.625947647670852e-19,-1.9172976576523405e-19,-3.856490077517567e-19,-3.2225674122148043e-19,-3.5527899781819143e-19,-9.56712306789737e-19,-9.814366644588938e-19,-9.783927509084667e-20,-3.88758446167942e-19,-6.151070860422165e-19,-1.951617423698271e-19,-8.382058826235741e-19,-9.821147017629047e-19,-2.654661837086736e-21,-5.837514199386428e-19,-9.788702163688545e-19,-7.928995846553611e-20,-8.70555823284103e-19,-6.068024095131972e-19,-1.427222128225847e-20,-4.330817514275306e-19,-4.789474422037385e-19,-6.170078967754493e-19,-8.931998633434799e-19,-9.731841081670566e-19,-1.7901304233498628e-19,-3.303839180107927e-19,-3.6678715182235404e-19,-6.567127557975468e-19,-7.185375696444504e-19,-4.2620204729414613e-19,-8.86583082878327e-19,-5.978990558888339e-19,-9.144930559300194e-19,-2.7931909777895073e-19,-5.585540012962462e-19,-9.107256638231777e-19,-6.298956573504503e-19,-7.723802582739128e-19,-4.820964383979739e-19,-8.857689305538946e-19,-2.1531691869783277e-19,-9.164956391240835e-19,-9.909926996775265e-20,-4.147239086546695e-19,-5.284894097849962e-19,-7.188222744110676e-19,-4.85672980642512e-20,-7.445916229557827e-19,-2.4828327874541258e-20,-6.694804904545372e-19,-1.909283233979542e-19,-9.059417134765183e-19,-1.9927451323253733e-19,-4.023235523499639e-19,-4.0476212113632285e-19,-2.7984322908982506e-19,-2.0864764072435494e-19,-3.344284709623091e-20,-5.250780707459124e-19,-6.987495244828074e-19,-4.2492763736093866e-19,-4.215144600328023e-19,-2.4583878596290476e-19,-6.6315379360118445e-19,-4.178239821011094e-19,-8.47302844027952e-19,-4.3201282294406054e-19,-1.3993155172562277e-20,-2.628397833337326e-19,-3.58319748207248e-19,-5.79272397701286e-20,-2.096603572320043e-19,-5.626701402220664e-19,-1.9180337356692046e-19,-2.7145595893672383e-20,-2.922462262623621e-19,-8.196961558419802e-19,-5.714019111657476e-19,-3.235459426510088e-19,-7.886085106237226e-19,-5.00165176935015e-19,-6.541885170105705e-19,-1.4927215647057424e-19,-2.0681074378844156e-19,-5.828733954627052e-20,-7.708164294989487e-19,-9.66392668505086e-19,-6.139870074980103e-20,-2.3064691611051015e-19,-2.7803302091324056e-19,-3.0798477823028594e-19,-5.484202744033753e-19,-9.907122392027505e-19,-4.772538445540305e-19,-4.2080923894577497e-19,-3.304249091384758e-19,-1.8381963659548596e-19,-9.488212930193348e-19,-1.8417617732535452e-19,-8.18153213080661e-19,-6.445057994488371e-19,-2.840332175847248e-19,-5.615535552552786e-19,-1.0427195384950129e-19,-9.991961778629943e-19,-2.3230187127824675e-19,-4.545370361131844e-19,-4.478575491210205e-19,-4.0833403909115845e-19,-1.2931427711492028e-20,-9.889029668798712e-19,-2.519278599633911e-19,-7.442791913521129e-19,-2.4671066256962784e-19,-9.9112158697382e-19,-1.2792579522787851e-19,-6.388037015398034e-19,-4.546320416590429e-19,-4.0915881548892655e-19,-2.562906376433971e-21,-3.317234998386376e-19,-5.337984309094082e-19,-8.023067725813636e-19,-5.979682998043334e-20,-1.1083258368355687e-19,-6.5907159833275355e-19,-6.975414493498374e-19,-5.817682451114157e-19,-4.289681676342776e-19,-9.05613548456024e-19,-1.7577999884712803e-19,-7.198296364025872e-19,-8.830131021556078e-19,-4.795388263324434e-19,-1.2751365097899537e-19,-1.0369974411436978e-19,-3.1835582195549883e-19,-9.688634266328297e-19,-4.908870638510328e-19,-2.5078141232404083e-19,-8.660665989628424e-19,-3.7755434568247764e-19,-9.912575145338636e-19,-8.99746010570329e-19,-4.536182031891451e-19,-4.650264846856132e-19,-8.96703919997491e-19,-1.7364497308521511e-19,-1.0523815422844785e-19,-1.5789553498506137e-19,-8.757989368982357e-19,-2.946011473458117e-19,-5.590167077738396e-19,-2.9242014704156874e-19,-9.7696085807681e-19,-1.3410523645178086e-19,-3.449626161731031e-19,-2.8489496829235617e-19,-9.375077910997397e-19,-8.226195265703155e-19,-7.756874874451417e-19,-2.6659609650720606e-19,-2.4513998152967034e-19,-2.709303891566275e-19,-9.274191783160667e-19,-3.042514984834288e-20,-9.976226027565703e-19,-3.3284716940548344e-19,-3.959044606359472e-19,-5.481430497932404e-19,-8.685521630385094e-19,-2.488040948212108e-19,-8.774188204854776e-19,-9.709451088326105e-19,-4.822704615610648e-19,-6.204098051489494e-19,-7.959643896483102e-19,-5.602200203225145e-19,-5.531706358214019e-19,-9.518271800293044e-19,-5.756528133720649e-19,-6.239213658643307e-19,-1.1845211658414358e-19,-9.888982252980313e-19,-2.392198729589783e-19,-9.778829778989777e-19,-8.087572874404527e-19,-2.274976511423006e-19,-5.8534607583075535e-19,-9.250865740364528e-19,-2.5967290175444525e-19,-9.60512937185778e-19,-7.55708580488259e-19,-4.000091121904266e-19,-8.599628233162222e-19,-7.961018791364781e-19,-7.554725447499867e-19,-1.0570250972531937e-19,-3.577130728215228e-20,-4.781771613855643e-19,-1.0058665078635532e-19,-6.94702118176508e-19,-6.344739511228708e-19,-3.787629270023663e-19,-8.506460927704737e-19,-8.878009971580736e-19,-6.892004882943711e-19,-7.329335031722853e-19,-4.2723682827053524e-19,-8.610209665522685e-20,-1.418176150501148e-19,-9.643477803563007e-19,-7.58379085194142e-19,-2.4704511486814463e-19,-9.705716256400305e-19,-9.524642821188314e-19,-1.838003228643116e-19,-6.5217524855554e-20,-3.7395306084739167e-19,-2.7951752795467503e-19,-6.595649798351518e-19,-8.625040382290883e-20,-6.391147736420275e-19,-1.1202011568456629e-19,-7.320826474447654e-19,-8.23944494436788e-20,-2.206536548319217e-19,-7.210682943430381e-19,-9.856012595762809e-20,-7.462805950954097e-19,-3.671366270854737e-19,-1.8558331085246362e-19,-2.703159878956231e-19,-4.8192888241914945e-19,-2.539595070638614e-19,-8.100710714620903e-19,-3.469780294838707e-19,-9.44638861616138e-19,-2.6280842742904966e-19,-5.827527758159244e-19,-5.591954248110424e-19,-2.172829563271882e-19,-5.279729952638868e-20,-4.0118617891842405e-19,-8.488139668890657e-19,-2.845287840675348e-19,-2.186281690442995e-19,-1.860550563651544e-19,-5.840177615040655e-19,-3.7310273625431324e-19,-6.865063132427702e-19,-7.310418566746129e-19,-2.9090210616254643e-19,-7.289857861315517e-19,-3.9349591027126434e-19,-4.229037881046626e-19,-9.880449856392483e-19,-5.510455816750137e-19,-4.348251373647714e-19,-9.582197812477001e-19,-2.685198067560135e-19,-4.3204727385931233e-19,-6.956340422187083e-19,-1.6189588193334127e-19,-8.861690086742791e-19,-1.469167242333075e-19,-1.5407272920530368e-19,-8.318366028598892e-19,-1.3113002555148202e-19,-6.502528630318098e-19,-2.6800746876445603e-19,-1.0210060301234503e-21,-1.1449692476129658e-19,-7.857148509568807e-19,-2.0968855313908886e-19,-3.975863038780869e-20,-9.884934705981018e-19,-5.103624636160398e-19,-6.16200180881298e-19,-2.5292575768314564e-20,-2.642710545453443e-19,-5.862837779610186e-20,-7.94743076423791e-19,-3.703305853935585e-19,-3.83068730987864e-19,-3.5274819934361716e-19,-2.2903060409497726e-19,-3.638313678979721e-19,-6.714504917840375e-19,-8.074982890617056e-19,-6.276482538217772e-19,-6.790013243004678e-20,-4.715008296387529e-19,-1.3718943647450967e-19,-7.662392860692962e-19,-3.5862666008081125e-19,-6.3765787889405195e-19,-6.063863442006096e-19,-4.1632104199039336e-19,-9.879972021927423e-19,-2.8931745200182847e-19,-7.40585130431448e-19,-2.870020047485139e-19,-7.596400809863954e-19,-3.93481802650876e-19,-6.588414980373345e-19,-7.303516140080523e-19,-7.2116902778358255e-19,-5.129945440799664e-19,-5.249714779192641e-19,-2.1672986823733755e-19,-3.1845363971473787e-19,-7.235186000519275e-19,-9.411702585656088e-19,-8.358950917269749e-19,-1.8138503115650596e-19,-5.09661912830898e-19,-4.766005195271552e-19],"qim":[-2.5000433e-19,-8.594831e-20,5.794845e-20,-1.4235257e-19,-5.5363295e-20,-9.715927e-20,4.8563228e-20,-9.7166814e-21,3.2150817e-20,2.5297016e-19,-1.0772163e-18,2.0622777e-19,1.4460589e-20,1.8858639e-19,2.9716507e-19,-3.5146012e-19,1.6333025e-19,-3.5885204e-18,6.17913e-20,3.9881802e-20,2.0911282e-19,-3.824614e-20,-8.368264e-19,-4.2600668e-20,-1.4586596e-19,-4.0619332e-19,4.5912776e-20,-3.7836792e-20,-7.906612e-20,-1.4771074e-19,6.2778537e-20,1.5860254e-19,6.802995e-20,3.5159483e-19,-3.9099672e-19,-2.3623569e-20,1.0112746e-19,9.476325e-20,-9.4746553e-20,-3.2636838e-19,8.017649e-20,6.4749016e-20,-2.3996883e-17,1.9906454e-19,-9.714261e-20,-6.981586e-20,4.1329045e-19,1.6481793e-20,-2.2551177e-18,-4.2486142e-19,1.6947664e-19,2.962149e-19,1.7167647e-20,1.7069112e-21,-3.687254e-19,2.3694493e-20,3.4992864e-20,-1.9491941e-19,1.0350577e-19,1.3675861e-20,1.9922399e-17,-3.8404577e-20,1.3157442e-21,-1.1457846e-18,2.0714121e-17,-9.5717256e-20,6.57909e-19,-7.532114e-20,-1.9737968e-19,1.2604118e-18,-5.3928754e-20,1.4323525e-19,-1.0938408e-19,-2.7629516e-20,-8.0770406e-20,-2.0120048e-19,-6.728612e-20,-1.8766641e-19,2.498961e-19,-2.3718652e-19,3.400191e-19,-4.447423e-19,-8.010265e-20,1.9884187e-18,2.3687312e-19,-1.7776611e-17,9.425494e-19,-2.229645e-19,-4.770535e-20,1.7669955e-18,-7.1030594e-20,6.304899e-20,-9.801062e-21,-4.407634e-19,1.6021847e-17,1.4993971e-19,-4.6232365e-19,-1.6436067e-17,1.1951537e-19,1.7845783e-19,-4.8562184e-20,-3.525543e-20,8.7643056e-20,-7.375414e-21,-1.1464045e-19,3.6404785e-18,5.505443e-19,-5.702831e-20,6.8095124e-20,-3.6014645e-19,-4.8847335e-20,-1.008249e-18,-5.663008e-20,-1.3619242e-19,4.9713793e-21,-2.1489228e-18,-1.6956172e-19,3.2964165e-18,-1.0770683e-18,-1.3362175e-20,-1.4557594e-19,4.257464e-19,2.3911907e-19,2.6685387e-19,-4.1569153e-19,2.8129152e-20,-1.736995e-18,-2.2962774e-19,6.698427e-20,1.3225989e-18,9.527553e-20,2.258055e-19,-9.452359e-18,1.935551e-19,3.6525327e-21,-3.5896585e-20,-1.208275e-19,5.9900575e-20,1.265487e-19,-1.6091108e-19,-4.818971e-20,3.86643e-20,1.0976842e-15,-3.629333e-19,-4.3609613e-19,-6.746821e-20,1.00536314e-19,-1.2539956e-19,8.6626276e-20,9.651099e-20,5.911328e-19,7.478237e-20,8.1773634e-20,-5.936294e-20,3.1441101e-19,-3.0470527e-19,-3.805132e-20,-6.1375137e-19,-3.263056e-20,1.2096517e-17,9.473947e-19,-5.652754e-19,-4.3817706e-19,-1.3629242e-19,2.6526144e-19,1.1279139e-19,2.9372032e-18,-2.975221e-20,-3.8264884e-19,8.1511244e-20,-1.4705226e-18,3.238444e-19,-2.5656335e-20,1.7123779e-19,-2.1388518e-19,-6.444772e-21,-1.3876391e-20,-2.1364138e-18,-4.4773758e-20,-5.3615178e-20,-6.0360565e-20,9.643553e-20,-1.5682877e-19,1.9282564e-20,8.094943e-21,1.0728982e-19,1.1706972e-19,-4.5179106e-19,-1.1449638e-18,-4.883148e-20,6.517887e-20,4.7857415e-21,5.1012012e-20,-4.8365958e-20,4.975678e-18,2.3440683e-20,9.648682e-18,-1.3222121e-20,-6.523189e-19,1.9649852e-20,6.526359e-20,-8.668223e-19,2.953287e-19,4.7739705e-20,4.382227e-19,2.52682e-19,-6.984442e-21,9.149699e-20,-1.6741991e-19,-1.7310786e-19,-1.1160423e-18,-1.4154256e-17,1.5888607e-19,-4.5330614e-19,-1.9806907e-19,-4.243013e-20,2.6063394e-19,-2.5323762e-19,5.002672e-19,7.786839e-20,1.0527162e-19,2.9288426e-19,2.0277597e-18,-2.4188963e-17,6.705812e-20,3.879606e-20,2.0055811e-19,2.079496e-19,-5.101746e-20,-9.645352e-20,-1.5646317e-20,3.8143857e-19,3.7087576e-21,1.0274853e-18,1.6108188e-19,1.377596e-19,-3.9051723e-20,3.068405e-19,1.138084e-18,-1.01525945e-19,-1.8608492e-19,1.77407e-19,-6.229366e-20,-9.359921e-18,-9.393625e-21,-6.386243e-20,-1.2364166e-19,-8.996825e-19,1.2273635e-19,-1.0479293e-16,7.2748555e-19,5.7300766e-20,-8.144081e-20,4.63771e-20,4.7812432e-20,8.3849334e-20,-4.9525294e-20,-6.796407e-20,-2.1275088e-19,1.132959e-19,-1.7583945e-20,-5.919374e-20,1.056551e-17,-4.7223976e-17,7.36901e-20,5.1039035e-21,9.442422e-20,1.8616042e-20,-7.5768545e-19,-2.7078264e-21,-2.9123902e-19,4.4984555e-22,1.9079808e-18,-4.8237832e-20,-1.739277e-18,2.0521588e-20,-4.265901e-20,-7.562493e-21,1.3149919e-19,1.3980382e-18,-5.5588786e-20,5.8404994e-20,-3.6584486e-20,5.403435e-20,-2.981816e-19,-2.6919769e-20,-1.8327967e-17,9.311484e-20,6.4965505e-20,1.8419211e-19,9.019778e-20,-8.55899e-19,1.1783033e-19,9.163408e-19,-2.3018528e-18,1.414577e-20,-2.2690332e-19,-7.466645e-20,1.729976e-19,-5.692144e-20,-5.4399817e-19,-5.7082655e-20,-7.448221e-20,-8.404674e-20,-1.2552264e-18,-7.9482783e-20,5.1002426e-21,1.9738168e-19,-1.4392759e-18,7.785909e-19,1.0248205e-19,6.251687e-20,-1.25002e-19,-1.0008939e-18,7.7601055e-19,1.6252938e-19,-1.9909052e-20,-4.8741294e-20,-1.435582e-20,2.224435e-19,-4.701096e-20,-9.534867e-20,1.1691324e-19,1.4409357e-19,4.3039277e-19,-3.1479203e-19,3.275001e-19,-1.3412214e-19,-2.9559858e-19,-8.110976e-20,5.1011967e-20,-7.421299e-20,-2.1873646e-19,-9.6389386e-20,-8.5169624e-20,4.9881354e-19,-4.4279785e-19,-2.0314737e-18,-4.5321546e-19,-5.6201515e-19,-1.5159814e-19,1.6013731e-19,-4.7728647e-19,-1.0106204e-18,-1.1246552e-19,6.2773446e-17,1.1532869e-19,6.463093e-20,-1.8814497e-19,-1.4084995e-19,-1.458699e-19,1.4010036e-19,-2.1108729e-19,2.7880947e-22,9.918468e-20,-8.6264915e-20,-1.5369743e-19,5.2364934e-20,4.0720633e-19,-1.422824e-19,-9.451636e-20,6.853176e-19,-1.9065648e-19,1.2753972e-19,-8.187301e-21,1.3512414e-19,8.7043977e-20,1.5079557e-19,9.095865e-20,6.048543e-18,5.8074314e-19,1.386382e-19,-4.2601957e-19,-1.2398985e-17,3.0452312e-20,-2.2057011e-21,-1.877299e-19,1.01594646e-19,-1.3391514e-16,7.284425e-21,4.3975296e-21,1.8819108e-18,6.2436394e-19,1.07101375e-19,-4.9453597e-20,-1.08320665e-19,3.2088226e-20,5.5687376e-19,-2.0032213e-19,-5.808915e-20,-8.6092167e-19,5.081158e-19,5.584507e-17,2.3270346e-19,6.534042e-20,3.2930215e-20,-7.1448604e-20,1.3472624e-19,6.5596e-20,9.142869e-20,6.881281e-20,-7.484827e-20,1.2584345e-17,9.61531e-19,-1.7836661e-19,-1.6821797e-19,6.148856e-20,2.845733e-20,-1.4226068e-19,1.2922144e-19,-4.933472e-19,-5.587763e-19,-4.3499013e-18,-7.587422e-21,-3.0424866e-21,6.06547e-20,-6.3518585e-20,-1.4157293e-19,7.434789e-20,1.6761616e-17,-9.3629724e-20,-2.2330621e-20,-1.0971315e-19,1.3923555e-19,1.02852364e-20,-2.360247e-22,4.3480174e-20,3.3756047e-19,-3.191335e-20,-2.9396647e-19,8.891531e-21,-2.1687864e-19,-1.5733911e-19,-1.7508515e-19,2.9733284e-21,-7.283816e-20,-1.6373568e-19,8.6503214e-20,3.498364e-18,7.8049966e-19,-1.1316571e-19,-1.8845174e-16,-7.0108685e-18,4.8796987e-19,-7.6970326e-20,-1.0564826e-19,-4.199768e-19,-1.845837e-19,7.616746e-21,8.630484e-20,1.7436277e-19,-4.9059307e-20,1.7936056e-19,3.6897803e-20,-4.4084235e-20,-6.544927e-19,2.9386118e-20,4.8079123e-20,-1.4842418e-19,-3.1271863e-19,5.519346e-20,-8.090051e-20,8.8357585e-20,9.291608e-20,-1.5939976e-19,1.3024842e-17,-7.783892e-20,1.7918014e-19,-2.7816226e-20,4.2383887e-19,8.093999e-18,1.1782726e-19,-1.1263094e-19,2.3108867e-19,2.855511e-19,-3.3956728e-18,9.06425e-20,6.4132343e-21,3.8369632e-20,-6.950351e-20,-5.7655543e-19,1.5988941e-19,6.0318934e-20,-2.1105907e-21,1.0328956e-17,-1.378378e-19,-1.1158196e-19,6.832757e-20,-1.6081564e-20,-1.1102267e-19,-1.5581897e-19,1.2467222e-18,-2.9470707e-20,-1.3190071e-19,-2.134969e-18,-2.2698878e-18,-1.903444e-19,3.5222273e-19,-5.3462596e-20,5.5685127e-20],"qre":[-0.88532686,-0.6302373,-0.5201342,-0.18138653,1.0300103,0.47090083,0.6597502,0.40152717,-0.14274074,-1.1295224,6.3646674,-1.1615766,0.8611304,-1.126775,2.4440625,-1.1741972,-1.9191321,-5.0009885,-0.9520376,1.3816253,2.3114905,0.67534435,2.6316395,0.7893302,0.42627463,-1.3309451,0.22409034,1.4163415,1.5689726,-0.8686311,0.2695163,1.1736317,-0.23183043,-1.9885767,2.3302405,0.37274054,0.8026888,1.5480676,0.73936445,-1.6073132,-0.6376458,0.98321986,11.739319,1.9073756,1.6264482,0.059137616,1.8910224,-0.6910769,4.6413026,1.8936799,0.30819964,-0.7605351,0.32993397,0.24534148,-0.34007043,0.39970785,0.20520218,0.11610621,-0.8417117,0.29005238,-7.696823,1.2313867,0.5097209,-3.726171,-19.286758,-0.51689273,-2.1555889,1.1401589,-0.024069512,3.0371425,-0.058421776,2.3428679,0.46208486,-1.0649524,0.80530554,1.8539687,-0.081831366,-1.1470299,-0.9652183,-1.2911993,-1.0229955,-1.8077666,2.2726765,-4.2500567,4.7537727,-11.186541,-1.9139878,2.0029976,-0.37387705,5.0510526,1.3756516,0.8354516,1.8648475,-3.671159,-10.61044,-0.7249331,2.8059871,-3.0890114,-0.27174073,0.43637654,-0.23170502,0.97705007,-0.2324365,-0.053310797,-1.4590366,4.2989664,1.9203337,0.6120713,0.96347433,-0.8040711,1.1198438,-3.267849,-0.04547435,-0.96907794,0.79036355,-3.9588244,-0.06265561,5.0579214,-11.314532,0.93822676,-0.57445,-1.9873917,2.0399973,0.44613168,-2.182181,-0.77906334,-4.1659284,-1.1486641,0.5551503,-1.3389108,1.7755407,-1.8540329,25.551268,-0.53813046,0.4227678,0.123981684,0.2377158,0.11207695,-0.24419451,-0.56849885,-0.60718256,-0.45862755,-86.65573,1.9953592,1.5045557,0.2913328,0.17216496,-0.16803853,-0.85605067,-1.1601433,17.931242,0.51721764,-0.3922612,-0.88900685,1.4244066,-1.9189793,0.6694495,3.951216,-0.31667024,16.064346,-5.7900343,-0.94059664,3.1126711,-0.3520681,-0.3043238,-1.1480833,3.9531224,0.71669304,4.460483,0.86500627,4.740476,0.8145235,-0.917396,-2.020496,-0.99235255,0.76290023,1.9245809,3.4657793,-0.4208268,0.15123962,0.10357633,-0.11957775,-0.8905669,0.5507915,0.47886425,-0.7687491,1.0460945,-0.8639647,-5.179216,-0.2855919,0.17820698,1.0454185,1.886898,2.158965,-7.31398,1.0136088,6.5337844,1.6939194,2.7785778,0.7294572,-0.6511445,-2.3170958,-1.9440457,0.34434187,3.1276472,-0.5281479,0.4938046,-1.1065329,1.5936338,0.13726805,-4.04943,16.351568,-0.68627006,-1.82931,0.93491834,-0.13535418,2.865296,-0.78659445,4.068217,0.23518798,0.75401527,0.42398107,2.9922597,17.778297,0.8861564,0.63978493,1.4033145,-1.0222372,1.2831602,0.15568855,-0.14681777,-1.1792921,2.544334,-2.6491444,-0.8013129,-0.9498266,0.08218859,2.3161614,3.297017,0.79539067,1.7437727,-1.7046142,0.9705206,-46.56053,0.37056443,0.028606672,1.2031662,-1.3592763,0.95825815,32.184383,3.1395507,1.3116767,1.251403,0.2376433,1.8190358,-1.0195024,-0.65851766,-1.1324685,-0.4474745,-0.27818,0.339048,0.48564747,-9.938661,19.62247,-0.5224722,0.7114147,3.0495071,1.3116077,-1.3312117,2.6586118,-1.661346,0.4423339,2.3807378,0.4343465,-7.0429225,0.6077509,1.3435451,1.3780991,1.788086,-3.8182502,1.1481502,1.2662016,0.43842968,2.002763,-0.6767674,0.8534227,-6.7769604,-0.3096789,-0.70146817,-1.0493299,0.56970257,1.6541952,0.318883,-3.5727124,-4.0540752,0.112990834,-0.6291199,-1.0510873,2.2102354,1.0200087,-1.7974824,1.0958917,-0.47404188,0.47774345,-1.9205959,-1.9202437,0.1409611,0.54488534,-3.4354727,-3.522132,-0.82499325,1.0712606,1.9522557,-3.9833267,-3.2474775,2.5244615,-0.0094279675,-0.69756186,0.7227405,-0.32165706,0.88942367,-1.0054704,-0.22040935,-1.0885043,0.7339954,-1.4038428,-1.3079594,-0.96801794,1.5175796,-1.0426422,0.68928474,-0.106048964,0.68270516,-0.77649605,-0.24106854,2.1659822,-1.1570737,-3.4732645,4.439502,4.6035175,0.3531077,-0.36553255,-1.7093443,-9.185446,1.4749012,24.318909,0.32499155,-0.68764937,0.4072883,-1.9741846,-0.43927285,-0.092069976,-0.8460254,0.6311003,1.1640501,0.85970527,-1.0331954,0.27545616,-1.7706175,-0.5985344,-1.1111702,-0.87820065,2.2105365,-0.44398946,0.87815803,-1.013438,0.737244,0.13652058,0.13807479,8.931233,1.7764517,-0.27493635,2.1993551,-7.7147117,1.5654753,1.0444914,0.508054,2.3656454,71.45723,0.22567633,0.08288054,-2.2441788,2.2725263,-0.8214838,1.0138056,-0.5987102,1.2489258,5.60354,-0.07339127,4.031346,-4.749911,0.567226,-34.507942,-0.9112007,0.7204007,-1.0105298,0.74222577,1.0226234,0.91043735,-0.525672,-0.17365353,-0.41538253,-9.088218,3.7366493,-1.0377704,1.5487524,2.1517766,0.968931,-1.2710575,0.18042809,2.9374518,-2.377822,-4.9184904,0.8392444,0.88659734,-0.6220149,-0.37544602,-0.90530044,-0.96645427,-11.083982,-0.71422595,0.7135184,-0.6306862,-0.90434426,-0.113718584,1.0694356,1.6250176,-2.613446,-0.84770805,-3.443102,0.5902317,-2.4624295,-0.69584614,-0.6782744,0.5532471,0.20807911,-1.6221739,-1.0423038,-8.919753,-3.0304265,-0.7462109,94.36545,7.5963345,-1.576318,2.6323247,-1.0919014,-1.3723959,3.7415495,1.0580589,1.1132381,1.2816246,0.73666996,-0.9731733,-0.589883,0.46408,-0.8583963,-0.37439412,0.49268878,3.3916209,-0.27334163,0.97387356,0.86953217,-1.090564,0.97753567,1.106422,-15.772989,0.45236212,-0.49075598,0.5233444,-1.967931,-6.883363,-0.6527656,-0.685541,2.0120502,-1.5000526,15.140067,-0.108944416,0.93999785,0.7985781,0.043172978,3.302941,-0.23719953,-0.6336958,1.0926296,-3.2350438,-0.55764604,-0.96361536,-0.015163244,0.9633404,-0.563211,-0.630546,-1.7685056,-0.115267575,-1.1939644,6.651411,-2.996024,2.175179,-1.8730353,0.08445723,0.1894315],"re2":[3.8705355787206948,6.740002813201379,-6.456964434964519,6.626445963985162,-8.75477849266513,7.839812289803547,-6.413609694452427,7.4200182593710835,-8.513232788148812,-5.993304296680108,-1.4682852978262755,-8.41070342209119,-6.96916611349534,-7.586326798971861,2.7251138700820086,5.713233417906881,-4.424869771336337,1.5137923084759564,-6.496458077496752,4.669726218786355,4.1247043925633236,9.502984904833419,-0.7814650983925748,8.329546178835802,5.379141301596933,4.656479685353183,-7.14395077363392,-6.554665020881389,4.929432120317239,8.413740217807735,-8.059793993711278,5.663796579456658,-6.9036507726628304,-4.060843555035262,-0.24299913761515768,8.7335566499743,-8.134655629411574,-3.1856564228203847,6.805674538567391,5.216071127712382,-9.608844593855723,-9.314606934404804,-0.39164965156798104,4.4794507891638276,-5.515233128243886,9.378933807064133,2.636743785327816,-9.649920818141979,-1.5791808544099126,-3.796611109081633,-5.180396608573192,-4.836100223541438,-6.666166553606205,7.115110126278022,2.0317826172750113,-5.3317657272957515,-6.2808816493631685,1.6798466295599734,-7.487808640664051,9.907899408387262,-0.3807508184182993,7.375742890194051,7.117662023019662,2.372259338828563,-0.44725657680990416,4.661593123061019,-2.7900337401883357,5.0730848407117115,3.743833822763726,1.5518667160454047,9.804935043779306,2.5880202922760436,7.610392139658735,9.12207761132603,9.715962626892026,-2.4487113293220126,4.309673487787924,8.374701639859826,-4.555412312867732,5.611030826177657,-3.3991237878894047,4.914432291549023,-3.7425974610560298,-1.2729474172999904,-1.9180020349162774,0.5562335143524315,-0.7829608937958561,-3.182232209599456,8.190763879029227,1.6526684794771356,4.594635008143397,-4.781578528090369,2.4535912623457925,1.0974295560089882,-0.6746324089534106,-6.335995103106944,-2.905603433760633,0.20319026398673046,-6.644058348439861,-4.529055522551532,9.129245317429486,-8.424109783788985,-8.30902296734368,6.417128008898413,5.9524067149615245,0.7916388484131804,1.3294904865509025,8.616142245685992,-6.498582654761982,3.396012631172523,-6.45408523046658,2.082522229549461,7.155621152524546,9.668074141009097,-8.284437541668023,1.5614204861788306,4.072480570014484,0.5693097049383944,0.660062050907424,-2.346121471202098,6.653069701807745,-2.3926818044953535,4.374185104831778,-1.9371173626996452,4.029962609026052,-7.936150516338534,1.6771406277153922,6.389005615949152,5.162479501713406,-1.5666751789737035,3.9955256076116914,-5.160899718911434,-0.3030538625221961,-6.624903133367521,5.011181406202343,2.784511183824792,3.730774835051438,-9.451960972953204,-2.3948875400544196,6.0247526473028685,7.92155037481087,-4.497337675978807,-0.07344497847090459,-3.990571724326384,-2.2272320447544143,7.9675441169558,-7.643025066103735,7.454552832754512,-9.196841211929563,-7.829468923515583,-0.41657082378653243,-4.430331051645078,-5.676443441236989,9.142451794509793,2.529586832815065,4.889345084286955,9.480872158105363,-1.5234168920407338,9.82017632338232,0.6140316084088973,-1.5467925745455595,2.054955976121507,-2.9669599208807274,5.2288172097420915,-3.9559665548807104,-3.7163868901722363,1.123744369107488,-9.008088216925982,-2.011249808297584,-8.969446326072921,-1.6148007019181279,-2.74535297865323,9.035995601074536,-4.199553633865685,5.174873441905419,-9.766792642565953,4.617173596121241,-0.7778235083005534,9.763646873501102,5.787103874845339,9.807340274320339,-9.146748349189641,4.854511511937748,-9.013523183219016,-9.934760644499082,-9.045781146414829,-7.977398001515779,4.05612337089469,1.2298100431446493,8.46031840716757,-9.209478372065824,9.00766474011202,4.34940563716032,4.458809878379078,-0.7394138664918408,-9.865548861568477,0.348451832841679,-5.5799254079583065,-2.4787460798432637,-8.558155753008801,-9.943395620410042,1.812659847531858,-3.0059907592892117,-5.895170477719558,2.962267485781231,-4.568461441365816,-9.38768569406486,-5.806486799590342,-4.322721502825222,3.5939936548185756,1.9697529027375396,-0.18287280753826707,-8.553411591360586,4.83139770306204,4.066260204366845,9.597490277727971,3.4252313390241067,5.654387108919465,-1.2518270676588212,-8.204934606102439,-3.816551081735728,-1.941390568823504,1.0541064047337976,-0.4826421448061069,5.9285996998670605,1.6714425529988794,2.3595176452811923,-8.045607508925132,-6.5392343935079005,6.460340332525533,9.577193112880316,-4.183469483875859,-2.4148969213199827,-3.144969710009022,-5.299136062961251,-9.090687800231219,9.819764608952184,3.4973959414572455,1.4252204119957383,-7.4148337256282275,-3.812313698372229,-5.8038927120470385,-6.1143947275147355,0.15842753339148707,-6.836994114341817,9.962393708163187,-5.525964634057012,2.366607726346409,-1.1645634781200602,-0.2508950216868815,1.201669811626191,5.407020322697964,-7.687154939128417,-3.78629295867386,-2.779711799034164,-9.632948772302543,6.853404388512878,6.781777002503478,4.07220703417636,-6.77116114807621,8.165230887990816,7.656488778726381,-0.3485461353905013,-0.3814701067409665,-7.764992117970822,6.474999378818115,2.874098094034764,-5.329067406116823,2.4900006111483926,3.182230484101108,2.565644922497434,8.440813782973613,1.0463481257575697,4.3704131752009445,1.222051926701715,-7.211405146455228,4.083907917064877,3.402085761389529,5.185589939838486,-2.0885871965585583,-8.531586690097255,7.361252165997474,9.661566240770501,-4.392803314521432,3.9415714379715077,-9.904237948934135,0.2936161808416937,-5.250592664794514,-9.42628471743755,-7.422914013062412,-3.482621096737928,-0.3627368067107035,-8.381409581146986,-2.320394831409782,1.5833968358656296,-9.921166869450966,6.025257518214204,6.531034020636223,3.1596295855715457,-3.46818082399772,1.7731562009851753,-7.276340434533095,5.863250681339796,3.970445808941509,1.3507458435696442,4.2300247234747275,-9.909961995486267,-3.2808529933271586,1.612591126693058,-2.3610867750201585,-9.9678227994259,-1.8997232569640872,-4.690164944834145,2.4036885061861835,-2.9763762581190996,-2.5073342118806767,6.65474699405253,4.107982708550949,-8.195012758607207,-4.654496061084785,7.846899617994147,7.395958451150037,-8.049111994575231,-8.215262178297696,-1.6556786413405984,6.190813203529036,-3.498795481981876,4.003296848371647,2.266970235255357,7.655197712272088,9.754600143792597,3.496433011987561,2.3968967089821582,9.464906688440852,8.76980195559397,2.5108506409002214,2.9510521954950963,1.0616532634998386,-1.8453257164047479,0.46054039129620605,3.8944111168391604,-6.284296448421833,4.887250656333215,0.9079546554942581,1.6378920358640023,0.2679981455171401,-6.5489569065116875,-7.464805265188623,4.377263235162413,2.5550256987259505,4.678311660433959,-4.523969607443574,7.0507828262438395,-9.67974599338854,-6.289521352933947,9.633961636800677,8.567550911151255,-8.109108467638297,-4.537429105819955,5.053573081496552,8.212547525476708,-2.5708547280586576,-4.420012235687524,-7.74346658591509,9.898484116543639,-8.485920234255659,5.139612690189594,-6.25993891473639,-7.820469251243782,0.9508223113687713,1.7069478001028706,-8.58260201509822,-2.5819104803778092,0.35844204445260175,4.218768462322128,6.635766870275976,2.5591682926945474,-1.1127714115306908,-0.12964847540718338,3.2390950604018656,9.084612987397481,-1.418624530659038,0.9871444204398845,-6.5039815053188565,6.395108985230536,8.123968080364271,-6.288890277502501,-0.9856852315120186,3.7634476405118775,1.799798256964829,1.6000554408793288,0.93230448904486,-0.27023569070133036,-7.256057693575901,-9.615576584677349,-7.824698653891802,6.378074198236213,-6.792865628851916,6.498039259221585,-3.533652270545124,-5.775233821457548,7.7889700320060555,-0.23492284863241508,1.2656637587639725,6.29407735044197,-6.308920592725553,2.8198919726672607,6.903145231503331,5.2670683616695175,-5.5180356501898125,-2.870225151451593,3.6230344136524923,0.7633762128236548,9.71528379981357,-6.437103178511765,-8.645590883672671,6.486250010034226,7.6792381688508655,-9.22083459512385,-0.7097607668766575,9.231262498398117,-4.503996513782782,7.942528876910821,-6.380258060424405,-8.54862933176052,-9.038581539069492,-5.208374659205508,-3.06751455165214,7.0062159938800015,2.2411147127559534,-9.347241383419135,3.695318132130529,6.475232186432596,7.813907645065502,9.426105978940043,9.198465050692153,3.2695559857326657,-6.865430552515656,-1.035864720858724,-2.4969872062625065,7.550629400926457,-0.07735867568771759,-0.5772550156245195,-3.531137372604613,-3.5615768668369423,6.930051258623632,4.886793170716629,-2.618786743119907,9.118034528269405,-5.875736051260567,1.2277999232004895,9.40280615482121,-6.112720040689242,-9.889434739615872,-5.632035752665905,2.4159318210224257,-8.542033331604173,7.385326286327821,2.586462807152799,2.00754693214275,-9.33327093371399,-9.45762874953216,-7.172641790372685,5.994491456037439,4.7491914267621755,-0.4138879326380831,4.62032750314042,-3.3843047831943114,-8.616473609283794,-4.553128555916444,-0.7254920978822987,-9.979687900843404,6.499569068416129,3.957650861281783,-5.149034568746778,-0.5911747612129314,-9.262735735571448,9.400223035121435,-7.289229553431616,8.547607698907793,-2.6030786335274625,-6.538996248451112,-8.367000083623955,-4.008489813782883,-0.3339497174732582,8.506490423940132,6.44411801112993,-9.761923503643796,5.9802478375760355,6.677651629568217,7.276416998691094,-1.288843286862404,9.793463817865064,5.304618510819196,-1.0551618628549537,1.4615391630809498,3.4120599112847607,-4.551357156847682,8.68926579618243,-5.6058999040149455],"im2":[-5.420041170029712e-19,-3.289421363001153e-19,-2.2080240849713417e-19,-9.760379046229825e-19,-6.458639985958688e-19,-4.0467300094275965e-19,-9.676887434554564e-19,-9.181267089458664e-19,-9.527686107490906e-19,-6.002602087616662e-19,-3.532334605633522e-19,-8.161831411835326e-19,-1.922720926682734e-19,-5.99305950048204e-19,-6.018721797341727e-19,-9.848125974731669e-19,-9.298280668834091e-20,-9.062586905986135e-19,-3.7991419052445444e-19,-3.0293609163234194e-19,-4.705554821876195e-19,-8.432729209314739e-19,-5.102992274736763e-19,-4.2997447649873624e-19,-3.316216002555379e-19,-7.011502164717352e-19,-5.163861002897602e-19,-6.906811761468645e-19,-1.6138319046849372e-20,-3.3167108256066816e-19,-1.5464077287827371e-19,-8.481717261050549e-19,-6.3127651544159e-20,-6.924696274520792e-19,-1.6833186917331378e-19,-9.627846674321183e-20,-2.209384814764809e-19,-1.0593572894558124e-19,-1.1369315609372534e-19,-8.190473781259071e-19,-4.829017690415103e-19,-4.460346067021781e-20,-8.761161942133694e-19,-7.149927013595261e-19,-9.441639651259655e-19,-3.786906070805898e-19,-7.876433274841312e-19,-8.374550032980267e-20,-9.771638948873342e-19,-8.729055695011237e-19,-2.944608272184716e-19,-8.614430239446438e-19,-3.090045321483659e-20,-8.977073252981107e-19,-4.0936933813443404e-19,-8.940278425450977e-21,-4.518428705505285e-19,-9.073130635582853e-19,-6.62462279835885e-19,-7.592285046314758e-19,-9.343531435661992e-19,-3.919957305355001e-19,-8.978057330879167e-19,-7.097685299209754e-19,-4.2883420166997526e-19,-5.661505838023158e-19,-7.80634610118609e-19,-1.0658774043407439e-19,-1.1126442340681698e-19,-8.656130930856312e-19,-9.608654526001072e-19,-4.750828858997108e-19,-2.4247630284667166e-19,-1.8441663210002623e-21,-2.034069535279729e-19,-3.9117910545452997e-19,-9.47085307486053e-19,-6.936453804122127e-19,-4.305215452867616e-19,-4.13470395190675e-19,-4.115109386171624e-19,-7.819181700775365e-19,-3.2703668337633576e-19,-5.45558294942664e-19,-5.0512423856394096e-20,-8.307975836833234e-19,-3.439717381323826e-19,-4.396889131885971e-19,-2.790986800272709e-19,-6.4882019324198365e-19,-4.456600945680966e-19,-5.099667414392739e-19,-9.567878100784623e-20,-9.811417096535891e-20,-9.66391049348874e-19,-8.094724137271697e-19,-6.393684541654942e-19,-8.715680084000882e-19,-3.701239071588075e-19,-2.410823584789659e-19,-3.443084478316159e-19,-9.83063054108622e-19,-1.291389681633448e-19,-4.1560686406562677e-19,-1.266117803651028e-19,-8.977398317021686e-19,-7.930186521072844e-19,-7.772525644594131e-20,-2.340818393206856e-19,-6.035017266368367e-19,-8.850807770406188e-19,-4.809394788123517e-19,-1.5759012710416531e-19,-5.055231314914879e-19,-8.948071441138912e-19,-7.827904667827089e-19,-5.525486618316913e-19,-5.083095687738116e-19,-4.738943970451504e-20,-4.1218398915607636e-20,-6.419424522383433e-19,-2.325795309283253e-19,-6.426160051607704e-19,-8.592948259682635e-19,-4.384359137945947e-19,-2.3624523281948617e-19,-6.785670316920234e-19,-9.180467879505963e-19,-6.433093598282759e-19,-9.189038782834754e-19,-4.495493371754345e-19,-2.7546871199016877e-19,-1.284491255770325e-19,-6.956945389932899e-19,-9.605057194783203e-19,-2.4005428049153345e-19,-6.059284637380169e-19,-9.98954968097267e-19,-1.4943157281137e-19,-3.997445428114236e-19,-2.188663052865735e-19,-2.6456874168063085e-20,-9.264646347247554e-19,-9.666888281393706e-19,-6.782117622323089e-19,-7.315149422922664e-19,-6.21966146702112e-20,-9.735154372341548e-20,-1.9868559014395972e-19,-2.3580109564912155e-19,-1.2449160893002188e-21,-7.15638034869186e-19,-4.9709468031975735e-19,-5.63917806976026e-19,-7.89894104647749e-19,-7.63964632947874e-19,-7.629449644352452e-19,-4.081450295177821e-19,-5.540559556092454e-19,-4.735454961997109e-19,-2.4241564247739823e-19,-7.172584801993101e-19,-6.119890771957975e-19,-5.815593938691448e-19,-6.328466215179206e-19,-3.4152724376426626e-19,-8.45201339015259e-19,-3.7796611899163225e-19,-2.0059836127115506e-19,-4.1057013650439015e-20,-5.998716546225441e-19,-1.0355224482477289e-19,-9.927349219123816e-20,-2.4289115502714856e-19,-8.523583312255669e-19,-8.704371149320731e-19,-4.460537610732556e-19,-7.407554105272434e-19,-7.917874381561993e-19,-5.423286271460038e-20,-6.976033503808966e-19,-9.991552451968533e-19,-6.395896043908538e-19,-3.846195080897671e-19,-5.050187425641086e-19,-8.003146878140089e-19,-2.1795889415834993e-20,-9.850906411317963e-19,-2.5298205534221744e-19,-8.533651679130206e-20,-8.329458400042256e-20,-2.2791836845828253e-19,-5.618098268625297e-19,-3.5501272724044366e-19,-5.026580276501636e-19,-3.477635870056313e-19,-6.643884938198949e-19,-9.036345117382506e-20,-8.95238122383187e-19,-6.013182945989547e-19,-9.746983654555462e-19,-4.9120634796505895e-19,-2.1028717555091849e-19,-9.745377576768043e-19,-7.0063298209928565e-19,-3.4305509958892867e-19,-4.952986709731439e-19,-1.8155092712299483e-19,-6.8428318874457215e-19,-2.5180071279565133e-19,-3.654317329123086e-19,-1.8436338458272961e-19,-6.88409464275824e-19,-8.703844948729852e-19,-1.166868217349858e-19,-9.449554504291428e-19,-5.065046236526745e-19,-6.625749636434712e-19,-8.966152892558866e-22,-5.675254746031732e-19,-1.0652560777138998e-19,-7.480667681786789e-19,-7.862924324271019e-19,-7.082291613772425e-19,-5.604654262889231e-19,-7.495788981837231e-19,-7.138170861161383e-19,-9.335002223565304e-19,-2.9784466413457156e-19,-7.802056176700578e-19,-8.515282142076634e-19,-7.854339587645614e-19,-7.152051093403178e-20,-8.778186043157493e-19,-8.165602794793917e-19,-8.94906578461134e-19,-2.589580809741676e-19,-5.84150164177435e-19,-5.552498041111897e-19,-9.884964422518291e-19,-7.079432740295738e-19,-1.9412116767679778e-19,-8.302922022528023e-19,-2.2795160518741422e-20,-8.367315130237154e-19,-9.41428426722068e-19,-9.15138253444428e-19,-9.430698090019978e-19,-3.01670846759347e-19,-8.173534769889535e-19,-3.6216558531170274e-19,-5.093832454685546e-19,-5.465668334518241e-19,-1.4333695710164886e-19,-2.362599667688038e-19,-6.041309880545548e-19,-4.742033390829441e-19,-1.4894093453469372e-19,-1.0429518476670197e-19,-7.036555554993262e-19,-5.308066965392512e-19,-6.9060856937288965e-19,-3.2020438204705405e-19,-9.51395191686526e-19,-8.094801682673699e-19,-3.371571111433988e-19,-1.0810658922401395e-19,-5.120511705877006e-19,-6.912834915610663e-19,-1.985313275061884e-20,-3.1093402952417583e-19,-6.371433197558615e-19,-9.679338709909589e-19,-7.772619731974602e-19,-1.6112267243443646e-19,-5.417751892801875e-19,-1.8353962327002728e-19,-2.21099239320085e-19,-4.841604607829054e-19,-5.162321985012424e-19,-5.734761541821594e-19,-9.85693868309222e-19,-6.638291133285401e-19,-2.3303287047213296e-20,-9.068855839905983e-19,-4.345932698341592e-19,-6.466307985133323e-19,-8.286204333610766e-19,-2.2502276893896845e-19,-8.761635617339311e-19,-1.653658340805131e-19,-1.9550141691155512e-19,-4.135609650416372e-21,-5.246278683357293e-19,-7.154448690016711e-19,-9.413869517849053e-19,-5.977069353910421e-19,-3.422392778922402e-19,-5.363284604338815e-19,-6.392552798427201e-19,-3.090071528772188e-19,-3.813476278617213e-19,-2.214664955650481e-19,-4.1883439042425967e-19,-4.650561800604257e-19,-1.439490745036759e-19,-4.27702263325958e-19,-2.108940577580254e-20,-4.725469203649333e-19,-3.56759078326811e-19,-7.182540572852193e-19,-7.34507428763374e-19,-3.903484393613115e-19,-4.2326613825283867e-19,-4.393213640476811e-19,-2.8530184543464676e-20,-5.277961173340745e-19,-1.3838004910905255e-19,-6.032620929692207e-19,-2.0673891382165467e-19,-1.3716387122248454e-19,-4.519410710657443e-19,-3.4019081910301796e-19,-7.406604742452355e-19,-3.7965542215203854e-19,-7.472863753270286e-19,-5.292501156719732e-19,-7.427987230025146e-20,-1.493106177948097e-19,-4.289738536061878e-19,-8.74587038866878e-19,-9.579085826083789e-19,-5.148786765721731e-19,-7.955165132345677e-19,-7.794631542204528e-19,-7.132405455480286e-19,-2.8499359711551055e-19,-5.82338436538633e-19,-2.6608678852571466e-19,-5.661820817176366e-21,-9.83049354318652e-19,-5.026386974180864e-19,-9.108352174918748e-19,-7.087314666465328e-20,-4.131369810789243e-20,-7.029138779952767e-19,-5.29664720778992e-19,-6.573584629833723e-19,-4.2736950856763903e-19,-1.369076567424654e-20,-6.522606667864751e-19,-9.304517527570169e-19,-7.325766202813263e-19,-3.899622252983433e-19,-2.1785543228416995e-19,-1.6269786927911934e-19,-8.077273098963463e-19,-7.10736919370619e-19,-5.939767327956268e-19,-2.653388919925698e-19,-2.0073380626188287e-19,-9.223686533873813e-19,-6.416347192471044e-19,-8.191144478102806e-19,-4.26008140907469e-20,-1.5566262942313237e-19,-9.312957698255346e-19,-2.4840219946519695e-19,-7.055448339252788e-19,-6.694022011540688e-19,-8.875244376141125e-19,-9.630949560155022e-19,-6.181890225481715e-19,-4.515793580840521e-19,-5.647996015475921e-19,-3.6895717052136125e-19,-7.470277134116402e-19,-2.8873738736545454e-19,-2.5354140220004377e-19,-5.729331430737927e-19,-9.136180399567728e-19,-9.76547728826002e-19,-3.1547446326766893e-19,-2.2925035699882247e-21,-3.1387950353276364e-19,-8.37184167070146e-19,-5.195238718192631e-19,-6.047940369110317e-20,-8.815944323885753e-19,-1.5587467715468452e-19,-2.000638954959213e-19,-9.869447341000083e-19,-4.332194874916845e-19,-7.947337593130904e-19,-1.8058457474830504e-19,-1.0513177303024147e-20,-6.93679982871176e-19,-3.646210345266821e-20,-6.700578557234269e-19,-4.905333864800562e-19,-1.3507936385321751e-19,-7.305877785934317e-19,-2.5272117373683413e-19,-3.4876842987721904e-19,-4.659397383016283e-19,-7.575735377691404e-19,-4.208028756577761e-19,-2.877805844856025e-19,-4.1590803854939497e-19,-4.4448541753967956e-20,-5.156093783368042e-19,-5.375445469962205e-19,-6.004839357916939e-19,-1.3329769359807621e-19,-3.269813529808984e-19,-6.827298270342653e-20,-4.2093372609282503e-19,-3.0608762978209804e-19,-3.503234398710256e-19,-9.88101367304278e-19,-8.421873745017629e-19,-9.576905915304933e-19,-4.950233609858028e-19,-7.420579101046754e-19,-3.088974049761806e-19,-3.7713305164693457e-19,-3.829822839904229e-19,-2.8733821989945145e-19,-5.8553603538591404e-21,-1.3730569522614511e-19,-8.486607057278554e-19,-1.739472612815728e-19,-4.775494388447349e-19,-9.392324792495461e-19,-5.764675738355471e-19,-2.8348124028795363e-19,-8.744257652581167e-20,-1.640385185826564e-19,-2.954999522719012e-19,-4.612723615578538e-19,-5.62370956259748e-19,-1.6464285372234289e-19,-5.68113312953299e-19,-8.190235087289806e-19,-3.6840811035990566e-19,-5.2225591470769e-19,-8.497335494537325e-19,-1.6846016306144053e-19,-2.1125713951643657e-19,-2.9170052249245607e-19,-2.6935548685625257e-19,-2.5650254658869224e-19,-8.512084561030044e-19,-6.168636431312369e-19,-7.817206036187986e-19,-9.267223377034334e-19,-1.1038808226914898e-19,-8.013956740131704e-19,-1.782627931801666e-19,-4.2962672486720226e-19,-1.037759610449186e-19,-9.090170982418586e-19,-3.388029025944717e-19,-6.29760150495296e-19,-3.4094697012614143e-20,-3.182969345722352e-19,-5.1789169247517977e-20,-5.168597890823185e-19,-8.956022059297972e-19,-7.957400397104387e-19,-7.555437828301455e-19,-5.643389701765616e-19,-1.5229481340621165e-19,-4.882922882120936e-19,-6.658510753809067e-19,-1.4165231650347999e-19,-6.73354984220481e-19,-4.456526049155779e-19,-4.4826275657671145e-19,-2.848459882177499e-19,-5.804342274739388e-19,-2.4249197799325394e-19,-3.3986509161949663e-19,-6.855438032572326e-19,-9.775292859919402e-19,-7.403906399900822e-19,-3.378584057814974e-19,-5.386059417891383e-19,-6.583133978814224e-19,-3.586875895521158e-20,-9.845582717277187e-19,-6.117357557165453e-19,-6.236831857841554e-19,-3.192970699286956e-19,-4.474624304504761e-19,-7.931711953193647e-19,-8.570723547141646e-20,-7.590388068999433e-19,-5.341304361094632e-19,-8.680461810151408e-19]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json
new file mode 100644
index 000000000000..db8bbbd97e80
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json
@@ -0,0 +1 @@
+{"re1":[-9.481950324747923e-19,-1.0197142664450144e-19,-1.6596790366216409e-19,-6.379436197330331e-19,-6.254369450062412e-19,-2.0851303470418572e-19,-6.454498323928253e-19,-7.1963321869299e-19,-1.2957987788939818e-19,-7.53310903357256e-20,-6.511660252642423e-19,-4.343385823150281e-19,-7.562367618256775e-19,-8.608241743233775e-19,-9.3409610118324e-19,-2.7051942581943313e-19,-2.5244836109852155e-19,-9.188083405626304e-19,-7.539283631863202e-19,-9.497049018027142e-19,-6.296294995113935e-19,-8.459328799925635e-19,-9.940062982164438e-19,-2.654922947371201e-19,-4.733882235235967e-19,-2.2370055689176194e-19,-7.531088126511008e-19,-7.146187751401776e-19,-4.1242998027409385e-20,-8.151986511712817e-20,-6.100671362539127e-19,-4.209982739343199e-20,-5.054925172440538e-19,-6.373384934688711e-19,-4.845759005433697e-19,-2.867095443391764e-19,-4.141785630794326e-20,-7.993038806674053e-19,-3.8158313130009906e-19,-1.8036501106332594e-20,-9.207289645190965e-20,-8.175121349687704e-19,-9.06441323380797e-19,-3.519728499777584e-19,-8.385941574105135e-19,-1.5518484485274753e-19,-1.7988027415170706e-19,-2.9350477283613833e-19,-9.61412644377968e-19,-3.475740542687036e-19,-1.1712545331962132e-19,-5.87440147753114e-19,-8.98770722434639e-19,-1.7095781534601896e-19,-4.690799143387543e-19,-8.909145711543048e-19,-7.269870823223608e-19,-2.8969396377628524e-19,-8.507389329810439e-19,-6.78861812792684e-19,-5.207118137140563e-19,-9.08603013116682e-19,-9.811524252691188e-19,-7.602134502944236e-19,-7.120880306557754e-19,-6.73345965312791e-19,-4.61375573166738e-19,-3.393303580848717e-19,-4.532068767211329e-19,-8.996439449609864e-19,-5.898487489358628e-20,-4.382781658066111e-19,-7.52690712661607e-19,-9.199821712787967e-19,-7.138656082148893e-19,-1.1688635197095367e-19,-8.641372230824258e-19,-9.396792708070099e-19,-6.762418015806171e-20,-5.030439936388511e-19,-1.9812007613523176e-19,-2.0008230254424042e-19,-8.045831095897958e-19,-6.281282802816999e-19,-3.6261447636458246e-19,-8.77753745328684e-19,-7.7176720541659775e-19,-5.678272069569335e-20,-5.94821515890978e-19,-6.914640934672185e-19,-7.372167996053248e-19,-2.4419018215850123e-19,-3.868914087985006e-19,-9.895887002373223e-19,-8.02782685434283e-19,-5.923891433361666e-19,-3.3197438637458244e-19,-3.176994193019017e-19,-1.518377951347303e-19,-5.674542961403968e-19,-8.221894818176617e-19,-3.8980758132392604e-19,-1.3753681091999515e-19,-1.7362757596210655e-19,-5.544846034387512e-19,-8.489610654495795e-19,-4.48982321753505e-19,-5.163921448424062e-19,-7.347171420005564e-19,-2.490333987814185e-19,-7.984688312144014e-19,-9.276628447177007e-19,-2.507057587952786e-19,-6.395256302172655e-19,-8.687350768070583e-19,-7.83970010817789e-19,-7.966052091800153e-19,-1.27506084883116e-19,-3.1292237893033926e-19,-3.9423238155771546e-19,-1.9481238738146813e-19,-1.8396634818939884e-19,-3.7807127595312975e-19,-2.320854785000798e-19,-5.350322484997944e-19,-3.440971499866247e-19,-8.510370016144299e-19,-1.739552523671577e-19,-6.141050348681225e-19,-3.177706901849309e-20,-5.7349511242857925e-21,-9.335112975205535e-19,-8.641199460048855e-20,-6.426442433837438e-19,-5.556264084638527e-19,-9.542893052997535e-19,-7.296990713040754e-19,-1.9366304512356616e-19,-1.6051730553953083e-19,-6.699730971529343e-19,-6.271200712455698e-19,-1.3632193646607872e-19,-8.181234494935519e-20,-3.4485925685572074e-19,-6.907607541970091e-19,-2.4316248973115573e-20,-5.333948720119012e-19,-8.824362031282719e-19,-7.55979207866582e-19,-1.80059126621287e-19,-8.827272366033202e-19,-7.047936590693066e-19,-1.1165619920934012e-20,-1.18901541616239e-19,-9.091967471222341e-20,-3.290852350084024e-19,-7.614306666319126e-21,-7.263805199869571e-19,-2.575608683561739e-19,-8.828508817757956e-19,-6.687520984456043e-19,-6.64323271465841e-19,-9.495641582466992e-19,-5.852199707335602e-19,-3.4735109568912894e-19,-6.593189799790627e-19,-2.472656641034925e-19,-6.779207319981253e-19,-8.11409570267545e-19,-1.934809310447555e-19,-1.4963260152359748e-19,-2.2521346235024355e-19,-2.9514330056217256e-19,-2.145867398678635e-19,-6.38127132803904e-20,-4.9269626594540486e-20,-6.479844755582395e-19,-9.399058921421854e-19,-7.17483872992885e-19,-8.379449991083987e-19,-9.814855548839058e-19,-7.693654043089529e-19,-7.001095175020098e-19,-9.37711265398624e-19,-8.001663714149342e-19,-8.999645628838771e-20,-5.672002235209007e-19,-8.982445433478459e-19,-1.063315528851544e-19,-3.042528297226548e-19,-3.5471116902975844e-19,-8.910131386895301e-19,-2.8573958750057195e-19,-6.767189820868789e-19,-6.288496746676088e-19,-6.098620772533979e-19,-7.071899869526475e-19,-9.919869624993073e-19,-2.5207069552724693e-19,-9.730829205736463e-19,-5.882634582345948e-19,-7.362048423886005e-19,-7.45594673633385e-19,-5.377906276888776e-19,-2.5348482707980403e-20,-6.76497106785672e-19,-8.539121223550168e-19,-1.9645807255866079e-19,-1.2501026637113377e-19,-8.866973361900029e-19,-5.14798084720921e-19,-6.768265471428941e-19,-9.992414225952834e-19,-7.436374086957985e-19,-6.083318407794002e-19,-4.479618223439858e-19,-7.892393076304588e-19,-1.8832710110140762e-20,-7.574674978883612e-19,-1.95777443036957e-19,-7.787989277058927e-19,-6.906435915613746e-19,-2.935852253382916e-19,-5.54347815914826e-19,-4.0790774833484837e-19,-4.477888098093182e-19,-3.960510221876601e-20,-6.098397372906527e-19,-8.825358750401667e-19,-2.8448884713833946e-19,-8.80759031054183e-19,-8.219769544798516e-19,-3.606631277543815e-20,-6.263309939960731e-19,-6.617986716372956e-19,-6.751234557689274e-19,-1.028559626562774e-19,-9.81220704568713e-19,-9.092782925883888e-19,-2.3952998542442708e-20,-9.076402805690292e-19,-1.9718875806514138e-19,-6.904969274587758e-19,-5.398060037158157e-19,-8.723087111570398e-19,-6.782724262330869e-19,-4.63511164134391e-19,-2.893911042632301e-19,-4.617131001290347e-19,-3.8381164908226964e-20,-7.871132940033339e-19,-1.4389089866514573e-19,-2.933084762912838e-19,-1.5549613395987983e-19,-9.61575317398674e-19,-2.2793471813207126e-19,-2.1993608671379118e-20,-9.628587209713787e-19,-8.896471010049046e-20,-9.276575331684387e-19,-2.1496467756770988e-19,-6.221873983668634e-19,-4.501671563090354e-19,-6.166707492628617e-19,-5.273985743324467e-19,-5.589370780147486e-19,-4.182238894888763e-19,-9.147413882434786e-19,-6.835577407487805e-19,-5.648523749138556e-19,-7.101218912464619e-19,-8.628402591176993e-19,-2.6377110206927934e-19,-8.873623376825102e-20,-2.7064943649866994e-19,-4.2365966425851077e-19,-6.793723569575943e-19,-8.486898766706719e-20,-5.139809786561231e-19,-8.010027751006402e-19,-9.573151361529924e-19,-4.167696097731532e-19,-9.638997115359778e-19,-6.466184864765654e-19,-4.788940124212693e-19,-4.299773684881349e-19,-7.175320237809881e-19,-9.598661146433011e-19,-6.120561267588029e-19,-8.562246734136352e-19,-7.827160282667447e-19,-8.669612893901421e-19,-4.636230106061819e-19,-7.441852894383077e-19,-4.965996453856978e-19,-6.588554518495031e-19,-9.723997088089956e-19,-8.265831225767817e-20,-8.302327878719235e-19,-9.101757317465093e-19,-6.9841224651774385e-19,-7.946819371704306e-19,-7.89402976165651e-19,-1.706080949750607e-19,-1.525708385660546e-19,-2.2112047603726727e-19,-8.416938285574974e-19,-6.086235548405982e-19,-2.590853149809039e-19,-4.060986468697343e-19,-4.745589354739166e-19,-2.965660877832365e-19,-6.389224695008939e-19,-6.177250496420123e-19,-7.488169209960981e-19,-7.293108073497756e-20,-8.113465187135266e-19,-4.043510159552871e-19,-4.0809256862748116e-19,-8.480671289814261e-19,-4.31470832585371e-19,-1.8403414761338778e-20,-3.5232953887115697e-19,-5.212568280601636e-19,-7.580132159829477e-19,-7.902928505389616e-19,-2.967331237953408e-19,-3.253758763589098e-19,-7.808124258952943e-21,-5.322742860390987e-19,-7.065913684753034e-20,-6.718164141934356e-19,-6.047723948428141e-20,-2.4591193428134097e-20,-5.764742517906019e-20,-2.909340041853926e-19,-3.978734712914429e-19,-5.690213443481216e-19,-2.6932794177293685e-19,-6.057239247086535e-19,-6.623981300658255e-20,-1.6262254529337895e-19,-6.474949764977783e-19,-1.1166797546582443e-19,-5.936266730318256e-19,-6.071271784148543e-19,-7.56675349267887e-19,-7.622223014315706e-19,-8.916326907440594e-19,-4.2755625948727884e-19,-3.0260882250443546e-19,-1.1223824749301627e-19,-4.023280051542281e-19,-8.125833673117738e-19,-3.66430679875862e-19,-9.96756281395478e-19,-6.701887892120854e-19,-1.5190490466125395e-19,-7.772105772072552e-19,-1.8862849639663527e-19,-1.9196470163730252e-19,-4.117969885531997e-19,-5.513163528252244e-19,-3.631345865141581e-19,-9.632189670083628e-19,-3.6154942479890643e-19,-2.642044025726612e-19,-3.7010904554036984e-19,-4.1310511734129676e-19,-8.213400810937108e-19,-6.513626720877323e-19,-2.8468079369102606e-19,-9.499977966041613e-19,-1.094892765240646e-19,-5.64664965032422e-19,-2.685999921058133e-19,-7.397281236659374e-19,-9.662423235979663e-19,-1.7862313266579112e-19,-9.632557542599973e-19,-9.11816802729005e-19,-1.9448150272711108e-19,-9.406790457298089e-19,-5.755343901755657e-19,-8.91534677394423e-19,-6.516011697711567e-19,-6.522682341080996e-19,-5.942102677997473e-19,-7.383238845002423e-19,-4.673976237315893e-19,-4.934384127059125e-19,-4.028882920446231e-19,-8.986386094691946e-20,-3.2633412374008855e-19,-7.835029074094974e-19,-3.0486251061216965e-19,-2.0670912394334997e-19,-5.721991208707247e-19,-5.340049498446061e-19,-3.297677395076436e-19,-2.5884547807379213e-19,-3.325571827885409e-19,-8.1791510312488e-20,-3.5498947078647763e-19,-8.63165692855806e-19,-2.8067120140734503e-19,-4.67064031493406e-19,-2.3979546323927436e-19,-6.326675939133827e-19,-3.7764084970460047e-19,-6.560060128691883e-19,-6.5521583415678955e-19,-3.972116971130809e-19,-7.465503293009214e-19,-5.023221828925107e-20,-4.909665716861812e-19,-1.1622899007784062e-19,-1.8288056737675618e-19,-9.633372559753577e-19,-1.0451793378957741e-20,-9.716126232847946e-19,-9.52853517322194e-19,-5.574881279247142e-19,-6.594192242817639e-19,-1.8658224461045815e-19,-1.7591745782573454e-19,-9.169632500354368e-19,-4.740369617147478e-20,-7.135846977232295e-19,-4.795607640143757e-19,-7.910602861480112e-19,-4.948967227686375e-19,-5.370685359130774e-19,-3.8121006427706195e-19,-4.453792873009294e-19,-2.3170526468381527e-19,-5.510672279806003e-19,-5.547628409964767e-20,-5.250412202014494e-19,-6.520498374636231e-19,-2.311857799426045e-19,-9.066328223409251e-19,-6.503657556700482e-19,-2.974671644669317e-19,-3.003117409115338e-19,-8.405765448708763e-19,-8.870396767468053e-19,-2.363827262297963e-19,-1.4694832137635595e-19,-9.441195214525166e-19,-6.572845934467936e-19,-8.053242378839266e-19,-2.787542088332127e-19,-1.6990548351952518e-19,-1.5291705655327715e-19,-9.966089163153578e-19,-9.696844949522166e-21,-3.8629548991067963e-20,-6.369411551366826e-19,-2.980538634043235e-19,-9.070789783937781e-19,-6.998438327929125e-21,-2.5217766382019114e-20,-6.929501273655935e-19,-4.62607846303588e-19,-7.157982669202114e-19,-1.912308064455628e-19,-5.4124532834089e-19,-4.3231675141174913e-19,-4.364632992523848e-19,-4.826682997685039e-19,-6.720939714564172e-19,-4.503875887016277e-19,-2.0033596215641481e-19,-6.229606955859668e-19,-3.4488125343884917e-19,-1.2150076009156554e-19,-7.334213641887255e-19,-3.7462889424277383e-19,-7.452612169474064e-19,-9.660509943340547e-19,-6.0540875638230856e-21,-1.4204639732566983e-19,-3.374143447929501e-19,-5.280782799489963e-19,-7.814327730206821e-19,-7.508479212964883e-19,-9.510883488413225e-20,-1.869077583249389e-19,-9.095449800600105e-19,-6.342763181429813e-19,-7.38754802439242e-19,-1.7364480718435583e-19,-3.3545488762825273e-19,-7.549354729829689e-19,-2.0860770477659963e-19,-4.068438862732793e-19,-8.569302046896121e-19,-1.206694544438499e-19,-5.380922961820082e-19],"im1":[-5.061245648905757,-5.126579721804648,7.054374618448879,7.716070365013863,4.072339079683987,5.389134044966756,2.119133610244999,-4.954643863406059,6.347578558362137,7.147620947621736,7.795710719735208,8.32869502407075,2.515200330338727,1.7179189932389107,0.8107035104994722,5.184384963097578,-6.995015849195609,9.690657798549612,-7.1557194469239604,-4.201728821631006,-1.9299498072787422,2.0119244594164787,-5.694898406151145,-0.6300466888429757,6.896822709090806,-1.6492223661392167,-5.681569014431167,-5.300851654660976,-5.891091442925786,-9.878114742424513,3.9414366822253104,-7.343245830208083,3.8050448726430393,-0.39170597564439014,7.655830420936841,5.35249965587518,-9.629872441667295,-0.486528416810323,0.0759416550005394,-3.4713546273105145,7.783837319640728,9.83362863660361,9.634560547634255,9.272507538922248,-2.1904919901210658,-4.143760364197497,1.3241706746590527,-4.130213205510513,-5.862507431974091,8.89482262527384,8.338014601025087,-6.385854897559719,4.631387943967347,-6.121486138244158,6.619344179422974,9.750137414693771,9.702373011685442,-5.7568373915493805,-7.314982006235593,0.07977981671643875,2.612366985468359,3.6606017481359476,4.811078407377188,-5.6467626373367015,-7.11385521884919,-6.284878076653973,-4.48578833400272,-3.520897652837429,-9.827951262058063,9.593263367860693,-3.0461612796528703,-5.957825500622471,-7.076190081245192,-8.131676057097179,-9.493205251774894,7.50033613632236,-4.218451883022607,-1.8856314758330726,2.453573373567462,9.219351559381227,-6.101240190160775,-4.10994005212615,-2.23656615064254,-6.887608988630561,-0.6914320768112692,2.9413443207460475,-4.713358025728047,7.687716238724846,-3.1535519420241576,4.096907816348905,5.504732890691928,5.599273348605422,8.131829230668266,3.3052033179258054,6.743147709878148,-3.4050305676047916,3.381421231658754,-1.5546850414449338,-6.524740631502914,-8.936565888191208,8.076739676097336,-6.965394559759151,4.265369124360321,-1.6578210201691572,4.2246931303198885,8.906654691441378,-2.851616227374967,3.6119561410085232,2.167198681001363,7.436818513974252,6.499666939605643,-1.2780183130477507,8.779403682393824,6.371523940320266,5.895540701157138,-7.345467310798808,-2.1567913683646456,8.893626173641959,-6.976937127128635,-6.373422524408639,3.5718744005974763,-3.96851316946476,9.673200675820667,-8.164604159416097,4.6853296547667505,1.4175446330930477,6.616995546700927,-1.3730401964795576,-5.932909957991761,-7.176321608815401,-9.339685802816234,6.790194019572034,7.478959177474348,-8.786547085813856,0.49715334144734413,-3.9267360814558883,-7.71406208057784,-4.461765781575147,-2.7524009142182155,2.81146295839215,8.204167906513547,5.819078169326563,-2.319624535752358,-5.4052962324109295,9.37284202675858,2.7900201917511964,-1.9112015158926194,-4.215135069329749,-1.5183269506055659,-8.985854936826803,-9.826095765880181,4.341512021361762,-6.178831742682151,-7.779073155095045,-1.5148523681583548,-3.891977637353441,-4.027680149920833,-8.860012814135509,1.981728403383645,-7.203211144583863,3.6925381399285193,7.324978305704924,-6.419945724013251,4.08396115764392,-5.902575039351383,4.969669640167,2.2313405650279527,-7.050436014517871,4.3732580961702325,-0.34857918437380775,-6.9680254407461,6.7720279341741225,5.696822531720553,0.22918120747712045,5.00548164820283,0.8211133751982747,-2.5127492976709975,-1.7354962694794533,-4.68228897198514,-5.557716916441349,-6.019368762260462,2.3429952524220923,0.24134671848304734,3.9821436475995675,8.132379836581045,-8.715309929574087,0.7679653483680546,6.740879561996142,-2.897109352857883,0.8242239965252516,-1.7417956925047875,-6.450377029511511,0.42852785315687214,-9.646135317749941,9.365186378443994,-6.297878845264662,-9.552861146383602,-5.692971766496743,-5.811406134830877,6.251355450516158,-3.436820117378872,-3.6831008918351476,2.199531533054241,3.8081361892819707,2.0594689713829943,5.6334124399191055,-9.138900687223215,9.22435016641634,2.463457274806691,-3.353607302759394,0.2524295318182386,9.637989582745924,-2.7675706086952934,-5.298745064852164,-8.710207809850344,-5.003308961159485,-6.949409639266464,0.29969064350267516,-8.717828093280618,5.467692654618425,6.367750772339139,-7.319030038136109,5.008079637747612,-0.8723120159479762,-8.868403180654003,6.025712917085151,4.234320620664844,8.312339031311527,2.4890695324737777,4.894143113842135,-8.20340036266131,4.027977174530706,4.679329831968337,-4.555478880519789,-7.0667704146909855,-6.3295414869792115,6.025900120071491,-4.066335109463488,-1.9764742209880115,-5.447787240918354,-0.6144766852307058,9.668644474861175,3.922390720782712,1.4099183809158529,0.3622708443956757,-0.4326550913107283,8.858987074491466,2.2418229032452963,-9.71082232678519,-7.5610192862072845,9.218067216670548,-9.547906087156242,2.40790746327146,-0.2834323305661641,-4.441966692558832,4.833014113816521,2.2430899967508733,-2.9338834021573,-9.218338896535842,-3.618645122723711,-8.699973049324282,0.7920776843863049,-4.5954754579624035,-7.736167698094524,-7.237371040638223,-7.137458947237576,2.6086229798001845,7.947371558337256,4.991890852311773,2.590535337144889,3.8134578821197564,2.070717713234661,2.9034783350767217,4.317661887978391,8.456362966101402,-2.2526173241753185,-3.2955237502145547,7.091672131752816,-7.696872778136832,-8.79091874206905,0.3556066972763272,-5.1102867471203295,-2.17206417048801,-7.110116094594748,7.798043217700723,-9.617245447790552,-8.712328920113073,-3.4403486058766823,3.705974817884117,-3.3530319896652694,-5.862853095034348,-6.474173583528242,9.40243550139932,6.406272916718343,-6.008852242806775,-1.2187577864969885,0.4840264363569684,1.2872029762617014,8.344326959742506,-9.602157840994128,-7.376579807239192,-8.308268801277114,8.404520548795944,5.157700788587398,2.1449005178420144,7.3426118446971635,-7.165750266334598,-4.362508389754578,-6.9257830081041245,-7.762363434306061,0.6142939724501453,5.192211839312792,6.274996413770211,-5.898044215688898,-9.183899866374103,-7.594299838810928,0.11106074054249682,-6.205076360356316,0.7428040043452953,4.849907337882279,-3.2935798883254837,-6.292858345497052,8.939197659436196,8.346260753173368,0.7595075944948899,-4.083846212780891,4.0703088460598895,-4.750083614240069,3.8474135928055695,1.4104355179339407,-7.380144803444615,-6.0280968993601425,-0.40073780177700513,-2.550982397088159,4.801616989512954,-3.4581093811818135,-3.107929583518132,2.2192969982958815,7.886490010029458,-0.2611146191161513,-1.661765854847685,-6.228872323586046,-7.094737254506396,-7.575599469067953,9.104253575733047,-8.544736394169213,2.9776527438402063,-3.4572359633310707,1.3044440488881097,-7.726449240893125,-8.53339352884635,8.536035925258034,-5.800054126673029,2.3378107770465935,9.781814260555326,-2.8371309816754264,-5.2847224812815075,-1.8182692480120437,-9.283394119002908,7.054418301722393,-5.246747120111468,3.9980908578624774,-3.9876728850534686,-1.4186366578070757,-0.8483698944905083,-7.1873821838581975,7.962049849348045,-9.447829068544518,-7.070728074231496,7.882665064694603,-0.3865931513116969,-3.6400420169737497,-2.247617379436056,-7.210539994487501,-4.02497101444625,7.949539826865486,-5.592492979306767,3.261434772895033,0.20041651847145303,1.5644145558289893,-2.797477059613678,-0.7654581624902423,2.388559524502698,-2.550419276078215,3.2738000349102663,-3.2063480915413933,-0.09421808649160823,9.546118362429944,-1.7131153832827444,-5.242265503894153,-0.06890169422066172,-6.701612914989077,-6.186776624063142,5.801668770470108,8.527556352107183,5.02336253000256,-2.406180663875988,3.005813278553564,7.791455712396502,-5.870480997626169,5.624834516440529,7.220012673334029,-1.4209864204809115,-0.8373173949821613,4.972954420105198,-9.166933382350578,7.181413406794771,3.779321143090524,-2.516602755737103,-3.4123028521717114,-2.8715372761096347,-1.2706030081474076,7.939151790273872,-7.616075192600295,-7.831415661478658,-2.460000784616021,-7.3007025627137985,-8.971441906550332,2.1137094272572234,-8.7375577122752,2.521515029071935,8.267359982648259,-1.5692090970291837,4.999071713512791,6.6788341742731845,-2.3386921748652494,-3.588468248700922,9.660113141679574,8.761587046831039,-4.672544246349613,-1.2631926043182098,5.328327508882856,-5.741615187768831,-4.303883363071916,5.768733208600132,4.061090440061932,2.056671420860434,4.718460148628417,-2.216049988906617,5.97463701513079,-4.098678477227606,6.759070871080684,-8.7207398920578,6.253304357221239,8.630754170443925,-8.373317000218385,4.167326523077188,-8.254152544077268,5.192656748105126,-9.81226397110812,-6.762875439461293,-6.973637433864006,-4.260383259094478,-0.39322570632144327,5.351235558886847,-4.8051167574329945,-3.04228545927322,2.0060207182030094,-8.49843544746939,8.236081629909236,-1.7450902670994886,3.3868936270075096,6.052948925134547,-5.4148865984915595,-1.5683033640276278,-9.12644008832424,3.171752938710746,-5.2625718132136505,-3.9161799669138215,-9.82524017428773,9.716700107721689,4.149550840089573,0.7648181527520173,3.9974908316494435,9.601119659672634,1.6398114692978822,9.501171013696236,-2.355017466302942,5.35065664436847,8.793566282872046,-6.5848523938686165,3.450327485701308,-3.711429825995605,-7.761676843208052,-0.7588777476851032,-4.61228010363385,8.124281235253836,-2.6691845161343464,-2.2107659413681873,7.268768357925062,-7.173240997644439,-8.3585643554217,-3.380293203765685,-5.014395663596907,-6.388480791676723,-6.053473701214904,1.350372982140538,-3.224207816614868,0.4922599076225822,4.891018518794645],"qim":[5.1926134e-19,2.0774161e-20,-2.1467444e-20,-1.4927993e-19,7.897451e-20,-5.4381226e-17,1.7845942e-20,1.4369055e-19,-9.267715e-18,-9.0303017e-20,-9.583211e-18,4.4755428e-20,1.3051594e-19,-2.3694757e-19,-1.0272161e-19,-3.3431789e-18,2.9095185e-17,-4.2162394e-19,7.285227e-18,2.0502381e-19,-8.20449e-20,8.2854856e-20,1.62397e-16,2.9220651e-18,-5.5457823e-19,6.3819505e-21,2.1256369e-19,1.05741806e-19,3.2105987e-19,1.3736771e-19,-1.1975754e-19,1.1666335e-17,3.4970405e-20,-8.1169553e-20,-1.4649884e-19,-4.3765005e-20,2.8151506e-20,2.8286922e-19,5.993425e-20,2.1115558e-19,-8.9434096e-20,-1.6670092e-19,-1.5170574e-19,-1.301368e-19,1.22771305e-17,1.3749987e-19,1.5175822e-20,3.7431887e-20,2.0189248e-19,-1.0947708e-17,-5.723266e-19,1.7582621e-19,-1.75767e-18,3.0257802e-19,-8.189787e-21,-1.0330607e-15,-1.06870236e-19,3.7202008e-17,2.3304203e-19,-8.955881e-20,-1.4546675e-16,-1.6068684e-19,7.725157e-20,-1.4113516e-19,1.1949362e-19,1.0243871e-18,1.3547835e-19,5.927199e-20,1.1299171e-19,8.962565e-20,1.3307908e-19,2.177849e-18,2.5102228e-19,1.1270036e-19,1.1587546e-17,-4.586885e-17,2.9124324e-18,-1.3808297e-19,-3.3465344e-19,1.06531064e-20,6.1735803e-19,-5.606688e-20,-1.1461417e-19,2.4200485e-19,3.913696e-20,-5.607328e-19,2.8815982e-18,-9.172564e-20,4.9784366e-21,-2.1524622e-19,3.8308175e-20,-2.9065982e-19,-1.1877793e-20,-1.1697705e-19,1.2478326e-19,-3.415242e-20,5.9514753e-20,-3.439676e-20,1.8935377e-19,3.6150753e-19,-1.4912005e-19,1.2776442e-19,-3.712593e-19,-1.1869968e-20,6.321393e-20,-2.0712914e-19,-5.1178485e-20,-1.3399333e-19,-5.147617e-19,-4.1234146e-20,1.0293814e-20,-2.3912724e-19,4.6093273e-20,3.2330658e-20,-3.2261142e-19,2.219759e-19,3.7551177e-19,-5.549658e-20,2.9963102e-20,5.8642756e-20,9.144999e-22,1.0173941e-18,1.2370023e-20,7.5913736e-19,4.2145792e-20,2.915563e-20,3.0629125e-19,-7.212211e-21,7.628802e-20,5.573475e-20,1.468806e-19,-1.645929e-19,-1.0446645e-20,-5.1525568e-20,-1.1186275e-18,3.7591914e-18,1.960384e-19,2.4238827e-20,1.3715511e-19,-2.9069572e-19,-5.7972167e-19,-3.642384e-17,4.0555118e-20,1.1106487e-16,-3.9021783e-19,-1.6749944e-20,7.104761e-20,1.1452927e-18,-1.3965515e-19,8.6054837e-20,5.743679e-20,1.6530434e-20,6.1283084e-20,2.0220195e-19,1.5655782e-20,7.2861603e-20,2.5017486e-19,1.9123508e-19,-6.88104e-20,3.4071538e-19,-2.805293e-19,-5.7558996e-19,3.1988567e-18,-1.3459237e-18,-3.617823e-20,-4.042216e-19,-7.8370536e-20,1.0628259e-17,1.2463165e-19,-1.9737767e-20,1.8176545e-18,-5.153314e-20,7.5181816e-21,2.8911875e-20,-7.208276e-20,-3.913255e-20,5.547738e-19,3.9213942e-19,-6.736063e-21,1.1683502e-19,1.5382368e-19,-1.1860497e-19,-8.146779e-19,1.0160428e-19,-2.173938e-19,7.1806163e-19,-1.4595456e-19,-1.764589e-18,3.9156887e-19,-5.8875375e-20,2.3250002e-19,-5.90084e-20,2.6965611e-20,3.771414e-19,-1.9477133e-19,-8.6595205e-20,7.5566165e-19,-8.0745074e-20,6.0096216e-20,1.2760546e-19,-1.1017228e-19,2.845969e-20,1.6771734e-19,-2.9668306e-19,-9.095787e-20,-5.0602944e-18,7.561259e-18,-8.832709e-19,-1.1494224e-19,8.28492e-18,7.5363863e-20,9.245834e-20,-1.6028038e-19,-5.4918524e-20,1.0867067e-19,-3.9837073e-20,3.874662e-18,3.082116e-21,3.5799273e-19,-5.5297515e-20,-1.1103757e-19,2.7284682e-19,-1.2085638e-15,1.3167142e-19,6.754263e-19,-3.966932e-18,-5.3698155e-20,5.1134897e-20,8.389173e-20,-5.776554e-19,-1.2651198e-19,-2.079772e-19,-6.882259e-20,5.3855227e-18,-8.2533e-20,1.4593326e-19,-2.9776757e-19,3.8729628e-19,-1.1274275e-19,8.4183024e-20,-3.910753e-19,-1.618731e-18,6.00552e-20,5.703623e-20,-9.13302e-20,8.4543436e-20,-3.6072548e-19,-1.6048255e-19,6.216434e-20,2.09036e-18,6.7916065e-20,1.9718603e-19,-2.6753047e-21,5.8957854e-20,3.332168e-19,-2.060997e-19,-1.2325648e-20,-8.0810983e-20,1.1801947e-19,3.2772855e-19,9.675861e-19,7.3730434e-20,-4.749287e-20,5.2461155e-18,6.985733e-19,1.5960043e-18,1.94312e-20,-1.2867831e-19,-8.3564916e-17,-1.2666455e-19,-8.0999154e-20,-1.757787e-19,-3.0900915e-20,-5.3684632e-20,-1.3059906e-19,1.684556e-19,1.0998143e-19,-1.651758e-20,1.3499204e-19,1.2636673e-19,1.1566182e-19,2.3707314e-19,1.699727e-19,1.3360197e-19,2.833336e-20,1.7005005e-19,-6.121329e-20,1.7557649e-19,-1.757501e-19,2.3205698e-17,1.6144698e-18,4.3349554e-18,-1.7940563e-19,1.8151578e-19,1.8035277e-20,9.8404146e-20,-1.8040609e-19,-1.35217825e-20,-2.3665462e-18,-7.639226e-21,3.4644059e-19,2.6056481e-19,7.01701e-20,-1.4964705e-20,-4.5881715e-18,-1.783196e-18,1.6526438e-19,1.1363158e-19,1.0374887e-18,-7.1688635e-20,1.19237e-19,-2.16906e-19,-3.980006e-20,1.7783294e-19,1.1719099e-18,2.0690597e-20,-1.1179205e-18,-1.8906723e-21,3.8427312e-20,-3.3733265e-19,8.998858e-20,1.2794314e-19,-1.1886535e-18,-2.509146e-18,-1.4327224e-19,-8.77859e-20,-4.2165105e-20,-1.8309392e-20,-2.7009189e-20,5.0355873e-20,5.1817704e-18,-5.956286e-20,-1.0592286e-21,4.2237086e-20,3.1911931e-21,-9.789749e-21,4.5952852e-20,-8.755769e-20,-2.4632717e-18,2.6727943e-19,1.2060568e-18,4.295096e-19,-3.696137e-20,9.290443e-20,-8.0621814e-17,-4.6990867e-20,-9.227563e-20,-1.03939186e-19,-1.476902e-18,2.0129745e-19,9.141936e-20,-2.620206e-18,-4.209942e-21,-1.2866491e-19,-2.8935617e-18,-7.8330534e-20,3.682585e-17,2.6420779e-20,2.4080378e-19,-2.1470057e-19,3.3577345e-19,4.312318e-21,-8.30797e-20,-7.72818e-20,1.4755473e-19,-1.0828915e-20,-1.08078895e-19,1.131107e-19,9.4722914e-20,-5.4290464e-19,9.383172e-20,-3.051136e-20,-8.9807406e-20,1.0116621e-19,-3.216386e-20,-9.9419316e-20,-7.4124366e-20,-1.4952265e-19,-2.1621388e-20,2.3046624e-19,4.98738e-19,6.331737e-20,1.3463852e-19,1.0416642e-18,-1.38074e-19,3.8493057e-19,1.1148771e-19,1.4383034e-20,1.0864405e-19,4.0839442e-19,-5.0308375e-20,8.548581e-19,3.9591268e-19,2.83239e-20,-9.13608e-19,-8.606568e-20,1.6850519e-20,-1.9426144e-19,-8.578386e-19,9.104528e-19,-4.0793026e-20,-6.864832e-20,2.1935175e-20,-3.3761564e-20,-3.996974e-20,5.3923888e-20,-3.9008766e-18,-8.162106e-20,1.5456256e-19,7.458847e-21,4.154877e-18,3.507433e-19,1.2690235e-20,1.6097576e-19,1.24202154e-20,5.605614e-20,1.4076788e-19,5.084386e-18,1.1256923e-19,9.949267e-21,-3.9069987e-19,-2.8185711e-19,-7.541772e-20,-1.0859743e-19,-4.292532e-18,1.7124529e-18,8.4197303e-19,-1.01265014e-19,-1.4978421e-19,-5.951377e-20,2.6429586e-19,-8.452911e-20,1.6189194e-19,2.2939817e-18,-4.2622014e-19,-6.363306e-21,8.4583633e-19,-4.0787432e-18,6.5791206e-20,1.1148318e-19,4.350628e-21,1.3345545e-19,1.1224133e-18,-1.49586e-18,-5.1000557e-20,-7.348848e-20,2.1151412e-19,8.960548e-19,-5.0422125e-20,2.5697056e-19,9.340503e-18,-6.413291e-20,1.3852173e-20,-1.8897843e-20,-1.6822256e-20,-6.022177e-20,1.9697354e-18,-1.9281028e-20,3.455543e-18,-4.3033942e-19,-1.5546914e-19,-7.459697e-21,-4.262972e-21,-4.748156e-20,2.3101554e-18,-3.5549483e-20,1.2709599e-20,4.450123e-19,1.4094367e-19,1.843993e-19,-2.3006772e-19,-2.1545219e-19,-4.8104126e-20,-5.948385e-18,1.9583984e-20,3.4697574e-20,-8.346737e-20,2.202631e-19,-2.4142385e-19,-8.0111085e-20,1.6759616e-19,-1.4716567e-20,1.2679381e-19,9.389216e-20,-9.416318e-20,1.9376195e-17,-1.274396e-18,3.0285053e-20,6.247318e-20,-5.0663966e-20,1.02100326e-17,1.7051057e-19,6.4642024e-21,1.5926967e-19,9.880871e-19,1.3128742e-19,5.0487146e-20,5.3960646e-19,1.9147302e-20,-4.405292e-18],"qre":[-1.2977363,0.6502849,1.2005955,-1.1884379,0.6988531,24.49425,0.6866416,-0.7585541,-7.798544,-1.8433676,19.210205,2.3014607,1.0687944,-0.406415,-0.08578347,-5.1240134,-14.203505,-3.086383,12.0646,-0.74965864,0.29413915,0.28652662,-45.60509,-1.2801468,2.358675,0.33338588,-1.011409,4.568903,2.081859,-1.2379012,-0.51301867,16.364214,0.6057591,0.053707685,1.3451538,0.79052275,-1.1151062,-0.1570883,0.012009756,0.9510684,-1.878018,-0.9904822,-0.99102986,-0.9549456,-9.048214,-0.72673494,0.33999977,-0.43231875,-0.86010396,23.072048,2.5942304,-1.3221055,3.3914125,-1.7479367,1.1233797,114.8922,-1.387719,-17.968504,-1.1145461,-0.010432815,-24.39497,-0.4671112,0.59858704,1.1056521,-0.98944956,4.8956113,-0.7329221,0.9001602,-1.2057278,0.99596596,-0.63695276,15.291379,-1.4798126,-0.89066243,-10.591325,26.638466,-3.9277272,0.41148892,1.8061861,1.2894629,-2.2757857,1.2692056,0.4532386,-1.0742841,-0.07285295,-1.1916031,6.6898575,-1.0840211,0.7428566,-0.7747222,0.71846914,1.9793524,0.84009194,-0.3745101,3.0354874,0.4240967,0.9882261,0.18503903,-1.0490097,-2.2305617,-0.9250682,-1.5678728,-2.1825914,0.2309247,0.6447548,-1.4197781,0.83869195,1.4051367,-1.4659288,1.5246148,0.72123873,0.4715116,1.7833153,0.67335945,-1.4147495,-1.2423906,-0.70147455,0.913025,1.0048529,-0.9140394,0.4102766,-3.0678184,1.0604669,-2.7435033,0.56625414,0.23205514,4.371606,0.25297126,-0.59763044,-0.7412691,1.3580194,-0.6996177,2.9215188,1.0600367,-0.5339659,5.2605844,-2.0122116,0.5859257,1.3013699,1.3468025,-2.4047143,28.021727,0.48231786,-30.553802,-2.8466349,0.5282704,-0.20001023,-3.0104856,0.3882358,-0.9754751,1.3832877,0.73968416,0.6527368,1.8008157,-0.20900081,1.2556362,-1.0632548,-1.1008643,-0.32553667,-1.2555271,-0.8182701,-3.307662,-4.700086,-2.996917,1.2705745,-1.4546088,-0.32028455,-8.880255,0.9834443,0.03681643,4.3175015,-1.2403681,0.7593213,0.03711047,-1.2233777,0.27071398,1.6935626,-0.59165984,0.8813625,-0.6770909,-0.760899,-0.3059149,1.7982547,0.46599838,-1.2819065,-6.4145594,-0.17065503,-4.3543224,1.3540816,-0.118240274,-0.57993,0.6900281,0.046998955,3.7303813,-1.6304725,1.5076835,3.5164118,0.632578,-0.72754925,0.99710083,0.9272638,0.93844575,0.77145845,-1.5299349,-0.46154025,7.2287455,-11.022685,-3.5788548,-0.5679834,6.373989,0.03834249,2.1398625,0.458127,0.8362494,1.5576912,0.56072766,8.121148,0.05056164,-1.6653776,-0.7603028,1.3325614,-2.0366006,-159.15388,-0.20688048,3.9522278,-4.7940702,-0.49270526,1.0859165,0.29209214,1.8654946,1.4761271,-0.6650632,-0.7548412,-5.02753,0.9366709,-0.69664145,-1.5590259,-0.94876933,0.29936302,0.7696071,0.2858177,8.488834,0.4631973,0.24422088,-0.037242055,-0.05188294,-2.7765696,-0.6256101,1.0786698,-4.1639667,1.021425,-1.4542112,0.5438333,-0.08976527,-0.89486885,-2.4794858,0.24049404,0.4812037,-1.0070246,-0.89862525,5.606488,0.0992543,1.036575,14.304012,-3.9565492,4.5436406,0.32966998,3.5518212,49.183853,-0.51587677,-0.38186333,-0.32949305,-0.29726836,-1.3679634,-1.0048152,-0.45293868,-0.37778905,1.1541092,-0.9595524,-1.2135712,0.044789664,-1.0351723,-0.36148897,-0.8726995,1.68297,-1.7223555,0.9654542,-0.60767037,-0.9525495,-8.792984,-3.3535786,-14.347325,-1.1924431,1.7735662,0.78123647,-0.16861054,-0.08733579,0.20696148,5.4479804,1.387921,-1.5904379,-1.1646298,1.1697397,0.5608036,-3.5434008,4.9822645,-0.8355079,-0.6470554,-3.230196,2.969846,0.15537116,-1.0545349,0.9859242,-0.84338725,4.050201,0.7817541,-0.14088972,1.0291675,0.08030514,-1.2627817,-0.64453554,2.2257657,8.282745,-7.71953,-0.13869728,0.5720137,-0.45453203,0.6648336,0.92980653,0.24922743,15.566092,0.6425243,0.067269005,0.49493665,0.5334313,0.45549288,0.7625042,-0.2545404,-4.3229823,-0.10525186,-1.5413558,2.0043695,0.91335666,1.253208,28.89536,1.6750982,-0.3231875,0.6546002,-1.5297122,-1.222612,-0.9798467,-5.6038055,1.0514416,-0.3149979,-6.364024,0.32270104,26.621101,-0.3149914,-1.1906446,-1.285995,-1.3547403,1.3196919,1.6369518,0.45958433,-0.11862824,0.8068792,-1.3320483,-1.009034,-1.2450283,4.9446096,-0.05238934,0.7605487,0.29157475,1.1130179,0.46603552,-1.1611173,1.8334888,-0.36737657,-0.022253618,0.6456125,-0.92166436,-0.15991424,0.3932272,4.0380836,-0.38488078,2.8081276,-0.015770847,0.96059775,-0.24751839,-1.3596398,0.0070741544,-13.3875,-1.6209264,0.5909818,-2.5787692,-0.52363586,0.38248357,-0.6453094,2.8708587,3.2720993,0.63653857,1.0882945,0.78276587,0.29442865,1.1143175,-1.4619552,-5.7796745,0.9303794,-0.38524452,0.5114581,3.9501305,-0.49671954,1.6198499,-1.237971,-0.8953304,-0.26934484,-2.018338,7.949,0.387166,-0.9646049,-0.68220234,-1.3515397,0.22103122,-0.5887644,-5.6454754,2.1486692,-2.4730976,1.0846995,-0.9907247,0.8225719,-0.32246438,-0.86422604,-0.84694797,4.5226126,-2.3559515,0.5288976,4.0112123,-4.8953648,-0.2312399,1.9043766,0.5552983,1.4304656,-3.7281775,-3.0024388,1.2690276,1.4849794,1.119387,-3.1239984,-0.52240366,-2.0003743,8.286737,0.72520506,0.47948784,0.056669757,0.55090684,0.54654944,2.9242375,0.28015646,8.324463,2.3029814,0.379824,0.38979346,0.64131683,0.69480807,-2.4289722,1.2768985,0.89135337,-1.3588513,-0.9016339,2.3483658,1.9181558,-0.72042245,-0.07918837,-6.1885014,6.676426,0.4668314,1.0270877,1.7410506,-1.2598909,-0.92627126,-1.1229376,-0.3550307,0.9051355,-0.9195182,0.17800695,-11.1641445,-3.1362007,-0.34951845,-0.3309374,1.2840149,9.602639,-1.4542097,0.38904232,-0.76118344,-2.626503,1.5848435,0.2976841,-1.0903239,0.14461674,-9.008552],"re2":[-8.298709865686263e-19,-4.0866152895512177e-19,-2.432999314473501e-19,-2.7874698057203886e-19,-2.364426433576713e-19,-4.969847266990573e-19,-8.597980908817547e-19,-2.8858796618631135e-19,-9.506673943415166e-19,-1.490842322556808e-19,-2.363398685330026e-19,-1.1834847185351682e-19,-4.201863141085638e-19,-3.463328036736736e-19,-4.276191709138877e-19,-6.073459652785597e-19,-9.910582096899924e-19,-1.3122506507564349e-19,-4.206455422145013e-19,-2.6601980277810457e-19,-3.1041172910383666e-19,-9.218863697295887e-19,-4.2287351711909165e-19,-9.160302283975428e-19,-8.882056221193943e-19,-7.656932604253535e-19,-4.359891374951165e-19,-1.8326075218272077e-19,-4.562049918329413e-19,-8.19643054282747e-19,-6.042859878644555e-19,-3.2248594033901915e-19,-4.71850441871841e-19,-8.442925710613953e-19,-9.800826142335038e-19,-7.375311874604121e-19,-1.8087411279301958e-19,-4.888258623190795e-19,-2.1641320313607038e-19,-8.293245441248866e-19,-1.4835074421931895e-19,-8.455628883031432e-19,-5.735511912485975e-19,-9.546652698652463e-19,-2.3580228608664567e-19,-8.652725191318473e-19,-3.552242928146724e-19,-1.4828323760197438e-19,-4.821457904171819e-19,-1.9799610756733566e-19,-7.5421892900857e-19,-1.9802638383026073e-19,-9.727756464984194e-19,-5.084321150028268e-19,-4.605183881741376e-19,-7.708087564221483e-19,-1.456100923006132e-20,-6.472028515211918e-19,-6.09002473071489e-19,-5.746393376981128e-19,-6.172085126865963e-19,-7.506748942280251e-19,-6.018361383028951e-19,-3.5645004503725324e-20,-1.4860433432566733e-19,-4.0616616679641107e-19,-5.018383964488785e-19,-6.345176346281377e-19,-3.8797698140091655e-19,-3.650610634495155e-20,-9.065854727264918e-19,-8.415274757301906e-20,-3.0250546782649093e-19,-1.2233927461251017e-19,-9.13225845143941e-19,-4.892074473129902e-19,-5.763815070629288e-19,-7.458756839712485e-19,-2.891323238320598e-19,-3.3105010095608126e-19,-6.402090666684976e-19,-1.4597012681548228e-20,-5.273254769572101e-19,-8.595947858133914e-19,-1.211506432124593e-19,-4.249359983909388e-19,-4.188438105451554e-19,-5.477031861133392e-19,-8.291718659258141e-19,-5.767319206671256e-19,-6.17575652214052e-19,-5.387724842344259e-19,-5.973926379058431e-19,-1.1423185807257108e-19,-1.7314660708951657e-19,-7.502598006673987e-19,-1.2986123933428983e-19,-1.5510371120569213e-19,-9.779934216347212e-19,-3.9492140385986086e-19,-5.186349920774676e-19,-1.1339927721243783e-19,-2.694060749839613e-19,-3.828625634733447e-19,-2.1757333031353145e-19,-3.172441854601446e-19,-3.278576528872247e-19,-6.126286012192526e-19,-1.7938034622269174e-20,-2.9526587320742903e-19,-9.784595373655802e-19,-5.928073587449412e-19,-1.3337455248960795e-20,-4.954315449244892e-19,-3.3620831659419515e-19,-4.2533523298247005e-19,-5.103014833517656e-19,-7.31731452797729e-19,-5.184474732277607e-19,-1.6052241531050562e-20,-4.554262669168201e-19,-3.690339560393672e-19,-2.501128035514131e-19,-7.388692065602087e-19,-3.290171794985987e-19,-7.153278308228902e-19,-8.862310437581467e-20,-5.32905905346088e-19,-2.3967290600764723e-19,-6.850389250169604e-19,-7.480720162914079e-19,-9.490296974568415e-19,-3.8731547348664243e-20,-2.0334534347167177e-19,-9.0994742506034e-19,-7.148099110280388e-19,-1.0852929762094843e-20,-6.455413636430985e-19,-3.4625107010293023e-19,-9.480255332534411e-19,-5.616955024143936e-19,-2.747941954366633e-19,-5.740098089479834e-19,-6.317940161663117e-19,-2.0869275627321561e-19,-2.1348876280320685e-19,-7.274725391029616e-19,-2.3954498977447727e-19,-5.404207787260518e-19,-6.280616435885427e-19,-9.330855793962913e-19,-8.216610717539447e-19,-9.058378518177151e-19,-5.510632648753922e-19,-1.0791594030196028e-19,-4.419492868015035e-19,-8.841385920945596e-19,-7.382601446403912e-19,-4.95574037529931e-19,-8.537463535135662e-19,-7.297942204026927e-19,-1.845256993288339e-19,-7.276081911000386e-19,-4.167276269981214e-19,-1.4110284547756036e-19,-4.961497094584731e-19,-9.326764924071334e-19,-8.738865273310959e-19,-2.6151726526841724e-19,-1.7935158844600687e-19,-7.141049728024532e-19,-4.52620401081072e-20,-3.14409724490619e-19,-9.710783796892284e-19,-1.8891613496610483e-19,-6.204486389199823e-19,-8.686455809367166e-19,-3.5551451674000835e-19,-7.734594342368573e-19,-1.7879967244852858e-19,-3.0936136826769425e-19,-4.544642703941522e-19,-4.501302267560116e-19,-1.4906018609524497e-19,-4.516507069125782e-19,-1.380635468048459e-19,-5.250969263886649e-19,-4.210750871749194e-19,-6.972312685602413e-19,-8.977734392435275e-19,-5.924732219251077e-19,-4.918684104933553e-19,-8.483612084873018e-19,-4.428348599640128e-19,-3.004572592123487e-19,-1.6458197716850332e-19,-7.849076037801776e-19,-4.1941181986256187e-19,-3.133212543140303e-19,-1.7355967224544524e-19,-1.9403303012810824e-19,-9.035152863480324e-19,-3.4662916091361367e-19,-1.3116790407118197e-19,-8.244580480958872e-19,-6.391178422397299e-19,-4.912707210645758e-19,-5.812295244154577e-19,-6.576198658552247e-19,-8.2298870826787e-19,-4.860569259472617e-19,-1.2168635245540617e-19,-6.762048380958775e-20,-4.731315618228038e-19,-7.806363081305364e-19,-1.6496450895803518e-19,-5.054526920491557e-19,-1.1160437763535037e-20,-6.7043857780267095e-19,-2.655427284487817e-19,-9.826195261318759e-19,-1.4234462289610263e-19,-2.371049294901775e-19,-4.08477372398397e-21,-4.866867198181208e-19,-9.466457970050045e-19,-8.562484427093422e-19,-2.01137638858498e-19,-5.739650160114991e-19,-9.64877205688156e-19,-1.2037165643915906e-19,-6.580481632959124e-19,-5.174217540690364e-19,-8.460472098753901e-19,-4.176859827912638e-20,-9.341911165170165e-19,-6.722571534467858e-19,-7.15341696912233e-19,-5.509054474552069e-19,-8.054187285258369e-19,-2.339649655079712e-19,-2.404213995587602e-19,-3.9280202398520593e-19,-8.620415984679618e-19,-4.323809393193782e-19,-5.154020014568629e-19,-2.4758172797118117e-19,-4.566502585542481e-19,-9.468635925112582e-19,-9.023462549770187e-19,-1.7053654979263634e-19,-7.913376875875837e-19,-5.611164253053425e-19,-3.4158306175335087e-19,-7.738032686134282e-19,-7.009310729117147e-20,-5.694736604866614e-19,-9.770431056681136e-19,-9.844741259454692e-19,-4.362908620587294e-19,-3.0615149709546985e-19,-3.4051478912441783e-19,-2.311610339337883e-19,-2.4146892765899066e-19,-1.8967052355367098e-19,-6.747999997609216e-19,-8.022206918891127e-19,-3.3860527074853157e-19,-1.863403723253373e-19,-1.3803385105108614e-19,-2.5865779026891e-19,-7.340092562497213e-19,-1.2797928046807183e-19,-5.89978842965464e-20,-8.244810601167881e-19,-9.143117309703279e-19,-7.411964900882267e-19,-1.6147935125856452e-19,-5.928104399114787e-19,-9.424904070014374e-20,-8.711890815237492e-19,-7.2797375816291e-19,-1.58810775357098e-19,-5.063283020909368e-19,-2.0654636216816825e-19,-3.0164728185179324e-19,-1.7104780004536969e-19,-5.622594193244291e-20,-7.528695981576284e-20,-9.089989537812661e-19,-6.082342143692401e-19,-7.59145090546356e-20,-7.975169574153538e-19,-4.9919054551879177e-20,-8.132202720150175e-19,-3.1097383389897992e-19,-3.1412743616294193e-19,-8.057413586168542e-19,-8.177198374210444e-19,-6.177042848860976e-19,-5.711680528307757e-19,-9.137174523539755e-19,-2.4384429239385264e-19,-5.496366419992032e-19,-7.407440812988292e-19,-5.71849504820284e-19,-6.890413106295064e-19,-2.433968945086007e-19,-6.08436263021024e-19,-7.364832821199852e-20,-2.0140742433063965e-20,-7.315200719493043e-19,-9.049714511456826e-19,-7.421390347068146e-19,-8.409811262729522e-19,-3.504024403382894e-19,-4.960576772348054e-19,-3.81815128110242e-19,-6.556095196967366e-19,-3.5438491797456285e-19,-4.4018122036183053e-20,-1.7078807293850919e-19,-1.9742127223861529e-19,-2.8390345512279594e-19,-1.9140214490792152e-19,-2.8592403221455177e-19,-1.7788190729433963e-19,-2.9264389246880984e-19,-1.2859502553669035e-19,-9.922615025072687e-19,-1.6236722601343724e-19,-1.7587468549609688e-19,-8.052320670922613e-19,-4.895330944084003e-19,-5.421932792653329e-20,-4.755509383661391e-19,-7.674384150097077e-19,-7.636508737081865e-19,-9.77209631277292e-19,-5.449558139792103e-19,-8.006156709251835e-19,-7.470612165318498e-19,-3.94575162617179e-19,-5.372388592819855e-19,-8.996488052490033e-19,-2.193453951770498e-19,-2.8929371928984164e-19,-3.2580660246725614e-19,-2.404230719230738e-19,-6.907899065032485e-19,-5.037052271142208e-19,-6.92209716137718e-19,-3.605571555651568e-19,-4.518290402365971e-19,-6.4127883628019e-19,-9.547161375585256e-19,-2.997892426366035e-19,-1.9285557792937392e-21,-9.24141453952155e-19,-7.691529796307084e-19,-8.181979692477009e-19,-3.021406128567752e-19,-2.1315914953248063e-19,-2.7107648698815037e-19,-7.756901132188699e-19,-3.28536728624984e-19,-2.8663779521043377e-19,-6.82805323900367e-19,-1.0027282908511371e-19,-3.4114627766073647e-19,-7.834318571748211e-19,-1.8230414114838702e-19,-8.838667458382725e-19,-6.872138145182511e-19,-6.1557102043701545e-19,-3.5489097450368423e-19,-2.801405478150603e-19,-9.830923563777066e-19,-7.234560324290217e-19,-6.270045015292252e-19,-6.531392632375531e-19,-6.791042759381553e-19,-3.1241789973147574e-19,-3.054519846256628e-19,-7.350957975242258e-19,-3.885573576969649e-19,-8.738166942308982e-19,-4.697868275932e-19,-5.502364541528449e-20,-8.143476044067482e-19,-4.861190476150046e-19,-1.8706126544312253e-21,-8.768206760711704e-19,-8.169186819596553e-20,-8.67718162818509e-19,-9.945575274681963e-19,-8.175898869428484e-19,-5.1550350289160075e-19,-9.969708930033024e-19,-5.999857949815246e-19,-9.729449467439185e-19,-7.240566718791021e-19,-1.5536103567512706e-19,-8.795879515974655e-19,-9.346903512684788e-19,-3.9296044705817715e-20,-7.578088435815026e-19,-6.141050908929025e-19,-9.786240752681086e-19,-8.356582446793812e-19,-9.30699195635522e-19,-4.871595114168889e-19,-2.0681838569889922e-19,-1.9692113100167298e-19,-6.523497496005304e-20,-7.800284575207462e-20,-1.9469212584938812e-19,-7.449046974576762e-19,-9.008341471654741e-19,-8.259379494077868e-20,-6.925637085818492e-19,-5.706562151712281e-19,-9.98081831903669e-20,-4.461173106291494e-19,-8.664749791236825e-19,-9.49339069283422e-19,-1.2322238680776833e-19,-8.751265688790173e-19,-6.167699620763226e-19,-1.7201927158161157e-19,-7.575048569951763e-19,-3.0387686923345485e-20,-6.6170126950166355e-19,-5.669836061399545e-19,-2.539332125961974e-19,-5.304719004823205e-19,-2.926323341270043e-20,-7.917433267977612e-19,-4.560547392707538e-19,-1.587351601524977e-19,-4.741558713389387e-19,-1.9297533020404557e-19,-5.297814480979852e-19,-9.385779686339986e-19,-5.099735073520568e-19,-2.8700658605232933e-19,-8.897836609334465e-20,-6.82187099306096e-19,-6.781043026444049e-19,-1.5815847169513143e-19,-9.99204716638634e-19,-2.600869557727368e-19,-8.380496373395844e-19,-6.842322226680002e-19,-5.741807196111209e-19,-8.547353841469266e-19,-7.040974542129166e-19,-6.306783379732512e-19,-5.002967400009951e-19,-7.976893690409721e-19,-5.075525590767029e-19,-1.8423943343549232e-19,-1.020603533885538e-19,-4.647462501470168e-19,-4.2362755211495566e-19,-3.615899630798952e-19,-1.638020665112632e-19,-8.700014103096276e-19,-1.994840569403217e-19,-5.143852170016582e-19,-8.592160431124536e-19,-7.896561647489581e-19,-1.7947456797789886e-19,-5.885189794276339e-19,-8.908923555234339e-20,-4.776908818710094e-19,-8.700557240920489e-19,-5.923770458385277e-19,-5.164566883420954e-19,-1.6490093419346375e-20,-1.4893851695280236e-20,-3.8579002386674293e-19,-7.313307257504182e-19,-4.949676742841514e-19,-7.114474142953399e-19,-6.470283573050215e-19,-8.132311297978095e-19,-3.8959460494710697e-19,-6.963030498623589e-19,-9.31727607496501e-19,-8.603097989643078e-19,-1.6594072830072206e-19,-5.907086738574012e-19,-9.37691178732552e-19,-6.276035956215912e-19,-4.480401321573761e-19,-5.973479208822406e-19,-6.77546835345574e-19,-3.8373211432668513e-19,-2.0576842473264158e-19],"im2":[3.900056759047242,-7.883590570255681,5.8757296685865175,-6.49261535047599,5.827174610274959,0.22001628362464842,3.0862298285174727,6.531694611531037,-0.8139440686159425,-3.877479976283478,0.40581089687226424,3.6188732430546526,2.3533061416038343,-4.227006746596533,-9.450579520060503,-1.0117820660053578,0.4924852013687655,-3.1398103639006703,-0.5931169824764542,5.604856251890114,-6.561349690632405,7.021771693886937,0.12487418353695645,0.4921674894958432,2.924024457480316,-4.946887240243298,5.617479487730069,-1.1602022934855931,-2.8297262701036985,7.979727726967958,-7.682832801416842,-0.4487381125333094,6.281449452989392,-7.293294924797893,5.691416254910738,6.77083526489502,8.635833882878792,3.0971652429014203,6.323330284037304,-3.6499526234582476,-4.144708804167843,-9.92812292759421,-9.721766170575574,-9.709984675819125,0.24209107511136096,5.701886498832835,3.894622386198254,9.553629855401006,6.816044685575328,0.3855237664483617,3.2140606951212227,4.830064461203127,1.3656220254336322,3.5021212993518134,5.892348364435485,0.08486335464401584,-6.991597216887628,0.3203848953468853,6.5631943549125005,-7.647007491891791,-0.10708629297065464,-7.836681879345637,8.037391712114285,-5.1071787084425875,7.1897100498973145,-1.2837781301275442,6.120416421175069,-3.9114122525859845,8.151053017397395,9.632119923916612,4.78239742229249,-0.38961991451858147,4.781815225679214,9.129919300615992,0.8963189241955725,0.28156036161127496,1.0740185603825907,-4.582459724061958,1.3584278899287732,7.1497607283033275,2.680937946554561,-3.2381988259537824,-4.93463294204224,6.411347631713799,9.490789982322262,-2.468392694406065,-0.7045528483318275,-7.091850655939784,-4.245169239895839,-5.28822819460526,7.661753027945011,2.828840874090311,9.679689573650762,-8.825404367910865,2.2214381841926176,-8.028900840125232,3.421708147860773,-8.401930207261517,6.219904955081333,4.006419460185747,-8.730966905711785,4.442576611048102,-1.9542681531221096,-7.179054711650301,6.552402619257741,-6.273271943019507,-3.4000756466810795,2.5705372094992835,-1.4783792089547276,4.877834413994549,9.01181164358134,-2.710470633778743,4.923079754129557,9.462291536269628,-4.167197801164637,5.91236513679573,3.0746539766442034,9.740834912508376,-6.943242486920729,6.972809568464157,8.706015721220705,1.2935946231761761,9.121642723376407,2.9759773944686945,8.27425164816336,6.108654232763033,1.5136303332263097,-5.427652932902955,9.927388786843132,9.681128344746885,-6.877431644024588,-9.705577379851194,2.559955865792677,-8.288908416400675,-0.9310581997026617,-0.7464448031314657,3.8336236028115582,-7.61489991266139,-2.1150025988977923,2.087509367209517,-3.411701590272049,0.20766306854993388,-4.809327306201201,0.176910764137455,-3.292604309461744,5.281423807663661,9.5555194684705,1.4001512940578031,-3.910837245124954,9.211773328631555,-7.103435758227716,5.869413605131392,-9.466038532087905,-4.31974984218745,7.248069326367965,-3.0996060110905628,3.7880662891089774,8.048233916930986,-6.087573705805866,5.73720067581737,-4.512615290776942,-2.2145487034491556,1.365920942829879,-1.3627207656468485,-4.645595371433593,-3.4164992231526874,-6.966744961340625,0.7939452525832849,4.44687947659548,-9.468034225685685,-1.6139022167357364,-5.459691977221269,7.5025196291999485,6.175647948792641,-4.09152586696842,3.033139773634172,-1.4837060805067708,2.9332669414630494,-5.312557587077833,8.20822939912333,7.910864203442316,-7.658977061332582,0.13421164387098727,8.54540249054445,-6.343972579131147,1.358676295046024,-4.500103911527351,-1.548089106342136,-2.139538117090199,-6.970754991641148,3.003458525142161,-9.347992057972833,9.117816887771813,-2.585831042545572,-5.74384838937079,-4.177188688264435,-2.7166503574913854,-8.999636104517776,7.987646592535146,6.269532054262736,-3.7064101085766854,-3.924681958664884,2.8511342070156704,-2.4890836638560536,-4.462165226707608,0.7793070841040688,0.8290993653170275,-2.5774585759570323,-4.337199761770916,-0.5261395035563368,6.583545866765004,4.504023298849278,-6.041055356499001,-6.336321200669273,-5.59174260376399,-8.922885505949873,-0.8557176831959783,5.927233052706038,5.234745660667855,-7.19146789666577,4.778579921321857,3.593748064463183,-0.031466900498692496,4.216502044760475,-2.2438998348546697,-1.2569096329005642,-8.594023750143387,7.65467593296594,8.521521275595337,2.6235095289532744,-5.557380703830117,-6.056532395174747,-6.19909201841772,0.90610674410377,-7.544561095599889,9.085795199795989,-3.8651698565661636,4.285905012515411,-6.6022654333408965,-7.0786601948716825,-2.1498901348737913,1.1389838500711313,8.468077668945156,5.773127931176598,-9.727466368610752,8.339062827623685,-3.1906229950035065,-3.5834185704236816,-9.002590553587694,1.8158213830800953,9.024712691297854,6.565693850287467,4.427657340727967,3.1574830204291437,4.963818466599182,-1.9492001275006654,9.327008123529673,-6.096967724532845,9.154035613816834,4.0268681029670805,-1.5517688102152682,7.980285307984495,-4.433326844534258,-0.5408389998838459,1.829212920580881,-1.5708677230536505,7.9128316905899325,2.2375483752430885,0.10149450581041464,-5.021617089532226,-9.986447363259307,-6.284556925188742,-9.767195507215868,-3.156269786490766,-8.415838350503368,4.97333863369095,8.723184538257705,6.144714598671545,8.02131513999625,7.243842673210967,7.939481275478201,4.936653292679614,6.008659131781183,8.147266887360473,4.633501168950971,5.583774958115914,-9.024072414774103,5.661537884113679,-3.890584958522214,0.38133038044496104,1.7482378172444335,0.4512460111483474,-7.885017722166909,3.612085468649923,-7.691464103652274,7.228241295680565,-5.542131650280295,6.219529141504882,1.5316366814646187,-6.91837492451723,4.638080908472526,7.133827695634967,7.184949403230355,9.196981943022333,-0.6053226042123114,1.4737498771446162,8.576519925996092,6.742093893503373,2.144075120179478,-2.613725942211021,3.9537195053451146,-4.923698014047837,6.364582803571089,6.993280983264537,-2.267517072916747,-9.714435920986107,-0.7882813662413231,-6.029218794014735,9.249769202072681,-3.8406535428329702,5.110004915974551,-2.8272779145228704,1.0792552950632341,-1.0811877222898918,-5.476009297338724,-7.139420152964105,-8.954943701296923,-7.144770684217486,4.137864716554844,5.659230633806354,-0.4741167511918736,-9.38189688325199,-5.957242615733438,-5.154159663257849,9.001379008317503,-7.592015988066985,-4.075950788098838,-8.718838287422193,-1.8243168000281589,2.480855225548712,1.078119478507027,-3.107646757811411,-7.767761871253336,-6.044965732297292,0.31507665734767976,-5.101036383598911,-9.213391628065658,-5.281446387221298,-0.8527382056307076,6.319624434250024,8.708906873471623,-1.523256952943715,-5.5162876038737085,-7.421670452777058,-1.537048577500503,-8.79182486633762,-0.19851630067574355,5.772441043310284,7.796947897122365,-5.485571994673228,3.87288042514154,3.0295635692612617,-2.4360356888300245,-3.0867822124876483,7.151500428359995,-8.907631327804026,-5.9772980681631305,9.363241412657302,5.679171133492176,1.5941935951334258,7.379233257934278,-4.786073650902898,-7.708546697604963,-6.478368499954694,-8.636618377652916,-6.846456826635636,-3.050192139929308,-8.877633839650741,-9.006019428177476,2.42314799136636,3.035245009615597,4.78667920426367,6.074248112618928,-0.6315915144420394,-8.506011297668689,-1.1418099622626734,5.974192992705502,9.937685556626942,6.9211640672071155,3.855628265761908,-9.739919662048088,0.5005873568508221,3.816815491506368,9.817000402228373,-3.306831858557418,-9.593237026427389,-6.290938157252144,-4.657941367489031,2.7139810160918465,-1.7941022822062358,8.836596384658534,6.6342448758592845,-1.8153402519587694,-2.843871984672819,4.46278021715462,6.27032429085822,-1.242529064178786,4.062129075300005,6.53248177746919,-6.671715892579924,-0.7269474337599959,2.557988862823649,4.901165009721812,6.152062767645276,8.746955677132089,9.133276039154946,3.6171853736975415,-1.1286252463322342,5.459439694638311,9.058171926375394,-3.6961395886045967,-6.116993423842381,-7.099490543619313,-8.490784092087896,-1.1830419132541685,-1.0884376098939885,1.4510015382994688,8.905797059633475,-8.843615005780151,-5.680409170487328,3.917308951489435,-6.165432873177064,6.779182977813399,-0.9516365994078502,-2.4485789103249083,7.678406301925623,0.512730586359444,-0.9638627800734376,9.583336927863929,3.1373191271343295,-7.381039177612361,4.725084631600717,2.3391429286053604,-2.082741654017921,6.801076914812917,-5.638675057183771,3.7228645468006185,2.6421756077152025,-9.939931955642916,4.905214453738422,-0.8161083333681134,-9.616090944371585,-8.885278828850547,-6.938898669896812,9.71350297193834,-8.791732524116888,-1.04036874168645,7.160358322896258,-1.0208989600015563,3.576269663386567,-4.594470563680357,8.688943911830581,9.438312526860294,-7.7933558357200265,0.6456654025270439,-7.147349659085336,3.558356348784809,3.8728091837948693,4.343425545097579,-4.183862880934268,5.06564721316305,-5.759885899682285,-9.658212952074104,-0.6459546075161349,1.4380627982360181,3.512641856753554,9.25059423920153,-1.3526415859469765,-4.246920425348833,-9.493511640665108,5.86395238695016,-9.718392704736731,-4.100413407987446,8.441026024544552,-4.263191530901542,0.4131332982293916,-2.590484979339598,7.636748182392392,6.68031460997863,5.6609689216861305,-0.7470072290199745,5.747839903975576,-8.688754389122684,6.587631042995341,2.4323142284541337,-3.8196031454004897,4.536261883539133,2.957110219071218,3.4038932161155167,-0.5429306037145096]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json
new file mode 100644
index 000000000000..3f67cb3e8a4f
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[3.6238437124219907,3.8736229104499067,9.033942758877856,-7.254681404044316,-4.920015658635714,8.184383351905403,-3.923300542339014,-5.126607949431916,7.650625359513292,2.436303238054883,7.765513391467863,-9.7221003602896,-9.074607813187768,3.7763685451792224,-4.14799680953757,-1.4882234347790337,3.0809500834121124,-1.4833943614428602,-3.1037389960463724,7.831339128646416,8.057178123976207,7.886106574154429,3.6629120968557274,-0.6156186406628468,3.4844990974099126,-0.05730809874609655,2.9787800886452267,-4.2996839693287665,-6.076680938842884,-4.57246402288707,-5.514087784192611,1.6096305778864721,-4.2000449821112085,-5.636531500774078,4.068197251558537,0.8451724628963007,2.838924688118718,6.762552922475862,-1.012347441440184,2.4958633653745785,7.1931969318812,-9.259814777110302,-8.32152200914086,6.650585887921917,9.485942473229155,-2.882029475167247,0.013235722886131285,1.0076767072396482,-7.287959821638122,-2.1123331722086984,-6.763803662925502,-6.257594352668661,3.428831705663063,-2.4020543366283125,-9.57794694628912,5.579380738362811,5.464214709632923,1.8395476269099689,-9.885864227838352,-3.5024814416816463,-9.752814670706147,-5.9016004794110195,2.2747234335018547,-2.457917384182416,-8.733092296395776,3.7092873693217516,4.893184355416045,-5.151021754743721,-1.427936620499663,-0.533131464987262,4.806213839097488,5.147437907134034,-2.4149259333034,-5.848789186722188,8.459726044532555,9.534043716353487,8.538140537112824,7.360384477337785,7.443359523505666,-7.953211403576357,-7.136181815430009,5.479748253292861,-6.862278553525025,-3.843433353750867,-2.9120309534663384,-0.7699181883973054,-6.956539937759317,6.6319714294088605,-4.105490500152831,-2.1411627488091733,-9.2233996464107,7.880512273140251,8.079963738356632,0.1770161971454698,3.0850375852148524,-2.6101978704011985,8.516192595399904,-6.914136192297704,6.785059307974958,-6.589394928211531,-1.0396072053556527,5.209434088499718,-0.7136422580760851,4.545166599626638,-7.1020686380919535,-5.137866465779801,-6.5500380851965705,-2.3853273282787963,1.311684222838057,0.5742401298694908,2.5183510599953394,-6.440680506780005,-9.844996449055571,6.890266534176224,-1.1666585980908515,-0.8469108534077812,0.7650642418762015,-5.6937032365544855,-5.876030260735314,-7.78222812017532,0.46282603532074873,-3.203939661924508,-9.29835062740282,-1.1236637561582121,5.811733893499593,-9.329167167222604,0.5222484308613957,3.127088719979147,3.9181163687800833,7.722573011354054,3.349333658713448,0.6522514986273169,-0.33923146859944,-5.4612534763177845,0.7551052630587165,-0.1095680372972101,9.794968243264329,4.682588209445029,-9.278099831010145,-4.361971500598303,8.423377895836314,4.7882674574373425,-3.4786683596343027,6.308993054986278,-1.350600964585908,8.950575328615049,8.99916747975118,4.039544758613371,-9.661045479749525,-1.4906947805038016,0.9575013350344328,-0.008977985846335912,1.3010778406699934,-3.2243555733911577,5.141008486860969,2.5682125481723705,-0.02736112083199771,4.017973135130109,0.40179379635414847,-5.612176571035262,5.227131725266382,-1.3855433952326486,-3.6652036346727,-8.714400963628853,1.4961603356570663,-2.9049251783918484,6.0412224976042275,1.0409380460394662,-1.9774572362787204,-1.0624265916739333,-7.627512520693129,-8.12543902641547,-8.3404465976116,6.2707419677215945,2.258129455813478,-2.043458575698807,3.3245212237571984,-5.407220176495522,7.141209042460872,4.607270865299974,-7.502489472318805,1.76158011166185,-3.0199317495756484,-7.086673756818818,-4.203648234545733,4.455223252417994,-0.13876965630107918,-2.1430403279702093,2.2159271480223737,3.137249037513225,-4.760255590180704,-0.31461674259510275,-9.356895425609862,-5.079694484501214,-8.73743777149302,-6.288214001052048,6.916732137667903,4.494857607290188,6.980390219686733,1.9121200982692699,5.205750714884898,-7.9791646333352,1.0902517786986188,-0.08107086400716845,4.204713482982569,9.339400144147714,2.128382225870496,8.967171741082709,-4.609355629574903,9.0285611147061,0.5459818385919348,-0.95724347949281,-9.981320314753132,-6.859085782240102,5.561425094291643,6.7307700002817406,-6.863839113118997,-3.7700403113568477,7.351553443556568,5.6314213977084915,-0.5666027152969928,4.008940545039206,1.4479160112906886,5.2787047064284245,9.118677163689675,-5.004453952429484,-2.9760164788870203,3.487452223677316,4.496921829061675,8.414516132893453,2.351559841526731,7.274050265545849,-4.9379993760940515,-1.0886840362959482,3.091357204505698,-8.670611971906615,-0.8130071076958245,7.223045548243679,5.125042411423287,3.063287295616689,3.2519722452588056,3.087767210896452,7.977757017505343,9.871457895541017,6.91741721309668,-2.096469133988883,6.0795451985757865,-9.525299803592054,3.679807232771619,9.039922832812465,8.587688027520656,-0.7229473619549598,-7.625056508616059,-0.9598834378366803,-0.5594573871896955,0.7876060037355721,4.406921769042702,-7.529529496329214,7.3348355991501855,6.249099299656571,9.694986620554474,-3.5804252549741777,9.20015715807644,9.515032871567843,-9.19337828219323,3.3266419831547474,-5.876267437674105,-5.573801723956064,-5.633625044528523,4.373748664062759,1.7167429757596704,2.8686691864697433,-1.7363000565377806,-9.680701143877595,1.7071571530199225,5.606293654006404,-2.3767113252377747,-2.0084842375920537,6.03230381295656,7.81756154351962,-2.881977991782552,-2.8647677956041946,7.866153679547352,-4.270527903875612,-9.72650618445851,7.3581316647904735,-3.2990260294661145,-9.527760744990763,-4.944284148690565,-5.38575142730579,-9.672896038817695,8.508458775195066,-3.188279678397741,9.571881210910242,-1.1102958006407082,-2.656378073900603,8.144696395701672,-0.21106725766895984,5.967047538916505,0.4235085113965802,5.049990826420547,5.835395289779042,1.8477856552659198,7.707917742620893,0.827000057659049,6.760869442549847,-7.278475628075607,-2.2766879687620856,-2.8043826352611134,-7.617555077795752,1.977328545938832,3.986592262147475,-5.179920392979856,-6.5018746214477074,-8.913985079673363,2.089482935161957,8.196443445604782,-5.990140437078724,-0.30134251377593735,0.10313013022943807,4.488200269381187,0.314044363885273,0.9352285180356716,8.969168733239961,4.369985943634745,-0.06284708263185124,-9.624966030936832,-9.001325047606949,3.7022935384028735,-3.825149169834294,9.46850305710159,-2.3731634075280406,-1.1712098411926792,-2.950445587880475,-5.848342644843667,6.17612887261614,6.964244489962926,8.238242975940405,-9.792385191140758,3.8000912352220677,-0.49711055122324055,9.44920256735523,8.575365480545905,8.903590223575428,5.529134449491448,-9.744305899262462,5.6232750998782315,8.866349870644598,6.6558148224691855,-6.05474385602315,4.467995976439912,-1.6120586982215848,9.049918334861694,-0.08842602101782049,-6.450513645814972,-6.563610808902207,-0.27107225192622764,4.845804024696591,7.663968851327674,-6.631141721318727,-0.37949681097424737,-6.787687641097994,-7.7784801570164745,8.5548011238605,6.197890125056361,0.08840970507274903,6.948448192773334,-7.073145293282965,-2.7884009473745035,7.862916967192572,-1.336492782609513,0.033351741947457825,-4.600007013286165,-2.079403709035523,0.5933087534096515,9.323735707585328,-8.392278125547302,4.972260748529052,-1.885877523795731,-3.8124580989026686,8.663843621429287,5.079855617200344,5.67450981515395,4.298116408010378,6.240293376551229,6.66930892189913,-9.842096474869937,-1.0028454050817341,2.909498132389473,7.973121968278235,0.07205116014248958,-2.4147068396857785,3.8660702868630654,-1.5257021360305885,-1.445779224116503,6.673946591730914,-9.35437874492034,0.025788235153518357,2.4398014233130194,-7.172515596952788,-5.879496380480356,-1.164888400338393,9.837145144237436,1.8262732688746262,-0.6482581554864382,-5.241948730933177,-6.717828626128137,-0.6343367175100383,2.8148467598482227,5.4246553945597356,2.1957572173601534,-8.991979369081184,3.51948605193682,-0.32324718918564876,-5.114142402882294,9.420529963949207,7.324357257458413,-3.3273741831705532,2.8925145922839963,2.329433331585573,-0.9638062530720877,0.1852131746514214,3.7800211355798403,8.310604504344365,0.14617250695907913,-0.43375065620945463,-1.9507119645325695,6.945561087268068,1.6599385092254018,-9.093521297121558,0.9268601206362899,-6.62929449382138,-5.51678947091488,4.004469105426981,-7.169946491145074,-5.672263521536229,-3.4695141274114967,-2.4638691909000237,8.693054407598048,5.287099570145312,6.86395275953916,7.653940613863195,7.397597365252974,-2.406449699002218,8.058260602540933,9.72161349353145,-9.645637617566234,0.3742769286228338,-4.05864306094597,-9.3592401728045,7.526599529017794,-3.4764706835161308,-9.652759887872273,9.681238774272472,-1.9611601100105585,-0.2455342027985168,9.712072296992428,-1.8642554601884562,-8.276559148441496,-9.510063544091905,7.626216688923336,-6.188502498945341,1.0870799346125644,8.972904361585595,-4.59377084936296,9.461084459098139,9.207554356190983,-8.174436589364474,5.319192791668721,9.446585854717174,-4.282690239793472,2.828808283243042,-3.408943341898068,-2.064327337144352,8.902669696352877,7.07003163675185,4.981224680886637,-5.924672646588678,-0.6396515999744032,1.9102633347658156,-1.7973917458836137,2.9180204895792468,-8.578018938297898,-1.4931050262046064,-5.335742625479714,0.23098799065811804,6.868906834081763,-3.5269547718848537,7.854609412955401,6.145894203940664,-8.362835545369798,3.423964636998818,-8.218217545138653,-2.5051655667669532,-0.6765893540722452,2.5437318768181445,-5.202029396279362,-6.065769408844604,-8.16086470164347,-2.9119040809555745],"im1":[6.594242267728566e-19,1.9787564738707164e-19,7.882747521473572e-19,2.6658987130532144e-19,3.9083993471589785e-19,2.464676510534686e-19,3.937220658480285e-19,8.658364824297501e-19,9.55925551989874e-19,2.4304031802685444e-19,8.234864632051952e-19,5.258183942678084e-19,7.505268784584874e-19,3.1726540629431447e-19,4.2548930072915936e-20,6.436857845960724e-19,6.24526388081518e-19,3.4697375969061274e-19,2.765135361361636e-19,1.9087099490982764e-19,1.0480898350930013e-19,1.4865786425460892e-19,7.300514721923053e-19,6.343831259472577e-21,5.739950602691389e-19,6.29223024686435e-19,4.940503290661108e-19,4.763390911311995e-19,2.2926677506174723e-20,4.776065542581686e-19,6.887659314738096e-19,2.439179747027909e-19,6.318428111547242e-19,3.003180120697363e-19,9.815015846133638e-19,6.461966804539993e-19,9.131068253036247e-19,2.8590233103858442e-19,1.3835555837354509e-19,5.549005143518902e-19,3.2206935505378844e-19,8.118674299579301e-19,6.86330014145467e-19,6.693414635936708e-19,6.808146610800419e-19,9.24207863034382e-20,9.34339682121317e-19,2.342458859336725e-19,3.039215986768371e-19,5.629035896434533e-19,3.5388924956540105e-19,2.77903136209553e-19,1.759107150151017e-19,4.6610484008358656e-20,5.074942840506388e-19,8.238488494970183e-19,8.424706682249051e-20,5.011986666494475e-19,2.449346924323659e-20,8.965173758416481e-19,6.840917423453745e-19,4.376726563503918e-19,1.628678297243418e-19,3.5563060066498767e-19,5.421533865348387e-19,8.159093004524444e-20,6.78541256848996e-19,6.015197111993366e-19,4.625785204048215e-19,3.3933795079941954e-19,5.693469553268294e-19,6.775126001296914e-19,3.8483301361486715e-19,7.536700139165931e-19,8.296255574131376e-19,6.891599010565535e-19,4.994977615545368e-19,4.669133923897229e-19,3.2335258389675894e-19,6.769257136239438e-21,9.515644072526225e-19,6.310765788741168e-20,9.385199678550744e-19,3.064125488148827e-19,8.528131366887123e-19,7.103480623905917e-19,1.7958834689166393e-19,4.1542008175903516e-19,4.73870422455423e-19,3.0569130282210457e-19,2.853130632772907e-19,5.615494654046116e-20,9.798928390027942e-19,2.6293829122071425e-19,8.86596018728321e-19,3.8293042785155264e-19,6.835228606647402e-19,2.32811897531507e-19,2.5509946349888428e-19,8.121122291761313e-19,3.205251662036668e-19,5.239943141411406e-19,8.842872439955286e-19,7.204044502672298e-19,4.548596141201517e-19,6.604244487093775e-19,3.137287038964851e-19,7.424195666159783e-20,6.4249447918164345e-19,3.1775157824821876e-19,8.851623750327803e-19,8.000633778453145e-19,8.351950075448643e-19,5.347660305400019e-19,5.743677136766141e-19,2.479757491483008e-19,6.730335375402261e-19,3.3082096614513037e-19,5.702441732312915e-19,8.859051494456405e-19,6.481322686428392e-19,2.4447499776991714e-19,6.801872232025794e-19,5.786509618760507e-19,2.098910878612046e-19,7.662418759243317e-20,8.825206720272261e-19,8.27988621306161e-19,8.602941223725667e-19,9.971132228100162e-19,7.632746887571662e-19,4.276736444699654e-19,3.0470959872316017e-19,1.3903786694462917e-19,3.783235406568535e-19,9.700188872038418e-19,6.251176789307889e-19,6.757344285257339e-20,5.635383154746201e-19,3.205954223155764e-19,2.797187026532413e-19,4.413372482262196e-19,4.382522403512158e-19,6.066846407256948e-19,8.862088153827023e-19,2.852587218571493e-19,3.990499342894176e-19,5.9593205744073475e-19,3.308868993744161e-19,3.7489074094592105e-19,6.084924300945972e-19,1.4675185439468553e-20,7.990462085218181e-19,4.398500328747024e-20,5.475356379576155e-19,5.05653545218874e-19,1.2059660912323767e-19,2.6278801065394545e-19,9.495327239640827e-19,2.8312782749581547e-19,2.8768752740837204e-19,2.7762626238196097e-19,2.93505490841508e-20,3.0931141544460384e-19,4.721453123690509e-19,3.035154772236795e-19,5.601794862426181e-19,8.898120072761552e-19,9.172120940946983e-20,9.559954895167903e-19,4.684501746826446e-19,6.236833514031553e-19,9.041415774197102e-19,7.284545337824339e-19,7.961423294702546e-19,1.1044067689574078e-19,6.657034789651131e-19,6.695341522390264e-20,1.584781260858619e-19,1.6464642061478153e-19,1.9853083108899563e-19,1.3724910578869045e-19,1.802110986721225e-19,9.207447889148015e-19,3.371678738004391e-20,1.159067163769605e-19,6.198465963184014e-19,9.492618433666445e-21,3.567256147226509e-19,4.572306039644491e-19,9.88165091989912e-19,6.092439921054361e-20,8.163352087437244e-19,6.613947299598939e-19,2.8464632015156177e-19,8.582908350907585e-19,4.877666776890829e-19,5.887035172204218e-19,6.148672130381676e-19,3.6352857091949824e-19,7.526166041129697e-19,9.280899701030734e-19,5.540547948980216e-19,9.600475567347072e-19,3.577465836239904e-19,5.602965781138225e-19,8.5521988036750465e-19,1.15596920384049e-19,4.5425148474730787e-20,9.884779950170528e-19,3.385978659835458e-19,5.188814215453937e-19,3.8496889300659757e-19,6.4569205186407575e-19,9.559465448969739e-19,2.910527839897792e-20,5.485201349353083e-19,6.2717858303018e-19,4.58928066700473e-19,9.28985419753215e-19,8.461924453916207e-19,5.638217312216505e-19,8.755789756090481e-19,1.1311975567268174e-19,1.4139539002547985e-19,4.2527370823492997e-19,7.633808917504816e-19,5.638487603379624e-19,5.093887989162616e-20,3.464430038628523e-19,9.379975381114981e-19,8.045162098852477e-19,1.022586339571916e-19,7.126186313075562e-19,6.781970493256573e-19,4.40039453411303e-19,3.923675032690969e-19,2.297626771378203e-20,3.129705711470886e-19,2.1814551535644945e-19,2.2592115312794937e-19,3.69314117615982e-19,8.983623578083867e-20,2.2737912799453354e-19,6.060609590320615e-19,2.5752365746031715e-19,8.860518373641696e-19,4.571278383665633e-19,2.332967093870931e-19,5.3729757014341797e-20,8.496266237669036e-19,1.4222720894188013e-19,8.329917165293652e-19,7.858042662743951e-19,7.574318513467796e-19,4.877485418922328e-19,3.8050447380142574e-19,6.002825780332689e-19,2.5427852013867327e-20,4.048668520885478e-19,9.161304004845582e-19,2.2760186502842043e-19,7.74162640455213e-19,2.644944529579764e-19,4.187354554089376e-19,7.526553178435875e-19,9.152645027110226e-19,8.121138901422113e-19,1.2817732119218762e-19,9.35502202945916e-19,9.759639924796314e-19,1.0333791982789953e-19,6.305499549219496e-19,7.74001234445907e-19,5.242889732270281e-19,7.594185789924154e-19,2.8543864599968107e-19,9.992169336849007e-19,9.299526726187988e-19,7.488392798045196e-19,8.513725417463933e-19,7.464117979204745e-19,3.255113770333397e-19,7.694618269336601e-19,9.062514890578207e-19,3.516479284229436e-19,1.2684434324242922e-19,2.810592284947495e-19,4.0812032399309974e-20,7.3146724056450705e-19,9.990839393314573e-19,9.24886819382935e-19,2.5045648716714055e-19,3.484819849569836e-19,4.548961884654972e-19,1.3607989934217836e-19,9.225070512770387e-19,6.731903543962326e-20,3.4038836416525724e-20,4.398312720176745e-20,6.612775087333168e-19,8.952104893231894e-19,3.830530622454542e-19,7.647534845157567e-21,4.889846962675863e-19,1.3323124195021442e-19,8.036583426072905e-19,7.0866366401721365e-19,1.2032439952421304e-19,6.308162020788251e-19,8.074263392927661e-19,9.441700888138054e-19,1.5922993260150577e-19,4.867656273575383e-19,8.674327659038849e-19,7.088298637720859e-19,6.107358928341738e-19,9.223973565117438e-19,9.75270322370507e-19,2.7533413949408094e-19,7.595846740258003e-19,3.3175994712965555e-19,4.981567555059706e-19,4.723289246665239e-19,8.698387050707745e-19,7.354732565025335e-20,5.543920212576859e-20,8.965012198366206e-19,7.020333345841607e-19,5.632870560625382e-19,7.317291129979659e-19,7.68509471400658e-20,4.85132326189999e-19,8.96085978638975e-19,9.567120172836097e-20,7.453097205993305e-19,5.263104330427026e-19,6.461317790489847e-19,1.674921225486792e-20,5.770048660709625e-19,3.8688027546609287e-19,8.708071920348589e-19,5.255847349682689e-19,7.562496022064306e-19,6.829247968588917e-19,1.0066329034340006e-19,8.195257172359397e-19,9.203749433484005e-19,2.1789170526712766e-19,4.1239384493660226e-19,7.729490857581155e-19,3.316676856046873e-19,3.741275873494612e-19,1.4268676779697987e-19,8.36122419824058e-19,4.1230685414248385e-19,4.45163185348273e-20,4.2980409101452437e-19,6.267016440980319e-19,4.728313296393715e-19,2.8562807569810413e-19,4.614448390147071e-19,6.317967109766029e-19,8.361689462983898e-19,9.393792512643718e-21,2.2682188922821237e-19,6.854928430781373e-19,3.1490372676374113e-20,1.2609135094526103e-20,5.990196525052271e-20,3.159458305512347e-19,6.611068417212379e-19,8.581883135782437e-19,9.747211958293066e-19,1.5592205231428049e-19,8.935568835843575e-19,7.364052400207966e-20,3.010183074568027e-19,3.727438178979147e-19,7.050781903188547e-19,8.555106727025477e-19,5.312667130888147e-19,1.8342923945481828e-19,8.235680014183796e-19,4.491299327839907e-19,9.02608741282813e-19,5.655603475723032e-19,8.520893155675163e-19,3.880089807388354e-20,3.3666788497528933e-19,3.7565141555665773e-19,7.005081774855871e-20,1.3387295761195462e-19,6.276217244916251e-19,6.027712441714157e-19,5.258793331673785e-19,2.315817468604381e-19,7.11047349042155e-19,3.7745945474088854e-19,7.383395097325232e-19,8.112760391355215e-19,5.176976349279272e-20,5.103617948625136e-19,4.946911272940649e-19,4.73395770974838e-19,1.415919789273672e-19,7.707105017049809e-19,8.671145835219348e-19,2.6717095223094125e-19,8.3014210392269545e-19,5.871506603980168e-19,9.011758868559967e-19,9.338882231305531e-19,1.3116629677193825e-19,1.727723007527521e-19,9.898662149715807e-19,5.577845914317979e-19,8.70076175730944e-19,7.744795697810542e-19,1.2919157648595603e-19,5.232038940569528e-19,6.825328269062222e-19,4.200098399440999e-19,6.55160288204006e-19,3.554031342966978e-19,1.9043075902310905e-19,8.68493694444735e-19,3.11209784719938e-20,4.429414647905724e-19,9.941157418993744e-19,5.340296642819338e-19,3.525493115908226e-19,4.435736090853066e-19,5.750292490529083e-19,9.679254867705842e-19,2.9993591207067007e-19,3.6667501660212743e-19,4.70823775304992e-19,6.173398132332924e-19,7.006360892505136e-19,3.628827673803145e-19,6.400130732351597e-19,8.501912875895294e-19,5.626624704496481e-19,8.909748351985785e-19,8.942808492097421e-19,7.734443304102173e-19,7.652345253256679e-19,2.4238844941046e-19,4.0546435899558643e-19,4.0456109619022052e-19,8.723492625706794e-19,3.0395354023471235e-19,2.8876226162510876e-19,2.46735922042963e-19,4.756415109126755e-19,4.008772416654907e-19,9.617027646944107e-19,9.120766441355968e-19,9.862501355904946e-19,8.317314649043846e-19,2.513645846311651e-19,9.32991128046897e-19,6.817124298453405e-19,4.423796234387123e-19,6.958188777299922e-19,6.49484274039377e-19,7.394651801642919e-19,4.866910655910451e-19,5.311158710215509e-19,8.2637902886798555e-19,4.2127952576773314e-19,9.256745299560062e-19,7.896403044482842e-19,8.647980280157712e-19,7.568540186228941e-19,9.540763628994917e-19,6.220392959631098e-19,5.581234731428241e-19,2.55571999095241e-20,2.879594890757984e-19,9.367580228144733e-19,8.448621533046539e-19,3.842934430905251e-19,5.301640574952611e-19,9.4686023333248e-19,5.173990885799466e-19,2.2544964433960226e-19,1.0142519801171424e-20,5.0152390491146975e-19,2.0986099551307247e-19,3.158108393303184e-19,8.278645713965877e-19,7.802546188342383e-19,3.2685533286969573e-19,8.375019400322669e-19,6.890024009646277e-19,6.724087156181697e-19,3.946802578127384e-20,9.375049794605581e-19],"qim":[-1.2962664e-18,-6.757066e-19,-1.5610132e-19,6.6093853e-18,2.1975862e-20,-5.24372e-18,4.8422953e-20,3.2628798e-19,-4.6102605e-18,-8.842864e-20,-1.6613185e-19,1.6501086e-19,1.0779312e-18,1.5859048e-20,1.0386694e-19,-5.942718e-20,-2.193467e-19,4.4622966e-20,1.1458921e-17,-1.4929944e-19,-2.6348698e-20,-2.9923682e-20,-3.8167837e-17,3.7992717e-21,-8.535417e-20,-1.0077321e-19,1.0464618e-20,1.6003349e-20,5.585809e-20,2.0015376e-18,-2.3656554e-19,-1.9139317e-18,1.3707882e-19,2.5228872e-19,-4.2827835e-19,5.711929e-20,7.996794e-20,5.7763315e-21,6.6556555e-20,6.371293e-20,-3.521901e-19,1.462388e-18,1.4507033e-19,1.9249694e-19,-8.366544e-20,6.816979e-20,-4.7672187e-19,3.5434417e-20,8.283273e-20,7.4408315e-20,4.0156507e-20,9.006438e-19,-4.455615e-18,3.460125e-20,6.643239e-18,-5.32271e-20,7.895484e-21,-7.736759e-20,1.3453616e-19,1.4502098e-19,2.5317997e-17,-2.4998508e-20,-5.062154e-20,-8.127735e-21,9.636683e-20,-4.3279153e-20,-1.595827e-20,1.7452368e-19,3.1388467e-19,-4.7943043e-20,-1.1239636e-19,-1.7532799e-19,1.9726179e-19,1.1772895e-19,-4.3252351e-19,-2.3617971e-20,-8.248488e-20,5.740418e-20,3.3993915e-20,5.324013e-19,2.1420966e-19,-6.750067e-20,-3.4461104e-20,9.520128e-20,1.9472292e-15,8.829502e-20,9.9726174e-20,-8.418801e-19,-4.0523042e-20,9.2610553e-20,6.9168345e-20,-8.293305e-20,3.4707193e-20,6.1133455e-20,-1.0574607e-19,7.232681e-19,-4.0017633e-19,3.2650745e-19,-3.257778e-20,6.7176863e-19,-4.0385345e-20,-4.8355014e-19,-3.5300452e-19,-2.1968653e-19,2.4529646e-18,5.258298e-19,2.2728151e-20,6.903881e-20,7.7099385e-20,2.9274652e-20,7.5759256e-20,1.7516449e-19,-5.002876e-21,-2.5306645e-19,-8.511624e-20,1.2783946e-19,6.498024e-20,-3.5396167e-20,1.497658e-19,1.1447006e-19,1.1078502e-19,2.4621527e-19,1.7054831e-17,-1.0123568e-19,-6.039451e-20,1.4306767e-19,-2.836712e-17,-9.495881e-19,1.2920367e-19,-1.0916639e-17,-8.4764837e-19,4.8859807e-20,-3.119448e-20,-1.22965156e-20,-4.2992758e-20,1.6802506e-19,-4.383704e-17,-6.146138e-20,8.998337e-20,7.9021285e-17,-1.06688056e-19,-9.344605e-20,3.530766e-19,-6.6128344e-19,4.5205234e-19,-2.6088336e-20,-5.5592193e-19,3.3019625e-20,7.021156e-20,6.75868e-20,-1.6055024e-19,-2.9967425e-21,-9.554386e-20,1.5257056e-20,-2.2592306e-19,7.9994084e-20,-1.6847097e-20,-2.0570948e-18,1.2601586e-19,2.4033452e-20,3.3920128e-20,6.739911e-20,2.4701093e-20,1.0110277e-18,-2.334027e-18,8.926062e-20,-4.0644235e-18,-1.2507214e-19,3.2301206e-20,2.2778858e-18,4.507174e-19,4.5931907e-19,6.9000946e-19,-1.2273467e-19,4.7338854e-19,1.6628453e-19,-1.4056119e-19,6.4200706e-20,-3.6493525e-18,-1.6196919e-20,6.821114e-21,-2.4582354e-20,4.557312e-20,3.664139e-19,6.29495e-21,-1.7960366e-19,1.654965e-19,1.6579932e-20,-6.4126334e-19,-6.7199856e-20,4.404802e-19,-1.4470964e-20,2.5307983e-17,3.6907987e-19,-1.7556388e-20,1.7668975e-17,-7.977191e-19,-1.6681096e-19,-2.0691696e-18,6.710206e-20,8.606914e-20,-3.164213e-18,6.611086e-20,-9.567858e-20,-4.9010845e-20,-7.9907554e-20,2.918925e-19,-1.7034882e-18,4.6836314e-20,-6.8259337e-19,-1.1867127e-20,1.739144e-17,2.715342e-20,1.1236336e-18,-2.2768395e-19,-5.415485e-20,9.094677e-20,-4.2578886e-20,-7.750264e-19,5.10324e-20,6.7003975e-18,-4.969196e-18,-3.3177157e-19,-8.518207e-21,-1.0494421e-19,2.8438712e-19,5.2854374e-16,-8.01882e-20,-3.499727e-19,-1.4203318e-19,-1.5869218e-19,-4.102649e-17,5.4751343e-20,-1.8957142e-19,-1.974802e-19,4.6039603e-18,-1.8127088e-19,-3.422878e-19,-3.7129527e-19,-2.1642485e-19,-5.964452e-20,-5.7007504e-20,-1.1873921e-18,-3.4726518e-19,-1.4874265e-18,8.0195104e-19,6.487967e-20,2.8364212e-19,-6.734048e-20,-6.9162406e-20,-1.4160951e-18,-2.1370124e-20,1.8015044e-19,-3.2667216e-19,-7.551465e-20,-1.1556036e-19,-1.2064602e-19,-8.391148e-20,-1.206313e-20,-8.3073615e-19,-2.4267364e-18,5.8704045e-20,-2.1137503e-19,-1.155048e-19,-4.2956013e-20,-2.635787e-20,4.23963e-18,4.3861826e-19,9.7708067e-20,-1.5867259e-18,-2.1135191e-19,8.08906e-21,3.0801875e-18,3.868078e-20,4.5769713e-20,1.7345945e-20,8.27588e-20,1.2499785e-19,-8.3085386e-19,1.3151208e-19,-1.0142029e-19,-6.179352e-20,-8.752901e-20,-1.5936626e-19,1.3091552e-18,-1.491177e-19,5.38571e-20,2.950317e-20,6.8330954e-20,2.5157186e-19,9.946733e-19,-2.8324106e-18,1.3065191e-19,-1.9516495e-19,6.4233644e-20,1.8338274e-18,-3.6211297e-19,1.0228816e-20,-2.7834977e-19,1.696218e-20,9.441807e-20,-4.339131e-19,5.771385e-20,-4.5031635e-19,1.176452e-19,-1.1108956e-18,6.0932916e-18,-9.341337e-20,2.7497642e-20,-6.820805e-20,-1.0252293e-19,-3.4303653e-19,1.5498596e-19,3.7335058e-18,1.405289e-16,-1.4867045e-19,-1.866606e-19,8.5558155e-19,-3.1598292e-19,1.6989026e-19,-2.4783686e-19,4.6825228e-20,-7.231233e-20,-2.0031688e-19,-1.5237797e-19,-9.8112175e-21,3.1626477e-18,-8.5219126e-20,-1.2588064e-19,5.4348325e-19,-8.8714796e-17,6.562271e-20,2.7710613e-19,1.3676386e-19,3.2583218e-19,-1.4860898e-19,-7.858451e-18,-6.7666625e-18,1.4929964e-19,-1.1192303e-19,-8.366501e-19,1.4302492e-19,-7.0000144e-19,-2.3680622e-18,-1.4909929e-19,1.0502868e-19,-6.8177856e-18,-2.7315696e-19,-2.6971791e-20,-2.5645097e-20,2.0530715e-19,1.0044569e-19,-2.5866982e-19,-1.5595542e-20,1.5912679e-17,1.0310173e-19,1.3921198e-20,-1.0344993e-19,-4.0975245e-19,1.0592454e-19,-5.6661426e-20,3.0845782e-18,4.2123123e-19,-3.7051834e-19,-5.6820225e-20,2.3538268e-20,-1.1904619e-19,3.1955952e-20,4.1768885e-17,-9.2405497e-20,2.8881187e-19,-1.3114823e-19,-1.7256161e-19,-1.1533589e-19,-4.1765422e-20,-2.4561226e-19,2.0446166e-20,-1.0987988e-19,-3.883648e-20,8.078379e-20,2.4418865e-19,2.2387897e-19,-9.3478e-19,-6.538523e-19,-3.4809115e-19,-3.2612646e-18,9.6899284e-20,-4.2852391e-19,-1.2299305e-20,-1.1514394e-19,-1.9093742e-18,8.4314194e-19,-1.2733512e-21,-6.045135e-20,1.7858691e-19,-4.6797498e-17,5.7674887e-18,1.9207262e-19,1.7714073e-20,1.6284918e-17,3.3707612e-18,2.416405e-19,-7.890816e-18,7.668771e-20,-6.3712236e-20,1.5903033e-19,-6.092884e-20,-1.0081266e-19,1.3072086e-20,1.15717e-19,-3.6545269e-19,2.9114933e-19,-1.2306978e-17,-1.7221537e-20,3.7815373e-20,-1.4062644e-19,-2.8196875e-20,1.0327537e-18,2.3138863e-19,1.0287279e-20,-5.0786812e-20,1.7081211e-19,1.235052e-20,-1.7527183e-19,-5.3839965e-20,5.0414422e-20,-1.7756077e-19,-1.8486227e-19,-2.4138969e-18,1.725947e-19,1.1708173e-19,1.1029828e-19,8.2171754e-20,-5.1686184e-19,3.9687213e-19,1.0641719e-18,1.5506492e-19,-4.5319523e-20,-4.902026e-19,-9.427492e-20,-2.0025161e-19,-3.9544287e-19,-1.7643116e-19,1.00437504e-19,-2.7765426e-19,-9.419971e-19,1.2247915e-19,-1.047822e-19,9.435361e-21,4.3501483e-20,-1.9422035e-19,7.490372e-19,9.857965e-18,-2.1061508e-20,4.758375e-20,-1.7979463e-19,-7.1729607e-20,-4.373753e-19,5.796803e-18,1.8574076e-17,-2.8051995e-19,3.7586022e-19,1.7664677e-19,-3.697383e-19,3.9260613e-19,-8.379183e-18,-6.0080036e-19,-6.5731403e-20,-2.9158773e-20,-1.8761198e-19,1.0670417e-18,-3.9691083e-19,7.614245e-19,5.224477e-19,2.1697781e-20,-1.5795276e-19,6.9863035e-20,1.4629543e-18,-1.48304e-19,-3.8623852e-19,-3.542299e-20,-3.3638154e-18,3.0534455e-19,-4.8843758e-20,4.2158322e-21,1.00031805e-19,-1.3259196e-19,1.182485e-19,-6.5919486e-19,-1.2955489e-19,8.869167e-19,-1.1845973e-19,5.728129e-19,1.6032115e-17,-6.409952e-20,-3.846671e-19,5.4277236e-17,2.164824e-20,1.7969063e-19,-9.8348977e-20],"qre":[-2.6974375,-1.6826035,-0.96558064,10.064302,0.6425749,7.5370965,-0.46194836,2.4496305,-7.0565324,-0.45071882,-0.90322906,-2.7771957,4.948105,0.63095266,1.0462185,0.14969145,-0.6378996,-0.15505846,6.2434926,-1.0299873,-0.878805,1.3124608,13.412694,0.0681904,-0.38699028,0.009178628,0.43260187,0.66817284,-0.8533266,-4.0177317,2.308309,-1.7055422,-0.5411402,-1.3678783,-1.5466741,0.08605043,0.2996611,1.0159031,-0.20937066,0.4301366,1.86972,4.359134,-0.854151,2.1096337,2.2135386,0.5263392,-0.0067488793,0.17719087,0.96084374,-0.24834357,0.9221078,4.273379,-6.698474,-0.28793213,17.091536,1.8463631,0.5797044,-0.21581991,-2.6607904,-0.50990415,-16.985994,0.6478761,0.7534803,0.36492714,-0.9121405,-0.42221156,1.0488253,1.4750266,1.1545558,0.08658622,-0.64805204,-0.75451225,-0.59357905,2.2317524,-2.9676988,1.9595338,1.3222741,2.9484396,0.81552976,2.1523428,-0.89206374,-0.64440817,1.1296707,-0.4851047,-80.679405,-0.08547545,-1.085557,4.2559824,0.64816415,-0.4819832,-0.9601784,0.8867665,1.0492823,0.04264754,-0.3163624,-2.1063027,2.2915883,-1.689239,0.7267912,-1.8188757,0.15540433,-1.4420389,0.406184,-0.7034184,8.5844345,-2.6579292,0.94362676,-0.37926227,0.18998292,0.06074761,0.2980316,2.0747666,1.3103298,-1.2546146,0.5083352,-0.23317192,0.079476856,0.6525182,1.466373,-0.8009765,0.08638342,-0.78168243,90.50111,0.2445833,-0.96784806,2.7131727,-4.6259184,-1.5423665,0.7184655,-18.214123,-1.6645747,0.087986946,0.038982335,0.59893817,-0.082904294,-0.018713929,28.032028,-0.5170504,-1.0211369,-20.195948,1.4340861,-0.6639171,-1.6407877,-1.8331907,1.3798096,1.4487783,3.3731015,0.4080593,3.2912366,-0.19187737,-0.19958407,0.0018440562,-0.14911804,-0.4446671,-1.0172355,0.4106656,0.003884953,-3.2837198,0.055588067,1.2311864,1.1338655,-0.25078318,-0.52318376,3.8082817,-2.391704,-0.781149,11.372365,-0.13191245,-0.25582004,4.1394615,-3.3518176,-2.1182828,-3.5760345,-0.77871233,1.4701034,-0.6000024,-0.6065632,0.9310738,5.51341,0.77233666,0.9442629,-0.18625963,-0.3052122,-1.217901,-0.6483574,-0.84496874,-0.036578022,0.50442415,-1.5681939,-0.42009753,2.2296312,0.07966106,35.501633,-1.4478352,1.0592881,11.143821,4.8594685,-0.7400643,4.7660365,0.47391415,0.81671625,86.20066,0.13291547,0.008133693,-0.5569305,-1.121837,0.87170696,5.451125,-0.5699974,-3.1031168,0.36437705,8.548792,1.1750879,-7.0504045,-1.2814991,0.70540947,-0.7777864,0.46743712,3.6529925,2.2547157,-1.8600516,-5.1920815,-0.43527353,0.5498277,1.1382157,-2.6859736,48.096878,-0.44199035,1.2977258,-0.9458695,-0.3934553,-26.628242,0.6960616,0.31077388,-0.51587653,9.429086,0.6601514,1.8969837,-1.5704118,-0.9757535,-0.40399596,-0.3305382,-7.5710545,2.1132295,-5.6556907,1.63675,0.77672523,-3.7889519,-0.504345,-0.98612535,-3.1450758,0.13840674,-1.1619433,0.4812062,0.060006898,0.7099019,-0.6715106,1.2380134,-1.0349693,-2.6937842,6.062499,-0.41544876,-1.6509975,-1.719476,1.4185584,1.3151742,-6.5513606,-1.5636177,-0.96814734,-2.603884,-0.32140434,0.30047056,-3.0567236,1.6877406,0.253164,0.891127,-0.3623819,-0.23256129,-3.674343,1.7859534,0.37109804,0.31848603,-1.3079121,1.2807658,-3.340224,-1.0577964,0.71409637,1.2516725,-0.579729,-1.0446075,-2.689457,-5.2562056,1.3056934,-1.3648266,-0.13193944,-2.180247,2.7291644,-0.031145878,-2.7192326,0.17935483,0.78083485,3.182912,0.36539793,1.9227775,0.220088,3.0939853,-9.571352,0.30351588,-0.29604998,0.99840075,-0.20463802,2.165419,-1.1784855,6.604912,-71.63351,-0.3433006,-1.0708647,-1.8703496,0.09954705,0.083172634,-0.7865724,0.045998752,-0.11420232,-1.1251711,-0.50543517,0.008568215,-12.173205,1.5551978,-0.51656014,-1.2256852,-35.917294,-0.4514515,-0.6468046,-0.3849866,2.0019581,-0.6885342,-8.897055,-8.383013,-1.4411594,-0.65530896,1.1980416,2.0201442,-2.5448217,-6.5408144,-1.0301515,-2.508136,-7.7365994,-1.3283509,1.1565182,0.7291418,1.3914809,-0.32895863,3.7590692,0.010304493,-13.147015,1.1798252,0.15660276,-0.6691183,-1.9546397,-0.98441184,0.102845855,5.1250105,2.647586,2.4795632,-0.70841056,0.009536965,-0.7824457,-0.8685159,-11.846757,1.0480584,-0.50025094,-0.0066159684,2.8150828,0.34089106,-0.10774994,2.060349,-1.5665938,-0.7421602,0.262488,-0.3861204,4.757138,3.299533,2.685573,-2.9887862,2.3163617,5.249055,-1.1552052,0.6376677,-0.33583888,-1.0317348,-0.33546364,1.5396419,0.54445255,0.16664845,-0.37238318,20.880201,-8.285987,0.007018547,0.3455219,-13.089275,5.8549604,0.73115665,-10.053927,0.36987653,0.1100113,-1.0246928,2.2524717,0.080758885,0.8143896,0.77420557,-0.94600505,-1.4254353,7.3055363,0.044636413,-0.6868365,-0.9861999,1.7065362,-1.6058542,3.2140486,0.2725852,0.09642373,0.049633566,0.38425764,-2.1066036,-0.021365065,0.58649796,0.44733647,1.4267671,-2.2894735,-1.0869803,0.21079437,-0.72882116,-0.8579987,-1.5637666,3.7751894,-6.6181974,-0.6029154,0.2916093,-3.099996,-0.55335927,-1.8872209,-1.4571322,-0.9991401,-0.29724252,-1.3312528,3.7624662,-1.0122036,-0.048914906,0.46900272,1.3294873,-1.1252275,-1.4617418,-12.829063,4.852602,-0.21272974,0.097720906,-1.3782974,0.97005147,-7.499246,33.40316,-1.1845288,1.8675572,0.23306188,-2.1597126,-1.8272855,17.085,-3.0425582,1.856942,0.8580887,1.6742481,-2.072776,1.3498608,-1.6574185,-1.109525,1.0303823,-1.0630862,0.6947084,4.017338,0.18087171,-0.9140868,0.32017002,5.2914805,5.7005606,0.30549762,0.649475,0.024812467,-1.1349087,-0.5897379,5.8171105,-0.82567036,-3.2682936,-1.1880318,-2.0397782,-32.83749,0.13829067,-0.8578569,17.182165,1.1090977,1.9689876,0.3211246],"re2":[-1.3434393429493348,-2.3021601959433724,-9.35596911210526,-0.7208330021879839,-7.656719529290066,1.0858801642277598,8.49294202326928,-2.0928087740145207,-1.0841904611891522,-5.405372554422856,-8.597501547404917,3.500689858442847,-1.8339562755047787,5.9851856830713235,-3.964751844258954,-9.941940765478016,-4.829835644803778,9.566678302695152,-0.4971158394799424,-7.60333521765131,-9.168335357978227,6.008641775763426,0.2730929574543097,-9.02793683359186,-9.004100240356001,-6.243645445179851,6.885730816081757,-6.434988133008838,7.121166548752441,1.138071024403839,-2.388799338537866,-0.9437647458423761,7.761472844755161,4.120637852142883,-2.6302871269512433,9.821827680778515,9.473784398440845,6.656690594777956,4.835192747268199,5.802490335604428,3.8472054143648506,-2.1242327353147994,9.742447462186462,3.152483388070797,4.285420113436292,-5.475612943507033,-1.9611734157123948,5.686956259886937,-7.584958590985533,8.505688304538907,-7.335154698414739,-1.4643201674577888,-0.5118825588473328,8.34243206121505,-0.5603912240367048,3.021822087870305,9.42586464405678,-8.523530842611478,3.715386179529066,6.86890158434813,0.5741679648366098,-9.109149638268704,3.0189555142604085,-6.7353649802571836,9.574284488280902,-8.785376604805897,4.665395477851238,-3.492155284400493,-1.2367844319603307,-6.157232511798525,-7.416400893347259,-6.822205850147243,4.068415388684796,-2.6207160986534657,-2.8506015068951163,4.8654653774057195,6.457163862574763,2.4963659122517576,9.12702356021844,-3.6951416590758335,7.999632142514574,-8.503536080852644,-6.074582861841355,7.922894571456126,0.03609385773733109,9.007477563684223,6.408268180522878,1.5582704562537852,-6.334029401244239,4.442400932440414,9.605923534156293,8.886795257945927,7.700466653531262,4.150677853610709,-9.75159304270948,1.2392319563346366,3.716283833488747,4.093048259035633,9.335638206332412,3.6227848942058607,-6.6896923596117475,-3.612547467726552,-1.7569433153480816,-6.4615406549847805,-0.8273192965224325,1.9330336917901327,-6.941343820108599,6.289387051827958,6.904222025405183,9.452884800338165,8.449946556700006,-3.1042914043415593,-7.513372857796552,-5.491938498503219,-2.2950577633921547,3.632130329193288,9.626252407958525,-8.725738734800322,-4.007187085771315,9.715925309546954,5.357811409641705,4.0987737981809005,-0.102742944362058,-4.594196876782323,-6.004799864003654,-3.43847178565055,-0.11289617019474463,-2.027461485021636,5.4534504605395995,-0.4239882041753855,-2.0121257265686303,7.41304825458332,-8.702183860664167,-9.118226323572895,-9.108156188588525,5.854892258149473,0.3494206179479775,-9.056347900199018,9.086049513410273,0.2159824998493658,5.873690421955617,-7.2121469739918425,2.120121022458953,-3.44153658761652,-0.9788313380882574,6.178015833769031,2.6679207897715873,9.899405720784618,-2.935384449314899,7.768997411530876,-4.797484026664054,-4.868607721725788,-8.72515366977207,7.251167139330789,-5.05390190868261,6.253780482869285,-7.04284489891897,-1.2236041349695075,7.2280587376319865,-4.558348070398159,4.610010587281803,5.524865812923682,7.005575921177996,-2.288276482222482,-0.6255624923369751,3.7187849248387472,0.531219556770095,-7.891128291536824,7.7298763341584795,-0.2566581534463772,2.2756347498098446,3.835861114078199,2.332317214305178,-8.052706363356016,1.5360343859036423,3.405750532444392,-5.4809148749946175,-5.807510135414735,1.295243651586052,5.965365655198077,-7.945339820219008,-9.457659551521797,9.894532223753135,5.818759830807343,6.483535443731302,-5.272648276748946,3.7937988540912286,-4.248488865192773,-1.413044070756932,-7.46790647254522,-2.134996820421378,-3.949442331646038,-0.2635623993628755,3.508475388066719,-8.2484050578575,-0.5642781471338605,1.4233516023726622,-6.073603987630312,1.4646111322165911,4.0347395923618645,6.374002103317519,-0.0925650103497162,8.20259574103834,-9.96728851598095,-7.549799477494698,-8.325095457826247,2.4416257773833205,1.6450129322921825,8.086626045530014,-2.9095137243306564,1.4983979832042067,-0.11197412424581898,-8.494104895557626,0.9728641030743788,-4.339780600090444,9.541649926613506,8.82483853071065,-8.065342033619922,2.012474286186885,2.49761947216623,0.304616668618948,-0.7721259788818848,-3.3264509177084056,9.600652644785647,8.011379063765098,1.8631806950356946,-0.06187546387156395,-7.8903359754314,3.465232744187931,-8.89606445705681,-5.976689033344622,-0.27317049447691844,-7.094198330378571,-3.5031390462173846,-5.992435793596034,-0.9195602175049551,-1.2315463469963,3.8076474778204723,-3.263502092738541,-3.1394068162314674,-8.04951670978264,-9.341634828946946,-1.0537181436675862,4.6712664037694935,-1.22308967671281,-1.2808731978847288,7.827150405307005,2.513967089666334,-7.2962104382360815,-9.167113137731945,-2.730518727153795,-5.223353910559987,6.5623311916296565,-1.9947445889521198,-9.323216946763882,1.1094575364625463,-6.56269898622422,-6.0819453897662745,-7.087008135789363,-2.319821786106539,1.5991732792649884,8.618211993907611,-5.572484025468882,-5.533682107562024,-6.48078973248446,2.529430570505582,0.8969537617534264,3.5646829000141302,5.818974892441744,-1.6797019571341778,-5.341381051402811,9.547255985773106,0.5680265297124727,-5.735894192961459,6.743285829435447,6.291239777484485,6.558581966132767,8.636364671316997,-1.641736630070973,4.3772482445183165,-7.766082686372064,-8.994956446786981,-6.014283088772712,-3.3343550642770925,2.9119323073280157,-6.956095094739025,-4.619861026682135,-7.612023382638098,8.528612110276075,5.155764995241636,3.59659850409205,-1.6187454256849172,-2.4418286466076182,-7.013258689606838,8.415192746673192,1.2183839190675911,2.984318761512947,6.7767315165582005,-2.1943867055355266,2.3612886418043093,6.46742507781633,1.8333511615374416,5.056913218807569,4.008741436117367,3.7575881313869335,2.1851653322522644,0.7604438365967798,-7.501050433682257,9.472666057931036,-7.629756763763218,-9.662567179762046,1.8410257935826415,4.39540440906419,-0.9843998507836247,0.12443877022384697,-6.086453036089341,-7.654042157864563,3.202684891605225,-3.0271366523740735,1.2399526589604086,-5.706023256330672,6.8272362098611055,-8.189224905993209,-7.9713823087335145,-8.645987884971067,-7.334909850323939,0.7906681200693093,-5.787896499698109,-7.167207794318515,3.120825103900394,-0.2636196127959245,5.256740526280897,1.8107630221857391,7.663761828155657,-2.921311110341101,-8.969967009915301,-0.7827584430156005,-0.9827305904469767,6.794796765952956,-5.7989306547500075,-0.41493596887770146,4.677488681616369,-3.3697311136724224,-1.3612357709645053,-5.367302243766876,3.8850786381709472,-0.7268406810909323,-6.674704475389628,5.755045014617741,-8.303932453876378,3.2109646621900634,4.900490433895772,2.407489069160679,-8.581307435258195,0.4906447477103022,-5.563205975293584,-1.7309543821752413,-7.242074171935144,-3.9209115005192547,6.736145916340476,-3.6899573837977906,-1.3244241386886912,-2.93795164491012,3.4501242238847603,-8.749008969696693,9.270214396011575,-8.880421726504313,8.14394432633464,0.2353725014699748,7.502365577337034,2.6716447348316557,-5.041097493261821,-1.6340575694257957,-6.099906246467965,-5.506348828436646,4.525318406386305,5.35702210802606,-6.699713722700851,-7.184623790613156,9.873754541363084,1.8212303133029089,1.5395680923578645,2.112960625250791,-1.4380808450108873,2.6940066649131857,1.270573380226974,8.51978075679311,-1.5726771026403146,-8.663375328715157,-7.727879253745713,-0.2147808271132572,-1.5683563179500553,7.100839576966472,-9.155213019163433,3.88250398284249,0.3196303617922087,1.1289396643831004,3.674298351787609,7.061206507334873,0.5479688933105358,-1.0041906560773803,-1.5932131967571461,-0.9784379939856152,4.937521595691695,-5.89265049103346,5.115629692206859,-2.982425359705106,-7.854698737015832,3.4563883547043126,7.006737690768087,-2.3210840716697394,6.308234181792809,0.48175600005145647,-7.241782404781894,7.445938835037023,-9.552354013499944,4.291943665469013,2.072027564852979,0.8999598909315676,8.545707999080832,-9.995530187801423,3.731611245817625,9.83720515087198,-3.9450248598680515,-6.8416599215130685,-0.7395603717575199,-4.360726279401357,4.868041026015446,-0.7250306126332511,8.365855940688263,4.39698679323617,9.095914081520544,6.429833697454605,-2.5607842688225357,-1.8992282827535831,0.857070803579882,5.754561914809898,-8.449213447980524,-2.8042145340966362,-9.554551108877243,-3.6370689927034388,-5.252742817536125,-7.403964096063578,8.095913840619353,-6.053141177187333,2.583840742859067,9.529345109972773,-7.651592596905614,-8.65377282039244,-7.039736117540299,-6.688958367764046,2.378306905050403,0.7524134710757338,1.9950614241771412,9.219021357481619,-2.5126066802426834,-7.046426924385805,-1.9218108437932742,1.1036521593056001,-0.2847055021332441,-6.438185954998604,-3.3136882043871534,4.664340144745074,-4.15467505501991,2.5139862596785676,0.5537655912061226,-3.0262543351867794,-4.402096014996091,6.19888512097366,5.642285423099768,2.0661613680110094,2.095629756710519,2.0567788563221097,1.8605505554881336,8.64016232012829,-6.650478591684934,7.170238122730158,-1.4747757386181775,-3.536493369179756,-2.0898050603266682,-5.613866625230721,0.5514563178806604,-1.5047676011859412,-4.887452693737782,-8.215470302047034,9.309351549116087,-6.052387842356999,5.980546254100631,1.3502596253281158,-7.4435199897739235,2.558777259553427,-2.8820481237403417,4.028976125899602,0.0762898053174883,-4.892516111151424,-2.9652169596185924,-0.30275749314792755,-5.469102999904745,-4.14470119927876,-9.067831780341413],"im2":[4.0113291797410267e-19,8.069097621120554e-19,6.9616600791703e-19,4.998709790393389e-19,8.700976918298632e-19,7.881707871240604e-19,3.7950654605708127e-20,6.3221567551276e-19,5.728698685860123e-19,5.212771865170133e-19,6.696333425868954e-19,1.866394852931508e-20,5.512020300603484e-19,3.5239738666012466e-19,4.3428361751729e-19,3.5315510007095975e-19,6.817406389377445e-19,5.154170846651727e-19,9.566640949776373e-19,9.1681012463747e-19,1.5562575892903354e-19,2.502615949388223e-19,8.315569452084673e-19,5.960284163118955e-19,5.027061422048237e-19,3.3541077861152236e-21,9.7547836229039e-19,8.670218855032556e-19,4.392785560735622e-19,4.480850626052357e-19,5.3570952506034835e-20,9.16062475573726e-19,7.984819308096033e-19,5.404518946734075e-19,9.37452955129794e-20,9.898945284388669e-19,5.189455190524522e-19,2.435774560655412e-19,8.762364585457584e-19,4.3057693437114667e-19,8.969348803110986e-19,8.988757422169947e-19,8.511493212078862e-19,2.9625085114148075e-20,4.695450961199154e-19,8.847758537660925e-19,8.80959766586118e-20,1.847268308932153e-19,9.701935402828042e-19,2.8182886216040537e-19,7.032186783514847e-19,3.7364672885194985e-19,3.1422691226809533e-19,8.406428230741208e-19,2.4750890546510465e-19,5.333141951741726e-19,1.6948821625814793e-20,7.33233738353447e-19,1.786537957894534e-19,1.953651322070026e-19,8.155360473089382e-19,3.240704072207075e-19,4.1897843763486587e-19,8.245134043508289e-19,4.1713976659711443e-19,7.073058922628243e-19,7.179393500646775e-19,8.209909630166064e-19,7.368948254901712e-19,5.09798131573456e-19,4.0772874657465365e-19,6.873460942322678e-19,7.037139559135986e-19,4.759507374272716e-19,1.359055134746694e-19,4.10338593603839e-19,7.80561454039116e-19,1.0975687672756886e-19,1.6050062059212778e-20,9.171714961445381e-19,8.542374304059432e-19,7.927999134767699e-19,6.45482892131669e-19,9.232175382012682e-19,8.605690674202702e-19,9.940556706417375e-19,4.2327000203364076e-19,4.058515293100935e-19,3.350945981917798e-19,2.1934774408848014e-19,3.948357975547441e-19,8.944450474714089e-19,6.791606240472292e-19,2.1555764476736707e-19,4.570598077672721e-19,2.437287462599197e-19,9.472433194686058e-19,6.533112040033045e-19,7.694559554070783e-19,8.915183499366198e-19,3.2405548653787077e-19,8.480031246305223e-19,6.50144445334664e-19,9.938736677193153e-19,2.8938944791084854e-19,1.339472642428382e-19,4.996600298876155e-19,9.491316840681032e-19,5.799639538988349e-19,6.752804095636866e-19,8.22062916228987e-19,6.476993002890291e-19,6.087066998437854e-19,6.815315013522105e-19,7.456123777781412e-19,9.278726108025324e-19,5.978766747695068e-19,3.3659240313136944e-20,7.981487421838655e-19,2.825018642770453e-19,6.316835862887091e-19,9.78281808598988e-19,2.687758095096704e-20,4.642766206099155e-19,1.578407459502923e-19,2.0955480263354942e-19,5.015259972958505e-19,7.114163787481821e-19,2.1669546001803965e-19,1.9937348729894435e-19,5.660907267201836e-19,7.441278859291039e-19,8.529380320032355e-19,4.4938629210334984e-20,1.5995812688065005e-19,7.34730547758664e-19,5.687309148876008e-19,9.45830883652667e-19,2.4879625147805106e-19,8.292068918588025e-19,6.320201623812754e-19,3.5035908640089166e-19,1.8912431657439367e-19,9.105144317755647e-19,9.629529662759394e-19,3.0814437876492873e-19,5.580044545698268e-19,6.593585463971938e-19,1.631559478352328e-19,7.82744273630667e-19,8.104093894957454e-19,4.6214879178661855e-20,2.3195510719712465e-19,1.4987943425160146e-19,5.84188493705263e-19,1.3120440455839156e-20,5.006799817977236e-19,6.865024137062237e-19,6.958812936354783e-19,3.1894491510312e-19,1.15812140316916e-19,3.777955718490003e-19,2.7465462503417127e-19,6.887153815045401e-19,4.130671469345352e-19,3.638942754397812e-20,2.391130217904175e-19,7.364599573319138e-19,6.174775134322388e-19,3.7218211812367556e-19,1.6624352411201382e-19,5.37322394640495e-19,1.971958789877265e-19,3.337455366424884e-19,4.6936358827134545e-20,7.598018466977302e-19,1.7261260730468322e-19,4.723574769597711e-19,8.860720096726044e-19,3.3828118791608787e-19,2.6764461455399802e-19,5.113423513152086e-19,8.869684624890493e-19,9.94604352597585e-19,1.0945726932782952e-20,9.835632418209595e-19,2.1908826089672097e-19,1.584624395596901e-19,3.503442448922396e-19,1.0619352941498884e-19,8.649811059840983e-19,4.735261051588713e-20,2.1087955265429838e-19,4.375587142571678e-19,1.320076162124253e-19,9.717050797240589e-19,3.34028602263995e-19,5.735179752476452e-19,7.648695747903012e-19,1.957933092204184e-19,2.497951019243262e-19,7.368789796213582e-21,8.858366089495707e-20,7.858043675843539e-19,2.2041299174570652e-20,9.35442488629178e-20,1.6350404294409394e-19,5.352761387842506e-19,5.847792115894792e-19,3.2146284602434186e-19,9.780515086193254e-19,2.884937229265051e-19,5.238866600923258e-19,6.346453442139832e-20,2.5089207419781937e-20,7.737802124084154e-19,3.266584424521525e-19,6.070662417570767e-19,5.526014033668648e-19,3.5548869028674484e-19,6.423801736720072e-19,6.3038762862107465e-19,5.239070068971145e-19,3.544748780740009e-19,8.628797791410532e-19,3.893964432125652e-20,6.95830430461813e-19,1.5580223371243196e-19,9.737617986653744e-19,9.6957711242534e-19,2.6575435586822962e-20,3.906645506476254e-19,7.049311168174055e-19,1.5613800011425473e-19,9.792854169057857e-19,4.956639495498552e-19,2.5618971734679064e-19,6.991559861338601e-19,5.723035664441751e-19,4.727630244430018e-19,6.291854332093826e-19,4.938284127132418e-19,1.5339215585259759e-19,8.752231532210926e-19,2.1450872082542229e-19,7.849220508707828e-19,4.869533063378263e-19,6.754878457319225e-20,5.116212885127438e-19,5.884544579631889e-19,9.59292507670077e-19,2.2111267476200416e-19,3.005439987860733e-19,2.788342595347725e-19,8.897703239249962e-19,8.676661671044919e-19,6.124386635268288e-19,7.264664887197515e-20,5.803423352157856e-20,5.651131913116784e-19,7.912418031304613e-19,6.699310982063757e-19,2.4453179271954165e-19,2.178991652446487e-19,9.89360571187079e-20,6.229788025021937e-19,4.407462137646206e-19,4.805656994673987e-19,4.548723437503104e-19,6.642862549372159e-19,4.758711142743507e-19,8.689570600648045e-20,3.661038581613041e-19,5.900611241837112e-19,8.518223316831403e-19,7.297400914430963e-19,7.101395300014806e-19,3.453290195843577e-19,1.1814101675285039e-19,9.696684818362078e-20,1.7174481856810232e-19,5.983991850132972e-19,1.5361344153888303e-19,1.858873149527023e-19,8.699774832115554e-19,6.481673187302763e-19,5.260588184289122e-19,4.0396991905912975e-19,9.348439499927022e-19,5.414264493258867e-19,9.586903309065153e-19,6.9633212937849e-19,4.3615605255276165e-19,7.47538417216281e-19,6.491032008954759e-19,9.62379911986495e-19,7.339857108486751e-19,6.417877447546994e-20,2.1210697387101176e-19,2.1914812819268772e-20,6.48481638765499e-20,5.311882762094526e-19,2.495884889436718e-19,9.42828441868304e-19,2.131990181077177e-19,8.276451695753531e-19,4.0014701352860295e-19,2.62432424920559e-20,4.73405129301195e-19,1.1058218927647912e-19,8.952802139319052e-19,7.276694265419998e-19,4.429380440901903e-19,6.301413088827884e-19,2.320116788068625e-19,5.710617715500833e-19,7.638427418364564e-19,9.718828734842116e-19,1.883217088815319e-19,7.776389061876668e-19,8.321906190262653e-19,2.6246456637563146e-19,8.233211246208158e-19,9.993800162418924e-19,8.85611680542421e-19,1.8474411120238712e-19,2.008645704884149e-19,2.592993101230433e-19,3.875238297393007e-19,9.242414694225767e-19,6.3076104302372595e-19,5.938857928115769e-19,2.5728338923933893e-20,3.949218377997399e-19,5.232519066363894e-19,8.535639245015837e-19,6.322269563380912e-19,7.1617142703622325e-19,6.922978607560395e-19,1.0991610548155206e-19,3.3157491779341465e-20,9.989866789545733e-20,7.203774035215883e-19,3.7720706274539364e-19,1.1390189895323977e-19,1.2255372528620678e-19,5.345912090743103e-19,6.796901848077088e-19,3.2261968578639126e-19,2.7352526575326943e-19,8.172235897118941e-20,4.881022297052202e-19,2.651912666464276e-19,8.594924738863778e-19,5.302610231860585e-19,8.356178778390567e-19,4.381358169969395e-19,4.7732661148647985e-19,5.013207569987469e-19,2.4450320842996356e-19,7.443161804309556e-19,8.871658525791952e-19,7.060596032400096e-19,8.527724860891932e-19,6.884805252417714e-19,9.035493553325575e-19,4.750329129715303e-19,2.633885385182686e-19,8.288037790289873e-19,7.186258140448871e-19,9.108566960323474e-19,3.656289927922885e-21,2.046876645646585e-19,7.955124982954235e-19,6.87266507976784e-19,9.731510300111017e-19,2.2909603214895438e-20,5.863227197388341e-19,3.570385476859727e-19,2.3972080690178177e-19,8.63516939211797e-20,5.655036911298329e-20,8.037697317327395e-19,3.9054129221641314e-20,5.9873634072662025e-19,9.613701512353167e-19,2.2506852510308187e-19,2.793924263125688e-19,2.0174134477410811e-19,5.361363439620184e-19,1.0268043126017912e-19,9.043647001694838e-19,2.6249267913569897e-19,4.451090811631073e-19,2.432793877045042e-19,7.415531956276251e-19,7.578535505842435e-19,7.57313943377615e-19,7.304218035830491e-19,6.253431265505258e-19,7.166851557602021e-19,5.973475016261252e-19,7.171637153220066e-19,3.137369274624171e-19,8.904706257205764e-19,6.557558903505785e-19,2.6148819449283e-19,9.319280190577438e-19,2.72583006566447e-19,2.4984917607997482e-20,2.759982469753956e-19,6.562642533716398e-19,9.39403801073435e-19,1.4453855879325263e-19,1.5840549161708641e-19,3.5839313475578007e-19,3.9776711945328183e-19,7.907432096664535e-19,1.7617626928878318e-19,1.514370170656285e-19,1.613998923790512e-19,9.092320481695287e-19,7.768622241254609e-19,1.722747782200951e-20,6.062041679166947e-19,3.8826265017274257e-19,2.105793423245802e-19,6.525508617742193e-19,5.709642536338551e-19,4.1379465729297997e-19,9.119241477038476e-20,8.928312322164137e-19,9.880799742949764e-20,4.786791081058509e-19,4.560503330715419e-19,9.249267252790106e-20,8.718562766600721e-19,3.0146317562414975e-19,2.442884897543363e-19,3.616428296162535e-19,1.936424991480156e-19,9.862842730186973e-19,4.564911892148965e-19,8.4264836640212355e-19,5.932048958389409e-19,8.84593050107502e-19,3.8895517015037554e-19,7.465254066452254e-19,6.909126216290081e-19,5.353216421123914e-19,7.950132376594301e-19,6.219231270388362e-19,5.544685287739307e-19,6.816574883790639e-20,9.022700999843068e-19,2.4445464026119357e-19,7.586183332965924e-20,1.2489038218790194e-19,7.314838784150082e-19,1.8783825540380761e-19,8.225281193548659e-19,8.015005724790234e-19,4.67903870893041e-19,3.9562211393789927e-19,2.980523982424559e-19,3.1231624429513308e-19,3.841144283235477e-19,2.4239274002391856e-19,7.778251235593593e-19,9.494865803816725e-19,6.649542381879071e-19,9.28286624793963e-19,3.8638844005107923e-19,1.6439467842657007e-19,6.573538239505024e-19,2.761840000264869e-19,6.522761823749718e-19,6.918932595012677e-19,1.8602890001411e-19,8.550676210148289e-19,2.7828821199827295e-19,5.275943331910658e-19,2.2880815124138735e-19,4.765075494264009e-19,8.696240266506613e-19,6.298811649614754e-19,2.512086470449675e-19,8.168731240405482e-19,1.5475496832329295e-19,5.605391066542916e-19,6.301640527993267e-19,2.1544710964267025e-20,7.255615799252812e-19,1.3485571394725617e-20,9.579396871586477e-20,3.5334498430920937e-19,9.964892390528598e-19,7.130167317502466e-19,3.9829195855075664e-19,1.422905070400583e-19]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json
new file mode 100644
index 000000000000..b599fa4cc904
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json
@@ -0,0 +1 @@
+{"re1":[1.91963078505221e-19,9.940171876156731e-19,5.979520091362213e-19,1.357797802632187e-19,7.845010414904143e-19,6.082429215938576e-19,1.982979817120042e-19,4.968278951219236e-19,1.4007683374756954e-19,2.521606823726923e-19,9.283632251076821e-19,9.983376644983773e-19,8.813957168318367e-19,7.853110148850486e-19,9.106884311101175e-19,5.384245542992485e-19,4.665385315215393e-19,3.834142014799299e-19,6.900862202229075e-19,7.055440487796113e-19,4.202225393594467e-19,6.580397209886983e-19,3.283465719104966e-19,8.530805475621307e-20,3.4169539065751966e-19,5.044929360918089e-19,5.620158129960405e-19,9.597114768649645e-19,1.0613230906628579e-19,8.953277348368112e-19,9.720898642994269e-20,7.359606911680211e-19,8.723858597816581e-19,5.899704274866735e-19,1.27733759976012e-20,2.8619834582012153e-19,5.781204804079163e-19,7.029469800317101e-19,9.402517541789463e-19,7.030107747182753e-19,4.549716625443122e-19,3.289958013030903e-19,8.235299170015158e-19,4.487826672293687e-19,2.788277269875306e-20,4.1294023899746727e-19,3.5905419674983e-19,6.716227984204683e-19,1.6538020466388814e-19,9.68067922621372e-19,4.304852679736623e-19,7.3716681382205985e-19,7.328012225222985e-19,7.989304357687139e-19,3.273249202029823e-19,9.757195143359466e-20,8.81449881991718e-19,7.407362787276107e-19,4.1796539650620537e-19,4.2850025192816267e-19,1.4042323998599117e-19,1.9902332569178305e-19,6.912479816719672e-19,6.853754041491013e-19,1.1650393520213287e-19,2.575951221528575e-19,4.771649915190847e-19,1.1618873595454438e-19,3.1569439637376164e-19,9.431192983230582e-19,9.475413135292841e-19,2.283818711074074e-19,8.485534011497014e-19,7.920838160618911e-19,9.489416683121352e-19,1.6304716291586453e-19,1.8876514910393485e-19,2.3397823086874104e-19,6.109205548775051e-19,7.374192580454683e-19,9.382403535922955e-19,1.2776095673845511e-19,7.084792178515927e-19,1.8957019015255618e-19,1.2038513127022067e-19,2.7342283263794586e-19,9.333750681078756e-19,4.646281985628873e-19,9.495050749921686e-20,1.758491138949908e-19,8.644543537077462e-19,2.0738846100087694e-20,4.87569656759613e-19,4.348544373735226e-19,8.294170013092653e-19,8.078551196852077e-19,3.753202964998092e-19,9.741096656406842e-19,3.6130366970481853e-19,1.457954041498407e-19,6.232211409018051e-19,1.5664913840337547e-19,6.704207516709116e-19,2.2932695034997953e-20,8.510709014831604e-19,2.595346386941943e-19,1.419819146239133e-19,2.7446001132579267e-19,9.43549553099766e-19,7.778825074965977e-19,9.007433963079567e-19,5.973443501964404e-19,2.5284191466584198e-19,1.2660023794822308e-19,1.0040060115027339e-20,1.2202871243307935e-19,5.488115398225609e-19,4.0423239604571273e-19,8.368688789436269e-19,1.7494013573213863e-19,6.189896727084611e-19,5.200664016063804e-19,9.806339610113812e-19,3.8410697043118095e-19,2.5518599527731326e-19,2.1231403465980827e-19,3.2483953067727057e-19,2.6305158694192813e-19,6.629551540922515e-19,2.5071089872622666e-19,8.180193838418042e-19,9.270727167039125e-19,2.4612035140405685e-19,4.303609956269228e-20,4.3974429528855e-20,5.629573596969282e-19,1.0232333458627141e-19,5.043301009340955e-19,2.8981990526605708e-19,2.8686904765352965e-19,8.316959298864227e-19,5.143821711908197e-19,3.381037192570371e-19,6.089953628542207e-19,7.645337435300895e-19,1.0291890960867645e-19,2.811356104541366e-19,6.062137112924715e-20,6.470926737227062e-19,1.8064354258085348e-19,8.223834842359424e-19,2.9290127345789896e-19,1.345371168473666e-19,5.322828286531793e-19,1.498015117067758e-19,3.5406182477945427e-19,5.955882029121086e-19,3.3597088338567895e-19,1.628818884735115e-19,1.1519329267758617e-19,5.021211640078649e-19,7.067809940514193e-19,2.4142864070147153e-19,9.361115509351208e-19,1.3337405282049375e-19,5.72760474380814e-19,1.5683160534802689e-19,1.6593140821485665e-19,3.4957109449882974e-19,1.281458709874177e-19,8.173187275435698e-19,4.330797830945347e-19,7.349009288530218e-19,4.823161174246755e-19,3.258253500537445e-19,9.922816390735335e-21,8.894071995340002e-19,3.1799532911877085e-19,7.59715516487425e-19,6.994367722882198e-19,8.357949207329452e-19,4.413365577114086e-19,3.6360646170534806e-20,4.2061601738812806e-19,4.2751995191476734e-19,7.142060741614656e-19,6.024979817792406e-19,8.264294844328419e-19,5.935642717434928e-19,1.8185530031249643e-19,5.26056500504568e-19,4.1324836898994978e-19,2.6912507296980673e-19,6.790937314388651e-19,4.480381865462968e-19,3.6471292951951264e-19,8.855752403731221e-20,1.1613137406980458e-19,8.16717163505538e-19,6.434823947961622e-19,9.144840185512135e-19,6.355403992774309e-19,2.1135752739785942e-19,6.075051065191695e-20,4.440859315839646e-19,9.207304966895202e-19,8.15035623677991e-19,4.562123758478143e-20,8.695725461939598e-19,7.549539060064682e-19,9.576298269555377e-19,6.775995101092351e-19,5.979244270839502e-19,3.040586709173642e-19,5.781630183802636e-19,7.950903029926487e-19,3.158006136666606e-19,6.960735072114433e-19,4.540880803876645e-19,2.420775344069104e-19,1.90683810662715e-19,1.423194465746558e-20,3.088126569742973e-19,4.568245855380893e-19,2.2221178865634906e-19,5.59585925296807e-19,5.310033123510964e-19,1.280367508493202e-19,5.103057299684806e-19,4.874579971042717e-19,5.829853060533961e-19,4.460666675309544e-19,9.467661912694716e-19,8.223889952542939e-19,6.721570824938978e-19,3.755251374013934e-19,1.1078140958579663e-19,7.058496301318419e-20,4.255774466999969e-19,3.8763337768845476e-19,1.3651202232237204e-19,5.601793684751233e-20,2.933243116218253e-19,7.248458021172072e-19,3.1228255824531593e-19,9.611682655972074e-19,1.668347103012915e-19,2.813460064549609e-19,1.461084212974997e-19,7.52504044365443e-21,5.024359241940315e-19,5.556140077034666e-20,9.808392204321135e-19,1.497268098777438e-20,8.010839266110903e-21,2.8383560465880187e-19,6.889464345592458e-19,5.838880253485612e-19,7.9234401281286e-19,2.3992361482853697e-19,5.105589400239641e-19,7.183192646668606e-19,4.0595951692118576e-19,4.0696463269610206e-19,8.501383686808589e-19,5.656381928851419e-19,8.840812160476588e-19,9.01107031525535e-19,8.262210296179672e-19,3.4560593238890115e-19,5.047455411251346e-19,6.111402877730121e-20,3.0520972502859902e-21,9.507513271521568e-19,8.237458249168762e-19,9.705810751336393e-19,2.5338074302783e-19,7.561084397864893e-20,9.424664289499822e-19,7.830959477533512e-19,7.242630062677068e-19,5.861018764254093e-19,4.2346767871262717e-19,2.1156487885893807e-19,4.620192105577387e-19,8.263971415736031e-19,6.118608533854434e-19,4.2041117831369225e-19,1.2292878902674755e-19,7.916980279551999e-19,2.065149452003654e-19,5.4841900751079155e-19,1.7312381502797993e-19,8.737023771620078e-19,5.760382141538865e-19,7.454656543031376e-19,9.197336253687485e-19,6.190557261102957e-19,6.564339964483266e-19,6.30892487478648e-19,2.686282127237638e-19,1.8735727688056904e-19,2.5629559232250354e-19,5.247190174098663e-19,6.350231331034847e-19,3.0179108878415264e-19,9.669579912076628e-19,3.1480214271887223e-19,2.400128112986729e-19,5.67954125875214e-19,2.82391349060792e-19,4.940664449616132e-19,9.986344549550464e-19,6.999116597142888e-19,8.01173718492795e-19,9.57606076768553e-19,8.754013673995225e-19,2.406294025583551e-19,8.515404826433372e-19,9.840861354380356e-19,2.4786282228523583e-19,3.5311098867105943e-19,8.590502650794336e-19,1.0237365416509326e-19,7.332686210703241e-19,7.023491716572601e-19,4.2071199303819434e-19,1.8289287930943922e-19,7.955988730023488e-19,1.981535065880159e-19,4.916774827134726e-19,5.173356146723383e-19,8.523867119090177e-19,2.819266718026914e-19,8.526903879555363e-19,8.452926964690866e-20,6.106403801785265e-19,8.481258500691935e-19,4.1560599224338517e-19,7.655941797809807e-20,9.150120763927979e-19,3.454805433121826e-19,8.122948562827387e-19,6.247349389966518e-19,2.3459859233609216e-19,3.634559565700584e-19,5.959895365139766e-19,2.0028269162089851e-19,3.234280028251703e-19,4.0546589844918727e-19,8.088188943763429e-19,5.382770051499618e-19,8.374011814840639e-19,3.8384436674047974e-19,5.81424706449419e-19,7.766439545683164e-19,7.291013667937499e-19,1.4257412328715647e-19,2.817652782379475e-19,7.26918107858389e-19,3.529466693688155e-20,5.391146270027121e-19,4.682251841964859e-19,5.523744310719305e-19,9.454271712313438e-19,8.384169558729426e-19,2.4623929912899236e-19,9.0794128021319e-19,8.18812201832817e-19,4.361248280551173e-19,4.083129028053212e-20,1.5026264199368113e-19,4.604302693791406e-19,6.967011826096863e-19,2.1479361943929243e-19,3.361066737231687e-19,9.923149329450573e-19,4.230948967161653e-19,3.132227201417657e-19,1.1669035911245873e-19,9.456538893331297e-19,1.2013460623371487e-19,5.469549736829788e-19,8.73056240500354e-19,4.2799969721449754e-19,3.9690031898531157e-19,2.8223479201806904e-20,6.581822784207573e-19,6.225872325329433e-19,5.006656954393736e-19,4.3243725784047994e-19,7.876390083480454e-19,4.1490898983689396e-19,5.3717436924209945e-19,4.888724645695458e-19,1.7033419634711178e-19,9.34558135727921e-19,9.295420670683645e-19,7.972473130136027e-19,3.5766311852871835e-19,4.022107009577917e-19,8.993687666482386e-20,3.2976434071755223e-19,4.801187090244148e-19,3.6790308236901726e-19,9.099524343723468e-19,2.8728711027156865e-19,2.977147696989653e-19,3.8640053813680414e-20,5.277201351750094e-19,3.3856004883742834e-19,9.203304533204416e-19,8.68361461749253e-20,6.400440629423009e-19,1.5475882963457255e-20,2.4958653690065783e-19,2.6040028888752276e-19,4.1334462880346394e-19,8.463197540242397e-19,4.2850376452878984e-19,8.045746678734016e-19,8.542593256008183e-19,3.8453859381632464e-19,1.802751607095291e-19,9.080940283220652e-19,1.5015992002401636e-19,6.263276430804703e-19,2.814101368268164e-19,3.053213845945262e-19,3.2516154583465764e-19,2.189467257960011e-19,4.196136189456158e-19,6.55485456556863e-19,9.113575074326482e-19,9.32252087309452e-19,1.3324755603680873e-19,5.203501713887893e-20,1.0695905018835017e-19,6.599976050767076e-20,1.6324145419977677e-19,9.062562075746774e-19,4.516990212734364e-19,2.5049231064466328e-20,6.267061919699742e-19,3.7828938497753385e-19,8.767342478111762e-19,6.444014496201821e-19,1.9397409276619593e-20,4.253563658759793e-19,9.789632716281083e-19,1.6784768116323101e-19,4.609483922370105e-19,7.093583210047338e-19,3.920579240432865e-20,3.235140964197263e-19,3.0612274242468844e-19,2.3722335333207544e-19,7.137645095066958e-20,9.463996777920825e-19,8.027095154270892e-20,5.731601597788434e-19,8.0417331984435565e-19,7.189177859938633e-19,6.280150154089076e-19,9.274320753177192e-19,4.2156662822236805e-19,5.341265791694033e-19,4.3128137582704123e-19,7.465379462598762e-19,1.1495195347236287e-19,5.051823428181557e-19,1.8756713419567163e-19,4.939277156685733e-19,8.438042120809146e-19,2.7155974324565325e-19,7.896397189404327e-19,7.606771354503816e-19,6.038064802452784e-19,4.0531999237130693e-19,5.851869903890294e-19,8.570036234396175e-19,1.1638874703106362e-19,6.431620521894853e-19,8.861363199070612e-19,9.945248050922962e-20,9.26640029611002e-19,3.238150732617228e-19,2.2895272884219133e-19,6.60926956465071e-20,1.9740623955394644e-19,8.874677543836608e-19,4.0414284024056247e-19,9.966795291774273e-19,9.267833382984626e-19,5.743743256460445e-19,8.757868016151092e-19,9.420044515758814e-19,6.684087919513127e-19,9.777892651216527e-19,3.313672830859827e-20],"im1":[4.104317668666175,-5.117192880166237,-7.559929308693492,-1.04921975290085,4.055811761219266,-1.2450446752108757,3.4688754732002245,-2.626068561499517,-4.48263828054019,5.859749365657548,6.315723328827335,-1.371857985686546,0.5392816420666442,9.632325221787585,-1.612521494005172,2.494332144420852,9.763005594199402,4.717782883262135,4.298419394989191,-4.236554084882107,9.875054053370299,9.385174268475232,0.5435591858753153,-0.9521767285647051,-4.799824147841725,4.023922926112576,7.6885273686914495,5.553097533580708,-0.0816772877217673,-4.705308746958494,-9.97025381709067,-4.23583879506481,-3.585153911458125,0.7778488887161465,0.5064727186351874,-3.20870050748868,-1.6745013172185956,-2.6035670667932242,-5.8046395421447805,-3.993736295143848,9.397841126280323,0.9969734090331599,-0.1217314469197106,-5.167785819565229,9.766856429683344,-7.852898901569299,-0.9421787276528644,-0.01245621087663018,0.12215748875409815,2.5209210868572267,-7.342019230334786,8.788586533336957,7.352534501982163,-5.857600926905937,-0.9136502427861934,-9.833365777845515,6.56405664747593,-6.510437272895906,0.8562168383989608,-5.750919887622055,2.6238484152840265,6.322741314913088,-0.7247956727104583,0.2774403591945891,-9.688884067794582,-8.90182429373821,5.957107951686149,6.205356880249333,9.926242752845194,7.606616569094935,0.0919144553082969,4.2895562964554905,3.4768151318414198,4.950128527945834,-0.6353007759257956,2.658082378669162,-1.0022320884827192,-6.2948636725458185,5.500050610739308,-0.8214148674841564,-3.6190817488647697,-0.35406920448460255,-7.456606917956834,1.3594295376836758,8.307733637631138,8.228686306325624,-8.791744610517993,-0.3922460804039076,-4.113063525796859,-3.462302579133536,-7.199081249879469,-2.054199872110198,8.96170786523022,4.7189897931489515,-6.912548203443302,8.086133444216316,-4.922817987952488,-6.969433161493727,2.0455274476698815,-9.54393689470637,6.624000284839841,-9.45858111308824,5.793887814776408,8.641866611572883,9.08377632704843,2.3075120774151223,1.431923972485965,-9.24849439597195,-7.54376525158019,-1.7852904518530863,7.745872750503999,-5.584407315533633,5.6452217049124265,-0.04942615310417153,7.488425685271977,-7.652815998997646,-4.947346351879116,8.632461658595375,5.763363664999206,8.253012936500589,-3.028811009514425,2.3273347241203695,6.449433293265436,8.951764139573445,-8.031033539616555,-5.26078755222914,-5.8973279497580755,8.306632446191863,-7.359390072082162,-1.5989655305957093,-9.743314816444801,-9.809653384365243,-5.170493171392523,-6.510634568918956,2.6698947665910637,-6.022183148878333,9.044131614128748,7.178319105328029,-2.352776353911592,1.6376451457387802,2.567117021920062,0.5585731680168564,5.312409013669514,-2.5647406361521234,-2.9636190643523648,-4.1326711986335285,2.8395130309660583,0.8184552253833921,9.591882212688457,-9.07928135194612,-3.724169762744536,4.687971968942639,5.0326903721340415,4.7828211568725365,1.907105337006934,9.763400957231145,-2.56832326940345,-6.71552885155382,5.5412067670783465,6.4504479371035615,-8.025724156117748,7.724116323732332,-7.909816818132271,1.695507136110665,4.617065835326095,-9.754902805669763,-7.021052387892517,-2.4779654779595672,9.984442131992317,-2.743864506168274,7.933363347362647,5.6784206302358005,-9.983471824399658,-2.6803756066568756,7.89625698519162,6.094281382808596,6.479095379768047,0.8444629249217037,2.399722171420702,-9.524640083924286,7.948427966229154,-8.571735597323254,-0.7656610553067686,9.871597233074802,-5.081474609057215,-7.4350707089502865,-4.983942533291261,-5.472920303945905,5.770873592628487,-2.015819122531677,7.251524744154906,7.100391959936378,-7.2063742961247375,1.3314084882263106,9.08142227573222,9.877648525839696,8.849240847565977,0.48110756048821024,-8.264546716676888,3.8029582786488625,-4.5865744306621465,8.208496539446998,6.876451694369003,9.057998919031409,2.1873711234696085,8.936856470367868,9.281206339596302,-6.461144247384343,-7.792293910831467,-2.748794895879792,8.245252890866134,5.916948437099293,1.7948276136317283,8.501718566610144,-7.879983396088943,-1.0151499477570702,1.2676850466831837,7.069672516276263,-5.040563705485845,7.37118103981711,-0.4144880852464343,-2.715478697281104,-0.036419257729750854,1.9668005357005836,0.039230969917721126,3.2403013042311652,8.05100960877989,-4.939646015363213,0.4256922932028324,-3.901738189127264,-2.727452549445333,-7.0059350840287955,-9.40479350782372,2.79704905435368,8.835956120592542,3.999119329837999,1.230724814642965,2.340659304327543,2.0928034520073613,-1.770180582008896,-4.0575192904489255,1.4678808375335688,-2.4886569409124615,-7.591243001143988,-6.571404135561753,-6.313790428510506,-5.938716194778237,2.1818092304833954,-3.598265401866236,-5.657226575588135,7.166192598007985,0.19821605266451492,-5.825492654610227,4.661877875529365,0.7326644086322442,8.622942593732201,0.4878379885775672,-2.709936872389676,7.558356015595361,-9.718806365870627,-2.3842097076754705,-4.416606361577418,5.906483994987919,8.80384894552494,8.293190490227069,2.6518194806443915,6.19433095259976,6.18753845874539,8.299590168052312,4.80123453737624,-3.791150107586894,3.3696786199027446,9.422494447078439,9.79269678738358,-7.558540053542384,-7.98719914941824,8.491626113802255,-4.097859620193063,-3.473358853970323,-9.297578271656617,0.28016814042408456,-0.2707197937932406,-4.438040941275608,1.5799353049585747,-6.53195054347449,3.711716727242841,8.906206087331483,3.031567832694954,-9.883252875893566,-4.708155703840777,-8.659351585154635,7.363543533743226,-8.33281502310131,3.933543895734754,0.5721757246663728,-9.306045420271644,-0.8194015413516276,4.532893211615592,-8.009829357715182,6.597160280625243,-7.184123570961248,7.5687977794816135,-5.05013178297403,9.886592984964707,-0.295755857663039,1.3715336170953272,-5.457501860065563,9.313777428010749,-0.8747970767678623,8.213367611113128,-9.268419289305745,9.238446184743093,3.8646088223964092,-5.33530094479393,-5.462742920581598,-8.533070989169694,-7.04247120321029,-8.176784128729928,0.36871872378807247,6.691359386781311,-5.470331126129812,-9.580148356231353,-8.986373455391073,2.8127160107961675,8.45324213395002,-2.3328584481707555,6.5609625982777935,-5.7328893161565775,6.558397870400384,0.3270856122390349,-3.0212346985508276,-0.2551478137216261,-7.420954925238606,4.614657393413735,0.7785284952850162,-7.059575753676075,-7.945841376227092,-4.890629328189757,4.625677354419789,7.783122938500476,7.9903306251837165,-0.08078173985665948,-1.3394266068600515,0.40222043545637476,3.0972666403125615,4.204763654859187,-1.1361252937539508,-0.5973386719831648,7.316195835881,-7.814738455873041,-0.2831516431586234,-4.773925210217726,-9.183993620639097,8.32120500974029,1.159218137671342,-2.7484013180454703,9.576264626067886,7.535301274285132,-3.350108454073572,5.908343590050071,-1.122750704668384,-6.160339652050164,-5.595743250074834,-4.846896973425667,-6.933239917340048,7.701448656384869,3.8357369327238686,5.945477086932225,-6.463463919121464,-9.987432436652632,-6.04437877221446,9.441471599182286,2.9789697884065056,2.2298521183259705,-4.8305254369204365,-0.9233324570981623,-0.5218464010877213,2.769988103502259,5.983457545907321,5.14980942364285,-9.232482972291411,3.8563022896849457,-2.8184665582973967,-8.757018340943898,6.398149299345938,7.950929834340915,-1.7089838638070596,9.648839278971828,1.6361615200685122,4.932233320923075,4.254584551851487,4.3538897376197525,-5.66487768645064,0.7754686910536677,5.924225885140277,-8.229458291837737,-8.539274490699345,2.491462707094655,-0.7097782776973549,6.4849964819090005,6.460088315221917,-0.07168383784594923,9.296742770289274,7.435332510350289,5.114400756499091,5.215178714133286,-9.724715501303859,9.100908578404862,-6.39218537687338,-0.11041857095922047,-1.9740529650169165,0.6027332992140995,4.19967683497601,2.540533899186661,-8.430354203143297,-6.620929029708353,3.6166630972861675,-0.7534331812326798,5.873894513624403,-7.292553717999814,-3.6862770435795706,-9.839491315705862,-7.650503470505203,-0.4434430139642398,6.979451745337482,8.981183011164052,-2.147171930522809,4.9838787139766705,-5.82986430063629,-0.29639461607309237,1.4877984925793264,-1.2462589509633393,-3.981320156206996,1.8096288489399175,0.3654117066690876,4.7332381573250615,2.8634169834082783,-6.339667779921243,9.565710315352757,-9.547455703455137,7.570804449349108,-3.289734589149351,-1.932705948811833,4.887860346803786,4.707327146942415,-6.600461415960151,-9.38415918810441,4.605354628951794,1.9150958014197332,1.1007597176690371,2.0228493044719738,-7.559505795104256,3.3691236594095564,1.102129167396182,-2.7553764332580233,2.929678428122866,2.4561468498378343,-7.516835599376304,-1.2682919167509432,0.7918378297458304,-5.277280312698791,-2.4724241881784748,-9.399031824773768,5.750128734713753,7.503638352872656,-5.581664259673083,3.3135253816287253,2.287926758742728,-4.232823283575025,-7.553074514728997,-0.1269265940723141,9.333382040553325,-9.692835261482216,2.5164761047505575,-3.427078681241145,-5.47286460096884,5.209761202089123,5.398738570049062,-6.84483519922237,-9.911675156476825,-6.267593064763219,6.26840058853675,2.482051341848477,9.807720958561585,7.531145617701014,-9.448709640081614,6.883792223518899,-3.702525974021129,-6.06070551550276,-6.5013472175667335,-2.839308729101713,-6.6966264859107305,-6.43614247275168,-6.188070566081294,-7.025905132801853,-8.943822533294641,-5.3905025823863495,-2.576488308708102,0.6617238318678726,2.2394093187632187],"qim":[3.5357166e-20,-2.9659933e-19,-9.499989e-20,1.1956634e-20,4.381512e-20,8.685996e-20,6.867225e-20,4.4395872e-20,-6.5087735e-19,5.1921484e-20,2.71027e-17,1.1289733e-19,-1.4135704e-19,3.6010168e-19,-2.2980372e-19,-9.852092e-20,1.0936915e-17,1.072766e-19,5.3836693e-19,2.4345253e-20,7.994994e-20,3.0391952e-18,2.3682166e-18,-7.771439e-20,-3.082126e-20,7.7533474e-20,3.4869705e-20,2.160021e-19,-3.310956e-20,-2.2184578e-19,-2.3462422e-19,-1.5659709e-19,-1.1585708e-18,-8.94766e-20,-1.5381584e-21,2.1772092e-20,-2.0344713e-19,6.259108e-20,-1.9522172e-19,-1.4640342e-19,-1.0919737e-19,3.1661246e-18,8.3071746e-20,-1.2595983e-19,2.0272289e-19,-2.2637758e-18,-5.9906843e-20,1.8163242e-18,-3.0947796e-20,1.6407843e-19,-7.339151e-18,1.1834881e-19,6.066641e-19,6.3696125e-20,-9.842928e-20,-3.6066685e-19,3.7177237e-19,5.454336e-20,1.9671527e-19,2.140323e-20,4.6426753e-19,1.3473025e-18,8.517138e-20,-8.226754e-20,-4.7606684e-19,-7.424844e-19,1.4003463e-19,5.48151e-20,3.5232158e-19,7.534253e-20,1.434739e-19,3.1649065e-19,1.3712455e-19,1.0337884e-19,-2.1526398e-19,4.0647167e-21,-8.3913286e-20,-4.661994e-20,2.7674361e-19,-9.9385453e-20,6.886838e-20,1.5133675e-20,6.2833046e-20,-2.3693786e-20,5.349803e-19,2.2349466e-19,-5.1156505e-17,6.526497e-20,-5.8044504e-20,-1.9391826e-20,-4.964086e-19,-4.989622e-20,-1.7640402e-20,-4.0315258e-20,3.7501403e-20,-2.9457734e-20,-7.606813e-18,-2.346173e-17,-2.3464009e-20,-5.512691e-18,1.770797e-19,-5.244096e-18,1.4465214e-18,5.828026e-20,1.7599707e-19,1.2022244e-19,-1.2885579e-20,3.7937488e-21,-1.8457936e-19,1.7349865e-19,-1.7665234e-19,-3.4856745e-19,2.6258525e-19,-3.4058897e-20,1.459591e-20,-4.3632955e-19,-9.442092e-19,4.635361e-19,-4.1431156e-19,3.3531022e-19,3.1663543e-20,1.877595e-19,-9.934279e-20,4.8823653e-19,-2.424773e-18,-1.8862334e-19,-9.217048e-19,1.4470807e-17,-2.2972749e-20,1.2254598e-20,4.4601667e-21,-4.245195e-19,-4.853934e-18,-4.3212205e-18,8.294535e-20,-5.0989746e-18,8.187582e-20,3.9691476e-19,-8.646326e-20,7.297176e-18,-1.001441e-19,5.817264e-19,1.2344774e-19,-1.2972062e-19,7.5597994e-20,-1.793912e-20,8.214834e-18,3.9304058e-18,3.1892892e-19,-4.389684e-20,6.825441e-20,1.3747082e-18,-4.5946474e-21,1.6267155e-20,9.580111e-20,-2.8307197e-20,2.4609121e-20,-9.496876e-19,-1.3416199e-20,5.849086e-18,-1.1987146e-19,1.8184375e-18,-7.8511476e-19,-1.4119855e-19,1.11097505e-20,-2.8289791e-19,-5.7769997e-20,-5.607211e-20,1.3173965e-19,-3.6164718e-20,1.2753248e-19,1.1434032e-17,-1.7052256e-20,3.6924554e-20,6.1694684e-20,5.0890756e-20,1.9170522e-19,-3.6176156e-20,1.0828946e-19,-1.7119252e-19,1.3847153e-19,-1.4009436e-18,-1.0930296e-20,1.3954206e-19,-4.6508803e-21,-6.760064e-19,6.1329555e-20,7.647949e-20,1.698316e-20,2.1115024e-20,4.740898e-19,-1.2520299e-20,-4.0678452e-20,1.0641509e-18,1.2139828e-19,2.5324685e-19,4.660546e-20,-2.0544161e-20,-1.1876571e-20,-6.832854e-20,-5.0829623e-19,-5.849216e-20,1.0824531e-19,3.954997e-20,-4.409368e-20,4.5700116e-19,9.968133e-18,2.9015073e-21,-1.1630526e-19,1.7749618e-19,4.069883e-18,-7.078333e-19,7.934086e-20,2.2424972e-19,-1.3509616e-19,-9.220294e-20,3.2151948e-20,7.04113e-19,-4.8109104e-19,4.9066422e-20,-1.0630911e-16,-1.3661033e-18,-1.0794019e-19,1.32286e-18,-1.5082047e-19,-4.992146e-20,5.9129513e-20,-3.123704e-20,-6.8043024e-20,2.956108e-20,6.1584695e-20,-6.2310223e-19,5.0895292e-20,2.6317655e-18,5.9930704e-19,2.6395204e-17,2.9288376e-22,2.0354454e-18,-4.799221e-20,1.3260072e-19,-1.5848069e-18,9.923828e-21,-8.0808334e-20,-2.3746641e-18,-1.7023434e-19,-1.4525057e-18,-1.4520212e-20,1.1489112e-19,-7.19352e-19,-6.4175645e-20,1.943154e-19,8.628911e-21,5.3883534e-20,2.7161644e-19,1.9948735e-21,5.0800402e-20,1.0051044e-18,4.820373e-20,9.151921e-19,-1.5681226e-19,-1.2168844e-19,1.125995e-19,5.902871e-19,9.298763e-20,1.2923189e-17,1.2236688e-19,-1.9823869e-19,-1.3347994e-19,5.8440765e-19,7.249324e-19,-5.7213793e-21,9.9095417e-20,4.4595225e-19,2.0266494e-17,-6.2963975e-19,-1.9011809e-19,-1.0372808e-19,-3.6334875e-20,-1.3280014e-19,-5.346645e-21,4.1165583e-17,-1.2897469e-19,1.1499146e-20,-2.9733924e-21,-2.1938815e-19,2.611034e-19,-6.6414415e-20,-3.0602658e-20,-3.5696292e-19,-1.3128448e-19,-1.102527e-18,1.0639457e-19,2.4162443e-20,1.788739e-19,-8.217041e-20,-6.721594e-19,9.59202e-20,7.52449e-20,-3.677607e-19,2.512719e-18,-3.155768e-20,3.2922186e-20,-4.0819435e-19,-1.3197797e-19,1.03241136e-19,-5.6504094e-21,7.374929e-20,1.694925e-19,2.4686932e-20,7.904428e-20,-1.1657316e-16,1.06056484e-19,1.4886006e-19,-1.4519843e-18,-7.912036e-17,-2.0229632e-19,3.1233267e-20,-2.887303e-18,1.0501772e-19,1.4189624e-18,-8.906059e-18,-1.7194978e-19,1.012415e-20,6.649217e-20,5.766292e-20,-2.8388379e-19,-2.7105636e-20,-5.682294e-20,1.6228685e-18,-3.3381778e-20,-7.734075e-20,-1.05344624e-19,-2.3841241e-17,1.9750591e-19,-3.73265e-19,-2.7690045e-18,-1.5736663e-19,-1.6968843e-19,4.607235e-19,8.9156945e-20,2.4905904e-19,-4.072957e-20,-1.6641616e-19,-6.841293e-20,3.3153153e-19,2.6292952e-19,1.3915511e-19,-1.3047891e-19,1.0314314e-19,-4.9843303e-19,-9.875636e-20,3.5323613e-21,-1.7492244e-19,5.4193477e-19,2.6686796e-19,-2.1044913e-19,3.2043516e-20,9.220892e-20,9.004817e-21,1.5653328e-19,-1.4025747e-20,-2.0941454e-19,-1.6782013e-19,-4.8543162e-20,-1.4594922e-18,2.5704764e-18,-1.1982681e-20,5.04222e-19,-2.0051323e-19,-2.1377368e-17,-1.4778514e-19,4.785087e-19,6.2555876e-20,-6.157307e-20,-3.4289175e-19,-2.7763396e-20,-2.0843968e-19,2.0117607e-17,1.2912953e-20,3.9424846e-20,-1.6248885e-19,2.8680507e-20,-3.452019e-19,-5.9354505e-16,4.841635e-19,1.4699594e-19,-7.0095376e-20,9.649212e-19,-6.510505e-20,-4.395531e-20,2.1625378e-17,8.987749e-19,-1.5504077e-18,-1.2713806e-19,3.6409484e-19,3.6854745e-21,-3.0517523e-19,-1.1363386e-19,-2.1440461e-19,1.0363629e-19,-8.782684e-20,-1.9046467e-20,6.2399766e-17,5.7372363e-19,1.0005526e-19,3.9609042e-19,-2.0415912e-19,1.9272531e-16,-1.5539274e-20,7.7362345e-20,6.053194e-20,-1.0094393e-19,1.0513434e-20,6.104509e-19,-1.4376895e-19,-2.3914446e-20,1.06062496e-20,1.9428918e-19,4.157025e-19,-5.939857e-19,-1.6077164e-19,-3.4813157e-17,-2.6034639e-19,-2.7338907e-20,1.0735217e-19,2.9124003e-19,-1.1775339e-19,1.05450956e-19,-5.6117613e-21,1.3051174e-19,2.1090875e-19,3.1698065e-20,-1.3143261e-19,-1.1748675e-19,6.011664e-17,-1.1141219e-20,4.625709e-19,5.692266e-21,1.7555538e-19,-5.27067e-16,4.196978e-17,-7.3344205e-20,-1.0431986e-19,-5.2558937e-20,4.0417712e-20,-1.7401848e-19,6.541868e-20,4.828506e-20,-2.8942523e-20,-2.0696802e-19,-1.6034408e-20,-7.5461316e-20,4.1021593e-19,1.3677186e-19,8.253021e-20,-2.7424605e-20,8.497928e-20,-5.3141152e-20,1.2519914e-19,1.0766566e-20,-2.3053943e-18,-2.9405983e-20,-4.220498e-19,-4.334299e-20,-2.4386381e-21,-1.3138119e-18,1.1560107e-18,-3.2140322e-20,8.2025226e-20,-4.1358132e-20,5.257887e-20,2.645203e-19,-1.3609857e-19,2.0071575e-18,-7.421331e-14,-1.6269412e-19,1.1640101e-19,-2.4272033e-20,-3.028879e-16,-1.6262869e-17,8.405136e-20,4.0587778e-19,4.196765e-17,3.003847e-17,3.4556258e-22,-1.4125272e-20,1.2698993e-19,-1.8124599e-19,-2.8140814e-19,-8.863873e-20,4.4531394e-20,3.605715e-20,-2.136949e-18,-1.5435189e-19,4.6304582e-20,2.98295e-19,-6.237422e-19,7.673e-20,-1.1317141e-19,5.4137614e-20],"qre":[-0.49515584,-1.4334124,-0.84789,0.17639495,1.180317,0.3593674,-0.40525568,0.33600894,-3.1898715,-0.71316683,34.093513,0.17397892,0.08735902,2.4999583,-0.3123338,0.66299367,11.893909,-0.68113655,-2.1164827,0.5660682,-1.0346324,-5.1936655,1.8998914,-0.42899677,1.0751717,-0.52894026,0.9634457,1.7338306,-0.02159515,-0.8025266,1.8807225,-0.7528451,2.90889,0.13986562,0.101343945,0.40478742,-0.5419242,0.41248724,-0.73245317,-0.54536057,2.676028,-1.6216981,0.01244795,-1.1128492,1.5731375,5.0370593,-0.12387639,0.034754764,0.022914765,-0.3266755,10.755383,-0.9840453,-2.4627578,2.765155,-0.23792268,1.9517846,-1.5672733,1.120873,-0.2655523,1.0512749,-2.1000257,-2.8692799,0.095526405,0.033348486,-6.402375,2.7844288,-0.71204656,-0.72408533,3.058844,1.4502369,-0.013866772,-2.817486,-0.4172396,-0.59779537,-0.13035044,1.3064859,-0.30489355,1.0788668,-1.1122912,-0.1023274,0.41585964,0.048847474,0.8005148,0.19359072,-2.503751,1.874474,-61.07075,0.0609408,-0.5561717,-0.37527972,3.1538467,-0.4868889,1.3858918,0.5484817,0.85592544,0.8711175,-19.847319,14.293223,0.20748523,8.088211,-0.86935616,-7.3881245,3.6809778,-1.3215129,-1.4325782,-0.73762906,0.20968421,1.252259,-1.142205,0.71325755,3.091826,-2.2920659,3.73896,-0.012493895,-1.0601221,-2.2565715,-3.3414285,6.408665,3.1412787,-1.6858412,0.31740665,-0.46087992,0.7417766,2.9014812,-4.8077803,-1.2178018,-6.8178773,13.784148,1.2641758,0.16997816,1.0269469,-3.352485,-5.716765,7.946022,-0.5142861,-5.4619203,-1.4814738,2.7246087,-0.3411395,-3.4978852,0.7845473,-0.441524,-0.83599454,-0.39395955,0.6024101,0.7505971,-4.8277893,1.8945537,-1.6275272,-1.8046548,0.38301465,5.6302395,0.6647859,0.8832875,-0.4805089,1.22978,0.62597406,-2.4808223,0.6916696,10.051325,-0.8279993,-7.646216,-3.673788,0.3354291,0.8832393,-1.7924466,0.8779546,0.49589115,1.4467223,0.5328967,-0.87472737,-10.575901,1.2405529,0.7618207,-0.8873675,-0.61471814,-0.8415489,0.1152026,-0.27936342,-1.5569873,-0.8116107,6.1693087,-0.1587192,-1.1674777,0.5722146,-3.327391,0.6489779,0.6772135,1.0789104,0.26107228,-1.7594314,0.8085563,-0.8042367,-1.1286066,-1.5204104,-1.6903529,0.9735403,0.14355144,1.2086477,0.6640144,-1.2256488,1.156098,1.0841728,-1.0222267,0.23576207,2.8425581,19.937347,0.6622871,-0.80394596,0.8666393,-6.924823,9.415461,-0.189272,1.8662189,-0.8065083,-0.10873567,-0.12740709,2.838197,2.6310246,0.9828119,-9.055683,-3.397792,-0.012710546,-1.9235554,0.027199244,0.3290736,1.4438374,0.551905,0.059403773,0.4206795,0.30213016,5.8358088,1.3684648,-3.9239182,-2.0593858,-20.845171,0.1810653,3.320928,0.236703,0.6779375,-3.5259643,0.219973,-0.33047703,-6.0158076,1.7876192,-2.7724442,0.6838647,1.0433418,-1.8448997,-0.60806894,-1.4872735,-0.024734022,0.8980767,1.1977199,0.16070081,0.9051089,1.1751052,0.35131782,-2.4684274,1.4085665,-0.42704067,1.1104611,-1.7682502,-1.2411673,-16.553413,-0.40777713,1.7879976,0.9532396,-2.1225355,-2.3817608,0.7943982,-0.7607946,4.747517,14.927061,-1.849755,-1.1054198,6.4478846,-0.6726931,-0.38542882,1.1508994,-3.1039588,-0.055189002,0.55452454,0.3569232,-1.0391572,-0.86143917,2.2721164,0.35950956,-1.8583531,1.4582422,-3.8017025,-0.8580964,1.5043757,-0.7528463,0.08479362,-2.1883125,0.089170866,-0.49764806,-1.6404976,-4.338992,0.7228875,-0.8549508,-1.4552531,3.6450708,0.04823354,0.3324678,0.57602316,1.5461417,0.09666436,-1.1192274,-34.592766,-0.99162996,-0.41492712,4.6959333,24.020264,-1.2008953,0.70718354,-12.0725975,-0.04414597,3.672696,9.162773,-1.406001,1.9333493,0.5554441,1.4564933,-0.8702343,1.5348234,0.7163183,-3.1886053,0.07291379,-0.3364073,-0.050210875,-13.151365,-1.066907,0.40692014,6.2926517,1.6993982,-0.6602647,2.0664387,1.4938732,-1.0380387,-0.009303174,-0.22282337,0.045627862,1.7526003,-1.0872344,0.5645994,-0.20641522,-0.78408784,2.2520142,-0.034492683,0.7041849,-0.9445373,4.9983907,-0.40602705,-0.6963348,1.135054,-0.7957277,0.46347973,-1.1668396,-0.19467282,-0.8993615,-0.91014636,1.4837976,-4.57317,-5.228327,0.43034455,-1.5414532,1.7430243,15.576464,-1.2082572,-2.0729394,-0.31043708,0.26674113,-1.1958396,0.78740615,-0.10244646,-18.2438,0.925617,1.127342,-0.98245466,-0.5230712,-0.7987516,78.19635,-1.7037148,1.4094741,-0.44974577,-12.779554,0.17227326,0.49357954,13.98596,-1.9322681,-5.6721373,0.39381504,-1.8240902,0.9558465,-1.2780735,0.3512829,-0.16015002,-0.8439495,1.8635584,-0.013974315,-30.090328,-1.8724422,-1.2189964,-1.3293443,-2.391335,47.449535,-0.7265308,0.016230883,0.4758635,0.07011644,0.4784397,1.7184924,1.241059,1.0011991,0.8399428,0.4775139,2.482904,2.6133034,-0.62683386,21.082113,-2.2877831,-0.06569904,-0.7749634,1.9085972,-0.37168148,0.88685465,0.88781524,0.17707251,1.0133685,0.28686684,-0.49578473,0.24070619,15.465154,0.6674475,1.4133784,0.8938375,-1.3942738,-107.02722,20.339418,-0.42685634,0.751931,1.7684702,-0.47338223,-0.9000408,1.0049211,0.83259666,0.23697731,0.2687064,0.22270365,-0.93399125,-1.0174643,0.6551256,1.3414608,0.3302046,-0.3576152,-0.7832401,0.19162193,-0.08220784,4.712116,0.9091036,4.5490737,0.64217883,1.5364722,8.458146,5.920669,0.26817754,0.49880683,-0.93588,0.013276736,-1.765105,1.4384664,-3.1357768,-518.91406,-0.766945,-0.5691574,0.5434305,63.680878,-12.871708,0.6878574,2.2431612,-18.479774,18.042166,1.00411,1.5203034,-0.88703144,-0.73272216,1.788408,-1.1160487,1.1701548,1.0108534,-4.263942,-0.7433763,0.75692075,10.96629,-1.4980085,0.3361668,0.08324108,-0.35686648],"re2":[2.041991541608127e-19,4.5223523496541575e-20,2.9376791274473247e-19,3.6656492009640774e-19,7.922099146656617e-19,8.551489005132542e-19,9.61164425322523e-19,4.45979686041177e-19,2.4282578499155297e-19,2.4461763621089073e-19,1.7449239139494712e-19,6.214546413303985e-19,1.004509734030622e-19,8.691268293783845e-19,8.828553919740335e-19,2.5304406412620207e-19,7.940201229337928e-19,5.279705141236175e-19,1.9055058645163604e-19,9.245174740211602e-19,3.313834899092728e-19,9.307327999962745e-19,5.294480391549079e-19,2.0322385194684368e-19,4.457789121253004e-19,1.6134973647854823e-19,8.721658387009957e-19,9.525274676572814e-19,8.84219405888123e-19,5.051302692527669e-19,7.130343366561442e-19,1.9276694496131088e-19,7.90783796164925e-19,6.6031359875073355e-19,5.018882442662165e-20,2.806748200805528e-19,9.32131219483896e-20,7.463988830875002e-19,8.285397276183521e-19,6.768325404947773e-19,2.6713321577621854e-20,9.973783309466397e-19,8.958665896612435e-19,1.2233680135597281e-19,8.1778738186000915e-19,7.826436404322991e-19,7.796896109746861e-19,5.940683066862642e-19,1.7413392540005846e-20,9.125519118602506e-19,5.058360025529747e-19,3.2500109152701886e-19,4.378778819143343e-19,2.4013081488385827e-19,2.1290399759193014e-19,9.809804014664172e-19,4.3107218338159363e-19,3.7821290505116816e-19,8.1453274548199915e-19,2.962265400026316e-19,2.093543402177667e-19,9.653609007634146e-19,4.712817271099565e-19,2.8679863781656214e-20,9.433070246771526e-20,9.450120534769225e-19,9.752025887070654e-19,4.883023831423158e-19,4.76981371418869e-19,9.228128379247064e-19,2.495487939623421e-19,8.996235861855684e-20,7.04850255007793e-19,1.0699181019241999e-19,7.687731058632652e-19,1.3112804160520732e-19,2.855775038645009e-19,4.690028363868551e-19,6.810442050153085e-19,5.900634016944883e-19,8.149451190618848e-19,3.6982558017241867e-19,1.539062449032379e-19,1.197789203598293e-19,6.609047993444891e-19,6.692725060293975e-19,1.0530596319775254e-19,7.310297018223168e-19,6.010854484627168e-19,8.14974188647566e-21,6.333770445477849e-19,3.8977047276933087e-19,2.695015965547407e-19,1.604296834204223e-19,6.151838837424985e-19,6.134812668404704e-19,7.615292229853355e-20,8.68533570109912e-19,6.264535744983333e-19,8.222666987505512e-19,8.35130181562836e-19,8.875132102354323e-19,8.006722106739755e-19,2.7104061401365964e-19,1.8491256962788305e-19,1.5801318794593768e-19,2.5746756843840346e-19,1.9679750870184243e-19,2.4121461894014473e-19,4.817526652836595e-19,1.4819101456221741e-19,1.0990439814383624e-19,1.7365869459509366e-19,6.513243536132799e-19,8.778388150678208e-20,6.016719973219639e-19,2.5414046594470233e-19,1.6050373633331173e-19,2.4424312255902138e-20,8.699315560857905e-19,9.982289432546406e-19,9.288205573958096e-19,1.5758183067873334e-19,6.515408776030869e-19,7.893901290908677e-19,4.947609345659189e-19,6.92908792342648e-20,6.51725441752166e-19,6.30205751042922e-19,7.967685849635776e-19,7.553485418957902e-19,9.399212060064889e-20,7.248837652649254e-19,4.510006942985452e-19,7.517856342380908e-19,9.262402619843767e-19,2.683232299022347e-19,5.689077631292361e-19,8.984630201746533e-19,8.94693027226985e-19,6.424270995934578e-19,5.018105440951468e-19,5.339232793827721e-19,5.97794764381552e-19,6.517512651318237e-19,2.6870462092450466e-19,9.425643091551986e-19,9.282257374066349e-19,7.572990182416261e-19,2.2277390854409276e-20,4.144092930970337e-19,2.5532492348138104e-19,1.5005406506317554e-19,7.023376943235619e-19,4.795462404053548e-19,1.0516262741245708e-19,7.901587079708719e-19,9.008348982834463e-19,8.009609171290423e-20,3.849094976537486e-19,7.968393358339679e-19,1.4780944642561535e-19,3.9440371388376043e-19,6.62999681277182e-19,2.1675825304644515e-19,5.3939365459088065e-19,7.048445685633503e-19,8.996399065659565e-19,8.700785984237737e-19,5.899016100127658e-19,3.879386567576826e-19,5.395369478872875e-19,7.030177223564874e-19,4.62577989095252e-19,2.5149219514937083e-19,8.04605031043525e-19,6.969691609303077e-19,4.584561593273962e-19,6.102701359075286e-19,2.2338541583446904e-19,6.410858508968986e-19,3.8704982704791304e-19,1.0311973344892589e-19,6.503598624112136e-19,8.193105709898989e-19,2.3932663302571437e-19,2.0263654942686416e-19,3.076699923297223e-19,6.343471702679983e-19,7.208628457419098e-20,8.115760216378335e-19,3.7511366980878684e-19,1.1859042166195656e-19,5.106093072373721e-19,1.8223667498743834e-19,6.597118003749603e-19,5.261103174721969e-19,3.29347746126091e-19,7.429189129983527e-19,3.7973524286671623e-19,8.058117547825858e-19,1.9049938661100098e-19,8.281999029161303e-19,2.83404480637167e-19,1.4841346764148067e-19,8.293651380105193e-19,2.73626536191007e-19,2.6143790785958967e-20,3.2057265182609232e-19,2.2151538181137056e-19,5.615018235488234e-19,2.4722801721220878e-20,8.160144127342939e-19,7.103386171407599e-19,9.19758684437794e-19,6.043191938065266e-19,3.2237973044832116e-20,8.632066287240321e-19,5.229030360546525e-19,6.2074971332106815e-19,5.162719196906577e-19,3.171303158892939e-19,3.666719193478829e-20,4.656876132174343e-19,1.7188307945233616e-19,2.0670885050603628e-19,5.961311961423317e-19,7.385578080316754e-19,3.8219552574558927e-19,5.069976192835886e-19,8.948166033836491e-20,2.0461702727947396e-19,4.362462259007171e-19,2.6850386592579867e-19,9.22225012101485e-19,2.2491350118473774e-19,6.228259477167706e-19,4.532496273210771e-19,5.3041901709430796e-21,6.106185007652365e-20,4.7851074180296275e-19,5.557031480072876e-19,9.537811073666042e-19,3.7762201195718586e-19,5.247621948868406e-19,8.464288435678288e-19,4.2834347302644273e-19,4.999353055458107e-19,6.812864841269867e-19,9.695267189528614e-19,2.917030257084614e-19,5.494396774423959e-19,7.029651277098577e-19,8.951873313553037e-19,1.0644521870970492e-19,8.483060061063702e-19,9.413705772312766e-19,6.036190305315108e-19,8.14277893366817e-19,9.384679307095188e-19,3.953710619565565e-19,2.435748398379377e-19,8.8549442067234e-19,2.0353044558483592e-19,3.39768303321535e-19,5.643452968582732e-19,1.1034911560025564e-19,3.63815204240664e-20,6.873592432182673e-19,4.6845069160110965e-19,6.69752339623114e-19,4.965797510753067e-19,1.8707521197686296e-19,9.54394911739526e-19,9.455913316492228e-19,3.6467165597256425e-19,1.811054503968368e-20,2.1663836486649926e-19,6.597458489019548e-19,7.179507020076694e-19,9.637391521173464e-19,8.436546352688951e-19,5.976945068513926e-19,5.558703679257835e-19,8.824596511744491e-19,3.466633358411039e-19,1.5471507751810766e-19,4.515985380318395e-19,9.554169507610096e-19,8.335856605747834e-19,6.062475668256852e-19,4.248704671985553e-19,2.611500620370355e-20,8.088670454289804e-20,2.543061349345495e-19,9.655695980188981e-19,4.2964333586832216e-19,1.3327160121953175e-19,6.944114211856968e-19,7.350869846760323e-19,8.054522672484965e-19,1.2176100936274017e-19,7.972853793710666e-19,4.5747460640212956e-20,4.093855032131544e-20,8.376191212802428e-19,4.656481068497639e-19,8.639603100375857e-19,1.7172826780215023e-19,1.0816819761107266e-20,8.947242619715026e-19,4.981706110386034e-19,9.347185097345834e-19,5.003453482424663e-19,7.824604365325387e-19,3.995592182514243e-19,7.980468994582771e-19,1.4205264542758679e-19,5.797809534940194e-19,9.7185350240412e-19,6.073414037839588e-19,5.82156786563807e-19,4.199925745553097e-19,7.905092096886138e-19,7.33223119058541e-19,6.741295777166323e-20,1.9861737990421236e-19,8.901938834097064e-19,7.973250437102745e-19,6.638721106352697e-19,6.031699383639479e-19,3.580044563431659e-19,9.581189465983344e-19,5.364468904266736e-19,3.404885185953045e-19,5.0710088480720095e-19,7.923018458217126e-19,6.190984419903227e-19,7.002024644423759e-19,3.6219251618983607e-19,9.654036178785214e-19,8.797332043791931e-19,8.439830392092377e-19,4.7468188178035005e-19,4.681584363296569e-19,6.009707259889404e-19,5.596395639508079e-19,8.589786246521783e-19,8.149391184358448e-19,9.480774122386714e-19,5.437794182859491e-20,7.303903826789722e-19,9.141166670225197e-19,2.572917784008495e-19,4.445282888448492e-19,7.753324283700581e-20,8.805283859267457e-19,9.181739978436676e-19,4.675003963768607e-19,5.630175393176296e-20,2.342240227016136e-19,9.954931811243712e-19,6.192005534808005e-19,4.791374778845923e-19,2.771081953543453e-19,5.638429678355854e-19,3.2400904461365035e-19,6.726593664604897e-19,8.963461194043862e-19,9.079740132298548e-19,5.7808276822194155e-19,9.788840345584932e-19,4.505231070374364e-19,6.822129000166355e-19,9.786412473441923e-19,4.681989495777791e-19,6.778622905618861e-19,1.4423512889494707e-19,4.285744650448472e-19,2.6326255158926574e-19,5.91694295020216e-19,1.7456555939512297e-19,8.402123247117298e-19,8.612001916355159e-19,8.160010723882009e-19,8.69908285678988e-19,5.294793940814592e-19,5.5051999106008335e-21,2.4689761712447856e-20,1.2445774507214615e-19,5.012858447168243e-19,6.404538073210887e-19,1.998390448280242e-19,7.28322523414026e-19,3.802574460243471e-19,1.450062631743746e-19,8.641352926083903e-19,3.51846180050213e-19,9.552608432238261e-19,5.198047914796555e-19,5.2456627061478025e-20,5.556981389147269e-19,6.297485262016079e-19,9.602946653038502e-19,4.256544445176547e-20,4.844179295797561e-19,2.270514016796178e-19,7.853140656735956e-19,1.3499505414853375e-19,8.777583171913229e-20,1.8377497849358584e-19,7.501600372845803e-19,3.7438699918576347e-19,8.97591604426297e-19,7.99381769688554e-19,4.072444206727898e-19,3.643928296438155e-19,2.23638298581933e-19,7.369443554500394e-19,7.982427294169335e-19,2.24763487261895e-19,8.112248220310012e-19,2.1246661128079004e-19,6.47170263959489e-20,7.579423455340396e-20,7.967277766838241e-19,1.4508003723238828e-19,9.85522733529343e-19,3.8540808005738284e-19,6.025957348587465e-19,5.216235426450584e-19,9.827037734697067e-19,8.067274704457989e-19,1.1670788526805797e-19,1.5212859358406994e-19,8.126335939609953e-20,6.998656802716841e-19,7.449436167348256e-20,8.16507604693084e-19,4.377785905855958e-19,8.126281534309764e-19,2.6603009238600674e-19,3.8990944080156966e-19,2.722347394137754e-19,4.990800906078042e-20,4.437939605058686e-19,3.334435089429155e-20,3.440769146266569e-19,8.079330525818237e-19,4.879517636320467e-19,9.970574861352244e-20,1.604059409491857e-19,6.378478145559651e-19,4.1106539245861886e-19,1.1479728338291352e-19,1.9019440089443708e-19,9.68709485947772e-19,5.600130656406375e-19,6.144475138517732e-19,2.8505991919676067e-19,6.695634161725677e-19,9.7254773354986e-19,3.4972667732342924e-19,3.7359976063968284e-19,5.958601851151355e-19,1.523468324907239e-19,1.9948631837401388e-19,5.857306263315941e-19,1.0120213819528302e-19,2.338240617996129e-19,1.901369083062766e-19,6.861586835613856e-19,9.809072188847546e-19,2.445803964321126e-19,9.440050401388553e-19,4.84172750631698e-19,5.3551989132421455e-19,6.67380127942959e-19,5.176072296070081e-19,9.274450944329764e-19,1.3250949785019228e-19,5.575140172775686e-19,2.7021910732486034e-19,9.541562219543369e-19,1.0162662727253402e-19,6.672541908907394e-19,7.459578326763548e-19,9.374675260545942e-19,5.702010036360895e-19,2.857789341271329e-19,6.660785535255327e-19,1.6349958531402222e-19,5.227336860936621e-19,4.817005086644545e-19,1.9099091503199862e-19,5.767722000388754e-20,8.69486406572162e-19,2.389465717497522e-19,9.386559877392432e-19,8.591104790146289e-19],"im2":[-8.288941676196547,3.569937584385489,8.91616711100011,-5.948127657052171,3.436205653406768,-3.464545603162101,-8.559721219872777,-7.815472503694871,1.4052724126759486,-8.216519461090638,0.18524706149480252,-7.88519624463164,6.173165441162993,3.8529943662445305,5.1628147744297355,3.7622261940190587,0.8208407011631564,-6.926339556988479,-2.0309257175524102,-7.48417666550333,-9.544505051839367,-1.8070423160744742,0.28610014020654617,2.2195430432344025,-4.464239616155041,-7.607518595589903,7.980239619951149,3.2027914774134842,3.782205142139059,5.863118948150543,-5.301288960392865,5.626441287260793,-1.2324816772577467,5.561401459213071,4.997562597781975,-7.926877352641608,3.089917810454846,-6.311872879574263,7.924929236914128,7.323111665507557,3.5118619280115873,-0.6147712187732672,-9.779236070416374,4.643743133822117,6.208520364575957,-1.5590246130005951,7.605797171279608,-0.35840299585032476,5.330951069812697,-7.716895961912035,-0.6826367544469534,-8.931079274917959,-2.985488284148019,-2.1183625058149103,3.840113830557364,-5.038140791200294,-4.1882020010777055,-5.808363616316479,-3.2242866796553553,-5.470424543219963,-1.249436333399931,-2.203598810451675,-7.587386097505073,8.319429148220255,1.5133263484581327,-3.197001716767378,-8.366177386036217,-8.569925044307169,3.2450959156449866,5.2450854477498225,-6.628395404549153,-1.5224766058300325,-8.332898154260427,-8.280640969531587,4.873790810755395,2.0345281634075683,3.287153863874954,-5.834699856370332,-4.944793753326815,8.027321032220392,-8.702651563258158,-7.248465113071905,-9.31476405077202,7.022183629407131,-3.318114922719559,4.389864169413013,0.1439599840054111,-6.436510301272773,7.395311777229743,9.225925787956047,-2.2826352935992684,4.219032197898731,6.466383676151224,8.60373246686563,-8.076110150625134,9.282482764941093,0.24803443242431378,-0.48760401336767956,9.858665479398354,-1.1799811711262151,-7.619432049283481,1.2802411591720784,1.5740076973198676,-6.539373357024103,-6.340859078046233,-3.1282824740245214,6.82895470052226,-7.385448181103362,6.6045632164544905,-2.5030095381221145,2.5052746258760283,2.436407742254776,1.5098374482118526,3.9560242556773435,-7.063738955460082,3.391346386039748,1.4806081541224891,1.3469983842104796,1.834719026144283,-4.895486166377752,-9.542367644608552,-5.049763524136949,8.694576165818432,3.085239310226209,1.6704244974318385,4.319904253854629,0.8649800251621098,0.6026220746186546,-5.821492828709271,-9.40688797608682,-9.487652068255137,2.926084257421408,0.9044438588650916,-0.8193576955101349,-5.191458407160219,1.1025761659426632,-6.104820104801892,2.6346238451204798,6.896815549466989,-0.4681814814193004,3.272099379942306,-1.2651025772390305,-6.354597489444263,6.510162142159089,-4.919603694177635,-5.505845141164927,-0.5881600926073123,0.4320042571757998,-5.893530979637798,5.031035025992367,-9.72330869832301,0.8326416847937086,7.57039297609267,5.414795499332389,-3.968928306971094,7.9391447316976524,-4.1029231208598205,2.70697677241146,8.011349511325573,0.6417510492658014,9.692911886219331,-1.010188160984118,2.153041019565684,5.054740983231927,5.227423093110746,5.442227633725519,-7.9970567125972725,-4.996995185795765,6.901422313720936,-5.148961456544628,-9.069527052484842,-0.5369207467417425,-8.047598643879727,-3.5183814500350934,-8.898519914226515,-9.91394439525002,-7.699012406815147,7.330242246826671,-8.58996481493714,6.1173526306718315,-9.793399944885369,-1.3894158726543537,4.82399802037275,-8.455490633472806,-8.880365485045672,2.2345047058907745,-7.679679970913227,-8.081528935263684,5.348797881661724,-7.721306135297061,-4.1215164281070615,8.781567379582832,8.960514407110086,-1.1796924336528392,-5.973006571591624,-5.843542137444535,9.089753023149477,3.3514646504415087,-6.8378454909080055,5.727222251019025,3.7421609006566356,7.10017318364849,6.342578646646913,-8.861046377831096,9.277875209978593,3.1439484432168037,0.4655186164430063,-9.755805683348404,9.692559006816737,-3.171786341832597,-1.190680679829244,0.6284289799615177,-9.482794891519115,4.555584689556289,9.77049270406264,9.335942064443945,-9.949879092852692,2.4909027363765404,-1.9158176959492046,7.500092921435851,0.045771043850029614,0.7991891223512422,2.8652787368477117,-1.0224819765989182,1.4423551756951483,9.846737207585193,5.576118769826774,-8.950175021756255,7.166081595438211,-9.274847259081827,-9.027408650203057,-1.200508038623358,-6.87251372019158,-0.7128203946877107,-4.29057892126999,-0.19184870526349584,6.797131782978276,0.7048208810961487,8.841474698315661,-2.611126413686222,1.1507545954291452,6.673004748675076,7.530499181311129,1.2618825636555453,-3.676064621995934,2.2773371562553972,-8.684051824016217,2.091174219762454,1.950385397240586,9.303594092781463,-4.81834198950724,-8.01390280526649,-6.486631906296267,3.892294115626626,4.559183218914937,9.52696738243474,0.41514408564173166,-7.7136334773049615,-3.0620127569290982,-6.899785229853636,5.583097630022017,-3.9772722339446087,-3.3402989344141147,-7.093201325130412,-0.5009958069169951,-6.503109870074894,3.464395846599471,6.491063032750514,-3.910224681975314,-2.015834171203597,-4.7723552955044735,-4.429157421780716,1.984720552329728,0.6560364808834844,4.086238293310178,7.2254896243545765,1.3169630969695092,6.091722634236017,9.01167365957857,-8.078532311354083,-0.09026155509539713,4.905321642910316,-8.003326710792685,4.426541205052242,6.285815723718681,-4.308739055558524,3.9197840952757357,8.432509753000591,5.318285816092885,-3.2286513300920934,2.2777561889276896,-8.581253740150359,-5.539051877645345,-5.224896424503502,6.747863475269295,4.25261239675071,-9.189117212073349,-9.108631930637966,4.882561217528373,-1.5204361786086231,-9.938092953406025,-8.852903996935293,3.4702774112951147,2.7123183512257256,-6.131747425251206,4.125312690358289,-9.474448719515605,6.023882669599171,-9.04984050480638,-7.3384260436270665,0.26792939645484637,-9.316425134884787,-9.31394587105374,-1.1361534561093976,-0.2274222645499595,7.105590893270975,-9.958478431207858,0.6773011591655447,-8.352261528000351,1.8219202681323825,-0.5970169757637205,6.813756753067267,-4.648086113189076,5.063904842601197,5.803832063907073,2.6807246111435585,4.274734519089666,-8.00327061234671,-2.0568233313960826,4.485922840132337,8.980883644382281,5.081524651041242,0.5642725665218471,-4.325266225605451,1.9132218163743993,-1.1218761215236306,-4.675679512159785,7.407073842509067,2.238477914850023,5.210028928170489,-7.697526626741653,8.68324604437285,6.011158832472066,8.815236698238142,1.767240739878881,-3.8673938592089723,-2.0122681054846447,2.8938693298294265,-9.330836778829157,-3.4701106333915206,8.209035621699389,-6.779363618598094,9.723272649992929,1.6647769591386652,-2.8550269515315563,3.9469540574572886,8.436836435766388,-9.469697911721804,-7.22816595269848,-5.063544316011277,5.767372928903518,6.849681528846823,6.148179686779397,-3.266548917713193,1.5160685748532785,-1.473023584442652,8.91317626006072,-3.857059493008885,-3.708188933099425,-0.6411874056474751,5.002559756130097,-4.5546299701989135,-9.596049991194104,8.359611059276709,4.039442538197074,-1.1726253837856362,5.093845309681157,-0.15183175386024494,6.464290974456922,4.56809857331109,9.397363064079407,-7.372423029410545,3.5285896387998132,-0.11198755661506254,-3.755410945979185,5.641060768763458,3.7998885509752345,-0.7550215772756239,9.49747819551271,9.992783974205185,0.30420399181230806,-2.253253444154824,0.9987201500847736,1.969119107704353,-3.2477699986490283,-8.609602069151821,6.681363668798149,7.092468472320071,4.43195869136783,-7.684104886437401,3.466533937807517,5.129685572559621,-0.30896114154448995,-3.9709275602745775,-4.195583548553006,-3.923121055748487,4.066647178979837,0.19180184445180437,8.79822990501308,-6.802992422463065,-4.148359870205837,8.596177034731014,8.777860260255046,1.4783502298508715,-6.792871697489106,-6.6129996202216335,4.305844498633409,-1.577824617714544,2.3657357914707777,-2.7905499174844817,5.880788332866331,-0.4667222078256579,3.3440686410126492,6.7496115128603975,-9.006168990812311,4.705646022219145,5.776914007636307,5.6197242947179085,-6.566528765905129,-1.6738602097139434,1.468171239163233,-4.34438144572709,8.030340297837295,7.5179988858847615,0.023628067402905018,7.091551339306999,2.025938102961673,-7.092639699006353,-6.860711788890463,0.08920586395458407,0.3722232656561282,7.706889310424877,-2.5703235054384983,2.7638919775663524,-9.944030922147505,7.333513590351195,-9.338205785116283,5.531315333808635,8.081346081644206,4.096514817248202,9.083143892656679,8.093765633326232,-3.3112944273608775,1.6823173882946136,-2.0540117820620534,8.872312770825399,-6.868127829744464,9.597103146239803,-6.6187205212614035,-9.632143521117802,-1.1199386708031902,-2.719628849380591,-2.0661417570923346,8.95409313528097,4.883680053727826,-0.6599157639727515,0.5596538951803112,8.531388053980479,-8.48589683471318,8.070558125980892,-9.560075794733162,-5.287720162634779,-6.738311192670059,-0.8025049160469866,0.00660432829097779,7.135928482599425,-9.153462595376583,9.934550965016019,-0.1074865113523753,0.7700357266973725,-9.111761659517912,2.794449545879168,-0.1343117775855962,0.5435999701657046,7.500319505271332,-6.215015919065059,-7.760482921297928,5.0531104659697785,-3.388883094104158,5.825325598772917,-2.42643861969076,-6.624725659626442,1.5094349600379449,8.324278007262109,-9.282220271951998,-0.8155741580893014,3.5984458863012048,-7.664314965100367,7.9494860524729525,-6.275201591193788]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.assign.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.assign.js
new file mode 100644
index 000000000000..de99a17ac99f
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.assign.js
@@ -0,0 +1,826 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+/* eslint-disable id-length */
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var isAlmostEqualFloat32Array = require( '@stdlib/assert/is-almost-equal-float32array' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var Float32Array = require( '@stdlib/array/float32' );
+var cdiv = require( './../lib/assign.js' );
+
+
+// FIXTURES //
+
+var data = require( './fixtures/julia/data.json' );
+var componentScales1 = require( './fixtures/julia/component_scales1.json' );
+var componentScales2 = require( './fixtures/julia/component_scales2.json' );
+var imaginaryComponentScales = require( './fixtures/julia/imaginary_component_scales.json' );
+var realComponentScales = require( './fixtures/julia/real_component_scales.json' );
+var largeNegativeImaginaryComponents = require( './fixtures/julia/large_negative_imaginary_components.json' );
+var largeNegativeRealComponents = require( './fixtures/julia/large_negative_real_components.json' );
+var largePositiveImaginaryComponents = require( './fixtures/julia/large_positive_imaginary_components.json' );
+var largePositiveRealComponents = require( './fixtures/julia/large_positive_real_components.json' );
+var tinyNegativeImaginaryComponents = require( './fixtures/julia/tiny_negative_imaginary_components.json' );
+var tinyNegativeRealComponents = require( './fixtures/julia/tiny_negative_real_components.json' );
+var tinyPositiveImaginaryComponents = require( './fixtures/julia/tiny_positive_imaginary_components.json' );
+var tinyPositiveRealComponents = require( './fixtures/julia/tiny_positive_real_components.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdiv, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (base behavior)', function test( t ) {
+ var expected;
+ var out;
+ var v;
+
+ out = new Float32Array( 2 );
+
+ v = cdiv( 2.0, 4.0, 1.0, 2.0, out, 1, 0 );
+ expected = new Float32Array( [ 2.0, 0.0 ] );
+
+ t.strictEqual( v[ 0 ], expected[ 0 ], 'returns expected real component' );
+ t.strictEqual( v[ 1 ], expected[ 1 ], 'returns expected imaginary component' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tested against fixtures)', function test( t ) {
+ var delta;
+ var out;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var i;
+ var q;
+
+ re1 = data.re1;
+ im1 = data.im1;
+ re2 = data.re2;
+ im2 = data.im2;
+ qre = data.qre;
+ qim = data.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = componentScales1.re1;
+ im1 = componentScales1.im1;
+ re2 = componentScales1.re2;
+ im2 = componentScales1.im2;
+ qre = componentScales1.qre;
+ qim = componentScales1.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = componentScales2.re1;
+ im1 = componentScales2.im1;
+ re2 = componentScales2.re2;
+ im2 = componentScales2.im2;
+ qre = componentScales2.qre;
+ qim = componentScales2.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = imaginaryComponentScales.re1;
+ im1 = imaginaryComponentScales.im1;
+ re2 = imaginaryComponentScales.re2;
+ im2 = imaginaryComponentScales.im2;
+ qre = imaginaryComponentScales.qre;
+ qim = imaginaryComponentScales.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (real imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = realComponentScales.re1;
+ im1 = realComponentScales.im1;
+ re2 = realComponentScales.re2;
+ im2 = realComponentScales.im2;
+ qre = realComponentScales.qre;
+ qim = realComponentScales.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = largeNegativeImaginaryComponents.re1;
+ im1 = largeNegativeImaginaryComponents.im1;
+ re2 = largeNegativeImaginaryComponents.re2;
+ im2 = largeNegativeImaginaryComponents.im2;
+ qre = largeNegativeImaginaryComponents.qre;
+ qim = largeNegativeImaginaryComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = largeNegativeRealComponents.re1;
+ im1 = largeNegativeRealComponents.im1;
+ re2 = largeNegativeRealComponents.re2;
+ im2 = largeNegativeRealComponents.im2;
+ qre = largeNegativeRealComponents.qre;
+ qim = largeNegativeRealComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = largePositiveImaginaryComponents.re1;
+ im1 = largePositiveImaginaryComponents.im1;
+ re2 = largePositiveImaginaryComponents.re2;
+ im2 = largePositiveImaginaryComponents.im2;
+ qre = largePositiveImaginaryComponents.qre;
+ qim = largePositiveImaginaryComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = largePositiveRealComponents.re1;
+ im1 = largePositiveRealComponents.im1;
+ re2 = largePositiveRealComponents.re2;
+ im2 = largePositiveRealComponents.im2;
+ qre = largePositiveRealComponents.qre;
+ qim = largePositiveRealComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = tinyNegativeImaginaryComponents.re1;
+ im1 = tinyNegativeImaginaryComponents.im1;
+ re2 = tinyNegativeImaginaryComponents.re2;
+ im2 = tinyNegativeImaginaryComponents.im2;
+ qre = tinyNegativeImaginaryComponents.qre;
+ qim = tinyNegativeImaginaryComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = tinyNegativeRealComponents.re1;
+ im1 = tinyNegativeRealComponents.im1;
+ re2 = tinyNegativeRealComponents.re2;
+ im2 = tinyNegativeRealComponents.im2;
+ qre = tinyNegativeRealComponents.qre;
+ qim = tinyNegativeRealComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var out;
+ var i;
+ var q;
+
+ re1 = tinyPositiveImaginaryComponents.re1;
+ im1 = tinyPositiveImaginaryComponents.im1;
+ re2 = tinyPositiveImaginaryComponents.re2;
+ im2 = tinyPositiveImaginaryComponents.im2;
+ qre = tinyPositiveImaginaryComponents.qre;
+ qim = tinyPositiveImaginaryComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var out;
+ var qim;
+ var i;
+ var q;
+
+ re1 = tinyPositiveRealComponents.re1;
+ im1 = tinyPositiveRealComponents.im1;
+ re2 = tinyPositiveRealComponents.re2;
+ im2 = tinyPositiveRealComponents.im2;
+ qre = tinyPositiveRealComponents.qre;
+ qim = tinyPositiveRealComponents.qim;
+ out = new Float32Array( 2 );
+
+ for ( i = 0; i < re1.length; i++ ) {
+ q = cdiv( f32( re1[ i ] ), f32( im1[ i ] ), f32( re2[ i ] ), f32( im2[ i ] ), out, 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[ 0 ]+
+ '. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+
+ 'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[ 1 ]+
+ '. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function handles large and small numbers', function test( t ) {
+ var expected;
+ var out;
+ var v;
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, 5.0e37, 1.0, 0.5, out, 1, 0 );
+ expected = new Float32Array( [ 1.0e38, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0, 0.5, 1.0e38, 5.0e37, out, 1, 0 );
+ expected = new Float32Array( [ 1.0e-38, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e-38, 2.0e-38, 1.0, 2.0, out, 1, 0 );
+ expected = new Float32Array( [ 1.0e-38, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0, 2.0, 1.0e-38, 2.0e-38, out, 1, 0 );
+ expected = new Float32Array( [ 1.0e+38, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 2.0, 4.0, 0.0, 2.0, out, 1, 0 );
+ expected = new Float32Array( [ 2.0, -1.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e-20, 1.0e-20, 1.0, 1.0e-20, out, 1, 0 );
+ expected = new Float32Array( [ 1.0e-20, 1.0e-20 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ t.end();
+});
+
+tape( 'the function may overflow during complex division', function test( t ) {
+ var expected;
+ var out;
+ var v;
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, 1.0e38, 5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ PINF, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, 1.0e38, -5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, NINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, -1.0e38, 5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, NINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, 1.0e38, 5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, PINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, 1.0e38, 5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, PINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, 1.0e38, -5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ PINF, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, -1.0e38, 5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ PINF, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, -1.0e38, -5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ NINF, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, 1.0e38, 5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ NINF, 0.0 ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, -1.0e38, -5.0e-45, 5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, PINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 1.0e38, -1.0e38, -5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, PINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, 1.0e38, -5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, NINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( -1.0e38, -1.0e38, 5.0e-45, -5.0e-45, out, 1, 0 );
+ expected = new Float32Array( [ 0.0, NINF ] );
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ t.end();
+});
+
+tape( 'if a real or imaginary component is `NaN`, all components are `NaN`', function test( t ) {
+ var out;
+ var v;
+
+ out = new Float32Array( 2 );
+ v = cdiv( NaN, 3.0, -2.0, 1.0, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 5.0, NaN, -2.0, 1.0, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 5.0, 3.0, NaN, 1.0, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 5.0, 3.0, -2.0, NaN, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( 5.0, 3.0, NaN, NaN, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( NaN, NaN, -2.0, 1.0, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ out = new Float32Array( 2 );
+ v = cdiv( NaN, NaN, NaN, NaN, out, 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected values' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected values' );
+
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js
new file mode 100644
index 000000000000..44e583bf3b59
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js
@@ -0,0 +1,46 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 isMethod = require( '@stdlib/assert/is-method' );
+var div = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof div, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'attached to the main export is an `assign` method', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( isMethod( div, 'assign' ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'attached to the main export is a `strided` method', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( isMethod( div, 'strided' ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.main.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.main.js
new file mode 100644
index 000000000000..05fb92cb236a
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.main.js
@@ -0,0 +1,696 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+/* eslint-disable id-length */
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var real = require( '@stdlib/complex/float32/real' );
+var imag = require( '@stdlib/complex/float32/imag' );
+var cdiv = require( './../lib' );
+
+
+// FIXTURES //
+
+var data = require( './fixtures/julia/data.json' );
+var componentScales1 = require( './fixtures/julia/component_scales1.json' );
+var componentScales2 = require( './fixtures/julia/component_scales2.json' );
+var imaginaryComponentScales = require( './fixtures/julia/imaginary_component_scales.json' );
+var realComponentScales = require( './fixtures/julia/real_component_scales.json' );
+var largeNegativeImaginaryComponents = require( './fixtures/julia/large_negative_imaginary_components.json' );
+var largeNegativeRealComponents = require( './fixtures/julia/large_negative_real_components.json' );
+var largePositiveImaginaryComponents = require( './fixtures/julia/large_positive_imaginary_components.json' );
+var largePositiveRealComponents = require( './fixtures/julia/large_positive_real_components.json' );
+var tinyNegativeImaginaryComponents = require( './fixtures/julia/tiny_negative_imaginary_components.json' );
+var tinyNegativeRealComponents = require( './fixtures/julia/tiny_negative_real_components.json' );
+var tinyPositiveImaginaryComponents = require( './fixtures/julia/tiny_positive_imaginary_components.json' );
+var tinyPositiveRealComponents = require( './fixtures/julia/tiny_positive_real_components.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdiv, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (base behavior)', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( 2.0, 4.0 );
+ z2 = new Complex64( 1.0, 2.0 );
+
+ v = cdiv( z1, z2 );
+
+ t.strictEqual( real( v ), 2.0, 'returns expected value' );
+ t.strictEqual( imag( v ), 0.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tested against fixtures)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = data.re1;
+ im1 = data.im1;
+ re2 = data.re2;
+ im2 = data.im2;
+ qre = data.qre;
+ qim = data.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales1.re1;
+ im1 = componentScales1.im1;
+ re2 = componentScales1.re2;
+ im2 = componentScales1.im2;
+ qre = componentScales1.qre;
+ qim = componentScales1.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales2.re1;
+ im1 = componentScales2.im1;
+ re2 = componentScales2.re2;
+ im2 = componentScales2.im2;
+ qre = componentScales2.qre;
+ qim = componentScales2.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = imaginaryComponentScales.re1;
+ im1 = imaginaryComponentScales.im1;
+ re2 = imaginaryComponentScales.re2;
+ im2 = imaginaryComponentScales.im2;
+ qre = imaginaryComponentScales.qre;
+ qim = imaginaryComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (real imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = realComponentScales.re1;
+ im1 = realComponentScales.im1;
+ re2 = realComponentScales.re2;
+ im2 = realComponentScales.im2;
+ qre = realComponentScales.qre;
+ qim = realComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeImaginaryComponents.re1;
+ im1 = largeNegativeImaginaryComponents.im1;
+ re2 = largeNegativeImaginaryComponents.re2;
+ im2 = largeNegativeImaginaryComponents.im2;
+ qre = largeNegativeImaginaryComponents.qre;
+ qim = largeNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeRealComponents.re1;
+ im1 = largeNegativeRealComponents.im1;
+ re2 = largeNegativeRealComponents.re2;
+ im2 = largeNegativeRealComponents.im2;
+ qre = largeNegativeRealComponents.qre;
+ qim = largeNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveImaginaryComponents.re1;
+ im1 = largePositiveImaginaryComponents.im1;
+ re2 = largePositiveImaginaryComponents.re2;
+ im2 = largePositiveImaginaryComponents.im2;
+ qre = largePositiveImaginaryComponents.qre;
+ qim = largePositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveRealComponents.re1;
+ im1 = largePositiveRealComponents.im1;
+ re2 = largePositiveRealComponents.re2;
+ im2 = largePositiveRealComponents.im2;
+ qre = largePositiveRealComponents.qre;
+ qim = largePositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeImaginaryComponents.re1;
+ im1 = tinyNegativeImaginaryComponents.im1;
+ re2 = tinyNegativeImaginaryComponents.re2;
+ im2 = tinyNegativeImaginaryComponents.im2;
+ qre = tinyNegativeImaginaryComponents.qre;
+ qim = tinyNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeRealComponents.re1;
+ im1 = tinyNegativeRealComponents.im1;
+ re2 = tinyNegativeRealComponents.re2;
+ im2 = tinyNegativeRealComponents.im2;
+ qre = tinyNegativeRealComponents.qre;
+ qim = tinyNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveImaginaryComponents.re1;
+ im1 = tinyPositiveImaginaryComponents.im1;
+ re2 = tinyPositiveImaginaryComponents.re2;
+ im2 = tinyPositiveImaginaryComponents.im2;
+ qre = tinyPositiveImaginaryComponents.qre;
+ qim = tinyPositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveRealComponents.re1;
+ im1 = tinyPositiveRealComponents.im1;
+ re2 = tinyPositiveRealComponents.re2;
+ im2 = tinyPositiveRealComponents.im2;
+ qre = tinyPositiveRealComponents.qre;
+ qim = tinyPositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real( q )+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag( q )+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'if a real or imaginary component is `NaN`, all components are `NaN`', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( NaN, 3.0 );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( -2.0, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( NaN, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.native.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.native.js
new file mode 100644
index 000000000000..61103fc870c3
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.native.js
@@ -0,0 +1,713 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+/* eslint-disable id-length */
+
+'use strict';
+
+// MODULES //
+
+var resolve = require( 'path' ).resolve;
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var real = require( '@stdlib/complex/float32/real' );
+var imag = require( '@stdlib/complex/float32/imag' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var cdiv = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( cdiv instanceof Error )
+};
+
+
+// FIXTURES //
+
+var data = require( './fixtures/julia/data.json' );
+var componentScales1 = require( './fixtures/julia/component_scales1.json' );
+var componentScales2 = require( './fixtures/julia/component_scales2.json' );
+var imaginaryComponentScales = require( './fixtures/julia/imaginary_component_scales.json' );
+var realComponentScales = require( './fixtures/julia/real_component_scales.json' );
+var largeNegativeImaginaryComponents = require( './fixtures/julia/large_negative_imaginary_components.json' );
+var largeNegativeRealComponents = require( './fixtures/julia/large_negative_real_components.json' );
+var largePositiveImaginaryComponents = require( './fixtures/julia/large_positive_imaginary_components.json' );
+var largePositiveRealComponents = require( './fixtures/julia/large_positive_real_components.json' );
+var tinyNegativeImaginaryComponents = require( './fixtures/julia/tiny_negative_imaginary_components.json' );
+var tinyNegativeRealComponents = require( './fixtures/julia/tiny_negative_real_components.json' );
+var tinyPositiveImaginaryComponents = require( './fixtures/julia/tiny_positive_imaginary_components.json' );
+var tinyPositiveRealComponents = require( './fixtures/julia/tiny_positive_real_components.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', opts, function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdiv, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (base behavior)', opts, function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( 2.0, 4.0 );
+ z2 = new Complex64( 1.0, 2.0 );
+
+ v = cdiv( z1, z2 );
+
+ t.strictEqual( real( v ), 2.0, 'returns expected value' );
+ t.strictEqual( imag( v ), 0.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tested against fixtures)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = data.re1;
+ im1 = data.im1;
+ re2 = data.re2;
+ im2 = data.im2;
+ qre = data.qre;
+ qim = data.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+
+ // NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+
+ // NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales1.re1;
+ im1 = componentScales1.im1;
+ re2 = componentScales1.re2;
+ im2 = componentScales1.im2;
+ qre = componentScales1.qre;
+ qim = componentScales1.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales2.re1;
+ im1 = componentScales2.im1;
+ re2 = componentScales2.re2;
+ im2 = componentScales2.im2;
+ qre = componentScales2.qre;
+ qim = componentScales2.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different imaginary component scales)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = imaginaryComponentScales.re1;
+ im1 = imaginaryComponentScales.im1;
+ re2 = imaginaryComponentScales.re2;
+ im2 = imaginaryComponentScales.im2;
+ qre = imaginaryComponentScales.qre;
+ qim = imaginaryComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (real imaginary component scales)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = realComponentScales.re1;
+ im1 = realComponentScales.im1;
+ re2 = realComponentScales.re2;
+ im2 = realComponentScales.im2;
+ qre = realComponentScales.qre;
+ qim = realComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative imaginary components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeImaginaryComponents.re1;
+ im1 = largeNegativeImaginaryComponents.im1;
+ re2 = largeNegativeImaginaryComponents.re2;
+ im2 = largeNegativeImaginaryComponents.im2;
+ qre = largeNegativeImaginaryComponents.qre;
+ qim = largeNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative real components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeRealComponents.re1;
+ im1 = largeNegativeRealComponents.im1;
+ re2 = largeNegativeRealComponents.re2;
+ im2 = largeNegativeRealComponents.im2;
+ qre = largeNegativeRealComponents.qre;
+ qim = largeNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive imaginary components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveImaginaryComponents.re1;
+ im1 = largePositiveImaginaryComponents.im1;
+ re2 = largePositiveImaginaryComponents.re2;
+ im2 = largePositiveImaginaryComponents.im2;
+ qre = largePositiveImaginaryComponents.qre;
+ qim = largePositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive real components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveRealComponents.re1;
+ im1 = largePositiveRealComponents.im1;
+ re2 = largePositiveRealComponents.re2;
+ im2 = largePositiveRealComponents.im2;
+ qre = largePositiveRealComponents.qre;
+ qim = largePositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+
+ // NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+
+ // NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative imaginary components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeImaginaryComponents.re1;
+ im1 = tinyNegativeImaginaryComponents.im1;
+ re2 = tinyNegativeImaginaryComponents.re2;
+ im2 = tinyNegativeImaginaryComponents.im2;
+ qre = tinyNegativeImaginaryComponents.qre;
+ qim = tinyNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative real components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeRealComponents.re1;
+ im1 = tinyNegativeRealComponents.im1;
+ re2 = tinyNegativeRealComponents.re2;
+ im2 = tinyNegativeRealComponents.im2;
+ qre = tinyNegativeRealComponents.qre;
+ qim = tinyNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive imaginary components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveImaginaryComponents.re1;
+ im1 = tinyPositiveImaginaryComponents.im1;
+ re2 = tinyPositiveImaginaryComponents.re2;
+ im2 = tinyPositiveImaginaryComponents.im2;
+ qre = tinyPositiveImaginaryComponents.qre;
+ qim = tinyPositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive real components)', opts, function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveRealComponents.re1;
+ im1 = tinyPositiveRealComponents.im1;
+ re2 = tinyPositiveRealComponents.re2;
+ im2 = tinyPositiveRealComponents.im2;
+ qre = tinyPositiveRealComponents.qre;
+ qim = tinyPositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = cdiv( z1, z2 );
+
+ if ( real( q ) === qre[ i ] ) {
+ t.strictEqual( real( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( real( q ) - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+real(q)+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imag( q ) === qim[ i ] ) {
+ t.strictEqual( imag( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( imag( q ) - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+imag(q)+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'if a real or imaginary component is `NaN`, all components are `NaN`', opts, function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( NaN, 3.0 );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( -2.0, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( NaN, NaN );
+ v = cdiv( z1, z2 );
+ t.strictEqual( isnanf( real( v ) ), true, 'returns expected value' );
+ t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
+
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.strided.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.strided.js
new file mode 100644
index 000000000000..50d88eab7036
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.strided.js
@@ -0,0 +1,698 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+/* eslint-disable id-length */
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var isAlmostEqualFloat32Array = require( '@stdlib/assert/is-almost-equal-float32array' );
+var Float32Array = require( '@stdlib/array/float32' );
+var cdiv = require( './../lib/strided.js' );
+
+
+// FIXTURES //
+
+var data = require( './fixtures/julia/data.json' );
+var componentScales1 = require( './fixtures/julia/component_scales1.json' );
+var componentScales2 = require( './fixtures/julia/component_scales2.json' );
+var imaginaryComponentScales = require( './fixtures/julia/imaginary_component_scales.json' );
+var realComponentScales = require( './fixtures/julia/real_component_scales.json' );
+var largeNegativeImaginaryComponents = require( './fixtures/julia/large_negative_imaginary_components.json' );
+var largeNegativeRealComponents = require( './fixtures/julia/large_negative_real_components.json' );
+var largePositiveImaginaryComponents = require( './fixtures/julia/large_positive_imaginary_components.json' );
+var largePositiveRealComponents = require( './fixtures/julia/large_positive_real_components.json' );
+var tinyNegativeImaginaryComponents = require( './fixtures/julia/tiny_negative_imaginary_components.json' );
+var tinyNegativeRealComponents = require( './fixtures/julia/tiny_negative_real_components.json' );
+var tinyPositiveImaginaryComponents = require( './fixtures/julia/tiny_positive_imaginary_components.json' );
+var tinyPositiveRealComponents = require( './fixtures/julia/tiny_positive_real_components.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdiv, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (base behavior)', function test( t ) {
+ var expected;
+ var out;
+ var z1;
+ var z2;
+ var v;
+
+ out = new Float32Array( 2 );
+ z1 = new Float32Array( [ 2.0, 4.0 ] );
+ z2 = new Float32Array( [ 1.0, 2.0 ] );
+ expected = new Float32Array( [ 2.0, 0.0 ] );
+
+ v = cdiv( z1, 1, 0, z2, 1, 0, out, 1, 0 );
+
+ t.strictEqual( isAlmostEqualFloat32Array( v, expected, 1 ), true, 'returns expected values' );
+
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tested against fixtures)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = data.re1;
+ im1 = data.im1;
+ re2 = data.re2;
+ im2 = data.im2;
+ qre = data.qre;
+ qim = data.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales1.re1;
+ im1 = componentScales1.im1;
+ re2 = componentScales1.re2;
+ im2 = componentScales1.im2;
+ qre = componentScales1.qre;
+ qim = componentScales1.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales2.re1;
+ im1 = componentScales2.im1;
+ re2 = componentScales2.re2;
+ im2 = componentScales2.im2;
+ qre = componentScales2.qre;
+ qim = componentScales2.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = imaginaryComponentScales.re1;
+ im1 = imaginaryComponentScales.im1;
+ re2 = imaginaryComponentScales.re2;
+ im2 = imaginaryComponentScales.im2;
+ qre = imaginaryComponentScales.qre;
+ qim = imaginaryComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (real imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = realComponentScales.re1;
+ im1 = realComponentScales.im1;
+ re2 = realComponentScales.re2;
+ im2 = realComponentScales.im2;
+ qre = realComponentScales.qre;
+ qim = realComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeImaginaryComponents.re1;
+ im1 = largeNegativeImaginaryComponents.im1;
+ re2 = largeNegativeImaginaryComponents.re2;
+ im2 = largeNegativeImaginaryComponents.im2;
+ qre = largeNegativeImaginaryComponents.qre;
+ qim = largeNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeRealComponents.re1;
+ im1 = largeNegativeRealComponents.im1;
+ re2 = largeNegativeRealComponents.re2;
+ im2 = largeNegativeRealComponents.im2;
+ qre = largeNegativeRealComponents.qre;
+ qim = largeNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveImaginaryComponents.re1;
+ im1 = largePositiveImaginaryComponents.im1;
+ re2 = largePositiveImaginaryComponents.re2;
+ im2 = largePositiveImaginaryComponents.im2;
+ qre = largePositiveImaginaryComponents.qre;
+ qim = largePositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveRealComponents.re1;
+ im1 = largePositiveRealComponents.im1;
+ re2 = largePositiveRealComponents.re2;
+ im2 = largePositiveRealComponents.im2;
+ qre = largePositiveRealComponents.qre;
+ qim = largePositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeImaginaryComponents.re1;
+ im1 = tinyNegativeImaginaryComponents.im1;
+ re2 = tinyNegativeImaginaryComponents.re2;
+ im2 = tinyNegativeImaginaryComponents.im2;
+ qre = tinyNegativeImaginaryComponents.qre;
+ qim = tinyNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeRealComponents.re1;
+ im1 = tinyNegativeRealComponents.im1;
+ re2 = tinyNegativeRealComponents.re2;
+ im2 = tinyNegativeRealComponents.im2;
+ qre = tinyNegativeRealComponents.qre;
+ qim = tinyNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveImaginaryComponents.re1;
+ im1 = tinyPositiveImaginaryComponents.im1;
+ re2 = tinyPositiveImaginaryComponents.re2;
+ im2 = tinyPositiveImaginaryComponents.im2;
+ qre = tinyPositiveImaginaryComponents.qre;
+ qim = tinyPositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveRealComponents.re1;
+ im1 = tinyPositiveRealComponents.im1;
+ re2 = tinyPositiveRealComponents.re2;
+ im2 = tinyPositiveRealComponents.im2;
+ qre = tinyPositiveRealComponents.qre;
+ qim = tinyPositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Float32Array( [ re1[ i ], im1[ i ] ] );
+ z2 = new Float32Array( [ re2[ i ], im2[ i ] ] );
+ q = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+
+ if ( q[ 0 ] === qre[ i ] ) {
+ t.strictEqual( q[ 0 ], qre[ i ], 'returns expected real component' );
+ } else {
+ delta = abs( q[ 0 ] - qre[ i ] );
+ tol = EPS * abs( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( q[ 1 ] === qim[ i ] ) {
+ t.strictEqual( q[ 1 ], qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = abs( q[ 1 ] - qim[ i ] );
+ tol = EPS * abs( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'if a real or imaginary component is `NaN`, all components are `NaN`', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Float32Array( [ NaN, 3.0 ] );
+ z2 = new Float32Array( [ -2.0, 1.0 ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ 5.0, NaN ] );
+ z2 = new Float32Array( [ -2.0, 1.0 ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ 5.0, 3.0 ] );
+ z2 = new Float32Array( [ NaN, 1.0 ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ 5.0, 3.0 ] );
+ z2 = new Float32Array( [ -2.0, NaN ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ 5.0, 3.0 ] );
+ z2 = new Float32Array( [ NaN, NaN ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ NaN, NaN ] );
+ z2 = new Float32Array( [ -2.0, 1.0 ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ z1 = new Float32Array( [ NaN, NaN ] );
+ z2 = new Float32Array( [ NaN, NaN ] );
+ v = cdiv( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
+ t.strictEqual( isnanf( v[ 0 ] ), true, 'returns expected value' );
+ t.strictEqual( isnanf( v[ 1 ] ), true, 'returns expected value' );
+
+ t.end();
+});