numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +353 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1515 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5758 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2001 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4705 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_common.pxd +107 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +804 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.0.dist-info/METADATA +139 -0
- numpy-2.4.0.dist-info/RECORD +915 -0
- numpy-2.4.0.dist-info/WHEEL +5 -0
- numpy-2.4.0.dist-info/entry_points.txt +13 -0
- numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
- numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
- numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
- numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
- numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0x3ee82930,0x3efa60fd,2
|
|
3
|
+
np.float32,0x3f0aa640,0x3f1b3e13,2
|
|
4
|
+
np.float32,0x3ec1a21c,0x3ecbbf8d,2
|
|
5
|
+
np.float32,0x3cdb1740,0x3cdb24a1,2
|
|
6
|
+
np.float32,0xbf28b6f3,0xbf4a86ac,2
|
|
7
|
+
np.float32,0xbe490dcc,0xbe4bb2eb,2
|
|
8
|
+
np.float32,0x80000001,0x80000001,2
|
|
9
|
+
np.float32,0xbf44f9dd,0xbf826ce1,2
|
|
10
|
+
np.float32,0xbf1d66c4,0xbf37786b,2
|
|
11
|
+
np.float32,0x3f0ad26a,0x3f1b7c9b,2
|
|
12
|
+
np.float32,0x3f7b6c54,0x4016aab0,2
|
|
13
|
+
np.float32,0xbf715bb8,0xbfe1a0bc,2
|
|
14
|
+
np.float32,0xbee8a562,0xbefafd6a,2
|
|
15
|
+
np.float32,0x3db94d00,0x3db9cf16,2
|
|
16
|
+
np.float32,0x3ee2970c,0x3ef368b3,2
|
|
17
|
+
np.float32,0x3f3f8614,0x3f77fdca,2
|
|
18
|
+
np.float32,0xbf1fb5f0,0xbf3b3789,2
|
|
19
|
+
np.float32,0x3f798dc0,0x400b96bb,2
|
|
20
|
+
np.float32,0x3e975d64,0x3e9c0573,2
|
|
21
|
+
np.float32,0xbe3f1908,0xbe415d1f,2
|
|
22
|
+
np.float32,0x3f2cea38,0x3f52192e,2
|
|
23
|
+
np.float32,0x3e82f1ac,0x3e85eaa1,2
|
|
24
|
+
np.float32,0x3eab6b30,0x3eb24acd,2
|
|
25
|
+
np.float32,0xbe9bb90c,0xbea0cf5f,2
|
|
26
|
+
np.float32,0xbf43e847,0xbf81202f,2
|
|
27
|
+
np.float32,0xbd232fa0,0xbd2345c0,2
|
|
28
|
+
np.float32,0xbbabbc00,0xbbabbc67,2
|
|
29
|
+
np.float32,0xbf0b2975,0xbf1bf808,2
|
|
30
|
+
np.float32,0xbef5ab0a,0xbf05d305,2
|
|
31
|
+
np.float32,0x3f2cad16,0x3f51a8e2,2
|
|
32
|
+
np.float32,0xbef75940,0xbf06eb08,2
|
|
33
|
+
np.float32,0xbf0c1216,0xbf1d4325,2
|
|
34
|
+
np.float32,0x3e7bdc08,0x3e8090c2,2
|
|
35
|
+
np.float32,0x3da14e10,0x3da1a3c5,2
|
|
36
|
+
np.float32,0x3f627412,0x3fb2bf21,2
|
|
37
|
+
np.float32,0xbd6d08c0,0xbd6d4ca0,2
|
|
38
|
+
np.float32,0x3f3e2368,0x3f74df8b,2
|
|
39
|
+
np.float32,0xbe0df104,0xbe0edc77,2
|
|
40
|
+
np.float32,0x3e8a265c,0x3e8da833,2
|
|
41
|
+
np.float32,0xbdccdbb0,0xbdcd8ba8,2
|
|
42
|
+
np.float32,0x3eb080c4,0x3eb80a44,2
|
|
43
|
+
np.float32,0x3e627800,0x3e6645fe,2
|
|
44
|
+
np.float32,0xbd8be0b0,0xbd8c1886,2
|
|
45
|
+
np.float32,0xbf3282ac,0xbf5cae8c,2
|
|
46
|
+
np.float32,0xbe515910,0xbe545707,2
|
|
47
|
+
np.float32,0xbf2e64ac,0xbf54d637,2
|
|
48
|
+
np.float32,0x3e0fc230,0x3e10b6de,2
|
|
49
|
+
np.float32,0x3eb13ca0,0x3eb8df94,2
|
|
50
|
+
np.float32,0x3f07a3ca,0x3f170572,2
|
|
51
|
+
np.float32,0x3f2c7026,0x3f513935,2
|
|
52
|
+
np.float32,0x3f3c4ec8,0x3f70d67c,2
|
|
53
|
+
np.float32,0xbee9cce8,0xbefc724f,2
|
|
54
|
+
np.float32,0xbe53ca60,0xbe56e3f3,2
|
|
55
|
+
np.float32,0x3dd9e9a0,0x3ddabd98,2
|
|
56
|
+
np.float32,0x3f38b8d4,0x3f69319b,2
|
|
57
|
+
np.float32,0xbe176dc4,0xbe188c1d,2
|
|
58
|
+
np.float32,0xbf322f2e,0xbf5c0c51,2
|
|
59
|
+
np.float32,0xbe9b8676,0xbea097a2,2
|
|
60
|
+
np.float32,0xbca44280,0xbca44823,2
|
|
61
|
+
np.float32,0xbe2b0248,0xbe2ca036,2
|
|
62
|
+
np.float32,0x3d101e80,0x3d102dbd,2
|
|
63
|
+
np.float32,0xbf4eb610,0xbf8f526d,2
|
|
64
|
+
np.float32,0xbec32a50,0xbecd89d1,2
|
|
65
|
+
np.float32,0x3d549100,0x3d54c1ee,2
|
|
66
|
+
np.float32,0x3f78e55e,0x40087025,2
|
|
67
|
+
np.float32,0x3e592798,0x3e5c802d,2
|
|
68
|
+
np.float32,0x3de045d0,0x3de12cfb,2
|
|
69
|
+
np.float32,0xbdad28e0,0xbdad92f7,2
|
|
70
|
+
np.float32,0x3e9a69e0,0x3e9f5e59,2
|
|
71
|
+
np.float32,0x3e809778,0x3e836716,2
|
|
72
|
+
np.float32,0xbf3278d9,0xbf5c9b6d,2
|
|
73
|
+
np.float32,0x3f39fa00,0x3f6bd4a5,2
|
|
74
|
+
np.float32,0xbec8143c,0xbed34ffa,2
|
|
75
|
+
np.float32,0x3ddb7f40,0x3ddc57e6,2
|
|
76
|
+
np.float32,0x3f0e8342,0x3f20c634,2
|
|
77
|
+
np.float32,0x3f353dda,0x3f6213a4,2
|
|
78
|
+
np.float32,0xbe96b400,0xbe9b4bea,2
|
|
79
|
+
np.float32,0x3e626580,0x3e66328a,2
|
|
80
|
+
np.float32,0xbde091c8,0xbde179df,2
|
|
81
|
+
np.float32,0x3eb47b5c,0x3ebc91ca,2
|
|
82
|
+
np.float32,0xbf282182,0xbf497f2f,2
|
|
83
|
+
np.float32,0x3ea9f64c,0x3eb0a748,2
|
|
84
|
+
np.float32,0x3f28dd4e,0x3f4aca86,2
|
|
85
|
+
np.float32,0xbf71de18,0xbfe3f587,2
|
|
86
|
+
np.float32,0x7fa00000,0x7fe00000,2
|
|
87
|
+
np.float32,0xbf6696a6,0xbfbcf11a,2
|
|
88
|
+
np.float32,0xbc853ae0,0xbc853de2,2
|
|
89
|
+
np.float32,0xbeced246,0xbedb51b8,2
|
|
90
|
+
np.float32,0x3f3472a4,0x3f607e00,2
|
|
91
|
+
np.float32,0xbee90124,0xbefb7117,2
|
|
92
|
+
np.float32,0x3eb45b90,0x3ebc6d7c,2
|
|
93
|
+
np.float32,0xbe53ead0,0xbe5705d6,2
|
|
94
|
+
np.float32,0x3f630c80,0x3fb420e2,2
|
|
95
|
+
np.float32,0xbf408cd0,0xbf7a56a2,2
|
|
96
|
+
np.float32,0x3dda4ed0,0x3ddb23f1,2
|
|
97
|
+
np.float32,0xbf37ae88,0xbf67096b,2
|
|
98
|
+
np.float32,0xbdd48c28,0xbdd550c9,2
|
|
99
|
+
np.float32,0xbf5745b0,0xbf9cb4a4,2
|
|
100
|
+
np.float32,0xbf44e6fc,0xbf8255c1,2
|
|
101
|
+
np.float32,0x3f5c8e6a,0x3fa65020,2
|
|
102
|
+
np.float32,0xbea45fe8,0xbeaa6630,2
|
|
103
|
+
np.float32,0x3f08bdee,0x3f188ef5,2
|
|
104
|
+
np.float32,0x3ec77e74,0x3ed29f4b,2
|
|
105
|
+
np.float32,0xbf1a1d3c,0xbf324029,2
|
|
106
|
+
np.float32,0x3cad7340,0x3cad79e3,2
|
|
107
|
+
np.float32,0xbf4fac2e,0xbf90b72a,2
|
|
108
|
+
np.float32,0x3f58516e,0x3f9e8330,2
|
|
109
|
+
np.float32,0x3f442008,0x3f816391,2
|
|
110
|
+
np.float32,0xbf6e0c6c,0xbfd42854,2
|
|
111
|
+
np.float32,0xbf266f7a,0xbf4689b2,2
|
|
112
|
+
np.float32,0x3eb7e2f0,0x3ec077ba,2
|
|
113
|
+
np.float32,0xbf320fd0,0xbf5bcf83,2
|
|
114
|
+
np.float32,0xbf6a76b9,0xbfc80a11,2
|
|
115
|
+
np.float32,0xbf2a91b4,0xbf4dd526,2
|
|
116
|
+
np.float32,0x3f176e30,0x3f2e150e,2
|
|
117
|
+
np.float32,0xbdcccad0,0xbdcd7a9c,2
|
|
118
|
+
np.float32,0x3f60a8a4,0x3faebbf7,2
|
|
119
|
+
np.float32,0x3d9706f0,0x3d974d40,2
|
|
120
|
+
np.float32,0x3ef3cd34,0x3f049d58,2
|
|
121
|
+
np.float32,0xbf73c615,0xbfed79fe,2
|
|
122
|
+
np.float32,0x3df1b170,0x3df2d31b,2
|
|
123
|
+
np.float32,0x3f632a46,0x3fb466c7,2
|
|
124
|
+
np.float32,0xbf3ea18e,0xbf75f9ce,2
|
|
125
|
+
np.float32,0xbf3ea05c,0xbf75f71f,2
|
|
126
|
+
np.float32,0xbdd76750,0xbdd83403,2
|
|
127
|
+
np.float32,0xbca830c0,0xbca836cd,2
|
|
128
|
+
np.float32,0x3f1d4162,0x3f373c59,2
|
|
129
|
+
np.float32,0x3c115700,0x3c1157fa,2
|
|
130
|
+
np.float32,0x3dae8ab0,0x3daef758,2
|
|
131
|
+
np.float32,0xbcad5020,0xbcad56bf,2
|
|
132
|
+
np.float32,0x3ee299c4,0x3ef36c15,2
|
|
133
|
+
np.float32,0xbf7f566c,0xc054c3bd,2
|
|
134
|
+
np.float32,0x3f0cc698,0x3f1e4557,2
|
|
135
|
+
np.float32,0xbe75c648,0xbe7aaa04,2
|
|
136
|
+
np.float32,0x3ea29238,0x3ea86417,2
|
|
137
|
+
np.float32,0x3f09d9c0,0x3f1a1d61,2
|
|
138
|
+
np.float32,0x3f67275c,0x3fbe74b3,2
|
|
139
|
+
np.float32,0x3e1a4e18,0x3e1b7d3a,2
|
|
140
|
+
np.float32,0xbef6e3fc,0xbf069e98,2
|
|
141
|
+
np.float32,0xbf6038ac,0xbfadc9fd,2
|
|
142
|
+
np.float32,0xbe46bdd4,0xbe494b7f,2
|
|
143
|
+
np.float32,0xbf4df1f4,0xbf8e3a98,2
|
|
144
|
+
np.float32,0x3d094dc0,0x3d095aed,2
|
|
145
|
+
np.float32,0x3f44c7d2,0x3f822fa3,2
|
|
146
|
+
np.float32,0xbea30816,0xbea8e737,2
|
|
147
|
+
np.float32,0xbe3c27c4,0xbe3e511b,2
|
|
148
|
+
np.float32,0x3f3bb47c,0x3f6f8789,2
|
|
149
|
+
np.float32,0xbe423760,0xbe4498c3,2
|
|
150
|
+
np.float32,0x3ece1a74,0x3eda7634,2
|
|
151
|
+
np.float32,0x3f14d1f6,0x3f2a1a89,2
|
|
152
|
+
np.float32,0xbf4d9e8f,0xbf8dc4c1,2
|
|
153
|
+
np.float32,0xbe92968e,0xbe96cd7f,2
|
|
154
|
+
np.float32,0x3e99e6c0,0x3e9ece26,2
|
|
155
|
+
np.float32,0xbf397361,0xbf6ab878,2
|
|
156
|
+
np.float32,0xbf4fcea4,0xbf90e99f,2
|
|
157
|
+
np.float32,0x3de37640,0x3de46779,2
|
|
158
|
+
np.float32,0x3eb1b604,0x3eb9698c,2
|
|
159
|
+
np.float32,0xbf52d0a2,0xbf957361,2
|
|
160
|
+
np.float32,0xbe20435c,0xbe21975a,2
|
|
161
|
+
np.float32,0x3f437a58,0x3f809bf1,2
|
|
162
|
+
np.float32,0x3f27d1cc,0x3f48f335,2
|
|
163
|
+
np.float32,0x3f7d4ff2,0x4027d1e2,2
|
|
164
|
+
np.float32,0xbef732e4,0xbf06d205,2
|
|
165
|
+
np.float32,0x3f4a0ae6,0x3f88e18e,2
|
|
166
|
+
np.float32,0x3f800000,0x7f800000,2
|
|
167
|
+
np.float32,0x3e3e56a0,0x3e4093ba,2
|
|
168
|
+
np.float32,0xbed2fcfa,0xbee0517d,2
|
|
169
|
+
np.float32,0xbe0e0114,0xbe0eecd7,2
|
|
170
|
+
np.float32,0xbe808574,0xbe8353db,2
|
|
171
|
+
np.float32,0x3f572e2a,0x3f9c8c86,2
|
|
172
|
+
np.float32,0x80800000,0x80800000,2
|
|
173
|
+
np.float32,0x3f3f3c82,0x3f775703,2
|
|
174
|
+
np.float32,0xbf6e2482,0xbfd4818b,2
|
|
175
|
+
np.float32,0xbf3943b0,0xbf6a5439,2
|
|
176
|
+
np.float32,0x3f6e42ac,0x3fd4f1ea,2
|
|
177
|
+
np.float32,0x3eb676c4,0x3ebed619,2
|
|
178
|
+
np.float32,0xbe5e56c4,0xbe61ef6c,2
|
|
179
|
+
np.float32,0x3eea200c,0x3efcdb65,2
|
|
180
|
+
np.float32,0x3e3d2c78,0x3e3f5ef8,2
|
|
181
|
+
np.float32,0xbdfd8fb0,0xbdfede71,2
|
|
182
|
+
np.float32,0xbee69c8a,0xbef86e89,2
|
|
183
|
+
np.float32,0x3e9efca0,0x3ea46a1c,2
|
|
184
|
+
np.float32,0x3e4c2498,0x3e4ee9ee,2
|
|
185
|
+
np.float32,0xbf3cc93c,0xbf71e21d,2
|
|
186
|
+
np.float32,0x3ee0d77c,0x3ef13d2b,2
|
|
187
|
+
np.float32,0xbefbcd2a,0xbf09d6a3,2
|
|
188
|
+
np.float32,0x3f6dbe5c,0x3fd30a3e,2
|
|
189
|
+
np.float32,0x3dae63e0,0x3daed03f,2
|
|
190
|
+
np.float32,0xbd5001e0,0xbd502fb9,2
|
|
191
|
+
np.float32,0x3f59632a,0x3fa067c8,2
|
|
192
|
+
np.float32,0x3f0d355a,0x3f1ee452,2
|
|
193
|
+
np.float32,0x3f2cbe5c,0x3f51c896,2
|
|
194
|
+
np.float32,0x3c5e6e80,0x3c5e7200,2
|
|
195
|
+
np.float32,0xbe8ac49c,0xbe8e52f0,2
|
|
196
|
+
np.float32,0x3f54e576,0x3f98c0e6,2
|
|
197
|
+
np.float32,0xbeaa0762,0xbeb0ba7c,2
|
|
198
|
+
np.float32,0x3ec81e88,0x3ed35c21,2
|
|
199
|
+
np.float32,0x3f5a6738,0x3fa23fb6,2
|
|
200
|
+
np.float32,0xbf24a682,0xbf43784a,2
|
|
201
|
+
np.float32,0x1,0x1,2
|
|
202
|
+
np.float32,0x3ee6bc24,0x3ef89630,2
|
|
203
|
+
np.float32,0x3f19444a,0x3f30ecf5,2
|
|
204
|
+
np.float32,0x3ec1fc70,0x3ecc28fc,2
|
|
205
|
+
np.float32,0xbf706e14,0xbfdd92fb,2
|
|
206
|
+
np.float32,0x3eccb630,0x3ed8cd98,2
|
|
207
|
+
np.float32,0xbcdf7aa0,0xbcdf88d3,2
|
|
208
|
+
np.float32,0xbe450da8,0xbe478a8e,2
|
|
209
|
+
np.float32,0x3ec9c210,0x3ed54c0b,2
|
|
210
|
+
np.float32,0xbf3b86ca,0xbf6f24d1,2
|
|
211
|
+
np.float32,0x3edcc7a0,0x3eec3a5c,2
|
|
212
|
+
np.float32,0x3f075d5c,0x3f16a39a,2
|
|
213
|
+
np.float32,0xbf5719ce,0xbf9c69de,2
|
|
214
|
+
np.float32,0x3f62cb22,0x3fb3885a,2
|
|
215
|
+
np.float32,0x3f639216,0x3fb55c93,2
|
|
216
|
+
np.float32,0xbf473ee7,0xbf85413a,2
|
|
217
|
+
np.float32,0xbf01b66c,0xbf0eea86,2
|
|
218
|
+
np.float32,0x3e872d80,0x3e8a74f8,2
|
|
219
|
+
np.float32,0xbf60957e,0xbfae925c,2
|
|
220
|
+
np.float32,0xbf6847b2,0xbfc1929b,2
|
|
221
|
+
np.float32,0x3f78bb94,0x4007b363,2
|
|
222
|
+
np.float32,0xbf47efdb,0xbf8622db,2
|
|
223
|
+
np.float32,0xbe1f2308,0xbe206fd6,2
|
|
224
|
+
np.float32,0xbf414926,0xbf7c0a7e,2
|
|
225
|
+
np.float32,0x3eecc268,0x3f00194d,2
|
|
226
|
+
np.float32,0x3eb086d0,0x3eb81120,2
|
|
227
|
+
np.float32,0xbef1af80,0xbf033ff5,2
|
|
228
|
+
np.float32,0xbf454e56,0xbf82d4aa,2
|
|
229
|
+
np.float32,0x3e622560,0x3e65ef20,2
|
|
230
|
+
np.float32,0x3f50d2b2,0x3f926a83,2
|
|
231
|
+
np.float32,0x3eb2c45c,0x3eba9d2c,2
|
|
232
|
+
np.float32,0x3e42d1a0,0x3e4538c9,2
|
|
233
|
+
np.float32,0xbf24cc5c,0xbf43b8e3,2
|
|
234
|
+
np.float32,0x3e8c6464,0x3e90141a,2
|
|
235
|
+
np.float32,0xbf3abff2,0xbf6d79c5,2
|
|
236
|
+
np.float32,0xbec8f2e6,0xbed456fa,2
|
|
237
|
+
np.float32,0xbf787b38,0xc00698b4,2
|
|
238
|
+
np.float32,0xbf58d5cd,0xbf9f6c03,2
|
|
239
|
+
np.float32,0x3df4ee20,0x3df61ba8,2
|
|
240
|
+
np.float32,0xbf34581e,0xbf604951,2
|
|
241
|
+
np.float32,0xbeba5cf4,0xbec35119,2
|
|
242
|
+
np.float32,0xbf76c22d,0xbfffc51c,2
|
|
243
|
+
np.float32,0x3ef63b2c,0x3f0630b4,2
|
|
244
|
+
np.float32,0x3eeadb64,0x3efdc877,2
|
|
245
|
+
np.float32,0x3dfd8c70,0x3dfedb24,2
|
|
246
|
+
np.float32,0x3f441600,0x3f81576d,2
|
|
247
|
+
np.float32,0x3f23a0d8,0x3f41bbf6,2
|
|
248
|
+
np.float32,0x3cb84d40,0x3cb85536,2
|
|
249
|
+
np.float32,0xbf25cb5c,0xbf456e38,2
|
|
250
|
+
np.float32,0xbc108540,0xbc108636,2
|
|
251
|
+
np.float32,0xbc5b9140,0xbc5b949e,2
|
|
252
|
+
np.float32,0xbf62ff40,0xbfb401dd,2
|
|
253
|
+
np.float32,0x3e8e0710,0x3e91d93e,2
|
|
254
|
+
np.float32,0x3f1b6ae0,0x3f344dfd,2
|
|
255
|
+
np.float32,0xbf4dbbbe,0xbf8dedea,2
|
|
256
|
+
np.float32,0x3f1a5fb2,0x3f32a880,2
|
|
257
|
+
np.float32,0xbe56bd00,0xbe59f8cb,2
|
|
258
|
+
np.float32,0xbf490a5c,0xbf87902d,2
|
|
259
|
+
np.float32,0xbf513072,0xbf92f717,2
|
|
260
|
+
np.float32,0x3e73ee28,0x3e78b542,2
|
|
261
|
+
np.float32,0x3f0a4c7a,0x3f1abf2c,2
|
|
262
|
+
np.float32,0x3e10d5c8,0x3e11d00b,2
|
|
263
|
+
np.float32,0xbf771aac,0xc001207e,2
|
|
264
|
+
np.float32,0x3efe2f54,0x3f0b6a46,2
|
|
265
|
+
np.float32,0xbea5f3ea,0xbeac291f,2
|
|
266
|
+
np.float32,0xbf1a73e8,0xbf32c845,2
|
|
267
|
+
np.float32,0x3ebcc82c,0x3ec61c4f,2
|
|
268
|
+
np.float32,0xbf24f492,0xbf43fd9a,2
|
|
269
|
+
np.float32,0x3ecbd908,0x3ed7c691,2
|
|
270
|
+
np.float32,0x3f461c5e,0x3f83d3f0,2
|
|
271
|
+
np.float32,0x3eed0524,0x3f0043c1,2
|
|
272
|
+
np.float32,0x3d06e840,0x3d06f4bf,2
|
|
273
|
+
np.float32,0x3eb6c974,0x3ebf34d7,2
|
|
274
|
+
np.float32,0xbf1c85e1,0xbf36100f,2
|
|
275
|
+
np.float32,0x3ed697d0,0x3ee4ad04,2
|
|
276
|
+
np.float32,0x3eab0484,0x3eb1d733,2
|
|
277
|
+
np.float32,0xbf3b02f2,0xbf6e0935,2
|
|
278
|
+
np.float32,0xbeeab154,0xbefd9334,2
|
|
279
|
+
np.float32,0xbf695372,0xbfc49881,2
|
|
280
|
+
np.float32,0x3e8aaa7c,0x3e8e36be,2
|
|
281
|
+
np.float32,0xbf208754,0xbf3c8f7b,2
|
|
282
|
+
np.float32,0xbe0dbf28,0xbe0ea9a1,2
|
|
283
|
+
np.float32,0x3ca780c0,0x3ca786ba,2
|
|
284
|
+
np.float32,0xbeb320b4,0xbebb065e,2
|
|
285
|
+
np.float32,0x3f13c698,0x3f288821,2
|
|
286
|
+
np.float32,0xbe8cbbec,0xbe9072c4,2
|
|
287
|
+
np.float32,0x3f1ed534,0x3f39c8df,2
|
|
288
|
+
np.float32,0x3e1ca450,0x3e1de190,2
|
|
289
|
+
np.float32,0x3f54be1c,0x3f988134,2
|
|
290
|
+
np.float32,0x3f34e4ee,0x3f6161b4,2
|
|
291
|
+
np.float32,0xbf7e6913,0xc038b246,2
|
|
292
|
+
np.float32,0x3d3c3f20,0x3d3c6119,2
|
|
293
|
+
np.float32,0x3ca9dc80,0x3ca9e2bc,2
|
|
294
|
+
np.float32,0xbf577ea2,0xbf9d161a,2
|
|
295
|
+
np.float32,0xbedb22c8,0xbeea3644,2
|
|
296
|
+
np.float32,0x3f22a044,0x3f400bfa,2
|
|
297
|
+
np.float32,0xbe214b8c,0xbe22a637,2
|
|
298
|
+
np.float32,0x3e8cd300,0x3e908bbc,2
|
|
299
|
+
np.float32,0xbec4d214,0xbecf7a58,2
|
|
300
|
+
np.float32,0x3e9399a4,0x3e97e7e4,2
|
|
301
|
+
np.float32,0xbee6a1a2,0xbef874ed,2
|
|
302
|
+
np.float32,0xbf323742,0xbf5c1bfd,2
|
|
303
|
+
np.float32,0x3f48b882,0x3f8725ac,2
|
|
304
|
+
np.float32,0xbf4d4dba,0xbf8d532e,2
|
|
305
|
+
np.float32,0xbf59640a,0xbfa0695a,2
|
|
306
|
+
np.float32,0xbf2ad562,0xbf4e4f03,2
|
|
307
|
+
np.float32,0x3e317d98,0x3e334d03,2
|
|
308
|
+
np.float32,0xbf6a5b71,0xbfc7b5a2,2
|
|
309
|
+
np.float32,0x3e87b434,0x3e8b05cf,2
|
|
310
|
+
np.float32,0xbf1c344c,0xbf358dee,2
|
|
311
|
+
np.float32,0x3e449428,0x3e470c65,2
|
|
312
|
+
np.float32,0xbf2c0f2f,0xbf508808,2
|
|
313
|
+
np.float32,0xbec5b5ac,0xbed0859c,2
|
|
314
|
+
np.float32,0xbf4aa956,0xbf89b4b1,2
|
|
315
|
+
np.float32,0x3f6dd374,0x3fd35717,2
|
|
316
|
+
np.float32,0x3f45f76c,0x3f83a5ef,2
|
|
317
|
+
np.float32,0xbed1fba8,0xbedf1bd5,2
|
|
318
|
+
np.float32,0xbd26b2d0,0xbd26ca66,2
|
|
319
|
+
np.float32,0xbe9817c2,0xbe9cd1c3,2
|
|
320
|
+
np.float32,0x3e725988,0x3e770875,2
|
|
321
|
+
np.float32,0xbf1a8ded,0xbf32f132,2
|
|
322
|
+
np.float32,0xbe695860,0xbe6d83d3,2
|
|
323
|
+
np.float32,0x3d8cecd0,0x3d8d25ea,2
|
|
324
|
+
np.float32,0x3f574706,0x3f9cb6ec,2
|
|
325
|
+
np.float32,0xbf5c5a1f,0xbfa5eaf3,2
|
|
326
|
+
np.float32,0x3e7a7c88,0x3e7fab83,2
|
|
327
|
+
np.float32,0xff800000,0xffc00000,2
|
|
328
|
+
np.float32,0x3f66396a,0x3fbbfbb0,2
|
|
329
|
+
np.float32,0x3ed6e588,0x3ee50b53,2
|
|
330
|
+
np.float32,0xbb56d500,0xbb56d532,2
|
|
331
|
+
np.float32,0x3ebd23fc,0x3ec6869a,2
|
|
332
|
+
np.float32,0xbf70d490,0xbfdf4af5,2
|
|
333
|
+
np.float32,0x3e514f88,0x3e544d15,2
|
|
334
|
+
np.float32,0x3e660f98,0x3e6a0dac,2
|
|
335
|
+
np.float32,0xbf034da1,0xbf1110bb,2
|
|
336
|
+
np.float32,0xbf60d9be,0xbfaf2714,2
|
|
337
|
+
np.float32,0x3df67b10,0x3df7ae64,2
|
|
338
|
+
np.float32,0xbeeedc0a,0xbf017010,2
|
|
339
|
+
np.float32,0xbe149224,0xbe15a072,2
|
|
340
|
+
np.float32,0x3f455084,0x3f82d759,2
|
|
341
|
+
np.float32,0x3f210f9e,0x3f3d7093,2
|
|
342
|
+
np.float32,0xbeaea3e0,0xbeb5edd3,2
|
|
343
|
+
np.float32,0x3e0724b0,0x3e07efad,2
|
|
344
|
+
np.float32,0x3f09a784,0x3f19d6ac,2
|
|
345
|
+
np.float32,0xbf044340,0xbf125ee8,2
|
|
346
|
+
np.float32,0xbf71adc9,0xbfe315fe,2
|
|
347
|
+
np.float32,0x3efd3870,0x3f0ac6a8,2
|
|
348
|
+
np.float32,0xbf53c7a6,0xbf96f6df,2
|
|
349
|
+
np.float32,0xbf3cf784,0xbf7247af,2
|
|
350
|
+
np.float32,0x3e0ce9e0,0x3e0dd035,2
|
|
351
|
+
np.float32,0xbd3051a0,0xbd306d89,2
|
|
352
|
+
np.float32,0x3ecab804,0x3ed66f77,2
|
|
353
|
+
np.float32,0x3e984350,0x3e9d0189,2
|
|
354
|
+
np.float32,0x3edd1c00,0x3eeca20b,2
|
|
355
|
+
np.float32,0xbe8e22a0,0xbe91f71b,2
|
|
356
|
+
np.float32,0x3ebebc18,0x3ec85fd6,2
|
|
357
|
+
np.float32,0xba275c00,0xba275c01,2
|
|
358
|
+
np.float32,0x3f1d8190,0x3f37a385,2
|
|
359
|
+
np.float32,0x3f17343e,0x3f2dbbfe,2
|
|
360
|
+
np.float32,0x3caa8000,0x3caa864e,2
|
|
361
|
+
np.float32,0x3e7a7308,0x3e7fa168,2
|
|
362
|
+
np.float32,0x3f7359a6,0x3feb3e1a,2
|
|
363
|
+
np.float32,0xbf7ad15a,0xc012a743,2
|
|
364
|
+
np.float32,0xbf122efb,0xbf262812,2
|
|
365
|
+
np.float32,0xbf03ba04,0xbf11a3fa,2
|
|
366
|
+
np.float32,0x3ed7a90c,0x3ee5f8d4,2
|
|
367
|
+
np.float32,0xbe23e318,0xbe254eed,2
|
|
368
|
+
np.float32,0xbe2866f4,0xbe29f20a,2
|
|
369
|
+
np.float32,0xbeaedff2,0xbeb631d0,2
|
|
370
|
+
np.float32,0x0,0x0,2
|
|
371
|
+
np.float32,0x3ef2a034,0x3f03dafd,2
|
|
372
|
+
np.float32,0x3f35806c,0x3f62994e,2
|
|
373
|
+
np.float32,0xbf655e19,0xbfb9c718,2
|
|
374
|
+
np.float32,0x3f5d54ce,0x3fa7d4f4,2
|
|
375
|
+
np.float32,0x3f33e64a,0x3f5f67e3,2
|
|
376
|
+
np.float32,0x3ebf4010,0x3ec8f923,2
|
|
377
|
+
np.float32,0xbe050dc8,0xbe05cf70,2
|
|
378
|
+
np.float32,0x3f61693e,0x3fb063b0,2
|
|
379
|
+
np.float32,0xbd94ac00,0xbd94ef12,2
|
|
380
|
+
np.float32,0x3e9de008,0x3ea32f61,2
|
|
381
|
+
np.float32,0xbe3d042c,0xbe3f3540,2
|
|
382
|
+
np.float32,0x3e8fdfc0,0x3e93d9e4,2
|
|
383
|
+
np.float32,0x3f28bc48,0x3f4a9019,2
|
|
384
|
+
np.float32,0x3edea928,0x3eee8b09,2
|
|
385
|
+
np.float32,0xbf05f673,0xbf14b362,2
|
|
386
|
+
np.float32,0xbf360730,0xbf63a914,2
|
|
387
|
+
np.float32,0xbe3fb454,0xbe41fe0a,2
|
|
388
|
+
np.float32,0x3f6d99a8,0x3fd28552,2
|
|
389
|
+
np.float32,0xbf3ae866,0xbf6dd052,2
|
|
390
|
+
np.float32,0x3f5b1164,0x3fa37aec,2
|
|
391
|
+
np.float32,0xbf64a451,0xbfb7f61b,2
|
|
392
|
+
np.float32,0xbdd79bd0,0xbdd86919,2
|
|
393
|
+
np.float32,0x3e89fc00,0x3e8d7a85,2
|
|
394
|
+
np.float32,0x3f4bf690,0x3f8b77ea,2
|
|
395
|
+
np.float32,0x3cbdf280,0x3cbdfb38,2
|
|
396
|
+
np.float32,0x3f138f98,0x3f2835b4,2
|
|
397
|
+
np.float32,0xbe33967c,0xbe3576bc,2
|
|
398
|
+
np.float32,0xbf298164,0xbf4bedda,2
|
|
399
|
+
np.float32,0x3e9955cc,0x3e9e2edb,2
|
|
400
|
+
np.float32,0xbf79b383,0xc00c56c0,2
|
|
401
|
+
np.float32,0x3ea0834c,0x3ea61aea,2
|
|
402
|
+
np.float32,0xbf511184,0xbf92c89a,2
|
|
403
|
+
np.float32,0x3f4d9fba,0x3f8dc666,2
|
|
404
|
+
np.float32,0x3f3387c2,0x3f5ead80,2
|
|
405
|
+
np.float32,0x3e3f7360,0x3e41babb,2
|
|
406
|
+
np.float32,0xbf3cc4d6,0xbf71d879,2
|
|
407
|
+
np.float32,0x3f2e4402,0x3f54994e,2
|
|
408
|
+
np.float32,0x3e6a7118,0x3e6eabff,2
|
|
409
|
+
np.float32,0xbf05d83e,0xbf1489cc,2
|
|
410
|
+
np.float32,0xbdce4fd8,0xbdcf039a,2
|
|
411
|
+
np.float32,0xbf03e2f4,0xbf11dbaf,2
|
|
412
|
+
np.float32,0x3f1ea0a0,0x3f397375,2
|
|
413
|
+
np.float32,0x3f7aff54,0x4013cb1b,2
|
|
414
|
+
np.float32,0x3f5ef158,0x3fab1801,2
|
|
415
|
+
np.float32,0xbe33bcc8,0xbe359e40,2
|
|
416
|
+
np.float32,0xbf04dd0e,0xbf133111,2
|
|
417
|
+
np.float32,0xbf14f887,0xbf2a54d1,2
|
|
418
|
+
np.float32,0x3f75c37a,0x3ff9196e,2
|
|
419
|
+
np.float32,0x3f35c3c8,0x3f6320f2,2
|
|
420
|
+
np.float32,0x3f53bb94,0x3f96e3c3,2
|
|
421
|
+
np.float32,0x3f4d473e,0x3f8d4a19,2
|
|
422
|
+
np.float32,0xbdfe19e0,0xbdff6ac9,2
|
|
423
|
+
np.float32,0xbf7f0cc4,0xc049342d,2
|
|
424
|
+
np.float32,0xbdbfc778,0xbdc057bb,2
|
|
425
|
+
np.float32,0xbf7575b7,0xbff73067,2
|
|
426
|
+
np.float32,0xbe9df488,0xbea34609,2
|
|
427
|
+
np.float32,0xbefbd3c6,0xbf09daff,2
|
|
428
|
+
np.float32,0x3f19962c,0x3f316cbd,2
|
|
429
|
+
np.float32,0x3f7acec6,0x40129732,2
|
|
430
|
+
np.float32,0xbf5db7de,0xbfa89a21,2
|
|
431
|
+
np.float32,0x3f62f444,0x3fb3e830,2
|
|
432
|
+
np.float32,0xbf522adb,0xbf94737f,2
|
|
433
|
+
np.float32,0xbef6ceb2,0xbf0690ba,2
|
|
434
|
+
np.float32,0xbf57c41e,0xbf9d8db0,2
|
|
435
|
+
np.float32,0x3eb3360c,0x3ebb1eb0,2
|
|
436
|
+
np.float32,0x3f29327e,0x3f4b618e,2
|
|
437
|
+
np.float32,0xbf08d099,0xbf18a916,2
|
|
438
|
+
np.float32,0x3ea21014,0x3ea7d369,2
|
|
439
|
+
np.float32,0x3f39e516,0x3f6ba861,2
|
|
440
|
+
np.float32,0x3e7c4f28,0x3e80ce08,2
|
|
441
|
+
np.float32,0xbec5a7f8,0xbed07582,2
|
|
442
|
+
np.float32,0xbf0b1b46,0xbf1be3e7,2
|
|
443
|
+
np.float32,0xbef0e0ec,0xbf02bb2e,2
|
|
444
|
+
np.float32,0x3d835a30,0x3d838869,2
|
|
445
|
+
np.float32,0x3f08aa40,0x3f18736e,2
|
|
446
|
+
np.float32,0x3eb0e4c8,0x3eb87bcd,2
|
|
447
|
+
np.float32,0x3eb3821c,0x3ebb7564,2
|
|
448
|
+
np.float32,0xbe3a7320,0xbe3c8d5a,2
|
|
449
|
+
np.float32,0x3e43f8c0,0x3e466b10,2
|
|
450
|
+
np.float32,0x3e914288,0x3e955b69,2
|
|
451
|
+
np.float32,0x3ec7d800,0x3ed308e7,2
|
|
452
|
+
np.float32,0x3e603df8,0x3e63eef2,2
|
|
453
|
+
np.float32,0x3f225cac,0x3f3f9ac6,2
|
|
454
|
+
np.float32,0x3e3db8f0,0x3e3ff06b,2
|
|
455
|
+
np.float32,0x3f358d78,0x3f62b38c,2
|
|
456
|
+
np.float32,0xbed9bd64,0xbee88158,2
|
|
457
|
+
np.float32,0x800000,0x800000,2
|
|
458
|
+
np.float32,0x3f1adfce,0x3f337230,2
|
|
459
|
+
np.float32,0xbefdc346,0xbf0b229d,2
|
|
460
|
+
np.float32,0xbf091018,0xbf190208,2
|
|
461
|
+
np.float32,0xbf800000,0xff800000,2
|
|
462
|
+
np.float32,0x3f27c2c4,0x3f48d8db,2
|
|
463
|
+
np.float32,0x3ef59c80,0x3f05c993,2
|
|
464
|
+
np.float32,0x3e18a340,0x3e19c893,2
|
|
465
|
+
np.float32,0x3f209610,0x3f3ca7c5,2
|
|
466
|
+
np.float32,0x3f69cc22,0x3fc60087,2
|
|
467
|
+
np.float32,0xbf66cf07,0xbfbd8721,2
|
|
468
|
+
np.float32,0xbf768098,0xbffdfcc4,2
|
|
469
|
+
np.float32,0x3df27a40,0x3df39ec4,2
|
|
470
|
+
np.float32,0x3daf5bd0,0x3dafca02,2
|
|
471
|
+
np.float32,0x3f53f2be,0x3f973b41,2
|
|
472
|
+
np.float32,0xbf7edcbc,0xc0436ce3,2
|
|
473
|
+
np.float32,0xbdf61db8,0xbdf74fae,2
|
|
474
|
+
np.float32,0x3e2c9328,0x3e2e3cb2,2
|
|
475
|
+
np.float32,0x3f1a4570,0x3f327f41,2
|
|
476
|
+
np.float32,0xbf766306,0xbffd32f1,2
|
|
477
|
+
np.float32,0xbf468b9d,0xbf845f0f,2
|
|
478
|
+
np.float32,0x3e398970,0x3e3b9bb1,2
|
|
479
|
+
np.float32,0xbbefa900,0xbbefaa18,2
|
|
480
|
+
np.float32,0xbf54c989,0xbf9893ad,2
|
|
481
|
+
np.float32,0x3f262cf6,0x3f46169d,2
|
|
482
|
+
np.float32,0x3f638a8a,0x3fb54a98,2
|
|
483
|
+
np.float32,0xbeb36c78,0xbebb5cb8,2
|
|
484
|
+
np.float32,0xbeac4d42,0xbeb34993,2
|
|
485
|
+
np.float32,0x3f1d1942,0x3f36fbf2,2
|
|
486
|
+
np.float32,0xbf5d49ba,0xbfa7bf07,2
|
|
487
|
+
np.float32,0xbf182b5c,0xbf2f38d0,2
|
|
488
|
+
np.float32,0x3f41a742,0x3f7ce5ef,2
|
|
489
|
+
np.float32,0x3f0b9a6c,0x3f1c9898,2
|
|
490
|
+
np.float32,0x3e847494,0x3e8788f3,2
|
|
491
|
+
np.float32,0xbde41608,0xbde50941,2
|
|
492
|
+
np.float32,0x3f693944,0x3fc44b5a,2
|
|
493
|
+
np.float32,0x3f0386b2,0x3f115e37,2
|
|
494
|
+
np.float32,0x3f3a08b0,0x3f6bf3c1,2
|
|
495
|
+
np.float32,0xbf78ee64,0xc0089977,2
|
|
496
|
+
np.float32,0xbf013a11,0xbf0e436e,2
|
|
497
|
+
np.float32,0x3f00668e,0x3f0d2836,2
|
|
498
|
+
np.float32,0x3e6d9850,0x3e720081,2
|
|
499
|
+
np.float32,0x3eacf578,0x3eb4075d,2
|
|
500
|
+
np.float32,0x3f18aef8,0x3f3004b4,2
|
|
501
|
+
np.float32,0x3de342f0,0x3de43385,2
|
|
502
|
+
np.float32,0x3e56cee8,0x3e5a0b85,2
|
|
503
|
+
np.float32,0xbf287912,0xbf4a1966,2
|
|
504
|
+
np.float32,0x3e92c948,0x3e9704c2,2
|
|
505
|
+
np.float32,0x3c07d080,0x3c07d14c,2
|
|
506
|
+
np.float32,0xbe90f6a0,0xbe9508e0,2
|
|
507
|
+
np.float32,0x3e8b4f28,0x3e8ee884,2
|
|
508
|
+
np.float32,0xbf35b56c,0xbf6303ff,2
|
|
509
|
+
np.float32,0xbef512b8,0xbf057027,2
|
|
510
|
+
np.float32,0x3e36c630,0x3e38c0cd,2
|
|
511
|
+
np.float32,0x3f0b3ca8,0x3f1c134a,2
|
|
512
|
+
np.float32,0x3e4cd610,0x3e4fa2c5,2
|
|
513
|
+
np.float32,0xbf5a8372,0xbfa273a3,2
|
|
514
|
+
np.float32,0xbecaad3c,0xbed662ae,2
|
|
515
|
+
np.float32,0xbec372d2,0xbecddeac,2
|
|
516
|
+
np.float32,0x3f6fb2b2,0x3fda8a22,2
|
|
517
|
+
np.float32,0x3f365f28,0x3f645b5a,2
|
|
518
|
+
np.float32,0xbecd00fa,0xbed926a4,2
|
|
519
|
+
np.float32,0xbebafa32,0xbec40672,2
|
|
520
|
+
np.float32,0xbf235b73,0xbf4146c4,2
|
|
521
|
+
np.float32,0x3f7a4658,0x400f6e2c,2
|
|
522
|
+
np.float32,0x3f35e824,0x3f636a54,2
|
|
523
|
+
np.float32,0x3cb87640,0x3cb87e3c,2
|
|
524
|
+
np.float32,0xbf296288,0xbf4bb6ee,2
|
|
525
|
+
np.float32,0x7f800000,0xffc00000,2
|
|
526
|
+
np.float32,0xbf4de86e,0xbf8e2d1a,2
|
|
527
|
+
np.float32,0xbf4ace12,0xbf89e5f3,2
|
|
528
|
+
np.float32,0x3d65a300,0x3d65e0b5,2
|
|
529
|
+
np.float32,0xbe10c534,0xbe11bf21,2
|
|
530
|
+
np.float32,0xbeba3c1c,0xbec32b3e,2
|
|
531
|
+
np.float32,0x3e87eaf8,0x3e8b40b8,2
|
|
532
|
+
np.float32,0x3d5c3bc0,0x3d5c722d,2
|
|
533
|
+
np.float32,0x3e8c14b8,0x3e8fbdf8,2
|
|
534
|
+
np.float32,0xbf06c6f0,0xbf15d327,2
|
|
535
|
+
np.float32,0xbe0f1e30,0xbe100f96,2
|
|
536
|
+
np.float32,0xbee244b0,0xbef30251,2
|
|
537
|
+
np.float32,0x3f2a21b0,0x3f4d0c1d,2
|
|
538
|
+
np.float32,0xbf5f7f81,0xbfac408e,2
|
|
539
|
+
np.float32,0xbe3dba2c,0xbe3ff1b2,2
|
|
540
|
+
np.float32,0x3f3ffc22,0x3f790abf,2
|
|
541
|
+
np.float32,0x3edc3dac,0x3eeb90fd,2
|
|
542
|
+
np.float32,0x7f7fffff,0xffc00000,2
|
|
543
|
+
np.float32,0x3ecfaaac,0x3edc5485,2
|
|
544
|
+
np.float32,0x3f0affbe,0x3f1bbcd9,2
|
|
545
|
+
np.float32,0x3f5f2264,0x3fab7dca,2
|
|
546
|
+
np.float32,0x3f37394c,0x3f66186c,2
|
|
547
|
+
np.float32,0xbe6b2f6c,0xbe6f74e3,2
|
|
548
|
+
np.float32,0x3f284772,0x3f49c1f1,2
|
|
549
|
+
np.float32,0xbdf27bc8,0xbdf3a051,2
|
|
550
|
+
np.float32,0xbc8b14e0,0xbc8b184c,2
|
|
551
|
+
np.float32,0x3f6a867c,0x3fc83b07,2
|
|
552
|
+
np.float32,0x3f1ec876,0x3f39b429,2
|
|
553
|
+
np.float32,0x3f6fd9a8,0x3fdb28d6,2
|
|
554
|
+
np.float32,0xbf473cca,0xbf853e8c,2
|
|
555
|
+
np.float32,0x3e23eff8,0x3e255c23,2
|
|
556
|
+
np.float32,0x3ebefdfc,0x3ec8ac5d,2
|
|
557
|
+
np.float32,0x3f6c8c22,0x3fced2b1,2
|
|
558
|
+
np.float32,0x3f168388,0x3f2cad44,2
|
|
559
|
+
np.float32,0xbece2410,0xbeda81ac,2
|
|
560
|
+
np.float32,0x3f5532f0,0x3f993eea,2
|
|
561
|
+
np.float32,0x3ef1938c,0x3f032dfa,2
|
|
562
|
+
np.float32,0xbef05268,0xbf025fba,2
|
|
563
|
+
np.float32,0x3f552e4a,0x3f993754,2
|
|
564
|
+
np.float32,0x3e9ed068,0x3ea4392d,2
|
|
565
|
+
np.float32,0xbe1a0c24,0xbe1b39be,2
|
|
566
|
+
np.float32,0xbf2623aa,0xbf46068c,2
|
|
567
|
+
np.float32,0xbe1cc300,0xbe1e00fc,2
|
|
568
|
+
np.float32,0xbe9c0576,0xbea12397,2
|
|
569
|
+
np.float32,0xbd827338,0xbd82a07e,2
|
|
570
|
+
np.float32,0x3f0fc31a,0x3f229786,2
|
|
571
|
+
np.float32,0x3e577810,0x3e5abc7d,2
|
|
572
|
+
np.float32,0x3e0e1cb8,0x3e0f0906,2
|
|
573
|
+
np.float32,0x3e84d344,0x3e87ee73,2
|
|
574
|
+
np.float32,0xbf39c45e,0xbf6b6337,2
|
|
575
|
+
np.float32,0x3edfb25c,0x3eefd273,2
|
|
576
|
+
np.float32,0x3e016398,0x3e021596,2
|
|
577
|
+
np.float32,0xbefeb1be,0xbf0bc0de,2
|
|
578
|
+
np.float32,0x3f37e104,0x3f677196,2
|
|
579
|
+
np.float32,0x3f545316,0x3f97d500,2
|
|
580
|
+
np.float32,0xbefc165a,0xbf0a06ed,2
|
|
581
|
+
np.float32,0xbf0923e6,0xbf191dcd,2
|
|
582
|
+
np.float32,0xbf386508,0xbf68831f,2
|
|
583
|
+
np.float32,0xbf3d4630,0xbf72f4e1,2
|
|
584
|
+
np.float32,0x3f3dbe82,0x3f73ff13,2
|
|
585
|
+
np.float32,0xbf703de4,0xbfdcc7e2,2
|
|
586
|
+
np.float32,0xbf531482,0xbf95dd1a,2
|
|
587
|
+
np.float32,0xbf0af1b6,0xbf1ba8f4,2
|
|
588
|
+
np.float32,0xbec8fd9c,0xbed463a4,2
|
|
589
|
+
np.float32,0xbe230320,0xbe24691a,2
|
|
590
|
+
np.float32,0xbf7de541,0xc02faf38,2
|
|
591
|
+
np.float32,0x3efd2360,0x3f0ab8b7,2
|
|
592
|
+
np.float32,0x3db7f350,0x3db87291,2
|
|
593
|
+
np.float32,0x3e74c510,0x3e799924,2
|
|
594
|
+
np.float32,0x3da549c0,0x3da5a5fc,2
|
|
595
|
+
np.float32,0x3e8a3bc4,0x3e8dbf4a,2
|
|
596
|
+
np.float32,0xbf69f086,0xbfc66e84,2
|
|
597
|
+
np.float32,0x3f323f8e,0x3f5c2c17,2
|
|
598
|
+
np.float32,0x3ec0ae3c,0x3ecaa334,2
|
|
599
|
+
np.float32,0xbebe8966,0xbec824fc,2
|
|
600
|
+
np.float32,0x3f34691e,0x3f606b13,2
|
|
601
|
+
np.float32,0x3f13790e,0x3f2813f5,2
|
|
602
|
+
np.float32,0xbf61c027,0xbfb12618,2
|
|
603
|
+
np.float32,0x3e90c690,0x3e94d4a1,2
|
|
604
|
+
np.float32,0xbefce8f0,0xbf0a920e,2
|
|
605
|
+
np.float32,0xbf5c0e8a,0xbfa559a7,2
|
|
606
|
+
np.float32,0x3f374f60,0x3f6645b6,2
|
|
607
|
+
np.float32,0x3f25f6fa,0x3f45b967,2
|
|
608
|
+
np.float32,0x3f2421aa,0x3f42963a,2
|
|
609
|
+
np.float32,0x3ebfa328,0x3ec96c57,2
|
|
610
|
+
np.float32,0x3e3bef28,0x3e3e1685,2
|
|
611
|
+
np.float32,0x3ea3fa3c,0x3ea9f4dd,2
|
|
612
|
+
np.float32,0x3f362b8e,0x3f63f2b2,2
|
|
613
|
+
np.float32,0xbedcef18,0xbeec6ada,2
|
|
614
|
+
np.float32,0xbdd29c88,0xbdd35bd0,2
|
|
615
|
+
np.float32,0x3f261aea,0x3f45f76f,2
|
|
616
|
+
np.float32,0xbe62c470,0xbe66965e,2
|
|
617
|
+
np.float32,0x7fc00000,0x7fc00000,2
|
|
618
|
+
np.float32,0xbee991aa,0xbefc277b,2
|
|
619
|
+
np.float32,0xbf571960,0xbf9c6923,2
|
|
620
|
+
np.float32,0xbe6fb410,0xbe743b41,2
|
|
621
|
+
np.float32,0x3eb1bed0,0x3eb9738d,2
|
|
622
|
+
np.float32,0x80000000,0x80000000,2
|
|
623
|
+
np.float32,0x3eddcbe4,0x3eed7a69,2
|
|
624
|
+
np.float32,0xbf2a81ba,0xbf4db86d,2
|
|
625
|
+
np.float32,0x3f74da54,0x3ff38737,2
|
|
626
|
+
np.float32,0xbeb6bff4,0xbebf29f4,2
|
|
627
|
+
np.float32,0x3f445752,0x3f81a698,2
|
|
628
|
+
np.float32,0x3ed081b4,0x3edd5618,2
|
|
629
|
+
np.float32,0xbee73802,0xbef931b4,2
|
|
630
|
+
np.float32,0xbd13f2a0,0xbd14031c,2
|
|
631
|
+
np.float32,0xbb4d1200,0xbb4d122c,2
|
|
632
|
+
np.float32,0xbee8777a,0xbefac393,2
|
|
633
|
+
np.float32,0x3f42047c,0x3f7dc06c,2
|
|
634
|
+
np.float32,0xbd089270,0xbd089f67,2
|
|
635
|
+
np.float32,0xbf628c16,0xbfb2f66b,2
|
|
636
|
+
np.float32,0x3e72e098,0x3e77978d,2
|
|
637
|
+
np.float32,0x3ed967cc,0x3ee818e4,2
|
|
638
|
+
np.float32,0x3e284c80,0x3e29d6d9,2
|
|
639
|
+
np.float32,0x3f74e8ba,0x3ff3dbef,2
|
|
640
|
+
np.float32,0x3f013e86,0x3f0e4969,2
|
|
641
|
+
np.float32,0xbf610d4f,0xbfaf983c,2
|
|
642
|
+
np.float32,0xbf3c8d36,0xbf715eba,2
|
|
643
|
+
np.float32,0xbedbc756,0xbeeaffdb,2
|
|
644
|
+
np.float32,0x3e143ec8,0x3e154b4c,2
|
|
645
|
+
np.float32,0xbe1c9808,0xbe1dd4fc,2
|
|
646
|
+
np.float32,0xbe887a1e,0xbe8bdac5,2
|
|
647
|
+
np.float32,0xbe85c4bc,0xbe88f17a,2
|
|
648
|
+
np.float32,0x3f35967e,0x3f62c5b4,2
|
|
649
|
+
np.float32,0x3ea2c4a4,0x3ea89c2d,2
|
|
650
|
+
np.float32,0xbc8703c0,0xbc8706e1,2
|
|
651
|
+
np.float32,0xbf13d52c,0xbf289dff,2
|
|
652
|
+
np.float32,0xbf63bb56,0xbfb5bf29,2
|
|
653
|
+
np.float32,0xbf61c5ef,0xbfb13319,2
|
|
654
|
+
np.float32,0xbf128410,0xbf26a675,2
|
|
655
|
+
np.float32,0x3f03fcf2,0x3f11ff13,2
|
|
656
|
+
np.float32,0xbe49c924,0xbe4c75cd,2
|
|
657
|
+
np.float32,0xbf211a9c,0xbf3d82c5,2
|
|
658
|
+
np.float32,0x3f7e9d52,0x403d1b42,2
|
|
659
|
+
np.float32,0x3edfefd4,0x3ef01e71,2
|
|
660
|
+
np.float32,0x3ebc5bd8,0x3ec59efb,2
|
|
661
|
+
np.float32,0x3d7b02e0,0x3d7b537f,2
|
|
662
|
+
np.float32,0xbf1163ba,0xbf24fb43,2
|
|
663
|
+
np.float32,0x3f5072f2,0x3f91dbf1,2
|
|
664
|
+
np.float32,0xbee700ce,0xbef8ec60,2
|
|
665
|
+
np.float32,0x3f534168,0x3f962359,2
|
|
666
|
+
np.float32,0x3e6d6c40,0x3e71d1ef,2
|
|
667
|
+
np.float32,0x3def9d70,0x3df0b7a8,2
|
|
668
|
+
np.float32,0x3e89cf80,0x3e8d4a8a,2
|
|
669
|
+
np.float32,0xbf687ca7,0xbfc2290f,2
|
|
670
|
+
np.float32,0x3f35e134,0x3f635c51,2
|
|
671
|
+
np.float32,0x3e59eef8,0x3e5d50fa,2
|
|
672
|
+
np.float32,0xbf65c9e1,0xbfbada61,2
|
|
673
|
+
np.float32,0xbf759292,0xbff7e43d,2
|
|
674
|
+
np.float32,0x3f4635a0,0x3f83f372,2
|
|
675
|
+
np.float32,0x3f29baaa,0x3f4c53f1,2
|
|
676
|
+
np.float32,0x3f6b15a6,0x3fc9fe04,2
|
|
677
|
+
np.float32,0x3edabc88,0x3ee9b922,2
|
|
678
|
+
np.float32,0x3ef382e0,0x3f046d4d,2
|
|
679
|
+
np.float32,0xbe351310,0xbe36ff7f,2
|
|
680
|
+
np.float32,0xbf05c935,0xbf14751c,2
|
|
681
|
+
np.float32,0xbf0e7c50,0xbf20bc24,2
|
|
682
|
+
np.float32,0xbf69bc94,0xbfc5d1b8,2
|
|
683
|
+
np.float32,0xbed41aca,0xbee1aa23,2
|
|
684
|
+
np.float32,0x3f518c08,0x3f938162,2
|
|
685
|
+
np.float32,0xbf3d7974,0xbf73661a,2
|
|
686
|
+
np.float32,0x3f1951a6,0x3f3101c9,2
|
|
687
|
+
np.float32,0xbeb3f436,0xbebbf787,2
|
|
688
|
+
np.float32,0xbf77a190,0xc0031d43,2
|
|
689
|
+
np.float32,0x3eb5b3cc,0x3ebdf6e7,2
|
|
690
|
+
np.float32,0xbed534b4,0xbee2fed2,2
|
|
691
|
+
np.float32,0xbe53e1b8,0xbe56fc56,2
|
|
692
|
+
np.float32,0x3f679e20,0x3fbfb91c,2
|
|
693
|
+
np.float32,0xff7fffff,0xffc00000,2
|
|
694
|
+
np.float32,0xbf7b9bcb,0xc0180073,2
|
|
695
|
+
np.float32,0xbf5635e8,0xbf9aea15,2
|
|
696
|
+
np.float32,0xbe5a3318,0xbe5d9856,2
|
|
697
|
+
np.float32,0xbe003284,0xbe00df9a,2
|
|
698
|
+
np.float32,0x3eb119a4,0x3eb8b7d6,2
|
|
699
|
+
np.float32,0xbf3bccf8,0xbf6fbc84,2
|
|
700
|
+
np.float32,0x3f36f600,0x3f658ea8,2
|
|
701
|
+
np.float32,0x3f1ea834,0x3f397fc2,2
|
|
702
|
+
np.float32,0xbe7cfb54,0xbe8129b3,2
|
|
703
|
+
np.float32,0xbe9b3746,0xbea0406a,2
|
|
704
|
+
np.float32,0x3edc0f90,0x3eeb586c,2
|
|
705
|
+
np.float32,0x3e1842e8,0x3e19660c,2
|
|
706
|
+
np.float32,0xbd8f10b0,0xbd8f4c70,2
|
|
707
|
+
np.float32,0xbf064aca,0xbf1527a2,2
|
|
708
|
+
np.float32,0x3e632e58,0x3e6705be,2
|
|
709
|
+
np.float32,0xbef28ba4,0xbf03cdbb,2
|
|
710
|
+
np.float32,0x3f27b21e,0x3f48bbaf,2
|
|
711
|
+
np.float32,0xbe6f30d4,0xbe73b06e,2
|
|
712
|
+
np.float32,0x3f3e6cb0,0x3f75834b,2
|
|
713
|
+
np.float32,0xbf264aa5,0xbf4649f0,2
|
|
714
|
+
np.float32,0xbf690775,0xbfc3b978,2
|
|
715
|
+
np.float32,0xbf3e4a38,0xbf753632,2
|
|
716
|
+
np.float64,0x3fe12bbe8c62577e,0x3fe32de8e5f961b0,1
|
|
717
|
+
np.float64,0x3fc9b8909b337120,0x3fca1366da00efff,1
|
|
718
|
+
np.float64,0x3feaee4245f5dc84,0x3ff3a011ea0432f3,1
|
|
719
|
+
np.float64,0xbfe892c000f12580,0xbff03e5adaed6f0c,1
|
|
720
|
+
np.float64,0xbf9be8de4837d1c0,0xbf9beaa367756bd1,1
|
|
721
|
+
np.float64,0x3fe632e58fec65cc,0x3feb5ccc5114ca38,1
|
|
722
|
+
np.float64,0x3fe78a0ef7ef141e,0x3fee1b4521d8eb6c,1
|
|
723
|
+
np.float64,0x3feec27a65fd84f4,0x3fff643c8318e81e,1
|
|
724
|
+
np.float64,0x3fbed6efce3dade0,0x3fbefd76cff00111,1
|
|
725
|
+
np.float64,0xbfe3a05fab6740c0,0xbfe6db078aeeb0ca,1
|
|
726
|
+
np.float64,0x3fdca11a56b94234,0x3fdece9e6eacff1b,1
|
|
727
|
+
np.float64,0x3fe0fb15aae1f62c,0x3fe2e9e095ec2089,1
|
|
728
|
+
np.float64,0x3fede12abf7bc256,0x3ffafd0ff4142807,1
|
|
729
|
+
np.float64,0x3feb919edcf7233e,0x3ff4c9aa0bc2432f,1
|
|
730
|
+
np.float64,0x3fd39633b5a72c68,0x3fd43c2e6d5f441c,1
|
|
731
|
+
np.float64,0x3fd9efcbfeb3df98,0x3fdb83f03e58f91c,1
|
|
732
|
+
np.float64,0x3fe2867a36650cf4,0x3fe525858c8ce72e,1
|
|
733
|
+
np.float64,0x3fdacbb8f3b59770,0x3fdc8cd431b6e3ff,1
|
|
734
|
+
np.float64,0x3fcc120503382408,0x3fcc88a8fa43e1c6,1
|
|
735
|
+
np.float64,0xbfd99ff4eab33fea,0xbfdb24a20ae3687d,1
|
|
736
|
+
np.float64,0xbfe8caf0157195e0,0xbff083b8dd0941d3,1
|
|
737
|
+
np.float64,0x3fddc9bf92bb9380,0x3fe022aac0f761d5,1
|
|
738
|
+
np.float64,0x3fe2dbb66e65b76c,0x3fe5a6e7caf3f1f2,1
|
|
739
|
+
np.float64,0x3fe95f5c4a72beb8,0x3ff1444697e96138,1
|
|
740
|
+
np.float64,0xbfc6b163d92d62c8,0xbfc6ef6e006658a1,1
|
|
741
|
+
np.float64,0x3fdf1b2616be364c,0x3fe0fcbd2848c9e8,1
|
|
742
|
+
np.float64,0xbfdca1ccf7b9439a,0xbfdecf7dc0eaa663,1
|
|
743
|
+
np.float64,0x3fe078d6a260f1ae,0x3fe236a7c66ef6c2,1
|
|
744
|
+
np.float64,0x3fdf471bb9be8e38,0x3fe11990ec74e704,1
|
|
745
|
+
np.float64,0xbfe417626be82ec5,0xbfe79c9aa5ed2e2f,1
|
|
746
|
+
np.float64,0xbfeb9cf5677739eb,0xbff4dfc24c012c90,1
|
|
747
|
+
np.float64,0x3f8d9142b03b2280,0x3f8d91c9559d4779,1
|
|
748
|
+
np.float64,0x3fb052c67220a590,0x3fb05873c90d1cd6,1
|
|
749
|
+
np.float64,0x3fd742e2c7ae85c4,0x3fd860128947d15d,1
|
|
750
|
+
np.float64,0x3fec2e2a2bf85c54,0x3ff60eb554bb8d71,1
|
|
751
|
+
np.float64,0xbfeb2b8bc8f65718,0xbff40b734679497a,1
|
|
752
|
+
np.float64,0x3fe25f8e0d64bf1c,0x3fe4eb381d077803,1
|
|
753
|
+
np.float64,0x3fe56426256ac84c,0x3fe9dafbe79370f0,1
|
|
754
|
+
np.float64,0x3feecc1e5d7d983c,0x3fffa49bedc7aa25,1
|
|
755
|
+
np.float64,0xbfc88ce94b3119d4,0xbfc8dbba0fdee2d2,1
|
|
756
|
+
np.float64,0xbfabcf51ac379ea0,0xbfabd6552aa63da3,1
|
|
757
|
+
np.float64,0xbfccc8b849399170,0xbfcd48d6ff057a4d,1
|
|
758
|
+
np.float64,0x3fd2f831e8a5f064,0x3fd38e67b0dda905,1
|
|
759
|
+
np.float64,0x3fcafdcd6135fb98,0x3fcb670ae2ef4d36,1
|
|
760
|
+
np.float64,0x3feda6042efb4c08,0x3ffa219442ac4ea5,1
|
|
761
|
+
np.float64,0x3fed382b157a7056,0x3ff8bc01bc6d10bc,1
|
|
762
|
+
np.float64,0x3fed858a50fb0b14,0x3ff9b1c05cb6cc0f,1
|
|
763
|
+
np.float64,0x3fcc3960653872c0,0x3fccb2045373a3d1,1
|
|
764
|
+
np.float64,0xbfec5177e478a2f0,0xbff65eb4557d94eb,1
|
|
765
|
+
np.float64,0x3feafe0d5e75fc1a,0x3ff3bb4a260a0dcb,1
|
|
766
|
+
np.float64,0x3fe08bc87ee11790,0x3fe25078aac99d31,1
|
|
767
|
+
np.float64,0xffefffffffffffff,0xfff8000000000000,1
|
|
768
|
+
np.float64,0x3f79985ce0333100,0x3f799872b591d1cb,1
|
|
769
|
+
np.float64,0xbfd4001cf9a8003a,0xbfd4b14b9035b94f,1
|
|
770
|
+
np.float64,0x3fe54a17e6ea9430,0x3fe9ac0f18682343,1
|
|
771
|
+
np.float64,0xbfb4e07fea29c100,0xbfb4ec6520dd0689,1
|
|
772
|
+
np.float64,0xbfed2b6659fa56cd,0xbff895ed57dc1450,1
|
|
773
|
+
np.float64,0xbfe81fc8b5f03f92,0xbfef6b95e72a7a7c,1
|
|
774
|
+
np.float64,0xbfe6aced16ed59da,0xbfec4ce131ee3704,1
|
|
775
|
+
np.float64,0xbfe599f30ceb33e6,0xbfea3d07c1cd78e2,1
|
|
776
|
+
np.float64,0xbfe0ff278b61fe4f,0xbfe2ef8b5efa89ed,1
|
|
777
|
+
np.float64,0xbfe3e9406467d281,0xbfe750e43e841736,1
|
|
778
|
+
np.float64,0x3fcc6b52cf38d6a8,0x3fcce688f4fb2cf1,1
|
|
779
|
+
np.float64,0xbfc890e8133121d0,0xbfc8dfdfee72d258,1
|
|
780
|
+
np.float64,0x3fe46e81dbe8dd04,0x3fe82e09783811a8,1
|
|
781
|
+
np.float64,0x3fd94455e5b288ac,0x3fdab7cef2de0b1f,1
|
|
782
|
+
np.float64,0xbfe82151fff042a4,0xbfef6f254c9696ca,1
|
|
783
|
+
np.float64,0x3fcee1ac1d3dc358,0x3fcf80a6ed07070a,1
|
|
784
|
+
np.float64,0x3fcce8f90939d1f0,0x3fcd6ad18d34f8b5,1
|
|
785
|
+
np.float64,0x3fd6afe56fad5fcc,0x3fd7b7567526b1fb,1
|
|
786
|
+
np.float64,0x3fb1a77092234ee0,0x3fb1ae9fe0d176fc,1
|
|
787
|
+
np.float64,0xbfeb758b0d76eb16,0xbff493d105652edc,1
|
|
788
|
+
np.float64,0xbfb857c24e30af88,0xbfb86aa4da3be53f,1
|
|
789
|
+
np.float64,0x3fe89064eff120ca,0x3ff03b7c5b3339a8,1
|
|
790
|
+
np.float64,0xbfc1bd2fef237a60,0xbfc1da99893473ed,1
|
|
791
|
+
np.float64,0xbfe5ad6e2eeb5adc,0xbfea60ed181b5c05,1
|
|
792
|
+
np.float64,0x3fd5a66358ab4cc8,0x3fd6899e640aeb1f,1
|
|
793
|
+
np.float64,0xbfe198e832e331d0,0xbfe3c8c9496d0de5,1
|
|
794
|
+
np.float64,0xbfdaa5c0d7b54b82,0xbfdc5ed7d3c5ce49,1
|
|
795
|
+
np.float64,0x3fcceccb6939d998,0x3fcd6ed88c2dd3a5,1
|
|
796
|
+
np.float64,0xbfe44413eae88828,0xbfe7e6cd32b34046,1
|
|
797
|
+
np.float64,0xbfc7cbeccf2f97d8,0xbfc8139a2626edae,1
|
|
798
|
+
np.float64,0x3fbf31e4fa3e63d0,0x3fbf59c6e863255e,1
|
|
799
|
+
np.float64,0x3fdf03fa05be07f4,0x3fe0ed953f7989ad,1
|
|
800
|
+
np.float64,0x3fe7f4eaceefe9d6,0x3fef092ca7e2ac39,1
|
|
801
|
+
np.float64,0xbfc084e9d92109d4,0xbfc09ca10fd6aaea,1
|
|
802
|
+
np.float64,0xbf88cfbf70319f80,0xbf88d00effa6d897,1
|
|
803
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
804
|
+
np.float64,0xbfa0176e9c202ee0,0xbfa018ca0a6ceef3,1
|
|
805
|
+
np.float64,0xbfd88d0815b11a10,0xbfd9dfc6c6bcbe4e,1
|
|
806
|
+
np.float64,0x3fe89f7730713eee,0x3ff04de52fb536f3,1
|
|
807
|
+
np.float64,0xbfedc9707bfb92e1,0xbffaa25fcf9dd6da,1
|
|
808
|
+
np.float64,0x3fe936d1a6726da4,0x3ff10e40c2d94bc9,1
|
|
809
|
+
np.float64,0x3fdb64aec7b6c95c,0x3fdd473177317b3f,1
|
|
810
|
+
np.float64,0xbfee4f9aaefc9f35,0xbffcdd212667003c,1
|
|
811
|
+
np.float64,0x3fe3730067e6e600,0x3fe692b0a0babf5f,1
|
|
812
|
+
np.float64,0xbfc257e58924afcc,0xbfc27871f8c218d7,1
|
|
813
|
+
np.float64,0x3fe62db12dec5b62,0x3feb52c61b97d9f6,1
|
|
814
|
+
np.float64,0xbfe3ff491367fe92,0xbfe774f1b3a96fd6,1
|
|
815
|
+
np.float64,0x3fea43255274864a,0x3ff28b0c4b7b8d21,1
|
|
816
|
+
np.float64,0xbfea37923c746f24,0xbff27962159f2072,1
|
|
817
|
+
np.float64,0x3fcd0ac3c73a1588,0x3fcd8e6f8de41755,1
|
|
818
|
+
np.float64,0xbfdccafde6b995fc,0xbfdf030fea8a0630,1
|
|
819
|
+
np.float64,0x3fdba35268b746a4,0x3fdd94094f6f50c1,1
|
|
820
|
+
np.float64,0x3fc68ea1d92d1d40,0x3fc6cb8d07cbb0e4,1
|
|
821
|
+
np.float64,0xbfb88b1f6e311640,0xbfb89e7af4e58778,1
|
|
822
|
+
np.float64,0xbfedc7cadffb8f96,0xbffa9c3766227956,1
|
|
823
|
+
np.float64,0x3fe7928d3eef251a,0x3fee2dcf2ac7961b,1
|
|
824
|
+
np.float64,0xbfeff42ede7fe85e,0xc00cef6b0f1e8323,1
|
|
825
|
+
np.float64,0xbfebf07fa477e0ff,0xbff5893f99e15236,1
|
|
826
|
+
np.float64,0x3fe3002ab9660056,0x3fe5defba550c583,1
|
|
827
|
+
np.float64,0x3feb8f4307f71e86,0x3ff4c517ec8d6de9,1
|
|
828
|
+
np.float64,0x3fd3c16f49a782e0,0x3fd46becaacf74da,1
|
|
829
|
+
np.float64,0x3fc7613df12ec278,0x3fc7a52b2a3c3368,1
|
|
830
|
+
np.float64,0xbfe33af560e675eb,0xbfe63a6528ff1587,1
|
|
831
|
+
np.float64,0xbfde86495abd0c92,0xbfe09bd7ba05b461,1
|
|
832
|
+
np.float64,0x3fe1e7fb4ee3cff6,0x3fe43b04311c0ab6,1
|
|
833
|
+
np.float64,0xbfc528b6bd2a516c,0xbfc55ae0a0c184c8,1
|
|
834
|
+
np.float64,0xbfd81025beb0204c,0xbfd94dd72d804613,1
|
|
835
|
+
np.float64,0x10000000000000,0x10000000000000,1
|
|
836
|
+
np.float64,0x3fc1151c47222a38,0x3fc12f5aad80a6bf,1
|
|
837
|
+
np.float64,0x3feafa136775f426,0x3ff3b46854da0b3a,1
|
|
838
|
+
np.float64,0x3fed2da0747a5b40,0x3ff89c85b658459e,1
|
|
839
|
+
np.float64,0x3fda2a4b51b45498,0x3fdbca0d908ddbbd,1
|
|
840
|
+
np.float64,0xbfd04cf518a099ea,0xbfd0aae0033b9e4c,1
|
|
841
|
+
np.float64,0xbfb9065586320ca8,0xbfb91adb7e31f322,1
|
|
842
|
+
np.float64,0xbfd830b428b06168,0xbfd973ca3c484d8d,1
|
|
843
|
+
np.float64,0x3fc952f7ed32a5f0,0x3fc9a9994561fc1a,1
|
|
844
|
+
np.float64,0xbfeb06c83c760d90,0xbff3ca77b326df20,1
|
|
845
|
+
np.float64,0xbfeb1c98ac763931,0xbff3f0d0900f6149,1
|
|
846
|
+
np.float64,0x3fdf061dbebe0c3c,0x3fe0eefb32b48d17,1
|
|
847
|
+
np.float64,0xbf9acbaf28359760,0xbf9acd4024be9fec,1
|
|
848
|
+
np.float64,0x3fec0adde2f815bc,0x3ff5c1628423794d,1
|
|
849
|
+
np.float64,0xbfc4bc750d2978ec,0xbfc4eba43f590b94,1
|
|
850
|
+
np.float64,0x3fdbe47878b7c8f0,0x3fdde44a2b500d73,1
|
|
851
|
+
np.float64,0x3fe160d18162c1a4,0x3fe378cff08f18f0,1
|
|
852
|
+
np.float64,0x3fc3b58dfd276b18,0x3fc3de01d3802de9,1
|
|
853
|
+
np.float64,0x3fa860343430c060,0x3fa864ecd07ec962,1
|
|
854
|
+
np.float64,0x3fcaebfb4b35d7f8,0x3fcb546512d1b4c7,1
|
|
855
|
+
np.float64,0x3fe3fda558e7fb4a,0x3fe772412e5776de,1
|
|
856
|
+
np.float64,0xbfe8169f2c702d3e,0xbfef5666c9a10f6d,1
|
|
857
|
+
np.float64,0x3feda78e9efb4f1e,0x3ffa270712ded769,1
|
|
858
|
+
np.float64,0xbfda483161b49062,0xbfdbedfbf2e850ba,1
|
|
859
|
+
np.float64,0x3fd7407cf3ae80f8,0x3fd85d4f52622743,1
|
|
860
|
+
np.float64,0xbfd63de4d4ac7bca,0xbfd73550a33e3c32,1
|
|
861
|
+
np.float64,0xbfd9c30b90b38618,0xbfdb4e7695c856f3,1
|
|
862
|
+
np.float64,0x3fcd70c00b3ae180,0x3fcdfa0969e0a119,1
|
|
863
|
+
np.float64,0x3feb4f127f769e24,0x3ff44bf42514e0f4,1
|
|
864
|
+
np.float64,0xbfec1db44af83b69,0xbff5ea54aed1f8e9,1
|
|
865
|
+
np.float64,0x3fd68ff051ad1fe0,0x3fd792d0ed6d6122,1
|
|
866
|
+
np.float64,0x3fe0a048a5614092,0x3fe26c80a826b2a2,1
|
|
867
|
+
np.float64,0x3fd59f3742ab3e70,0x3fd6818563fcaf80,1
|
|
868
|
+
np.float64,0x3fca26ecf9344dd8,0x3fca867ceb5d7ba8,1
|
|
869
|
+
np.float64,0x3fdc1d547ab83aa8,0x3fde2a9cea866484,1
|
|
870
|
+
np.float64,0xbfc78df6312f1bec,0xbfc7d3719b698a39,1
|
|
871
|
+
np.float64,0x3fe754e72b6ea9ce,0x3feda89ea844a2e5,1
|
|
872
|
+
np.float64,0x3fe740c1a4ee8184,0x3fed7dc56ec0c425,1
|
|
873
|
+
np.float64,0x3fe77566a9eeeace,0x3fedee6f408df6de,1
|
|
874
|
+
np.float64,0xbfbbf5bf8e37eb80,0xbfbc126a223781b4,1
|
|
875
|
+
np.float64,0xbfe0acb297615965,0xbfe27d86681ca2b5,1
|
|
876
|
+
np.float64,0xbfc20a0487241408,0xbfc228f5f7d52ce8,1
|
|
877
|
+
np.float64,0xfff0000000000000,0xfff8000000000000,1
|
|
878
|
+
np.float64,0x3fef98a4dbff314a,0x40043cfb60bd46fa,1
|
|
879
|
+
np.float64,0x3fd059102ca0b220,0x3fd0b7d2be6d7822,1
|
|
880
|
+
np.float64,0x3fe89f18a1f13e32,0x3ff04d714bbbf400,1
|
|
881
|
+
np.float64,0x3fd45b6275a8b6c4,0x3fd516a44a276a4b,1
|
|
882
|
+
np.float64,0xbfe04463e86088c8,0xbfe1ef9dfc9f9a53,1
|
|
883
|
+
np.float64,0xbfe086e279610dc5,0xbfe249c9c1040a13,1
|
|
884
|
+
np.float64,0x3f89c9b110339380,0x3f89ca0a641454b5,1
|
|
885
|
+
np.float64,0xbfb5f5b4322beb68,0xbfb6038dc3fd1516,1
|
|
886
|
+
np.float64,0x3fe6eae76f6dd5ce,0x3feccabae04d5c14,1
|
|
887
|
+
np.float64,0x3fa9ef6c9c33dee0,0x3fa9f51c9a8c8a2f,1
|
|
888
|
+
np.float64,0xbfe171b45f62e368,0xbfe390ccc4c01bf6,1
|
|
889
|
+
np.float64,0x3fb2999442253330,0x3fb2a1fc006804b5,1
|
|
890
|
+
np.float64,0x3fd124bf04a24980,0x3fd1927abb92472d,1
|
|
891
|
+
np.float64,0xbfe6e05938edc0b2,0xbfecb519ba78114f,1
|
|
892
|
+
np.float64,0x3fed466ee6fa8cde,0x3ff8e75405b50490,1
|
|
893
|
+
np.float64,0xbfb999aa92333358,0xbfb9afa4f19f80a2,1
|
|
894
|
+
np.float64,0xbfe98969ed7312d4,0xbff17d887b0303e7,1
|
|
895
|
+
np.float64,0x3fe782843e6f0508,0x3fee0adbeebe3486,1
|
|
896
|
+
np.float64,0xbfe232fcc26465fa,0xbfe4a90a68d46040,1
|
|
897
|
+
np.float64,0x3fd190a90fa32154,0x3fd206f56ffcdca2,1
|
|
898
|
+
np.float64,0xbfc4f8b75929f170,0xbfc5298b2d4e7740,1
|
|
899
|
+
np.float64,0xbfba3a63d63474c8,0xbfba520835c2fdc2,1
|
|
900
|
+
np.float64,0xbfb7708eea2ee120,0xbfb781695ec17846,1
|
|
901
|
+
np.float64,0x3fed9fb7a5fb3f70,0x3ffa0b717bcd1609,1
|
|
902
|
+
np.float64,0xbfc1b158cd2362b0,0xbfc1ce87345f3473,1
|
|
903
|
+
np.float64,0x3f963478082c6900,0x3f96355c3000953b,1
|
|
904
|
+
np.float64,0x3fc5050e532a0a20,0x3fc536397f38f616,1
|
|
905
|
+
np.float64,0x3fe239f9eee473f4,0x3fe4b360da3b2faa,1
|
|
906
|
+
np.float64,0xbfd66bd80eacd7b0,0xbfd769a29fd784c0,1
|
|
907
|
+
np.float64,0x3fc57cdad52af9b8,0x3fc5b16b937f5f72,1
|
|
908
|
+
np.float64,0xbfd3c36a0aa786d4,0xbfd46e1cd0b4eddc,1
|
|
909
|
+
np.float64,0x3feff433487fe866,0x400cf0ea1def3161,1
|
|
910
|
+
np.float64,0xbfed5577807aaaef,0xbff915e8f6bfdf22,1
|
|
911
|
+
np.float64,0xbfca0dd3eb341ba8,0xbfca6c4d11836cb6,1
|
|
912
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
913
|
+
np.float64,0xbf974deaa82e9be0,0xbf974ef26a3130d1,1
|
|
914
|
+
np.float64,0xbfe7f425e1efe84c,0xbfef076cb00d649d,1
|
|
915
|
+
np.float64,0xbfe4413605e8826c,0xbfe7e20448b8a4b1,1
|
|
916
|
+
np.float64,0xbfdfad202cbf5a40,0xbfe15cd9eb2be707,1
|
|
917
|
+
np.float64,0xbfe43261ee6864c4,0xbfe7c952c951fe33,1
|
|
918
|
+
np.float64,0xbfec141225782824,0xbff5d54d33861d98,1
|
|
919
|
+
np.float64,0x3fd0f47abaa1e8f4,0x3fd15e8691a7f1c2,1
|
|
920
|
+
np.float64,0x3fd378f0baa6f1e0,0x3fd41bea4a599081,1
|
|
921
|
+
np.float64,0xbfb52523462a4a48,0xbfb5317fa7f436e2,1
|
|
922
|
+
np.float64,0x3fcb30797d3660f0,0x3fcb9c174ea401ff,1
|
|
923
|
+
np.float64,0xbfd48480dea90902,0xbfd5446e02c8b329,1
|
|
924
|
+
np.float64,0xbfee4ae3ab7c95c7,0xbffcc650340ba274,1
|
|
925
|
+
np.float64,0xbfeab086d075610e,0xbff3387f4e83ae26,1
|
|
926
|
+
np.float64,0x3fa17cddf422f9c0,0x3fa17e9bf1b25736,1
|
|
927
|
+
np.float64,0xbfe3064536e60c8a,0xbfe5e86aa5244319,1
|
|
928
|
+
np.float64,0x3feb2882c5765106,0x3ff40604c7d97d44,1
|
|
929
|
+
np.float64,0xbfa6923ff42d2480,0xbfa695ff57b2fc3f,1
|
|
930
|
+
np.float64,0xbfa8bdbdcc317b80,0xbfa8c2ada0d94aa7,1
|
|
931
|
+
np.float64,0x3fe7f16b8e6fe2d8,0x3fef013948c391a6,1
|
|
932
|
+
np.float64,0x3fe4e7169f69ce2e,0x3fe8fceef835050a,1
|
|
933
|
+
np.float64,0x3fed877638fb0eec,0x3ff9b83694127959,1
|
|
934
|
+
np.float64,0xbfe0cc9ecf61993e,0xbfe2a978234cbde5,1
|
|
935
|
+
np.float64,0xbfe977e79672efcf,0xbff16589ea494a38,1
|
|
936
|
+
np.float64,0xbfe240130ae48026,0xbfe4bc69113e0d7f,1
|
|
937
|
+
np.float64,0x3feb1e9b70763d36,0x3ff3f4615938a491,1
|
|
938
|
+
np.float64,0xbfdf197dfcbe32fc,0xbfe0fba78a0fc816,1
|
|
939
|
+
np.float64,0xbfee0f8543fc1f0a,0xbffbb9d9a4ee5387,1
|
|
940
|
+
np.float64,0x3fe88d2191f11a44,0x3ff037843b5b6313,1
|
|
941
|
+
np.float64,0xbfd11bb850a23770,0xbfd188c1cef40007,1
|
|
942
|
+
np.float64,0xbfa1b36e9c2366e0,0xbfa1b53d1d8a8bc4,1
|
|
943
|
+
np.float64,0xbfea2d70d9f45ae2,0xbff26a0629e36b3e,1
|
|
944
|
+
np.float64,0xbfd9188703b2310e,0xbfda83f9ddc18348,1
|
|
945
|
+
np.float64,0xbfee194894fc3291,0xbffbe3c83b61e7cb,1
|
|
946
|
+
np.float64,0xbfe093b4a9e1276a,0xbfe25b4ad6f8f83d,1
|
|
947
|
+
np.float64,0x3fea031489f4062a,0x3ff22accc000082e,1
|
|
948
|
+
np.float64,0xbfc6c0827b2d8104,0xbfc6ff0a94326381,1
|
|
949
|
+
np.float64,0x3fef5cd340feb9a6,0x4002659c5a1b34af,1
|
|
950
|
+
np.float64,0x8010000000000000,0x8010000000000000,1
|
|
951
|
+
np.float64,0x3fd97cb533b2f96c,0x3fdafab28aaae8e3,1
|
|
952
|
+
np.float64,0x3fe2123334642466,0x3fe478bd83a8ce02,1
|
|
953
|
+
np.float64,0xbfd9a69637b34d2c,0xbfdb2c87c6b6fb8c,1
|
|
954
|
+
np.float64,0x3fc58def7f2b1be0,0x3fc5c2ff724a9f61,1
|
|
955
|
+
np.float64,0xbfedd5da1f7babb4,0xbffad15949b7fb22,1
|
|
956
|
+
np.float64,0x3fe90e92a0721d26,0x3ff0d9b64323efb8,1
|
|
957
|
+
np.float64,0x3fd34b9442a69728,0x3fd3e9f8fe80654e,1
|
|
958
|
+
np.float64,0xbfc5f509ab2bea14,0xbfc62d2ad325c59f,1
|
|
959
|
+
np.float64,0x3feb245634f648ac,0x3ff3fe91a46acbe1,1
|
|
960
|
+
np.float64,0x3fd101e539a203cc,0x3fd16cf52ae6d203,1
|
|
961
|
+
np.float64,0xbfc51e9ba72a3d38,0xbfc5507d00521ba3,1
|
|
962
|
+
np.float64,0x3fe5fe1683ebfc2e,0x3feaf7dd8b1f92b0,1
|
|
963
|
+
np.float64,0x3fc362e59126c5c8,0x3fc389601814170b,1
|
|
964
|
+
np.float64,0x3fea34dbd77469b8,0x3ff27542eb721e7e,1
|
|
965
|
+
np.float64,0xbfc13ed241227da4,0xbfc159d42c0a35a9,1
|
|
966
|
+
np.float64,0xbfe6df118cedbe23,0xbfecb27bb5d3f784,1
|
|
967
|
+
np.float64,0x3fd92895f6b2512c,0x3fda96f5f94b625e,1
|
|
968
|
+
np.float64,0xbfe7ea3aa76fd476,0xbfeef0e93939086e,1
|
|
969
|
+
np.float64,0xbfc855498330aa94,0xbfc8a1ff690c9533,1
|
|
970
|
+
np.float64,0x3fd9f27b3ab3e4f8,0x3fdb8726979afc3b,1
|
|
971
|
+
np.float64,0x3fc65d52232cbaa8,0x3fc698ac4367afba,1
|
|
972
|
+
np.float64,0x3fd1271dd0a24e3c,0x3fd195087649d54e,1
|
|
973
|
+
np.float64,0xbfe983445df30689,0xbff175158b773b90,1
|
|
974
|
+
np.float64,0xbfe0d9b13261b362,0xbfe2bb8908fc9e6e,1
|
|
975
|
+
np.float64,0x3fd7671f2aaece40,0x3fd889dccbf21629,1
|
|
976
|
+
np.float64,0x3fe748aebfee915e,0x3fed8e970d94c17d,1
|
|
977
|
+
np.float64,0x3fea756e4e74eadc,0x3ff2d947ef3a54f4,1
|
|
978
|
+
np.float64,0x3fde22311cbc4464,0x3fe05b4ce9df1fdd,1
|
|
979
|
+
np.float64,0x3fe2b55ec1e56abe,0x3fe56c6849e3985a,1
|
|
980
|
+
np.float64,0x3fed7b47437af68e,0x3ff98f8e82de99a0,1
|
|
981
|
+
np.float64,0x3fec8184b179030a,0x3ff6d03aaf0135ba,1
|
|
982
|
+
np.float64,0x3fc9ea825533d508,0x3fca4776d7190e71,1
|
|
983
|
+
np.float64,0xbfe8ddd58b71bbab,0xbff09b770ed7bc9a,1
|
|
984
|
+
np.float64,0xbfed41741bfa82e8,0xbff8d81c2a9fc615,1
|
|
985
|
+
np.float64,0x3fe0a73888e14e72,0x3fe27602ad9a3726,1
|
|
986
|
+
np.float64,0xbfe9d0a565f3a14b,0xbff1e1897b628f66,1
|
|
987
|
+
np.float64,0x3fda12b381b42568,0x3fdbadbec22fbd5a,1
|
|
988
|
+
np.float64,0x3fef0081187e0102,0x4000949eff8313c2,1
|
|
989
|
+
np.float64,0x3fef6942b67ed286,0x4002b7913eb1ee76,1
|
|
990
|
+
np.float64,0x3fda10f882b421f0,0x3fdbababa2d6659d,1
|
|
991
|
+
np.float64,0x3fe5828971eb0512,0x3fea122b5088315a,1
|
|
992
|
+
np.float64,0x3fe9d4b53ff3a96a,0x3ff1e75c148bda01,1
|
|
993
|
+
np.float64,0x3fe95d246bf2ba48,0x3ff1414a61a136ec,1
|
|
994
|
+
np.float64,0x3f9e575eb83caec0,0x3f9e59a4f17179e3,1
|
|
995
|
+
np.float64,0x3fdb0a20b5b61440,0x3fdcd8a56178a17f,1
|
|
996
|
+
np.float64,0xbfdef425e3bde84c,0xbfe0e33eeacf3861,1
|
|
997
|
+
np.float64,0x3fd6afcf6bad5fa0,0x3fd7b73d47288347,1
|
|
998
|
+
np.float64,0x3fe89256367124ac,0x3ff03dd9f36ce40e,1
|
|
999
|
+
np.float64,0x3fe7e560fcefcac2,0x3feee5ef8688b60b,1
|
|
1000
|
+
np.float64,0x3fedef55e1fbdeac,0x3ffb350ee1df986b,1
|
|
1001
|
+
np.float64,0xbfe44b926de89725,0xbfe7f3539910c41f,1
|
|
1002
|
+
np.float64,0x3fc58310f32b0620,0x3fc5b7cfdba15bd0,1
|
|
1003
|
+
np.float64,0x3f736d256026da00,0x3f736d2eebe91a90,1
|
|
1004
|
+
np.float64,0x3feb012d2076025a,0x3ff3c0b5d21a7259,1
|
|
1005
|
+
np.float64,0xbfe466a6c468cd4e,0xbfe820c9c197601f,1
|
|
1006
|
+
np.float64,0x3fe1aba8aa635752,0x3fe3e3b73920f64c,1
|
|
1007
|
+
np.float64,0x3fe5597c336ab2f8,0x3fe9c7bc4b765b15,1
|
|
1008
|
+
np.float64,0x3fe1004ac5e20096,0x3fe2f12116e99821,1
|
|
1009
|
+
np.float64,0x3fecbc67477978ce,0x3ff76377434dbdad,1
|
|
1010
|
+
np.float64,0x3fe0e64515e1cc8a,0x3fe2ccf5447c1579,1
|
|
1011
|
+
np.float64,0x3febcfa874f79f50,0x3ff54528f0822144,1
|
|
1012
|
+
np.float64,0x3fc36915ed26d228,0x3fc38fb5b28d3f72,1
|
|
1013
|
+
np.float64,0xbfe01213e5e02428,0xbfe1ac0e1e7418f1,1
|
|
1014
|
+
np.float64,0x3fcd97875b3b2f10,0x3fce22fe3fc98702,1
|
|
1015
|
+
np.float64,0xbfe30383c5e60708,0xbfe5e427e62cc957,1
|
|
1016
|
+
np.float64,0xbfde339bf9bc6738,0xbfe0667f337924f5,1
|
|
1017
|
+
np.float64,0xbfda7c1c49b4f838,0xbfdc2c8801ce654a,1
|
|
1018
|
+
np.float64,0x3fb6b3489e2d6690,0x3fb6c29650387b92,1
|
|
1019
|
+
np.float64,0xbfe1fd4d76e3fa9b,0xbfe45a1f60077678,1
|
|
1020
|
+
np.float64,0xbf67c5e0402f8c00,0xbf67c5e49fce115a,1
|
|
1021
|
+
np.float64,0xbfd4f9aa2da9f354,0xbfd5c759603d0b9b,1
|
|
1022
|
+
np.float64,0x3fe83c227bf07844,0x3fefada9f1bd7fa9,1
|
|
1023
|
+
np.float64,0xbf97f717982fee20,0xbf97f836701a8cd5,1
|
|
1024
|
+
np.float64,0x3fe9688a2472d114,0x3ff150aa575e7d51,1
|
|
1025
|
+
np.float64,0xbfc5a9779d2b52f0,0xbfc5df56509c48b1,1
|
|
1026
|
+
np.float64,0xbfe958d5f472b1ac,0xbff13b813f9bee20,1
|
|
1027
|
+
np.float64,0xbfd7b3b944af6772,0xbfd8e276c2b2920f,1
|
|
1028
|
+
np.float64,0x3fed10198e7a2034,0x3ff8469c817572f0,1
|
|
1029
|
+
np.float64,0xbfeeecc4517dd989,0xc000472b1f858be3,1
|
|
1030
|
+
np.float64,0xbfdbcce47eb799c8,0xbfddc734aa67812b,1
|
|
1031
|
+
np.float64,0xbfd013ee24a027dc,0xbfd06df3089384ca,1
|
|
1032
|
+
np.float64,0xbfd215f2bfa42be6,0xbfd29774ffe26a74,1
|
|
1033
|
+
np.float64,0x3fdfd0ae67bfa15c,0x3fe1746e3a963a9f,1
|
|
1034
|
+
np.float64,0xbfc84aa10b309544,0xbfc896f0d25b723a,1
|
|
1035
|
+
np.float64,0xbfcd0c627d3a18c4,0xbfcd9024c73747a9,1
|
|
1036
|
+
np.float64,0x3fd87df6dbb0fbec,0x3fd9ce1dde757f31,1
|
|
1037
|
+
np.float64,0xbfdad85e05b5b0bc,0xbfdc9c2addb6ce47,1
|
|
1038
|
+
np.float64,0xbfee4f8977fc9f13,0xbffcdccd68e514b3,1
|
|
1039
|
+
np.float64,0x3fa5c290542b8520,0x3fa5c5ebdf09ca70,1
|
|
1040
|
+
np.float64,0xbfd7e401d2afc804,0xbfd91a7e4eb5a026,1
|
|
1041
|
+
np.float64,0xbfe33ff73b667fee,0xbfe6423cc6eb07d7,1
|
|
1042
|
+
np.float64,0x3fdfb7d6c4bf6fac,0x3fe163f2e8175177,1
|
|
1043
|
+
np.float64,0xbfd515d69eaa2bae,0xbfd5e6eedd6a1598,1
|
|
1044
|
+
np.float64,0x3fb322232e264440,0x3fb32b49d91c3cbe,1
|
|
1045
|
+
np.float64,0xbfe20ac39e641587,0xbfe46dd4b3803f19,1
|
|
1046
|
+
np.float64,0x3fe282dc18e505b8,0x3fe520152120c297,1
|
|
1047
|
+
np.float64,0xbfc905a4cd320b48,0xbfc95929b74865fb,1
|
|
1048
|
+
np.float64,0x3fe0ae3b83615c78,0x3fe27fa1dafc825b,1
|
|
1049
|
+
np.float64,0xbfc1bfed0f237fdc,0xbfc1dd6466225cdf,1
|
|
1050
|
+
np.float64,0xbfeca4d47d7949a9,0xbff72761a34fb682,1
|
|
1051
|
+
np.float64,0xbfe8cf8c48f19f18,0xbff0897ebc003626,1
|
|
1052
|
+
np.float64,0xbfe1aaf0a36355e2,0xbfe3e2ae7b17a286,1
|
|
1053
|
+
np.float64,0x3fe2ca442e659488,0x3fe58c3a2fb4f14a,1
|
|
1054
|
+
np.float64,0xbfda3c2deeb4785c,0xbfdbdf89fe96a243,1
|
|
1055
|
+
np.float64,0xbfdc12bfecb82580,0xbfde1d81dea3c221,1
|
|
1056
|
+
np.float64,0xbfe2d6d877e5adb1,0xbfe59f73e22c1fc7,1
|
|
1057
|
+
np.float64,0x3fe5f930636bf260,0x3feaee96a462e4de,1
|
|
1058
|
+
np.float64,0x3fcf3c0ea53e7820,0x3fcfe0b0f92be7e9,1
|
|
1059
|
+
np.float64,0xbfa5bb90f42b7720,0xbfa5bee9424004cc,1
|
|
1060
|
+
np.float64,0xbfe2fb3a3265f674,0xbfe5d75b988bb279,1
|
|
1061
|
+
np.float64,0x3fcaec7aab35d8f8,0x3fcb54ea582fff6f,1
|
|
1062
|
+
np.float64,0xbfd8d3228db1a646,0xbfda322297747fbc,1
|
|
1063
|
+
np.float64,0x3fedd2e0ad7ba5c2,0x3ffac6002b65c424,1
|
|
1064
|
+
np.float64,0xbfd9edeca2b3dbda,0xbfdb81b2b7785e33,1
|
|
1065
|
+
np.float64,0xbfef5febb17ebfd7,0xc002796b15950960,1
|
|
1066
|
+
np.float64,0x3fde22f787bc45f0,0x3fe05bcc624b9ba2,1
|
|
1067
|
+
np.float64,0xbfc716a4ab2e2d48,0xbfc758073839dd44,1
|
|
1068
|
+
np.float64,0xbf9bed852837db00,0xbf9bef4b2a3f3bdc,1
|
|
1069
|
+
np.float64,0x3fef8f88507f1f10,0x4003e5e566444571,1
|
|
1070
|
+
np.float64,0xbfdc1bbed6b8377e,0xbfde28a64e174e60,1
|
|
1071
|
+
np.float64,0x3fe02d30eae05a62,0x3fe1d064ec027cd3,1
|
|
1072
|
+
np.float64,0x3fd9dbb500b3b76c,0x3fdb6bea40162279,1
|
|
1073
|
+
np.float64,0x3fe353ff1d66a7fe,0x3fe661b3358c925e,1
|
|
1074
|
+
np.float64,0x3fac3ebfb4387d80,0x3fac4618effff2b0,1
|
|
1075
|
+
np.float64,0x3fe63cf0ba6c79e2,0x3feb7030cff5f434,1
|
|
1076
|
+
np.float64,0x3fd0e915f8a1d22c,0x3fd152464597b510,1
|
|
1077
|
+
np.float64,0xbfd36987cda6d310,0xbfd40af049d7621e,1
|
|
1078
|
+
np.float64,0xbfdc5b4dc7b8b69c,0xbfde7790a35da2bc,1
|
|
1079
|
+
np.float64,0x3feee7ff4a7dcffe,0x40003545989e07c7,1
|
|
1080
|
+
np.float64,0xbfeb2c8308765906,0xbff40d2e6469249e,1
|
|
1081
|
+
np.float64,0x3fe535a894ea6b52,0x3fe98781648550d0,1
|
|
1082
|
+
np.float64,0xbfef168eb9fe2d1d,0xc000f274ed3cd312,1
|
|
1083
|
+
np.float64,0x3fc3e2d98927c5b0,0x3fc40c6991b8900c,1
|
|
1084
|
+
np.float64,0xbfcd8fe3e73b1fc8,0xbfce1aec7f9b7f7d,1
|
|
1085
|
+
np.float64,0xbfd55d8c3aaabb18,0xbfd6378132ee4892,1
|
|
1086
|
+
np.float64,0xbfe424a66168494d,0xbfe7b289d72c98b3,1
|
|
1087
|
+
np.float64,0x3fd81af13eb035e4,0x3fd95a6a9696ab45,1
|
|
1088
|
+
np.float64,0xbfe3016722e602ce,0xbfe5e0e46db228cd,1
|
|
1089
|
+
np.float64,0x3fe9a20beff34418,0x3ff19faca17fc468,1
|
|
1090
|
+
np.float64,0xbfe2124bc7e42498,0xbfe478e19927e723,1
|
|
1091
|
+
np.float64,0x3fd96f8622b2df0c,0x3fdaeb08da6b08ae,1
|
|
1092
|
+
np.float64,0x3fecd6796579acf2,0x3ff7a7d02159e181,1
|
|
1093
|
+
np.float64,0x3fe60015df6c002c,0x3feafba6f2682a61,1
|
|
1094
|
+
np.float64,0x3fc7181cf72e3038,0x3fc7598c2cc3c3b4,1
|
|
1095
|
+
np.float64,0xbfce6e2e0b3cdc5c,0xbfcf0621b3e37115,1
|
|
1096
|
+
np.float64,0xbfe52a829e6a5505,0xbfe973a785980af9,1
|
|
1097
|
+
np.float64,0x3fed4bbac37a9776,0x3ff8f7a0e68a2bbe,1
|
|
1098
|
+
np.float64,0x3fabdfaacc37bf60,0x3fabe6bab42bd246,1
|
|
1099
|
+
np.float64,0xbfcd9598cb3b2b30,0xbfce20f3c4c2c261,1
|
|
1100
|
+
np.float64,0x3fd717d859ae2fb0,0x3fd82e88eca09ab1,1
|
|
1101
|
+
np.float64,0x3fe28ccb18e51996,0x3fe52f071d2694fd,1
|
|
1102
|
+
np.float64,0xbfe43f064ae87e0c,0xbfe7de5eab36b5b9,1
|
|
1103
|
+
np.float64,0x7fefffffffffffff,0xfff8000000000000,1
|
|
1104
|
+
np.float64,0xbfb39b045a273608,0xbfb3a4dd3395fdd5,1
|
|
1105
|
+
np.float64,0xbfb3358bae266b18,0xbfb33ece5e95970a,1
|
|
1106
|
+
np.float64,0xbfeeafb6717d5f6d,0xbffeec3f9695b575,1
|
|
1107
|
+
np.float64,0xbfe7a321afef4644,0xbfee522dd80f41f4,1
|
|
1108
|
+
np.float64,0x3fe3a17e5be742fc,0x3fe6dcd32af51e92,1
|
|
1109
|
+
np.float64,0xbfc61694bd2c2d28,0xbfc64fbbd835f6e7,1
|
|
1110
|
+
np.float64,0xbfd795906faf2b20,0xbfd8bf89b370655c,1
|
|
1111
|
+
np.float64,0xbfe4b39b59e96736,0xbfe8a3c5c645b6e3,1
|
|
1112
|
+
np.float64,0x3fd310af3ba62160,0x3fd3a9442e825e1c,1
|
|
1113
|
+
np.float64,0xbfd45198a6a8a332,0xbfd50bc10311a0a3,1
|
|
1114
|
+
np.float64,0x3fd0017eaaa002fc,0x3fd05a472a837999,1
|
|
1115
|
+
np.float64,0xbfea974d98752e9b,0xbff30f67f1835183,1
|
|
1116
|
+
np.float64,0xbf978f60582f1ec0,0xbf979070e1c2b59d,1
|
|
1117
|
+
np.float64,0x3fe1c715d4e38e2c,0x3fe40b479e1241a2,1
|
|
1118
|
+
np.float64,0xbfccb965cd3972cc,0xbfcd38b40c4a352d,1
|
|
1119
|
+
np.float64,0xbfd9897048b312e0,0xbfdb09d55624c2a3,1
|
|
1120
|
+
np.float64,0x3fe7f5de4befebbc,0x3fef0b56be259f9c,1
|
|
1121
|
+
np.float64,0x3fcc6c6d4338d8d8,0x3fcce7b20ed68a78,1
|
|
1122
|
+
np.float64,0xbfe63884046c7108,0xbfeb67a3b945c3ee,1
|
|
1123
|
+
np.float64,0xbfce64e2ad3cc9c4,0xbfcefc47fae2e81f,1
|
|
1124
|
+
np.float64,0x3fefeb57b27fd6b0,0x400ab2eac6321cfb,1
|
|
1125
|
+
np.float64,0x3fe679627e6cf2c4,0x3febe6451b6ee0c4,1
|
|
1126
|
+
np.float64,0x3fc5f710172bee20,0x3fc62f40f85cb040,1
|
|
1127
|
+
np.float64,0x3fc34975e52692e8,0x3fc36f58588c7fa2,1
|
|
1128
|
+
np.float64,0x3fe8a3784cf146f0,0x3ff052ced9bb9406,1
|
|
1129
|
+
np.float64,0x3fd11a607ca234c0,0x3fd1874f876233fe,1
|
|
1130
|
+
np.float64,0x3fb2d653f625aca0,0x3fb2df0f4c9633f3,1
|
|
1131
|
+
np.float64,0x3fe555f39eeaabe8,0x3fe9c15ee962a28c,1
|
|
1132
|
+
np.float64,0xbfea297e3bf452fc,0xbff264107117f709,1
|
|
1133
|
+
np.float64,0x3fe1581cdde2b03a,0x3fe36c79acedf99c,1
|
|
1134
|
+
np.float64,0x3fd4567063a8ace0,0x3fd51123dbd9106f,1
|
|
1135
|
+
np.float64,0x3fa3883aec271080,0x3fa38aa86ec71218,1
|
|
1136
|
+
np.float64,0x3fe40e5d7de81cba,0x3fe78dbb9b568850,1
|
|
1137
|
+
np.float64,0xbfe9a2f7347345ee,0xbff1a0f4faa05041,1
|
|
1138
|
+
np.float64,0x3f9eef03a83dde00,0x3f9ef16caa0c1478,1
|
|
1139
|
+
np.float64,0xbfcb4641d1368c84,0xbfcbb2e7ff8c266d,1
|
|
1140
|
+
np.float64,0xbfa8403b2c308070,0xbfa844e148b735b7,1
|
|
1141
|
+
np.float64,0xbfe1875cd6e30eba,0xbfe3afadc08369f5,1
|
|
1142
|
+
np.float64,0xbfdd3c3d26ba787a,0xbfdf919b3e296766,1
|
|
1143
|
+
np.float64,0x3fcd6c4c853ad898,0x3fcdf55647b518b8,1
|
|
1144
|
+
np.float64,0xbfe360a173e6c143,0xbfe6759eb3a08cf2,1
|
|
1145
|
+
np.float64,0x3fe5a13147eb4262,0x3fea4a5a060f5adb,1
|
|
1146
|
+
np.float64,0x3feb3cdd7af679ba,0x3ff42aae0cf61234,1
|
|
1147
|
+
np.float64,0x3fe5205128ea40a2,0x3fe9618f3d0c54af,1
|
|
1148
|
+
np.float64,0x3fce35343f3c6a68,0x3fcec9c4e612b050,1
|
|
1149
|
+
np.float64,0xbfc345724d268ae4,0xbfc36b3ce6338e6a,1
|
|
1150
|
+
np.float64,0x3fedc4fc0e7b89f8,0x3ffa91c1d775c1f7,1
|
|
1151
|
+
np.float64,0x3fe41fbf21683f7e,0x3fe7aa6c174a0e65,1
|
|
1152
|
+
np.float64,0xbfc7a1a5d32f434c,0xbfc7e7d27a4c5241,1
|
|
1153
|
+
np.float64,0x3fd3e33eaca7c67c,0x3fd4915264441e2f,1
|
|
1154
|
+
np.float64,0x3feb3f02f6f67e06,0x3ff42e942249e596,1
|
|
1155
|
+
np.float64,0x3fdb75fcb0b6ebf8,0x3fdd5c63f98b6275,1
|
|
1156
|
+
np.float64,0x3fd6476603ac8ecc,0x3fd74020b164cf38,1
|
|
1157
|
+
np.float64,0x3fed535372faa6a6,0x3ff90f3791821841,1
|
|
1158
|
+
np.float64,0x3fe8648ead70c91e,0x3ff006a62befd7ed,1
|
|
1159
|
+
np.float64,0x3fd0f90760a1f210,0x3fd1636b39bb1525,1
|
|
1160
|
+
np.float64,0xbfca052443340a48,0xbfca633d6e777ae0,1
|
|
1161
|
+
np.float64,0xbfa6a5e3342d4bc0,0xbfa6a9ac6a488f5f,1
|
|
1162
|
+
np.float64,0x3fd5598038aab300,0x3fd632f35c0c3d52,1
|
|
1163
|
+
np.float64,0xbfdf66218fbecc44,0xbfe12df83b19f300,1
|
|
1164
|
+
np.float64,0x3fe78e15b56f1c2c,0x3fee240d12489cd1,1
|
|
1165
|
+
np.float64,0x3fe3d6a7b3e7ad50,0x3fe7329dcf7401e2,1
|
|
1166
|
+
np.float64,0xbfddb8e97bbb71d2,0xbfe017ed6d55a673,1
|
|
1167
|
+
np.float64,0xbfd57afd55aaf5fa,0xbfd658a9607c3370,1
|
|
1168
|
+
np.float64,0xbfdba4c9abb74994,0xbfdd95d69e5e8814,1
|
|
1169
|
+
np.float64,0xbfe71d8090ee3b01,0xbfed3390be6d2eef,1
|
|
1170
|
+
np.float64,0xbfc738ac0f2e7158,0xbfc77b3553b7c026,1
|
|
1171
|
+
np.float64,0x3f873656302e6c80,0x3f873697556ae011,1
|
|
1172
|
+
np.float64,0x3fe559491d6ab292,0x3fe9c7603b12c608,1
|
|
1173
|
+
np.float64,0xbfe262776864c4ef,0xbfe4ef905dda8599,1
|
|
1174
|
+
np.float64,0x3fe59d8917eb3b12,0x3fea439f44b7573f,1
|
|
1175
|
+
np.float64,0xbfd4b5afb5a96b60,0xbfd57b4e3df4dbc8,1
|
|
1176
|
+
np.float64,0x3fe81158447022b0,0x3fef4a3cea3eb6a9,1
|
|
1177
|
+
np.float64,0xbfeb023441f60468,0xbff3c27f0fc1a4dc,1
|
|
1178
|
+
np.float64,0x3fefb212eaff6426,0x40055fc6d949cf44,1
|
|
1179
|
+
np.float64,0xbfe1300ac1e26016,0xbfe333f297a1260e,1
|
|
1180
|
+
np.float64,0xbfeae0a2f575c146,0xbff388d58c380b8c,1
|
|
1181
|
+
np.float64,0xbfeddd8e55fbbb1d,0xbffaef045b2e21d9,1
|
|
1182
|
+
np.float64,0x3fec7c6c1d78f8d8,0x3ff6c3ebb019a8e5,1
|
|
1183
|
+
np.float64,0xbfe27e071f64fc0e,0xbfe518d2ff630f33,1
|
|
1184
|
+
np.float64,0x8000000000000001,0x8000000000000001,1
|
|
1185
|
+
np.float64,0x3fc5872abf2b0e58,0x3fc5bc083105db76,1
|
|
1186
|
+
np.float64,0x3fe65114baeca22a,0x3feb9745b82ef15a,1
|
|
1187
|
+
np.float64,0xbfc783abe52f0758,0xbfc7c8cb23f93e79,1
|
|
1188
|
+
np.float64,0x3fe4b7a5dd696f4c,0x3fe8aab9d492f0ca,1
|
|
1189
|
+
np.float64,0xbf91a8e8a82351e0,0xbf91a95b6ae806f1,1
|
|
1190
|
+
np.float64,0xbfee482eb77c905d,0xbffcb952830e715a,1
|
|
1191
|
+
np.float64,0x3fba0eee2a341de0,0x3fba261d495e3a1b,1
|
|
1192
|
+
np.float64,0xbfeb8876ae7710ed,0xbff4b7f7f4343506,1
|
|
1193
|
+
np.float64,0xbfe4d29e46e9a53c,0xbfe8d9547a601ba7,1
|
|
1194
|
+
np.float64,0xbfe12413b8e24828,0xbfe3232656541d10,1
|
|
1195
|
+
np.float64,0x3fc0bd8f61217b20,0x3fc0d63f937f0aa4,1
|
|
1196
|
+
np.float64,0xbfd3debafda7bd76,0xbfd48c534e5329e4,1
|
|
1197
|
+
np.float64,0x3fc0f92de921f258,0x3fc112eb7d47349b,1
|
|
1198
|
+
np.float64,0xbfe576b95f6aed72,0xbfe9fca859239b3c,1
|
|
1199
|
+
np.float64,0x3fd10e520da21ca4,0x3fd17a546e4152f7,1
|
|
1200
|
+
np.float64,0x3fcef917eb3df230,0x3fcf998677a8fa8f,1
|
|
1201
|
+
np.float64,0x3fdfcf863abf9f0c,0x3fe173a98af1cb13,1
|
|
1202
|
+
np.float64,0x3fc28c4b4f251898,0x3fc2adf43792e917,1
|
|
1203
|
+
np.float64,0x3fceb837ad3d7070,0x3fcf54a63b7d8c5c,1
|
|
1204
|
+
np.float64,0x3fc0140a05202818,0x3fc029e4f75330cb,1
|
|
1205
|
+
np.float64,0xbfd76c3362aed866,0xbfd88fb9e790b4e8,1
|
|
1206
|
+
np.float64,0xbfe475300868ea60,0xbfe8395334623e1f,1
|
|
1207
|
+
np.float64,0x3fea70b9b4f4e174,0x3ff2d1dad92173ba,1
|
|
1208
|
+
np.float64,0xbfe2edbd4965db7a,0xbfe5c29449a9365d,1
|
|
1209
|
+
np.float64,0xbfddf86f66bbf0de,0xbfe0408439cada9b,1
|
|
1210
|
+
np.float64,0xbfb443cdfa288798,0xbfb44eae796ad3ea,1
|
|
1211
|
+
np.float64,0xbf96a8a0482d5140,0xbf96a992b6ef073b,1
|
|
1212
|
+
np.float64,0xbfd279db2fa4f3b6,0xbfd3043db6acbd9e,1
|
|
1213
|
+
np.float64,0x3fe5d99088ebb322,0x3feab30be14e1605,1
|
|
1214
|
+
np.float64,0xbfe1a917abe35230,0xbfe3e0063d0f5f63,1
|
|
1215
|
+
np.float64,0x3fc77272f52ee4e8,0x3fc7b6f8ab6f4591,1
|
|
1216
|
+
np.float64,0x3fd6b62146ad6c44,0x3fd7be77eef8390a,1
|
|
1217
|
+
np.float64,0xbfe39fd9bc673fb4,0xbfe6da30dc4eadde,1
|
|
1218
|
+
np.float64,0x3fe35545c066aa8c,0x3fe663b5873e4d4b,1
|
|
1219
|
+
np.float64,0xbfcbbeffb3377e00,0xbfcc317edf7f6992,1
|
|
1220
|
+
np.float64,0xbfe28a58366514b0,0xbfe52b5734579ffa,1
|
|
1221
|
+
np.float64,0xbfbf0c87023e1910,0xbfbf33d970a0dfa5,1
|
|
1222
|
+
np.float64,0xbfd31144cba6228a,0xbfd3a9e84f9168f9,1
|
|
1223
|
+
np.float64,0xbfe5c044056b8088,0xbfea83d607c1a88a,1
|
|
1224
|
+
np.float64,0x3fdaabdf18b557c0,0x3fdc663ee8eddc83,1
|
|
1225
|
+
np.float64,0xbfeb883006f71060,0xbff4b76feff615be,1
|
|
1226
|
+
np.float64,0xbfebaef41d775de8,0xbff5034111440754,1
|
|
1227
|
+
np.float64,0x3fd9b6eb3bb36dd8,0x3fdb3fff5071dacf,1
|
|
1228
|
+
np.float64,0x3fe4e33c45e9c678,0x3fe8f637779ddedf,1
|
|
1229
|
+
np.float64,0x3fe52213a06a4428,0x3fe964adeff5c14e,1
|
|
1230
|
+
np.float64,0x3fe799254cef324a,0x3fee3c3ecfd3cdc5,1
|
|
1231
|
+
np.float64,0x3fd0533f35a0a680,0x3fd0b19a003469d3,1
|
|
1232
|
+
np.float64,0x3fec7ef5c7f8fdec,0x3ff6ca0abe055048,1
|
|
1233
|
+
np.float64,0xbfd1b5da82a36bb6,0xbfd22f357acbee79,1
|
|
1234
|
+
np.float64,0xbfd8f9c652b1f38c,0xbfda5faacbce9cf9,1
|
|
1235
|
+
np.float64,0x3fc8fc818b31f900,0x3fc94fa9a6aa53c8,1
|
|
1236
|
+
np.float64,0x3fcf42cc613e8598,0x3fcfe7dc128f33f2,1
|
|
1237
|
+
np.float64,0x3fd393a995a72754,0x3fd4396127b19305,1
|
|
1238
|
+
np.float64,0x3fec7b7df9f8f6fc,0x3ff6c1ae51753ef2,1
|
|
1239
|
+
np.float64,0x3fc07f175b20fe30,0x3fc096b55c11568c,1
|
|
1240
|
+
np.float64,0xbf979170082f22e0,0xbf979280d9555f44,1
|
|
1241
|
+
np.float64,0xbfb9d110c633a220,0xbfb9e79ba19b3c4a,1
|
|
1242
|
+
np.float64,0x3fedcd7d417b9afa,0x3ffab19734e86d58,1
|
|
1243
|
+
np.float64,0xbfec116f27f822de,0xbff5cf9425cb415b,1
|
|
1244
|
+
np.float64,0xbfec4fa0bef89f42,0xbff65a771982c920,1
|
|
1245
|
+
np.float64,0x3f94d4452829a880,0x3f94d501789ad11c,1
|
|
1246
|
+
np.float64,0xbfefe5ede27fcbdc,0xc009c440d3c2a4ce,1
|
|
1247
|
+
np.float64,0xbfe7e5f7b5efcbf0,0xbfeee74449aee1db,1
|
|
1248
|
+
np.float64,0xbfeb71dc8976e3b9,0xbff48cd84ea54ed2,1
|
|
1249
|
+
np.float64,0xbfe4cdb65f699b6c,0xbfe8d0d3bce901ef,1
|
|
1250
|
+
np.float64,0x3fb78ef1ee2f1de0,0x3fb7a00e7d183c48,1
|
|
1251
|
+
np.float64,0x3fb681864a2d0310,0x3fb6906fe64b4cd7,1
|
|
1252
|
+
np.float64,0xbfd2ad3b31a55a76,0xbfd33c57b5985399,1
|
|
1253
|
+
np.float64,0x3fdcdaaa95b9b554,0x3fdf16b99628db1e,1
|
|
1254
|
+
np.float64,0x3fa4780b7428f020,0x3fa47ad6ce9b8081,1
|
|
1255
|
+
np.float64,0x3fc546b0ad2a8d60,0x3fc579b361b3b18f,1
|
|
1256
|
+
np.float64,0x3feaf98dd6f5f31c,0x3ff3b38189c3539c,1
|
|
1257
|
+
np.float64,0x3feb0b2eca76165e,0x3ff3d22797083f9a,1
|
|
1258
|
+
np.float64,0xbfdc02ae3ab8055c,0xbfde099ecb5dbacf,1
|
|
1259
|
+
np.float64,0x3fd248bf17a49180,0x3fd2ceb77b346d1d,1
|
|
1260
|
+
np.float64,0x3fe349d666e693ac,0x3fe651b9933a8853,1
|
|
1261
|
+
np.float64,0xbfca526fc534a4e0,0xbfcab3e83f0d9b93,1
|
|
1262
|
+
np.float64,0x3fc156421722ac88,0x3fc171b38826563b,1
|
|
1263
|
+
np.float64,0xbfe4244569e8488b,0xbfe7b1e93e7d4f92,1
|
|
1264
|
+
np.float64,0x3fe010faabe021f6,0x3fe1aa961338886d,1
|
|
1265
|
+
np.float64,0xbfc52dacb72a5b58,0xbfc55ffa50eba380,1
|
|
1266
|
+
np.float64,0x8000000000000000,0x8000000000000000,1
|
|
1267
|
+
np.float64,0x3fea1d4865f43a90,0x3ff251b839eb4817,1
|
|
1268
|
+
np.float64,0xbfa0f65c8421ecc0,0xbfa0f7f37c91be01,1
|
|
1269
|
+
np.float64,0x3fcab29c0b356538,0x3fcb1863edbee184,1
|
|
1270
|
+
np.float64,0x3fe7949162ef2922,0x3fee323821958b88,1
|
|
1271
|
+
np.float64,0x3fdaf9288ab5f250,0x3fdcc400190a4839,1
|
|
1272
|
+
np.float64,0xbfe13ece6be27d9d,0xbfe348ba07553179,1
|
|
1273
|
+
np.float64,0x3f8a0c4fd0341880,0x3f8a0cabdf710185,1
|
|
1274
|
+
np.float64,0x3fdd0442a2ba0884,0x3fdf4b016c4da452,1
|
|
1275
|
+
np.float64,0xbfaf06d2343e0da0,0xbfaf1090b1600422,1
|
|
1276
|
+
np.float64,0xbfd3b65225a76ca4,0xbfd45fa49ae76cca,1
|
|
1277
|
+
np.float64,0x3fef5d75fefebaec,0x400269a5e7c11891,1
|
|
1278
|
+
np.float64,0xbfe048e35ce091c6,0xbfe1f5af45dd64f8,1
|
|
1279
|
+
np.float64,0xbfe27d4599e4fa8b,0xbfe517b07843d04c,1
|
|
1280
|
+
np.float64,0xbfe6f2a637ede54c,0xbfecdaa730462576,1
|
|
1281
|
+
np.float64,0x3fc63fbb752c7f78,0x3fc67a2854974109,1
|
|
1282
|
+
np.float64,0x3fedda6bfbfbb4d8,0x3ffae2e6131f3475,1
|
|
1283
|
+
np.float64,0x3fe7a6f5286f4dea,0x3fee5a9b1ef46016,1
|
|
1284
|
+
np.float64,0xbfd4ea8bcea9d518,0xbfd5b66ab7e5cf00,1
|
|
1285
|
+
np.float64,0x3fdc116568b822cc,0x3fde1bd4d0d9fd6c,1
|
|
1286
|
+
np.float64,0x3fdc45cb1bb88b98,0x3fde5cd1d2751032,1
|
|
1287
|
+
np.float64,0x3feabd932f757b26,0x3ff34e06e56a62a1,1
|
|
1288
|
+
np.float64,0xbfae5dbe0c3cbb80,0xbfae66e062ac0d65,1
|
|
1289
|
+
np.float64,0xbfdb385a00b670b4,0xbfdd10fedf3a58a7,1
|
|
1290
|
+
np.float64,0xbfebb14755f7628f,0xbff507e123a2b47c,1
|
|
1291
|
+
np.float64,0x3fe6de2fdfedbc60,0x3fecb0ae6e131da2,1
|
|
1292
|
+
np.float64,0xbfd86de640b0dbcc,0xbfd9bb4dbf0bf6af,1
|
|
1293
|
+
np.float64,0x3fe39e86d9e73d0e,0x3fe6d811c858d5d9,1
|
|
1294
|
+
np.float64,0x7ff0000000000000,0xfff8000000000000,1
|
|
1295
|
+
np.float64,0x3fa8101684302020,0x3fa814a12176e937,1
|
|
1296
|
+
np.float64,0x3fefdd5ad37fbab6,0x4008a08c0b76fbb5,1
|
|
1297
|
+
np.float64,0x3fe645c727ec8b8e,0x3feb814ebc470940,1
|
|
1298
|
+
np.float64,0x3fe3ba79dce774f4,0x3fe70500db564cb6,1
|
|
1299
|
+
np.float64,0xbfe0e5a254e1cb44,0xbfe2cc13940c6d9a,1
|
|
1300
|
+
np.float64,0x3fe2cac62465958c,0x3fe58d008c5e31f8,1
|
|
1301
|
+
np.float64,0xbfd3ffb531a7ff6a,0xbfd4b0d88cff2040,1
|
|
1302
|
+
np.float64,0x3fe0929104612522,0x3fe259bc42dce788,1
|
|
1303
|
+
np.float64,0x1,0x1,1
|
|
1304
|
+
np.float64,0xbfe7db77e6efb6f0,0xbfeecf93e8a61cb3,1
|
|
1305
|
+
np.float64,0xbfe37e9559e6fd2a,0xbfe6a514e29cb7aa,1
|
|
1306
|
+
np.float64,0xbfc53a843f2a7508,0xbfc56d2e9ad8b716,1
|
|
1307
|
+
np.float64,0xbfedb04485fb6089,0xbffa4615d4334ec3,1
|
|
1308
|
+
np.float64,0xbfc44349b1288694,0xbfc46f484b6f1cd6,1
|
|
1309
|
+
np.float64,0xbfe265188264ca31,0xbfe4f37d61cd9e17,1
|
|
1310
|
+
np.float64,0xbfd030351da0606a,0xbfd08c2537287ee1,1
|
|
1311
|
+
np.float64,0x3fd8fb131db1f628,0x3fda613363ca601e,1
|
|
1312
|
+
np.float64,0xbff0000000000000,0xfff0000000000000,1
|
|
1313
|
+
np.float64,0xbfe48d9a60691b35,0xbfe862c02d8fec1e,1
|
|
1314
|
+
np.float64,0x3fd185e050a30bc0,0x3fd1fb4c614ddb07,1
|
|
1315
|
+
np.float64,0xbfe4a5807e694b01,0xbfe88b8ff2d6caa7,1
|
|
1316
|
+
np.float64,0xbfc934d7ad3269b0,0xbfc98a405d25a666,1
|
|
1317
|
+
np.float64,0xbfea0e3c62741c79,0xbff23b4bd3a7b15d,1
|
|
1318
|
+
np.float64,0x3fe7244071ee4880,0x3fed41b27ba6bb22,1
|
|
1319
|
+
np.float64,0xbfd419f81ba833f0,0xbfd4cdf71b4533a3,1
|
|
1320
|
+
np.float64,0xbfe1e73a34e3ce74,0xbfe439eb15fa6baf,1
|
|
1321
|
+
np.float64,0x3fcdd9a63f3bb350,0x3fce68e1c401eff0,1
|
|
1322
|
+
np.float64,0x3fd1b5960ba36b2c,0x3fd22eeb566f1976,1
|
|
1323
|
+
np.float64,0x3fe9ad18e0735a32,0x3ff1af23c534260d,1
|
|
1324
|
+
np.float64,0xbfd537918aaa6f24,0xbfd60ccc8df0962b,1
|
|
1325
|
+
np.float64,0x3fcba3d3c73747a8,0x3fcc14fd5e5c49ad,1
|
|
1326
|
+
np.float64,0x3fd367e3c0a6cfc8,0x3fd40921b14e288e,1
|
|
1327
|
+
np.float64,0x3fe94303c6f28608,0x3ff11e62db2db6ac,1
|
|
1328
|
+
np.float64,0xbfcc5f77fd38bef0,0xbfccda110c087519,1
|
|
1329
|
+
np.float64,0xbfd63b74d7ac76ea,0xbfd7328af9f37402,1
|
|
1330
|
+
np.float64,0xbfe5321289ea6425,0xbfe9811ce96609ad,1
|
|
1331
|
+
np.float64,0xbfde910879bd2210,0xbfe0a2cd0ed1d368,1
|
|
1332
|
+
np.float64,0xbfcc9d9bad393b38,0xbfcd1b722a0b1371,1
|
|
1333
|
+
np.float64,0xbfe6dd39e16dba74,0xbfecaeb7c8c069f6,1
|
|
1334
|
+
np.float64,0xbfe98316eff3062e,0xbff174d7347d48bf,1
|
|
1335
|
+
np.float64,0xbfda88f8d1b511f2,0xbfdc3c0e75dad903,1
|
|
1336
|
+
np.float64,0x3fd400d8c2a801b0,0x3fd4b21bacff1f5d,1
|
|
1337
|
+
np.float64,0xbfe1ed335863da66,0xbfe4429e45e99779,1
|
|
1338
|
+
np.float64,0xbf3423a200284800,0xbf3423a20acb0342,1
|
|
1339
|
+
np.float64,0xbfe97bc59672f78b,0xbff16ad1adc44a33,1
|
|
1340
|
+
np.float64,0xbfeeca60d7fd94c2,0xbfff98d7f18f7728,1
|
|
1341
|
+
np.float64,0x3fd1eb13b2a3d628,0x3fd268e6ff4d56ce,1
|
|
1342
|
+
np.float64,0xbfa5594c242ab2a0,0xbfa55c77d6740a39,1
|
|
1343
|
+
np.float64,0x3fe72662006e4cc4,0x3fed462a9dedbfee,1
|
|
1344
|
+
np.float64,0x3fef4bb221fe9764,0x4001fe4f4cdfedb2,1
|
|
1345
|
+
np.float64,0xbfe938d417f271a8,0xbff110e78724ca2b,1
|
|
1346
|
+
np.float64,0xbfcc29ab2f385358,0xbfcca182140ef541,1
|
|
1347
|
+
np.float64,0x3fe18cd42c6319a8,0x3fe3b77e018165e7,1
|
|
1348
|
+
np.float64,0xbfec6c5cae78d8b9,0xbff69d8e01309b48,1
|
|
1349
|
+
np.float64,0xbfd5723da7aae47c,0xbfd64ecde17da471,1
|
|
1350
|
+
np.float64,0xbfe3096722e612ce,0xbfe5ed43634f37ff,1
|
|
1351
|
+
np.float64,0xbfdacaceb1b5959e,0xbfdc8bb826bbed39,1
|
|
1352
|
+
np.float64,0x3fc59a57cb2b34b0,0x3fc5cfc4a7c9bac8,1
|
|
1353
|
+
np.float64,0x3f84adce10295b80,0x3f84adfc1f1f6e97,1
|
|
1354
|
+
np.float64,0x3fdd5b28bbbab650,0x3fdfb8b906d77df4,1
|
|
1355
|
+
np.float64,0x3fdebf94c6bd7f28,0x3fe0c10188e1bc7c,1
|
|
1356
|
+
np.float64,0x3fdb30c612b6618c,0x3fdd07bf18597821,1
|
|
1357
|
+
np.float64,0x3fe7eeb3176fdd66,0x3feefb0be694b855,1
|
|
1358
|
+
np.float64,0x0,0x0,1
|
|
1359
|
+
np.float64,0xbfe10057e9e200b0,0xbfe2f13365e5b1c9,1
|
|
1360
|
+
np.float64,0xbfeb61a82376c350,0xbff46e665d3a60f5,1
|
|
1361
|
+
np.float64,0xbfe7f54aec6fea96,0xbfef0a0759f726dc,1
|
|
1362
|
+
np.float64,0xbfe4f6da3de9edb4,0xbfe9187d85bd1ab5,1
|
|
1363
|
+
np.float64,0xbfeb8be1b3f717c4,0xbff4be8efaab2e75,1
|
|
1364
|
+
np.float64,0x3fed40bc31fa8178,0x3ff8d5ec4a7f3e9b,1
|
|
1365
|
+
np.float64,0xbfe40f8711681f0e,0xbfe78fa5c62b191b,1
|
|
1366
|
+
np.float64,0x3fd1034d94a2069c,0x3fd16e78e9efb85b,1
|
|
1367
|
+
np.float64,0x3fc74db15b2e9b60,0x3fc790f26e894098,1
|
|
1368
|
+
np.float64,0x3fd912a88cb22550,0x3fda7d0ab3b21308,1
|
|
1369
|
+
np.float64,0x3fd8948a3bb12914,0x3fd9e8950c7874c8,1
|
|
1370
|
+
np.float64,0xbfa7ada5242f5b50,0xbfa7b1f8db50c104,1
|
|
1371
|
+
np.float64,0x3feeb2e1c27d65c4,0x3fff000b7d09c9b7,1
|
|
1372
|
+
np.float64,0x3fe9d46cbbf3a8da,0x3ff1e6f405265a6e,1
|
|
1373
|
+
np.float64,0xbfe2480b77e49017,0xbfe4c83b9b37bf0c,1
|
|
1374
|
+
np.float64,0x3fe950ea9372a1d6,0x3ff130e62468bf2c,1
|
|
1375
|
+
np.float64,0x3fefa7272a7f4e4e,0x4004d8c9bf31ab58,1
|
|
1376
|
+
np.float64,0xbfe7309209ee6124,0xbfed5b94acef917a,1
|
|
1377
|
+
np.float64,0x3fd05e8c64a0bd18,0x3fd0bdb11e0903c6,1
|
|
1378
|
+
np.float64,0x3fd9236043b246c0,0x3fda90ccbe4bab1e,1
|
|
1379
|
+
np.float64,0xbfdc3d6805b87ad0,0xbfde5266e17154c3,1
|
|
1380
|
+
np.float64,0x3fe5e6bad76bcd76,0x3feacbc306c63445,1
|
|
1381
|
+
np.float64,0x3ff0000000000000,0x7ff0000000000000,1
|
|
1382
|
+
np.float64,0xbfde3d7390bc7ae8,0xbfe06cd480bd0196,1
|
|
1383
|
+
np.float64,0xbfd3e2e3c0a7c5c8,0xbfd490edc0a45e26,1
|
|
1384
|
+
np.float64,0x3fe39871d76730e4,0x3fe6ce54d1719953,1
|
|
1385
|
+
np.float64,0x3fdff00ebcbfe01c,0x3fe1894b6655a6d0,1
|
|
1386
|
+
np.float64,0x3f91b7ad58236f40,0x3f91b8213bcb8b0b,1
|
|
1387
|
+
np.float64,0xbfd99f48f7b33e92,0xbfdb23d544f62591,1
|
|
1388
|
+
np.float64,0x3fae3512cc3c6a20,0x3fae3e10939fd7b5,1
|
|
1389
|
+
np.float64,0x3fcc4cf3db3899e8,0x3fccc698a15176d6,1
|
|
1390
|
+
np.float64,0xbfd0927e39a124fc,0xbfd0f5522e2bc030,1
|
|
1391
|
+
np.float64,0x3fcee859633dd0b0,0x3fcf87bdef7a1e82,1
|
|
1392
|
+
np.float64,0xbfe2a8b69565516d,0xbfe5593437b6659a,1
|
|
1393
|
+
np.float64,0x3fecf61e20f9ec3c,0x3ff7fda16b0209d4,1
|
|
1394
|
+
np.float64,0xbfbf37571e3e6eb0,0xbfbf5f4e1379a64c,1
|
|
1395
|
+
np.float64,0xbfd54e1b75aa9c36,0xbfd626223b68971a,1
|
|
1396
|
+
np.float64,0x3fe1035a56e206b4,0x3fe2f5651ca0f4b0,1
|
|
1397
|
+
np.float64,0x3fe4992989e93254,0x3fe876751afa70dc,1
|
|
1398
|
+
np.float64,0x3fc8c313d3318628,0x3fc913faf15d1562,1
|
|
1399
|
+
np.float64,0x3f99f6ba8833ed80,0x3f99f8274fb94828,1
|
|
1400
|
+
np.float64,0xbfd4a58af0a94b16,0xbfd56947c276e04f,1
|
|
1401
|
+
np.float64,0x3fc66f8c872cdf18,0x3fc6ab7a14372a73,1
|
|
1402
|
+
np.float64,0x3fc41eee0d283de0,0x3fc449ff1ff0e7a6,1
|
|
1403
|
+
np.float64,0x3fefd04d287fa09a,0x4007585010cfa9b0,1
|
|
1404
|
+
np.float64,0x3fce9e746f3d3ce8,0x3fcf39514bbe5070,1
|
|
1405
|
+
np.float64,0xbfe8056f72700adf,0xbfef2ee2c13e67ba,1
|
|
1406
|
+
np.float64,0x3fdd6b1ec0bad63c,0x3fdfccf2ba144fa8,1
|
|
1407
|
+
np.float64,0x3fd92ee432b25dc8,0x3fda9e6b96b2b142,1
|
|
1408
|
+
np.float64,0xbfc4d18f9529a320,0xbfc50150fb4de0cc,1
|
|
1409
|
+
np.float64,0xbfe09939a7613274,0xbfe262d703c317af,1
|
|
1410
|
+
np.float64,0xbfd130b132a26162,0xbfd19f5a00ae29c4,1
|
|
1411
|
+
np.float64,0x3fa06e21d420dc40,0x3fa06f93aba415fb,1
|
|
1412
|
+
np.float64,0x3fc5c48fbd2b8920,0x3fc5fb3bfad3bf55,1
|
|
1413
|
+
np.float64,0xbfdfa2bacbbf4576,0xbfe155f839825308,1
|
|
1414
|
+
np.float64,0x3fe3e1fa0f67c3f4,0x3fe745081dd4fd03,1
|
|
1415
|
+
np.float64,0x3fdae58289b5cb04,0x3fdcac1f6789130a,1
|
|
1416
|
+
np.float64,0xbf8ed3ba103da780,0xbf8ed452a9cc1442,1
|
|
1417
|
+
np.float64,0xbfec06b46f780d69,0xbff5b86f30d70908,1
|
|
1418
|
+
np.float64,0xbfe990c13b732182,0xbff187a90ae611f8,1
|
|
1419
|
+
np.float64,0xbfdd46c738ba8d8e,0xbfdf9eee0a113230,1
|
|
1420
|
+
np.float64,0x3fe08b83f3611708,0x3fe2501b1c77035c,1
|
|
1421
|
+
np.float64,0xbfd501b65baa036c,0xbfd5d05de3fceac8,1
|
|
1422
|
+
np.float64,0xbfcf4fa21f3e9f44,0xbfcff5829582c0b6,1
|
|
1423
|
+
np.float64,0xbfefbc0bfbff7818,0xc005eca1a2c56b38,1
|
|
1424
|
+
np.float64,0xbfe1ba6959e374d2,0xbfe3f8f88d128ce5,1
|
|
1425
|
+
np.float64,0xbfd4e74ee3a9ce9e,0xbfd5b2cabeb45e6c,1
|
|
1426
|
+
np.float64,0xbfe77c38eaeef872,0xbfedfd332d6f1c75,1
|
|
1427
|
+
np.float64,0x3fa9b5e4fc336bc0,0x3fa9bb6f6b80b4af,1
|
|
1428
|
+
np.float64,0xbfecba63917974c7,0xbff75e44df7f8e81,1
|
|
1429
|
+
np.float64,0x3fd6cf17b2ad9e30,0x3fd7db0b93b7f2b5,1
|