numpy 2.4.1__pp311-pypy311_pp73-macosx_14_0_arm64.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.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_multiarray_umath.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_rational_tests.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_simd.pypy311-pp73-darwin.so +0 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.pypy311-pp73-darwin.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.pyi +47 -0
- numpy/_core/_umath_tests.pypy311-pp73-darwin.so +0 -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 +377 -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 +1523 -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/distutils/__init__.py +64 -0
- numpy/distutils/__init__.pyi +4 -0
- numpy/distutils/__pycache__/conv_template.pypy311.pyc +0 -0
- numpy/distutils/_shell_utils.py +87 -0
- numpy/distutils/armccompiler.py +26 -0
- numpy/distutils/ccompiler.py +826 -0
- numpy/distutils/ccompiler_opt.py +2668 -0
- numpy/distutils/checks/cpu_asimd.c +27 -0
- numpy/distutils/checks/cpu_asimddp.c +16 -0
- numpy/distutils/checks/cpu_asimdfhm.c +19 -0
- numpy/distutils/checks/cpu_asimdhp.c +15 -0
- numpy/distutils/checks/cpu_avx.c +20 -0
- numpy/distutils/checks/cpu_avx2.c +20 -0
- numpy/distutils/checks/cpu_avx512_clx.c +22 -0
- numpy/distutils/checks/cpu_avx512_cnl.c +24 -0
- numpy/distutils/checks/cpu_avx512_icl.c +26 -0
- numpy/distutils/checks/cpu_avx512_knl.c +25 -0
- numpy/distutils/checks/cpu_avx512_knm.c +30 -0
- numpy/distutils/checks/cpu_avx512_skx.c +26 -0
- numpy/distutils/checks/cpu_avx512_spr.c +26 -0
- numpy/distutils/checks/cpu_avx512cd.c +20 -0
- numpy/distutils/checks/cpu_avx512f.c +20 -0
- numpy/distutils/checks/cpu_f16c.c +22 -0
- numpy/distutils/checks/cpu_fma3.c +22 -0
- numpy/distutils/checks/cpu_fma4.c +13 -0
- numpy/distutils/checks/cpu_lsx.c +11 -0
- numpy/distutils/checks/cpu_neon.c +19 -0
- numpy/distutils/checks/cpu_neon_fp16.c +11 -0
- numpy/distutils/checks/cpu_neon_vfpv4.c +21 -0
- numpy/distutils/checks/cpu_popcnt.c +32 -0
- numpy/distutils/checks/cpu_rvv.c +13 -0
- numpy/distutils/checks/cpu_sse.c +20 -0
- numpy/distutils/checks/cpu_sse2.c +20 -0
- numpy/distutils/checks/cpu_sse3.c +20 -0
- numpy/distutils/checks/cpu_sse41.c +20 -0
- numpy/distutils/checks/cpu_sse42.c +20 -0
- numpy/distutils/checks/cpu_ssse3.c +20 -0
- numpy/distutils/checks/cpu_sve.c +14 -0
- numpy/distutils/checks/cpu_vsx.c +21 -0
- numpy/distutils/checks/cpu_vsx2.c +13 -0
- numpy/distutils/checks/cpu_vsx3.c +13 -0
- numpy/distutils/checks/cpu_vsx4.c +14 -0
- numpy/distutils/checks/cpu_vx.c +16 -0
- numpy/distutils/checks/cpu_vxe.c +25 -0
- numpy/distutils/checks/cpu_vxe2.c +21 -0
- numpy/distutils/checks/cpu_xop.c +12 -0
- numpy/distutils/checks/extra_avx512bw_mask.c +18 -0
- numpy/distutils/checks/extra_avx512dq_mask.c +16 -0
- numpy/distutils/checks/extra_avx512f_reduce.c +41 -0
- numpy/distutils/checks/extra_vsx3_half_double.c +12 -0
- numpy/distutils/checks/extra_vsx4_mma.c +21 -0
- numpy/distutils/checks/extra_vsx_asm.c +36 -0
- numpy/distutils/checks/test_flags.c +1 -0
- numpy/distutils/command/__init__.py +41 -0
- numpy/distutils/command/autodist.py +148 -0
- numpy/distutils/command/bdist_rpm.py +22 -0
- numpy/distutils/command/build.py +62 -0
- numpy/distutils/command/build_clib.py +469 -0
- numpy/distutils/command/build_ext.py +752 -0
- numpy/distutils/command/build_py.py +31 -0
- numpy/distutils/command/build_scripts.py +49 -0
- numpy/distutils/command/build_src.py +773 -0
- numpy/distutils/command/config.py +516 -0
- numpy/distutils/command/config_compiler.py +126 -0
- numpy/distutils/command/develop.py +15 -0
- numpy/distutils/command/egg_info.py +25 -0
- numpy/distutils/command/install.py +79 -0
- numpy/distutils/command/install_clib.py +40 -0
- numpy/distutils/command/install_data.py +24 -0
- numpy/distutils/command/install_headers.py +25 -0
- numpy/distutils/command/sdist.py +27 -0
- numpy/distutils/conv_template.py +329 -0
- numpy/distutils/core.py +215 -0
- numpy/distutils/cpuinfo.py +683 -0
- numpy/distutils/exec_command.py +315 -0
- numpy/distutils/extension.py +101 -0
- numpy/distutils/fcompiler/__init__.py +1035 -0
- numpy/distutils/fcompiler/absoft.py +158 -0
- numpy/distutils/fcompiler/arm.py +71 -0
- numpy/distutils/fcompiler/compaq.py +120 -0
- numpy/distutils/fcompiler/environment.py +88 -0
- numpy/distutils/fcompiler/fujitsu.py +46 -0
- numpy/distutils/fcompiler/g95.py +42 -0
- numpy/distutils/fcompiler/gnu.py +555 -0
- numpy/distutils/fcompiler/hpux.py +41 -0
- numpy/distutils/fcompiler/ibm.py +97 -0
- numpy/distutils/fcompiler/intel.py +211 -0
- numpy/distutils/fcompiler/lahey.py +45 -0
- numpy/distutils/fcompiler/mips.py +54 -0
- numpy/distutils/fcompiler/nag.py +87 -0
- numpy/distutils/fcompiler/none.py +28 -0
- numpy/distutils/fcompiler/nv.py +53 -0
- numpy/distutils/fcompiler/pathf95.py +33 -0
- numpy/distutils/fcompiler/pg.py +128 -0
- numpy/distutils/fcompiler/sun.py +51 -0
- numpy/distutils/fcompiler/vast.py +52 -0
- numpy/distutils/from_template.py +261 -0
- numpy/distutils/fujitsuccompiler.py +28 -0
- numpy/distutils/intelccompiler.py +106 -0
- numpy/distutils/lib2def.py +116 -0
- numpy/distutils/line_endings.py +77 -0
- numpy/distutils/log.py +111 -0
- numpy/distutils/mingw/gfortran_vs2003_hack.c +6 -0
- numpy/distutils/mingw32ccompiler.py +620 -0
- numpy/distutils/misc_util.py +2484 -0
- numpy/distutils/msvc9compiler.py +63 -0
- numpy/distutils/msvccompiler.py +76 -0
- numpy/distutils/npy_pkg_config.py +441 -0
- numpy/distutils/numpy_distribution.py +17 -0
- numpy/distutils/pathccompiler.py +21 -0
- numpy/distutils/system_info.py +3267 -0
- numpy/distutils/tests/__init__.py +0 -0
- numpy/distutils/tests/test_build_ext.py +74 -0
- numpy/distutils/tests/test_ccompiler_opt.py +808 -0
- numpy/distutils/tests/test_ccompiler_opt_conf.py +176 -0
- numpy/distutils/tests/test_exec_command.py +217 -0
- numpy/distutils/tests/test_fcompiler.py +43 -0
- numpy/distutils/tests/test_fcompiler_gnu.py +55 -0
- numpy/distutils/tests/test_fcompiler_intel.py +30 -0
- numpy/distutils/tests/test_fcompiler_nagfor.py +22 -0
- numpy/distutils/tests/test_from_template.py +44 -0
- numpy/distutils/tests/test_log.py +34 -0
- numpy/distutils/tests/test_mingw32ccompiler.py +47 -0
- numpy/distutils/tests/test_misc_util.py +88 -0
- numpy/distutils/tests/test_npy_pkg_config.py +84 -0
- numpy/distutils/tests/test_shell_utils.py +79 -0
- numpy/distutils/tests/test_system_info.py +334 -0
- numpy/distutils/tests/utilities.py +90 -0
- numpy/distutils/unixccompiler.py +141 -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.pypy311-pp73-darwin.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 +5760 -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 +2006 -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 +4750 -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.pyi +60 -0
- numpy/linalg/_umath_linalg.pypy311-pp73-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/lapack_lite.pypy311-pp73-darwin.so +0 -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.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_bounded_integers.pypy311-pp73-darwin.so +0 -0
- numpy/random/_common.pxd +110 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_common.pypy311-pp73-darwin.so +0 -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.pyi +862 -0
- numpy/random/_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_mt19937.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_pcg64.pypy311-pp73-darwin.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_philox.pypy311-pp73-darwin.so +0 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/_sfc64.pypy311-pp73-darwin.so +0 -0
- numpy/random/bit_generator.pxd +40 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/bit_generator.pypy311-pp73-darwin.so +0 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/mtrand.pypy311-pp73-darwin.so +0 -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 +807 -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.1.dist-info/METADATA +139 -0
- numpy-2.4.1.dist-info/RECORD +1039 -0
- numpy-2.4.1.dist-info/WHEEL +6 -0
- numpy-2.4.1.dist-info/entry_points.txt +13 -0
- numpy-2.4.1.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0xfd97ece0,0xc11186e9,4
|
|
3
|
+
np.float32,0x8013bb34,0x8013bb34,4
|
|
4
|
+
np.float32,0x316389,0x316389,4
|
|
5
|
+
np.float32,0x7f7fffff,0xbf1c9eca,4
|
|
6
|
+
np.float32,0x3f7674bb,0x3fb7e450,4
|
|
7
|
+
np.float32,0x80800000,0x80800000,4
|
|
8
|
+
np.float32,0x7f5995e8,0xbf94106c,4
|
|
9
|
+
np.float32,0x74527,0x74527,4
|
|
10
|
+
np.float32,0x7f08caea,0xbeceddb6,4
|
|
11
|
+
np.float32,0x2d49b2,0x2d49b2,4
|
|
12
|
+
np.float32,0x3f74e5e4,0x3fb58695,4
|
|
13
|
+
np.float32,0x3f3fcd51,0x3f6e1e81,4
|
|
14
|
+
np.float32,0xbf4f3608,0xbf864d3d,4
|
|
15
|
+
np.float32,0xbed974a0,0xbee78c70,4
|
|
16
|
+
np.float32,0xff5f483c,0x3ecf3cb2,4
|
|
17
|
+
np.float32,0x7f4532f4,0xc0b96f7b,4
|
|
18
|
+
np.float32,0x3f0a4f7c,0x3f198cc0,4
|
|
19
|
+
np.float32,0x210193,0x210193,4
|
|
20
|
+
np.float32,0xfeebad7a,0xbf92eba8,4
|
|
21
|
+
np.float32,0xfed29f74,0xc134cab6,4
|
|
22
|
+
np.float32,0x803433a0,0x803433a0,4
|
|
23
|
+
np.float32,0x64eb46,0x64eb46,4
|
|
24
|
+
np.float32,0xbf54ef22,0xbf8c757b,4
|
|
25
|
+
np.float32,0x3f3d5fdd,0x3f69a17b,4
|
|
26
|
+
np.float32,0x80000001,0x80000001,4
|
|
27
|
+
np.float32,0x800a837a,0x800a837a,4
|
|
28
|
+
np.float32,0x6ff0be,0x6ff0be,4
|
|
29
|
+
np.float32,0xfe8f1186,0x3f518820,4
|
|
30
|
+
np.float32,0x804963e5,0x804963e5,4
|
|
31
|
+
np.float32,0xfebaa59a,0x3fa1dbb0,4
|
|
32
|
+
np.float32,0x637970,0x637970,4
|
|
33
|
+
np.float32,0x3e722a6b,0x3e76c89a,4
|
|
34
|
+
np.float32,0xff2b0478,0xbddccb5f,4
|
|
35
|
+
np.float32,0xbf7bd85b,0xbfc06821,4
|
|
36
|
+
np.float32,0x3ec33600,0x3ecd4126,4
|
|
37
|
+
np.float32,0x3e0a43b9,0x3e0b1c69,4
|
|
38
|
+
np.float32,0x7f7511b6,0xbe427083,4
|
|
39
|
+
np.float32,0x3f28c114,0x3f465a73,4
|
|
40
|
+
np.float32,0x3f179e1c,0x3f2c3e7c,4
|
|
41
|
+
np.float32,0x7b2963,0x7b2963,4
|
|
42
|
+
np.float32,0x3f423d06,0x3f72b442,4
|
|
43
|
+
np.float32,0x3f5a24c6,0x3f925508,4
|
|
44
|
+
np.float32,0xff18c834,0xbf79b5c8,4
|
|
45
|
+
np.float32,0x3f401ece,0x3f6eb6ac,4
|
|
46
|
+
np.float32,0x7b8a3013,0xbffab968,4
|
|
47
|
+
np.float32,0x80091ff0,0x80091ff0,4
|
|
48
|
+
np.float32,0x3f389c51,0x3f610b47,4
|
|
49
|
+
np.float32,0x5ea174,0x5ea174,4
|
|
50
|
+
np.float32,0x807a9eb2,0x807a9eb2,4
|
|
51
|
+
np.float32,0x806ce61e,0x806ce61e,4
|
|
52
|
+
np.float32,0xbe956acc,0xbe99cefc,4
|
|
53
|
+
np.float32,0x7e60e247,0xbf5e64a5,4
|
|
54
|
+
np.float32,0x7f398e24,0x404d12ed,4
|
|
55
|
+
np.float32,0x3d9049f8,0x3d908735,4
|
|
56
|
+
np.float32,0x7db17ffc,0xbf5b3d87,4
|
|
57
|
+
np.float32,0xff453f78,0xc0239c9f,4
|
|
58
|
+
np.float32,0x3f024aac,0x3f0ed802,4
|
|
59
|
+
np.float32,0xbe781c30,0xbe7d1508,4
|
|
60
|
+
np.float32,0x3f77962a,0x3fb9a28e,4
|
|
61
|
+
np.float32,0xff7fffff,0x3f1c9eca,4
|
|
62
|
+
np.float32,0x3f7152e3,0x3fb03f9d,4
|
|
63
|
+
np.float32,0xff7cb167,0x3f9ce831,4
|
|
64
|
+
np.float32,0x3e763e30,0x3e7b1a10,4
|
|
65
|
+
np.float32,0xbf126527,0xbf24c253,4
|
|
66
|
+
np.float32,0x803f6660,0x803f6660,4
|
|
67
|
+
np.float32,0xbf79de38,0xbfbd38b1,4
|
|
68
|
+
np.float32,0x8046c2f0,0x8046c2f0,4
|
|
69
|
+
np.float32,0x6dc74e,0x6dc74e,4
|
|
70
|
+
np.float32,0xbec9c45e,0xbed4e768,4
|
|
71
|
+
np.float32,0x3f0eedb6,0x3f1fe610,4
|
|
72
|
+
np.float32,0x7e031999,0xbcc13026,4
|
|
73
|
+
np.float32,0x7efc2fd7,0x41e4b284,4
|
|
74
|
+
np.float32,0xbeab7454,0xbeb22a1b,4
|
|
75
|
+
np.float32,0x805ee67b,0x805ee67b,4
|
|
76
|
+
np.float32,0x7f76e58e,0xc2436659,4
|
|
77
|
+
np.float32,0xbe62b024,0xbe667718,4
|
|
78
|
+
np.float32,0x3eea0808,0x3efbd182,4
|
|
79
|
+
np.float32,0xbf7fd00c,0xbfc70719,4
|
|
80
|
+
np.float32,0x7f27b640,0xbf0d97e0,4
|
|
81
|
+
np.float32,0x3f1b58a4,0x3f31b6f4,4
|
|
82
|
+
np.float32,0x252a9f,0x252a9f,4
|
|
83
|
+
np.float32,0x7f65f95a,0xbead5de3,4
|
|
84
|
+
np.float32,0xfc6ea780,0x42d15801,4
|
|
85
|
+
np.float32,0x7eac4c52,0xc0682424,4
|
|
86
|
+
np.float32,0xbe8a3f5a,0xbe8db54d,4
|
|
87
|
+
np.float32,0xbf1644e2,0xbf2a4abd,4
|
|
88
|
+
np.float32,0x3fc96a,0x3fc96a,4
|
|
89
|
+
np.float32,0x7f38c0e4,0x3cc04af8,4
|
|
90
|
+
np.float32,0x3f623d75,0x3f9c065d,4
|
|
91
|
+
np.float32,0x3ee6a51a,0x3ef7a058,4
|
|
92
|
+
np.float32,0x3dd11020,0x3dd1cacf,4
|
|
93
|
+
np.float32,0xb6918,0xb6918,4
|
|
94
|
+
np.float32,0xfdd7a540,0x3f22f081,4
|
|
95
|
+
np.float32,0x80798563,0x80798563,4
|
|
96
|
+
np.float32,0x3e9a8b7a,0x3e9f6a7e,4
|
|
97
|
+
np.float32,0xbea515d4,0xbeab0df5,4
|
|
98
|
+
np.float32,0xbea9b9f4,0xbeb03abe,4
|
|
99
|
+
np.float32,0xbf11a5fa,0xbf23b478,4
|
|
100
|
+
np.float32,0xfd6cadf0,0xbfa2a878,4
|
|
101
|
+
np.float32,0xbf6edd07,0xbfacbb78,4
|
|
102
|
+
np.float32,0xff5c5328,0x3e2d1552,4
|
|
103
|
+
np.float32,0xbea2f788,0xbea8b3f5,4
|
|
104
|
+
np.float32,0x802efaeb,0x802efaeb,4
|
|
105
|
+
np.float32,0xff1c85e5,0x41f8560e,4
|
|
106
|
+
np.float32,0x3f53b123,0x3f8b18e1,4
|
|
107
|
+
np.float32,0xff798c4a,0x4092e66f,4
|
|
108
|
+
np.float32,0x7f2e6fe7,0xbdcbd58f,4
|
|
109
|
+
np.float32,0xfe8a8196,0x3fd7fc56,4
|
|
110
|
+
np.float32,0x5e7ad4,0x5e7ad4,4
|
|
111
|
+
np.float32,0xbf23a02d,0xbf3e4533,4
|
|
112
|
+
np.float32,0x3f31c55c,0x3f5531bf,4
|
|
113
|
+
np.float32,0x80331be3,0x80331be3,4
|
|
114
|
+
np.float32,0x8056960a,0x8056960a,4
|
|
115
|
+
np.float32,0xff1c06ae,0xbfd26992,4
|
|
116
|
+
np.float32,0xbe0cc4b0,0xbe0da96c,4
|
|
117
|
+
np.float32,0x7e925ad5,0xbf8dba54,4
|
|
118
|
+
np.float32,0x2c8cec,0x2c8cec,4
|
|
119
|
+
np.float32,0x8011951e,0x8011951e,4
|
|
120
|
+
np.float32,0x3f2caf84,0x3f4cb89f,4
|
|
121
|
+
np.float32,0xbd32c220,0xbd32df33,4
|
|
122
|
+
np.float32,0xbec358d6,0xbecd6996,4
|
|
123
|
+
np.float32,0x3f6e4930,0x3fabeb92,4
|
|
124
|
+
np.float32,0xbf6a3afd,0xbfa65a3a,4
|
|
125
|
+
np.float32,0x80067764,0x80067764,4
|
|
126
|
+
np.float32,0x3d8df1,0x3d8df1,4
|
|
127
|
+
np.float32,0x7ee51cf2,0x409e4061,4
|
|
128
|
+
np.float32,0x435f5d,0x435f5d,4
|
|
129
|
+
np.float32,0xbf5b17f7,0xbf936ebe,4
|
|
130
|
+
np.float32,0x3ecaacb5,0x3ed5f81f,4
|
|
131
|
+
np.float32,0x807b0aa5,0x807b0aa5,4
|
|
132
|
+
np.float32,0x52b40b,0x52b40b,4
|
|
133
|
+
np.float32,0x146a97,0x146a97,4
|
|
134
|
+
np.float32,0x7f42b952,0xbfdcb413,4
|
|
135
|
+
np.float32,0xbf1a1af2,0xbf2fe1bb,4
|
|
136
|
+
np.float32,0x3f312034,0x3f541aa2,4
|
|
137
|
+
np.float32,0x3f281d60,0x3f4554f9,4
|
|
138
|
+
np.float32,0x50e451,0x50e451,4
|
|
139
|
+
np.float32,0xbe45838c,0xbe480016,4
|
|
140
|
+
np.float32,0xff7d0aeb,0x3eb0746e,4
|
|
141
|
+
np.float32,0x7f32a489,0xbf96af6d,4
|
|
142
|
+
np.float32,0xbf1b4e27,0xbf31a769,4
|
|
143
|
+
np.float32,0x3f242936,0x3f3f1a44,4
|
|
144
|
+
np.float32,0xbf7482ff,0xbfb4f201,4
|
|
145
|
+
np.float32,0x4bda38,0x4bda38,4
|
|
146
|
+
np.float32,0xbf022208,0xbf0ea2bb,4
|
|
147
|
+
np.float32,0x7d08ca95,0xbe904602,4
|
|
148
|
+
np.float32,0x7ed2f356,0xc02b55ad,4
|
|
149
|
+
np.float32,0xbf131204,0xbf25b734,4
|
|
150
|
+
np.float32,0xff3464b4,0x3fb23706,4
|
|
151
|
+
np.float32,0x5a97cf,0x5a97cf,4
|
|
152
|
+
np.float32,0xbe52db70,0xbe55e388,4
|
|
153
|
+
np.float32,0x3f52934f,0x3f89e2aa,4
|
|
154
|
+
np.float32,0xfeea866a,0x40a2b33f,4
|
|
155
|
+
np.float32,0x80333925,0x80333925,4
|
|
156
|
+
np.float32,0xfef5d13e,0xc00139ec,4
|
|
157
|
+
np.float32,0x3f4750ab,0x3f7c87ad,4
|
|
158
|
+
np.float32,0x3e41bfdd,0x3e44185a,4
|
|
159
|
+
np.float32,0xbf5b0572,0xbf935935,4
|
|
160
|
+
np.float32,0xbe93c9da,0xbe9808d8,4
|
|
161
|
+
np.float32,0x7f501f33,0xc0f9973c,4
|
|
162
|
+
np.float32,0x800af035,0x800af035,4
|
|
163
|
+
np.float32,0x3f29faf8,0x3f4852a8,4
|
|
164
|
+
np.float32,0xbe1e4c20,0xbe1f920c,4
|
|
165
|
+
np.float32,0xbf7e8616,0xbfc4d79d,4
|
|
166
|
+
np.float32,0x43ffbf,0x43ffbf,4
|
|
167
|
+
np.float32,0x7f28e8a9,0xbfa1ac24,4
|
|
168
|
+
np.float32,0xbf1f9f92,0xbf3820bc,4
|
|
169
|
+
np.float32,0x3f07e004,0x3f1641c4,4
|
|
170
|
+
np.float32,0x3ef7ea7f,0x3f06a64a,4
|
|
171
|
+
np.float32,0x7e013101,0x3f6080e6,4
|
|
172
|
+
np.float32,0x7f122a4f,0xbf0a796f,4
|
|
173
|
+
np.float32,0xfe096960,0x3ed7273a,4
|
|
174
|
+
np.float32,0x3f06abf1,0x3f14a4b2,4
|
|
175
|
+
np.float32,0x3e50ded3,0x3e53d0f1,4
|
|
176
|
+
np.float32,0x7f50b346,0x3eabb536,4
|
|
177
|
+
np.float32,0xff5adb0f,0xbd441972,4
|
|
178
|
+
np.float32,0xbecefe46,0xbedb0f66,4
|
|
179
|
+
np.float32,0x7da70bd4,0xbec66273,4
|
|
180
|
+
np.float32,0x169811,0x169811,4
|
|
181
|
+
np.float32,0xbee4dfee,0xbef5721a,4
|
|
182
|
+
np.float32,0x3efbeae3,0x3f0936e6,4
|
|
183
|
+
np.float32,0x8031bd61,0x8031bd61,4
|
|
184
|
+
np.float32,0x8048e443,0x8048e443,4
|
|
185
|
+
np.float32,0xff209aa6,0xbeb364cb,4
|
|
186
|
+
np.float32,0xff477499,0x3c1b0041,4
|
|
187
|
+
np.float32,0x803fe929,0x803fe929,4
|
|
188
|
+
np.float32,0x3f70158b,0x3fae7725,4
|
|
189
|
+
np.float32,0x7f795723,0x3e8e850a,4
|
|
190
|
+
np.float32,0x3cba99,0x3cba99,4
|
|
191
|
+
np.float32,0x80588d2a,0x80588d2a,4
|
|
192
|
+
np.float32,0x805d1f05,0x805d1f05,4
|
|
193
|
+
np.float32,0xff4ac09a,0xbefe614d,4
|
|
194
|
+
np.float32,0x804af084,0x804af084,4
|
|
195
|
+
np.float32,0x7c64ae63,0xc1a8b563,4
|
|
196
|
+
np.float32,0x8078d793,0x8078d793,4
|
|
197
|
+
np.float32,0x7f3e2436,0xbf8bf9d3,4
|
|
198
|
+
np.float32,0x7ccec1,0x7ccec1,4
|
|
199
|
+
np.float32,0xbf6462c7,0xbf9eb830,4
|
|
200
|
+
np.float32,0x3f1002ca,0x3f216843,4
|
|
201
|
+
np.float32,0xfe878ca6,0x409e73a5,4
|
|
202
|
+
np.float32,0x3bd841d9,0x3bd842a7,4
|
|
203
|
+
np.float32,0x7d406f41,0xbd9dcfa3,4
|
|
204
|
+
np.float32,0x7c6d6,0x7c6d6,4
|
|
205
|
+
np.float32,0x3f4ef360,0x3f86074b,4
|
|
206
|
+
np.float32,0x805f534a,0x805f534a,4
|
|
207
|
+
np.float32,0x1,0x1,4
|
|
208
|
+
np.float32,0x3f739ee2,0x3fb39db2,4
|
|
209
|
+
np.float32,0x3d0c2352,0x3d0c3153,4
|
|
210
|
+
np.float32,0xfe8a4f2c,0x3edd8add,4
|
|
211
|
+
np.float32,0x3e52eaa0,0x3e55f362,4
|
|
212
|
+
np.float32,0x7bde9758,0xbf5ba5cf,4
|
|
213
|
+
np.float32,0xff422654,0xbf41e487,4
|
|
214
|
+
np.float32,0x385e5b,0x385e5b,4
|
|
215
|
+
np.float32,0x5751dd,0x5751dd,4
|
|
216
|
+
np.float32,0xff6c671c,0xc03e2d6d,4
|
|
217
|
+
np.float32,0x1458be,0x1458be,4
|
|
218
|
+
np.float32,0x80153d4d,0x80153d4d,4
|
|
219
|
+
np.float32,0x7efd2adb,0x3e25458f,4
|
|
220
|
+
np.float32,0xbe161880,0xbe172e12,4
|
|
221
|
+
np.float32,0x7ecea1aa,0x40a66d79,4
|
|
222
|
+
np.float32,0xbf5b02a2,0xbf9355f0,4
|
|
223
|
+
np.float32,0x15d9ab,0x15d9ab,4
|
|
224
|
+
np.float32,0x2dc7c7,0x2dc7c7,4
|
|
225
|
+
np.float32,0xfebbf81a,0x4193f6e6,4
|
|
226
|
+
np.float32,0xfe8e3594,0xc00a6695,4
|
|
227
|
+
np.float32,0x185aa8,0x185aa8,4
|
|
228
|
+
np.float32,0x3daea156,0x3daf0e00,4
|
|
229
|
+
np.float32,0x3e071688,0x3e07e08e,4
|
|
230
|
+
np.float32,0x802db9e6,0x802db9e6,4
|
|
231
|
+
np.float32,0x7f7be2c4,0x3f1363dd,4
|
|
232
|
+
np.float32,0x7eba3f5e,0xc13eb497,4
|
|
233
|
+
np.float32,0x3de04a00,0x3de130a9,4
|
|
234
|
+
np.float32,0xbf1022bc,0xbf2194eb,4
|
|
235
|
+
np.float32,0xbf5b547e,0xbf93b53b,4
|
|
236
|
+
np.float32,0x3e867bd6,0x3e89aa10,4
|
|
237
|
+
np.float32,0xbea5eb5c,0xbeabfb73,4
|
|
238
|
+
np.float32,0x7f1efae9,0x3ffca038,4
|
|
239
|
+
np.float32,0xff5d0344,0xbe55dbbb,4
|
|
240
|
+
np.float32,0x805167e7,0x805167e7,4
|
|
241
|
+
np.float32,0xbdb3a020,0xbdb41667,4
|
|
242
|
+
np.float32,0xbedea6b4,0xbeedd5fd,4
|
|
243
|
+
np.float32,0x8053b45c,0x8053b45c,4
|
|
244
|
+
np.float32,0x7ed370e9,0x3d90eba5,4
|
|
245
|
+
np.float32,0xbefcd7da,0xbf09cf91,4
|
|
246
|
+
np.float32,0x78b9ac,0x78b9ac,4
|
|
247
|
+
np.float32,0xbf2f6dc0,0xbf5141ef,4
|
|
248
|
+
np.float32,0x802d3a7b,0x802d3a7b,4
|
|
249
|
+
np.float32,0xfd45d120,0x3fec31cc,4
|
|
250
|
+
np.float32,0xbf7e7020,0xbfc4b2af,4
|
|
251
|
+
np.float32,0xf04da,0xf04da,4
|
|
252
|
+
np.float32,0xbe9819d4,0xbe9cbd35,4
|
|
253
|
+
np.float32,0x8075ab35,0x8075ab35,4
|
|
254
|
+
np.float32,0xbf052fdc,0xbf12aa2c,4
|
|
255
|
+
np.float32,0x3f1530d0,0x3f28bd9f,4
|
|
256
|
+
np.float32,0x80791881,0x80791881,4
|
|
257
|
+
np.float32,0x67f309,0x67f309,4
|
|
258
|
+
np.float32,0x3f12f16a,0x3f2588f5,4
|
|
259
|
+
np.float32,0x3ecdac47,0x3ed97ff8,4
|
|
260
|
+
np.float32,0xbf297fb7,0xbf478c39,4
|
|
261
|
+
np.float32,0x8069fa80,0x8069fa80,4
|
|
262
|
+
np.float32,0x807f940e,0x807f940e,4
|
|
263
|
+
np.float32,0xbf648dc8,0xbf9eeecb,4
|
|
264
|
+
np.float32,0x3de873b0,0x3de9748d,4
|
|
265
|
+
np.float32,0x3f1aa645,0x3f30af1f,4
|
|
266
|
+
np.float32,0xff227a62,0x3d8283cc,4
|
|
267
|
+
np.float32,0xbf37187d,0xbf5e5f4c,4
|
|
268
|
+
np.float32,0x803b1b1f,0x803b1b1f,4
|
|
269
|
+
np.float32,0x3f58142a,0x3f8ff8da,4
|
|
270
|
+
np.float32,0x8004339e,0x8004339e,4
|
|
271
|
+
np.float32,0xbf0f5654,0xbf2077a4,4
|
|
272
|
+
np.float32,0x3f17e509,0x3f2ca598,4
|
|
273
|
+
np.float32,0x3f800000,0x3fc75923,4
|
|
274
|
+
np.float32,0xfdf79980,0x42f13047,4
|
|
275
|
+
np.float32,0x7f111381,0x3f13c4c9,4
|
|
276
|
+
np.float32,0xbea40c70,0xbea9e724,4
|
|
277
|
+
np.float32,0x110520,0x110520,4
|
|
278
|
+
np.float32,0x60490d,0x60490d,4
|
|
279
|
+
np.float32,0x3f6703ec,0x3fa21951,4
|
|
280
|
+
np.float32,0xbf098256,0xbf187652,4
|
|
281
|
+
np.float32,0x658951,0x658951,4
|
|
282
|
+
np.float32,0x3f53bf16,0x3f8b2818,4
|
|
283
|
+
np.float32,0xff451811,0xc0026068,4
|
|
284
|
+
np.float32,0x80777ee0,0x80777ee0,4
|
|
285
|
+
np.float32,0x3e4fcc19,0x3e52b286,4
|
|
286
|
+
np.float32,0x7f387ee0,0x3ce93eb6,4
|
|
287
|
+
np.float32,0xff51181f,0xbfca3ee4,4
|
|
288
|
+
np.float32,0xbf5655ae,0xbf8e0304,4
|
|
289
|
+
np.float32,0xff2f1dcd,0x40025471,4
|
|
290
|
+
np.float32,0x7f6e58e5,0xbe9930d5,4
|
|
291
|
+
np.float32,0x7adf11,0x7adf11,4
|
|
292
|
+
np.float32,0xbe9a2bc2,0xbe9f0185,4
|
|
293
|
+
np.float32,0x8065d3a0,0x8065d3a0,4
|
|
294
|
+
np.float32,0x3ed6e826,0x3ee47c45,4
|
|
295
|
+
np.float32,0x80598ea0,0x80598ea0,4
|
|
296
|
+
np.float32,0x7f10b90a,0x40437bd0,4
|
|
297
|
+
np.float32,0x27b447,0x27b447,4
|
|
298
|
+
np.float32,0x7ecd861c,0x3fce250f,4
|
|
299
|
+
np.float32,0x0,0x0,4
|
|
300
|
+
np.float32,0xbeba82d6,0xbec3394c,4
|
|
301
|
+
np.float32,0xbf4958b0,0xbf8048ea,4
|
|
302
|
+
np.float32,0x7c643e,0x7c643e,4
|
|
303
|
+
np.float32,0x580770,0x580770,4
|
|
304
|
+
np.float32,0x805bf54a,0x805bf54a,4
|
|
305
|
+
np.float32,0x7f1f3cee,0xbe1a54d6,4
|
|
306
|
+
np.float32,0xfefefdea,0x3fa84576,4
|
|
307
|
+
np.float32,0x7f007b7a,0x3e8a6d25,4
|
|
308
|
+
np.float32,0xbf177959,0xbf2c0919,4
|
|
309
|
+
np.float32,0xbf30fda0,0xbf53e058,4
|
|
310
|
+
np.float32,0x3f0576be,0x3f130861,4
|
|
311
|
+
np.float32,0x3f49380e,0x3f80283a,4
|
|
312
|
+
np.float32,0xebc56,0xebc56,4
|
|
313
|
+
np.float32,0x654e3b,0x654e3b,4
|
|
314
|
+
np.float32,0x14a4d8,0x14a4d8,4
|
|
315
|
+
np.float32,0xff69b3cb,0xbf822a88,4
|
|
316
|
+
np.float32,0xbe9b6c1c,0xbea06109,4
|
|
317
|
+
np.float32,0xbefddd7e,0xbf0a787b,4
|
|
318
|
+
np.float32,0x4c4ebb,0x4c4ebb,4
|
|
319
|
+
np.float32,0x7d0a74,0x7d0a74,4
|
|
320
|
+
np.float32,0xbebb5f80,0xbec43635,4
|
|
321
|
+
np.float32,0x7ee79723,0xc1c7f3f3,4
|
|
322
|
+
np.float32,0x7f2be4c7,0xbfa6c693,4
|
|
323
|
+
np.float32,0x805bc7d5,0x805bc7d5,4
|
|
324
|
+
np.float32,0x8042f12c,0x8042f12c,4
|
|
325
|
+
np.float32,0x3ef91be8,0x3f07697b,4
|
|
326
|
+
np.float32,0x3cf37ac0,0x3cf38d1c,4
|
|
327
|
+
np.float32,0x800000,0x800000,4
|
|
328
|
+
np.float32,0xbe1ebf4c,0xbe200806,4
|
|
329
|
+
np.float32,0x7f380862,0xbeb512e8,4
|
|
330
|
+
np.float32,0xbe320064,0xbe33d0fc,4
|
|
331
|
+
np.float32,0xff300b0c,0xbfadb805,4
|
|
332
|
+
np.float32,0x308a06,0x308a06,4
|
|
333
|
+
np.float32,0xbf084f6e,0xbf16d7b6,4
|
|
334
|
+
np.float32,0xff47cab6,0x3f892b65,4
|
|
335
|
+
np.float32,0xbed99f4a,0xbee7bfd5,4
|
|
336
|
+
np.float32,0xff7d74c0,0x3ee88c9a,4
|
|
337
|
+
np.float32,0x3c3d23,0x3c3d23,4
|
|
338
|
+
np.float32,0x8074bde8,0x8074bde8,4
|
|
339
|
+
np.float32,0x80042164,0x80042164,4
|
|
340
|
+
np.float32,0x3e97c92a,0x3e9c6500,4
|
|
341
|
+
np.float32,0x3b80e0,0x3b80e0,4
|
|
342
|
+
np.float32,0xbf16646a,0xbf2a783d,4
|
|
343
|
+
np.float32,0x7f3b4cb1,0xc01339be,4
|
|
344
|
+
np.float32,0xbf31f36e,0xbf557fd0,4
|
|
345
|
+
np.float32,0x7f540618,0xbe5f6fc1,4
|
|
346
|
+
np.float32,0x7eee47d0,0x40a27e94,4
|
|
347
|
+
np.float32,0x7f12f389,0xbebed654,4
|
|
348
|
+
np.float32,0x56cff5,0x56cff5,4
|
|
349
|
+
np.float32,0x8056032b,0x8056032b,4
|
|
350
|
+
np.float32,0x3ed34e40,0x3ee02e38,4
|
|
351
|
+
np.float32,0x7d51a908,0xbf19a90e,4
|
|
352
|
+
np.float32,0x80000000,0x80000000,4
|
|
353
|
+
np.float32,0xfdf73fd0,0xbf0f8cad,4
|
|
354
|
+
np.float32,0x7ee4fe6d,0xbf1ea7e4,4
|
|
355
|
+
np.float32,0x1f15ba,0x1f15ba,4
|
|
356
|
+
np.float32,0xd18c3,0xd18c3,4
|
|
357
|
+
np.float32,0x80797705,0x80797705,4
|
|
358
|
+
np.float32,0x7ef07091,0x3f2f3b9a,4
|
|
359
|
+
np.float32,0x7f552f41,0x3faf608c,4
|
|
360
|
+
np.float32,0x3f779977,0x3fb9a7ad,4
|
|
361
|
+
np.float32,0xfe1a7a50,0xbdadc4d1,4
|
|
362
|
+
np.float32,0xbf449cf0,0xbf7740db,4
|
|
363
|
+
np.float32,0xbe44e620,0xbe475cad,4
|
|
364
|
+
np.float32,0x3f63a098,0x3f9dc2b5,4
|
|
365
|
+
np.float32,0xfed40a12,0x4164533a,4
|
|
366
|
+
np.float32,0x7a2bbb,0x7a2bbb,4
|
|
367
|
+
np.float32,0xff7f7b9e,0xbeee8740,4
|
|
368
|
+
np.float32,0x7ee27f8b,0x4233f53b,4
|
|
369
|
+
np.float32,0xbf044c06,0xbf117c28,4
|
|
370
|
+
np.float32,0xbeffde54,0xbf0bc49f,4
|
|
371
|
+
np.float32,0xfeaef2e8,0x3ff258fe,4
|
|
372
|
+
np.float32,0x527451,0x527451,4
|
|
373
|
+
np.float32,0xbcef8d00,0xbcef9e7c,4
|
|
374
|
+
np.float32,0xbf0e20c0,0xbf1ec9b2,4
|
|
375
|
+
np.float32,0x8024afda,0x8024afda,4
|
|
376
|
+
np.float32,0x7ef6cb3e,0x422cad0b,4
|
|
377
|
+
np.float32,0x3c120,0x3c120,4
|
|
378
|
+
np.float32,0xbf125c8f,0xbf24b62c,4
|
|
379
|
+
np.float32,0x7e770a93,0x402c9d86,4
|
|
380
|
+
np.float32,0xbd30a4e0,0xbd30c0ee,4
|
|
381
|
+
np.float32,0xbf4d3388,0xbf843530,4
|
|
382
|
+
np.float32,0x3f529072,0x3f89df92,4
|
|
383
|
+
np.float32,0xff0270b1,0xbf81be9a,4
|
|
384
|
+
np.float32,0x5e07e7,0x5e07e7,4
|
|
385
|
+
np.float32,0x7bec32,0x7bec32,4
|
|
386
|
+
np.float32,0x7fc00000,0x7fc00000,4
|
|
387
|
+
np.float32,0x3e3ba5e0,0x3e3dc6e9,4
|
|
388
|
+
np.float32,0x3ecb62d4,0x3ed6ce2c,4
|
|
389
|
+
np.float32,0x3eb3dde8,0x3ebba68f,4
|
|
390
|
+
np.float32,0x8063f952,0x8063f952,4
|
|
391
|
+
np.float32,0x7f204aeb,0x3e88614e,4
|
|
392
|
+
np.float32,0xbeae1ddc,0xbeb5278e,4
|
|
393
|
+
np.float32,0x6829e9,0x6829e9,4
|
|
394
|
+
np.float32,0xbf361a99,0xbf5ca354,4
|
|
395
|
+
np.float32,0xbf24fbe6,0xbf406326,4
|
|
396
|
+
np.float32,0x3f329d41,0x3f56a061,4
|
|
397
|
+
np.float32,0xfed6d666,0x3e8f71a5,4
|
|
398
|
+
np.float32,0x337f92,0x337f92,4
|
|
399
|
+
np.float32,0xbe1c4970,0xbe1d8305,4
|
|
400
|
+
np.float32,0xbe6b7e18,0xbe6fbbde,4
|
|
401
|
+
np.float32,0x3f2267b9,0x3f3c61da,4
|
|
402
|
+
np.float32,0xbee1ee94,0xbef1d628,4
|
|
403
|
+
np.float32,0x7ecffc1a,0x3f02987e,4
|
|
404
|
+
np.float32,0xbe9b1306,0xbe9fff3b,4
|
|
405
|
+
np.float32,0xbeffacae,0xbf0ba468,4
|
|
406
|
+
np.float32,0x7f800000,0xffc00000,4
|
|
407
|
+
np.float32,0xfefc9aa8,0xc19de2a3,4
|
|
408
|
+
np.float32,0x7d7185bb,0xbf9090ec,4
|
|
409
|
+
np.float32,0x7edfbafd,0x3fe9352f,4
|
|
410
|
+
np.float32,0x4ef2ec,0x4ef2ec,4
|
|
411
|
+
np.float32,0x7f4cab2e,0xbff4e5dd,4
|
|
412
|
+
np.float32,0xff3b1788,0x3e3c22e9,4
|
|
413
|
+
np.float32,0x4e15ee,0x4e15ee,4
|
|
414
|
+
np.float32,0xbf5451e6,0xbf8bc8a7,4
|
|
415
|
+
np.float32,0x3f7f6d2e,0x3fc65e8b,4
|
|
416
|
+
np.float32,0xbf1d9184,0xbf35071b,4
|
|
417
|
+
np.float32,0xbf3a81cf,0xbf646d9b,4
|
|
418
|
+
np.float32,0xbe71acc4,0xbe7643ab,4
|
|
419
|
+
np.float32,0x528b7d,0x528b7d,4
|
|
420
|
+
np.float32,0x2cb1d0,0x2cb1d0,4
|
|
421
|
+
np.float32,0x3f324bf8,0x3f56161a,4
|
|
422
|
+
np.float32,0x80709a21,0x80709a21,4
|
|
423
|
+
np.float32,0x4bc448,0x4bc448,4
|
|
424
|
+
np.float32,0x3e8bd600,0x3e8f6b7a,4
|
|
425
|
+
np.float32,0xbeb97d30,0xbec20dd6,4
|
|
426
|
+
np.float32,0x2a5669,0x2a5669,4
|
|
427
|
+
np.float32,0x805f2689,0x805f2689,4
|
|
428
|
+
np.float32,0xfe569f50,0x3fc51952,4
|
|
429
|
+
np.float32,0x1de44c,0x1de44c,4
|
|
430
|
+
np.float32,0x3ec7036c,0x3ed1ae67,4
|
|
431
|
+
np.float32,0x8052b8e5,0x8052b8e5,4
|
|
432
|
+
np.float32,0xff740a6b,0x3f4981a8,4
|
|
433
|
+
np.float32,0xfee9bb70,0xc05e23be,4
|
|
434
|
+
np.float32,0xff4e12c9,0x4002b4ad,4
|
|
435
|
+
np.float32,0x803de0c2,0x803de0c2,4
|
|
436
|
+
np.float32,0xbf433a07,0xbf74966f,4
|
|
437
|
+
np.float32,0x803e60ca,0x803e60ca,4
|
|
438
|
+
np.float32,0xbf19ee98,0xbf2fa07a,4
|
|
439
|
+
np.float32,0x92929,0x92929,4
|
|
440
|
+
np.float32,0x7f709c27,0x4257ba2d,4
|
|
441
|
+
np.float32,0x803167c6,0x803167c6,4
|
|
442
|
+
np.float32,0xbf095ead,0xbf184607,4
|
|
443
|
+
np.float32,0x617060,0x617060,4
|
|
444
|
+
np.float32,0x2d85b3,0x2d85b3,4
|
|
445
|
+
np.float32,0x53d20b,0x53d20b,4
|
|
446
|
+
np.float32,0x3e046838,0x3e052666,4
|
|
447
|
+
np.float32,0xbe7c5fdc,0xbe80ce4b,4
|
|
448
|
+
np.float32,0x3d18d060,0x3d18e289,4
|
|
449
|
+
np.float32,0x804dc031,0x804dc031,4
|
|
450
|
+
np.float32,0x3f224166,0x3f3c26cd,4
|
|
451
|
+
np.float32,0x7d683e3c,0xbea24f25,4
|
|
452
|
+
np.float32,0xbf3a92aa,0xbf648be4,4
|
|
453
|
+
np.float32,0x8072670b,0x8072670b,4
|
|
454
|
+
np.float32,0xbe281aec,0xbe29a1bc,4
|
|
455
|
+
np.float32,0x7f09d918,0xc0942490,4
|
|
456
|
+
np.float32,0x7ca9fd07,0x4018b990,4
|
|
457
|
+
np.float32,0x7d36ac5d,0x3cf57184,4
|
|
458
|
+
np.float32,0x8039b62f,0x8039b62f,4
|
|
459
|
+
np.float32,0x6cad7b,0x6cad7b,4
|
|
460
|
+
np.float32,0x3c0fd9ab,0x3c0fda9d,4
|
|
461
|
+
np.float32,0x80299883,0x80299883,4
|
|
462
|
+
np.float32,0x3c2d0e3e,0x3c2d0fe4,4
|
|
463
|
+
np.float32,0x8002cf62,0x8002cf62,4
|
|
464
|
+
np.float32,0x801dde97,0x801dde97,4
|
|
465
|
+
np.float32,0x80411856,0x80411856,4
|
|
466
|
+
np.float32,0x6ebce8,0x6ebce8,4
|
|
467
|
+
np.float32,0x7b7d1a,0x7b7d1a,4
|
|
468
|
+
np.float32,0x8031d3de,0x8031d3de,4
|
|
469
|
+
np.float32,0x8005c4ab,0x8005c4ab,4
|
|
470
|
+
np.float32,0xbf7dd803,0xbfc3b3ef,4
|
|
471
|
+
np.float32,0x8017ae60,0x8017ae60,4
|
|
472
|
+
np.float32,0xfe9316ce,0xbfe0544a,4
|
|
473
|
+
np.float32,0x3f136bfe,0x3f2636ff,4
|
|
474
|
+
np.float32,0x3df87b80,0x3df9b57d,4
|
|
475
|
+
np.float32,0xff44c356,0xbf11c7ad,4
|
|
476
|
+
np.float32,0x4914ae,0x4914ae,4
|
|
477
|
+
np.float32,0x80524c21,0x80524c21,4
|
|
478
|
+
np.float32,0x805c7dc8,0x805c7dc8,4
|
|
479
|
+
np.float32,0xfed3c0aa,0xbff0c0ab,4
|
|
480
|
+
np.float32,0x7eb2bfbb,0xbf4600bc,4
|
|
481
|
+
np.float32,0xfec8df84,0x3f5bd350,4
|
|
482
|
+
np.float32,0x3e5431a4,0x3e5748c3,4
|
|
483
|
+
np.float32,0xbee6a3a0,0xbef79e86,4
|
|
484
|
+
np.float32,0xbf6cc9b2,0xbfa9d61a,4
|
|
485
|
+
np.float32,0x3f132bd5,0x3f25dbd9,4
|
|
486
|
+
np.float32,0x7e6d2e48,0x3f9d025b,4
|
|
487
|
+
np.float32,0x3edf430c,0x3eee942d,4
|
|
488
|
+
np.float32,0x3f0d1b8a,0x3f1d60e1,4
|
|
489
|
+
np.float32,0xbdf2f688,0xbdf41bfb,4
|
|
490
|
+
np.float32,0xbe47a284,0xbe4a33ff,4
|
|
491
|
+
np.float32,0x3eaa9fbc,0x3eb13be7,4
|
|
492
|
+
np.float32,0xfe98d45e,0x3eb84517,4
|
|
493
|
+
np.float32,0x7efc23b3,0x3dcc1c99,4
|
|
494
|
+
np.float32,0x3ca36242,0x3ca367ce,4
|
|
495
|
+
np.float32,0x3f76a944,0x3fb834e3,4
|
|
496
|
+
np.float32,0xbf45207c,0xbf783f9b,4
|
|
497
|
+
np.float32,0x3e7c1220,0x3e80a4f8,4
|
|
498
|
+
np.float32,0x3f018200,0x3f0dd14e,4
|
|
499
|
+
np.float32,0x3f53cdde,0x3f8b3839,4
|
|
500
|
+
np.float32,0xbdbacb58,0xbdbb5063,4
|
|
501
|
+
np.float32,0x804af68d,0x804af68d,4
|
|
502
|
+
np.float32,0x3e2c12fc,0x3e2db65b,4
|
|
503
|
+
np.float32,0x3f039433,0x3f10895a,4
|
|
504
|
+
np.float32,0x7ef5193d,0x3f4115f7,4
|
|
505
|
+
np.float32,0x8030afbe,0x8030afbe,4
|
|
506
|
+
np.float32,0x3f06fa2a,0x3f150d5d,4
|
|
507
|
+
np.float32,0x3f124442,0x3f2493d2,4
|
|
508
|
+
np.float32,0xbeb5b792,0xbebdc090,4
|
|
509
|
+
np.float32,0xbedc90a4,0xbeeb4de9,4
|
|
510
|
+
np.float32,0x3f3ff8,0x3f3ff8,4
|
|
511
|
+
np.float32,0x3ee75bc5,0x3ef881e4,4
|
|
512
|
+
np.float32,0xfe80e3de,0xbf5cd535,4
|
|
513
|
+
np.float32,0xf52eb,0xf52eb,4
|
|
514
|
+
np.float32,0x80660ee8,0x80660ee8,4
|
|
515
|
+
np.float32,0x3e173a58,0x3e185648,4
|
|
516
|
+
np.float32,0xfe49520c,0xbf728d7c,4
|
|
517
|
+
np.float32,0xbecbb8ec,0xbed73373,4
|
|
518
|
+
np.float32,0xbf027ae0,0xbf0f173e,4
|
|
519
|
+
np.float32,0xbcab6740,0xbcab6da8,4
|
|
520
|
+
np.float32,0xbf2a15e2,0xbf487e11,4
|
|
521
|
+
np.float32,0x3b781b,0x3b781b,4
|
|
522
|
+
np.float32,0x44f559,0x44f559,4
|
|
523
|
+
np.float32,0xff6a0ca6,0xc174d7c3,4
|
|
524
|
+
np.float32,0x6460ef,0x6460ef,4
|
|
525
|
+
np.float32,0xfe58009c,0x3ee2bb30,4
|
|
526
|
+
np.float32,0xfec3c038,0x3e30d617,4
|
|
527
|
+
np.float32,0x7f0687c0,0xbf62c820,4
|
|
528
|
+
np.float32,0xbf44655e,0xbf76d589,4
|
|
529
|
+
np.float32,0xbf42968c,0xbf735e78,4
|
|
530
|
+
np.float32,0x80385503,0x80385503,4
|
|
531
|
+
np.float32,0xbea7e3a2,0xbeae2d59,4
|
|
532
|
+
np.float32,0x3dd0b770,0x3dd17131,4
|
|
533
|
+
np.float32,0xbf4bc185,0xbf82b907,4
|
|
534
|
+
np.float32,0xfefd7d64,0xbee05650,4
|
|
535
|
+
np.float32,0xfaac3c00,0xbff23bc9,4
|
|
536
|
+
np.float32,0xbf562f0d,0xbf8dd7f4,4
|
|
537
|
+
np.float32,0x7fa00000,0x7fe00000,4
|
|
538
|
+
np.float32,0x3e01bdb8,0x3e027098,4
|
|
539
|
+
np.float32,0x3e2868ab,0x3e29f19e,4
|
|
540
|
+
np.float32,0xfec55f2e,0x3f39f304,4
|
|
541
|
+
np.float32,0xed4e,0xed4e,4
|
|
542
|
+
np.float32,0x3e2b7330,0x3e2d11fa,4
|
|
543
|
+
np.float32,0x7f738542,0x40cbbe16,4
|
|
544
|
+
np.float32,0x3f123521,0x3f247e71,4
|
|
545
|
+
np.float32,0x73572c,0x73572c,4
|
|
546
|
+
np.float32,0x804936c8,0x804936c8,4
|
|
547
|
+
np.float32,0x803b80d8,0x803b80d8,4
|
|
548
|
+
np.float32,0x7f566c57,0xbee2855a,4
|
|
549
|
+
np.float32,0xff0e3bd8,0xbff0543f,4
|
|
550
|
+
np.float32,0x7d2b2fe7,0xbf94ba4c,4
|
|
551
|
+
np.float32,0xbf0da470,0xbf1e1dc2,4
|
|
552
|
+
np.float32,0xbd276500,0xbd277ce0,4
|
|
553
|
+
np.float32,0xfcd15dc0,0x403ccc2a,4
|
|
554
|
+
np.float32,0x80071e59,0x80071e59,4
|
|
555
|
+
np.float32,0xbe9b0c34,0xbe9ff7be,4
|
|
556
|
+
np.float32,0x3f4f9069,0x3f86ac50,4
|
|
557
|
+
np.float32,0x80042a95,0x80042a95,4
|
|
558
|
+
np.float32,0x7de28e39,0x3bc9b7f4,4
|
|
559
|
+
np.float32,0xbf641935,0xbf9e5af8,4
|
|
560
|
+
np.float32,0x8034f068,0x8034f068,4
|
|
561
|
+
np.float32,0xff33a3d2,0xbf408e75,4
|
|
562
|
+
np.float32,0xbcc51540,0xbcc51efc,4
|
|
563
|
+
np.float32,0xff6d1ddf,0x3ef58f0e,4
|
|
564
|
+
np.float32,0xbf64dfc4,0xbf9f5725,4
|
|
565
|
+
np.float32,0xff068a06,0x3eea8987,4
|
|
566
|
+
np.float32,0xff01c0af,0x3f24cdfe,4
|
|
567
|
+
np.float32,0x3f4def7e,0x3f84f802,4
|
|
568
|
+
np.float32,0xbf1b4ae7,0xbf31a299,4
|
|
569
|
+
np.float32,0x8077df2d,0x8077df2d,4
|
|
570
|
+
np.float32,0x3f0155c5,0x3f0d9785,4
|
|
571
|
+
np.float32,0x5a54b2,0x5a54b2,4
|
|
572
|
+
np.float32,0x7f271f9e,0x3efb2ef3,4
|
|
573
|
+
np.float32,0xbf0ff2ec,0xbf215217,4
|
|
574
|
+
np.float32,0x7f500130,0xbf8a7fdd,4
|
|
575
|
+
np.float32,0xfed9891c,0xbf65c872,4
|
|
576
|
+
np.float32,0xfecbfaae,0x403bdbc2,4
|
|
577
|
+
np.float32,0x3f3a5aba,0x3f642772,4
|
|
578
|
+
np.float32,0x7ebc681e,0xbd8df059,4
|
|
579
|
+
np.float32,0xfe05e400,0xbfe35d74,4
|
|
580
|
+
np.float32,0xbf295ace,0xbf4750ea,4
|
|
581
|
+
np.float32,0x7ea055b2,0x3f62d6be,4
|
|
582
|
+
np.float32,0xbd00b520,0xbd00bff9,4
|
|
583
|
+
np.float32,0xbf7677aa,0xbfb7e8cf,4
|
|
584
|
+
np.float32,0x3e83f788,0x3e86f816,4
|
|
585
|
+
np.float32,0x801f6710,0x801f6710,4
|
|
586
|
+
np.float32,0x801133cc,0x801133cc,4
|
|
587
|
+
np.float32,0x41da2a,0x41da2a,4
|
|
588
|
+
np.float32,0xff1622fd,0x3f023650,4
|
|
589
|
+
np.float32,0x806c7a72,0x806c7a72,4
|
|
590
|
+
np.float32,0x3f10779c,0x3f220bb4,4
|
|
591
|
+
np.float32,0xbf08cf94,0xbf17848d,4
|
|
592
|
+
np.float32,0xbecb55b4,0xbed6bebd,4
|
|
593
|
+
np.float32,0xbf0a1528,0xbf193d7b,4
|
|
594
|
+
np.float32,0x806a16bd,0x806a16bd,4
|
|
595
|
+
np.float32,0xc222a,0xc222a,4
|
|
596
|
+
np.float32,0x3930de,0x3930de,4
|
|
597
|
+
np.float32,0x3f5c3588,0x3f94bca2,4
|
|
598
|
+
np.float32,0x1215ad,0x1215ad,4
|
|
599
|
+
np.float32,0x3ed15030,0x3eddcf67,4
|
|
600
|
+
np.float32,0x7da83b2e,0x3fce0d39,4
|
|
601
|
+
np.float32,0x32b0a8,0x32b0a8,4
|
|
602
|
+
np.float32,0x805aed6b,0x805aed6b,4
|
|
603
|
+
np.float32,0x3ef8e02f,0x3f074346,4
|
|
604
|
+
np.float32,0xbdeb6780,0xbdec7250,4
|
|
605
|
+
np.float32,0x3f6e3cec,0x3fabda61,4
|
|
606
|
+
np.float32,0xfefd467a,0x3ef7821a,4
|
|
607
|
+
np.float32,0xfef090fe,0x3bb752a2,4
|
|
608
|
+
np.float32,0x8019c538,0x8019c538,4
|
|
609
|
+
np.float32,0x3e8cf284,0x3e909e81,4
|
|
610
|
+
np.float32,0xbe6c6618,0xbe70b0a2,4
|
|
611
|
+
np.float32,0x7f50a539,0x3f367be1,4
|
|
612
|
+
np.float32,0x8019fe2f,0x8019fe2f,4
|
|
613
|
+
np.float32,0x800c3f48,0x800c3f48,4
|
|
614
|
+
np.float32,0xfd054cc0,0xc0f52802,4
|
|
615
|
+
np.float32,0x3d0cca20,0x3d0cd853,4
|
|
616
|
+
np.float32,0xbf4a7c44,0xbf816e74,4
|
|
617
|
+
np.float32,0x3f46fc40,0x3f7be153,4
|
|
618
|
+
np.float32,0x807c5849,0x807c5849,4
|
|
619
|
+
np.float32,0xd7e41,0xd7e41,4
|
|
620
|
+
np.float32,0x70589b,0x70589b,4
|
|
621
|
+
np.float32,0x80357b95,0x80357b95,4
|
|
622
|
+
np.float32,0x3de239f0,0x3de326a5,4
|
|
623
|
+
np.float32,0x800b08e3,0x800b08e3,4
|
|
624
|
+
np.float32,0x807ec946,0x807ec946,4
|
|
625
|
+
np.float32,0x3e2e4b83,0x3e2fff76,4
|
|
626
|
+
np.float32,0x3f198e0f,0x3f2f12a6,4
|
|
627
|
+
np.float32,0xbecb1aca,0xbed67979,4
|
|
628
|
+
np.float32,0x80134082,0x80134082,4
|
|
629
|
+
np.float32,0x3f3a269f,0x3f63ca05,4
|
|
630
|
+
np.float32,0x3f1381e4,0x3f265622,4
|
|
631
|
+
np.float32,0xff293080,0xbf10be6f,4
|
|
632
|
+
np.float32,0xff800000,0xffc00000,4
|
|
633
|
+
np.float32,0x37d196,0x37d196,4
|
|
634
|
+
np.float32,0x7e57eea7,0x3e7d8138,4
|
|
635
|
+
np.float32,0x804b1dae,0x804b1dae,4
|
|
636
|
+
np.float32,0x7d9508f9,0xc1075b35,4
|
|
637
|
+
np.float32,0x3f7bf468,0x3fc095e0,4
|
|
638
|
+
np.float32,0x55472c,0x55472c,4
|
|
639
|
+
np.float32,0x3ecdcd86,0x3ed9a738,4
|
|
640
|
+
np.float32,0x3ed9be0f,0x3ee7e4e9,4
|
|
641
|
+
np.float32,0x3e7e0ddb,0x3e81b2fe,4
|
|
642
|
+
np.float32,0x7ee6c1d3,0x3f850634,4
|
|
643
|
+
np.float32,0x800f6fad,0x800f6fad,4
|
|
644
|
+
np.float32,0xfefb3bd6,0xbff68ecc,4
|
|
645
|
+
np.float32,0x8013d6e2,0x8013d6e2,4
|
|
646
|
+
np.float32,0x3f3a2cb6,0x3f63d4ee,4
|
|
647
|
+
np.float32,0xff383c84,0x3e7854bb,4
|
|
648
|
+
np.float32,0x3f21946e,0x3f3b1cea,4
|
|
649
|
+
np.float32,0xff322ea2,0x3fb22f31,4
|
|
650
|
+
np.float32,0x8065a024,0x8065a024,4
|
|
651
|
+
np.float32,0x7f395e30,0xbefe0de1,4
|
|
652
|
+
np.float32,0x5b52db,0x5b52db,4
|
|
653
|
+
np.float32,0x7f7caea7,0x3dac8ded,4
|
|
654
|
+
np.float32,0xbf0431f8,0xbf1159b2,4
|
|
655
|
+
np.float32,0x7f15b25b,0xc02a3833,4
|
|
656
|
+
np.float32,0x80131abc,0x80131abc,4
|
|
657
|
+
np.float32,0x7e829d81,0xbeb2e93d,4
|
|
658
|
+
np.float32,0x3f2c64d7,0x3f4c3e4d,4
|
|
659
|
+
np.float32,0x7f228d48,0xc1518c74,4
|
|
660
|
+
np.float32,0xfc3c6f40,0xbf00d585,4
|
|
661
|
+
np.float32,0x7f754f0f,0x3e2152f5,4
|
|
662
|
+
np.float32,0xff65d32b,0xbe8bd56c,4
|
|
663
|
+
np.float32,0xfea6b8c0,0x41608655,4
|
|
664
|
+
np.float32,0x3f7d4b05,0x3fc2c96a,4
|
|
665
|
+
np.float32,0x3f463230,0x3f7a54da,4
|
|
666
|
+
np.float32,0x805117bb,0x805117bb,4
|
|
667
|
+
np.float32,0xbf2ad4f7,0xbf49b30e,4
|
|
668
|
+
np.float32,0x3eaa01ff,0x3eb08b56,4
|
|
669
|
+
np.float32,0xff7a02bb,0x3f095f73,4
|
|
670
|
+
np.float32,0x759176,0x759176,4
|
|
671
|
+
np.float32,0x803c18d5,0x803c18d5,4
|
|
672
|
+
np.float32,0xbe0722d8,0xbe07ed16,4
|
|
673
|
+
np.float32,0x3f4b4a99,0x3f823fc6,4
|
|
674
|
+
np.float32,0x3f7d0451,0x3fc25463,4
|
|
675
|
+
np.float32,0xfee31e40,0xbfb41091,4
|
|
676
|
+
np.float32,0xbf733d2c,0xbfb30cf1,4
|
|
677
|
+
np.float32,0x7ed81015,0x417c380c,4
|
|
678
|
+
np.float32,0x7daafc3e,0xbe2a37ed,4
|
|
679
|
+
np.float32,0x3e44f82b,0x3e476f67,4
|
|
680
|
+
np.float32,0x7c8d99,0x7c8d99,4
|
|
681
|
+
np.float32,0x3f7aec5a,0x3fbee991,4
|
|
682
|
+
np.float32,0xff09fd55,0x3e0709d3,4
|
|
683
|
+
np.float32,0xff4ba4df,0x4173c01f,4
|
|
684
|
+
np.float32,0x3f43d944,0x3f75c7bd,4
|
|
685
|
+
np.float32,0xff6a9106,0x40a10eff,4
|
|
686
|
+
np.float32,0x3bc8341c,0x3bc834bf,4
|
|
687
|
+
np.float32,0x3eea82,0x3eea82,4
|
|
688
|
+
np.float32,0xfea36a3c,0x435729b2,4
|
|
689
|
+
np.float32,0x7dcc1fb0,0x3e330053,4
|
|
690
|
+
np.float32,0x3f616ae6,0x3f9b01ae,4
|
|
691
|
+
np.float32,0x8030963f,0x8030963f,4
|
|
692
|
+
np.float32,0x10d1e2,0x10d1e2,4
|
|
693
|
+
np.float32,0xfeb9a8a6,0x40e6daac,4
|
|
694
|
+
np.float32,0xbe1aba00,0xbe1bea3a,4
|
|
695
|
+
np.float32,0x3cb6b4ea,0x3cb6bcac,4
|
|
696
|
+
np.float32,0x3d8b0b64,0x3d8b422f,4
|
|
697
|
+
np.float32,0x7b6894,0x7b6894,4
|
|
698
|
+
np.float32,0x3e89dcde,0x3e8d4b4b,4
|
|
699
|
+
np.float32,0x3f12b952,0x3f253974,4
|
|
700
|
+
np.float32,0x1c316c,0x1c316c,4
|
|
701
|
+
np.float32,0x7e2da535,0x3f95fe6b,4
|
|
702
|
+
np.float32,0x3ae9a494,0x3ae9a4a4,4
|
|
703
|
+
np.float32,0xbc5f5500,0xbc5f588b,4
|
|
704
|
+
np.float32,0x3e7850fc,0x3e7d4d0e,4
|
|
705
|
+
np.float32,0xbf800000,0xbfc75923,4
|
|
706
|
+
np.float32,0x3e652d69,0x3e691502,4
|
|
707
|
+
np.float32,0xbf6bdd26,0xbfa89129,4
|
|
708
|
+
np.float32,0x3f441cfc,0x3f764a02,4
|
|
709
|
+
np.float32,0x7f5445ff,0xc0906191,4
|
|
710
|
+
np.float32,0x807b2ee3,0x807b2ee3,4
|
|
711
|
+
np.float32,0xbeb6cab8,0xbebef9c0,4
|
|
712
|
+
np.float32,0xff737277,0xbf327011,4
|
|
713
|
+
np.float32,0xfc832aa0,0x402fd52e,4
|
|
714
|
+
np.float32,0xbf0c7538,0xbf1c7c0f,4
|
|
715
|
+
np.float32,0x7e1301c7,0xbf0ee63e,4
|
|
716
|
+
np.float64,0xbfe0ef7df7a1defc,0xbfe2b76a8d8aeb35,1
|
|
717
|
+
np.float64,0x7fdd9c2eae3b385c,0xbfc00d6885485039,1
|
|
718
|
+
np.float64,0xbfb484c710290990,0xbfb4900e0a527555,1
|
|
719
|
+
np.float64,0x7fe73e5d6cee7cba,0x3fefbf70a56b60d3,1
|
|
720
|
+
np.float64,0x800a110aa8d42216,0x800a110aa8d42216,1
|
|
721
|
+
np.float64,0xffedd4f3f3bba9e7,0xbff076f8c4124919,1
|
|
722
|
+
np.float64,0x800093407f812682,0x800093407f812682,1
|
|
723
|
+
np.float64,0x800a23150e54462a,0x800a23150e54462a,1
|
|
724
|
+
np.float64,0xbfb1076864220ed0,0xbfb10dd95a74b733,1
|
|
725
|
+
np.float64,0x3fed1f8b37fa3f16,0x3ff496100985211f,1
|
|
726
|
+
np.float64,0x3fdf762f84beec5f,0x3fe1223eb04a17e0,1
|
|
727
|
+
np.float64,0x53fd4e0aa7faa,0x53fd4e0aa7faa,1
|
|
728
|
+
np.float64,0x3fdbd283bdb7a507,0x3fddb7ec9856a546,1
|
|
729
|
+
np.float64,0xbfe43f449d687e89,0xbfe77724a0d3072b,1
|
|
730
|
+
np.float64,0x618b73bcc316f,0x618b73bcc316f,1
|
|
731
|
+
np.float64,0x67759424ceeb3,0x67759424ceeb3,1
|
|
732
|
+
np.float64,0xbfe4b6f7d9a96df0,0xbfe831371f3bd7a8,1
|
|
733
|
+
np.float64,0x800a531b8b74a637,0x800a531b8b74a637,1
|
|
734
|
+
np.float64,0xffeeffd5c37dffab,0x3fea140cbc2c3726,1
|
|
735
|
+
np.float64,0x3fe648e2002c91c4,0x3feac1b8816f972a,1
|
|
736
|
+
np.float64,0x800f16242a1e2c48,0x800f16242a1e2c48,1
|
|
737
|
+
np.float64,0xffeeff8e1dbdff1b,0xc000b555f117dce7,1
|
|
738
|
+
np.float64,0x3fdf1cf73fbe39f0,0x3fe0e9032401135b,1
|
|
739
|
+
np.float64,0x7fe19c388b633870,0x3fd5271b69317d5b,1
|
|
740
|
+
np.float64,0x918f226d231e5,0x918f226d231e5,1
|
|
741
|
+
np.float64,0x4cc19ab499834,0x4cc19ab499834,1
|
|
742
|
+
np.float64,0xbd3121d57a624,0xbd3121d57a624,1
|
|
743
|
+
np.float64,0xbfd145d334a28ba6,0xbfd1b468866124d6,1
|
|
744
|
+
np.float64,0x8bdbf41517b7f,0x8bdbf41517b7f,1
|
|
745
|
+
np.float64,0x3fd1b8cb3ea37198,0x3fd2306b13396cae,1
|
|
746
|
+
np.float64,0xbfd632a959ac6552,0xbfd7220fcfb5ef78,1
|
|
747
|
+
np.float64,0x1cdaafc639b57,0x1cdaafc639b57,1
|
|
748
|
+
np.float64,0x3febdcce1577b99c,0x3ff2fe076195a2bc,1
|
|
749
|
+
np.float64,0x7fca6e945934dd28,0x3ff43040df7024e8,1
|
|
750
|
+
np.float64,0x3fbe08e78e3c11cf,0x3fbe2c60e6b48f75,1
|
|
751
|
+
np.float64,0x7fc1ed0d0523da19,0x3ff55f8dcad9440f,1
|
|
752
|
+
np.float64,0xbfdc729b8cb8e538,0xbfde7b6e15dd60c4,1
|
|
753
|
+
np.float64,0x3fd219404f243281,0x3fd298d7b3546531,1
|
|
754
|
+
np.float64,0x3fe715c3f56e2b88,0x3fec255b5a59456e,1
|
|
755
|
+
np.float64,0x7fe8b88e74b1711c,0x3ff60efd2c81d13d,1
|
|
756
|
+
np.float64,0xa1d2b9fd43a57,0xa1d2b9fd43a57,1
|
|
757
|
+
np.float64,0xffc1818223230304,0xbfb85c6c1e8018e7,1
|
|
758
|
+
np.float64,0x3fde38ac8b3c7159,0x3fe0580c7e228576,1
|
|
759
|
+
np.float64,0x8008faf7b491f5f0,0x8008faf7b491f5f0,1
|
|
760
|
+
np.float64,0xffe7a1d751af43ae,0xbf7114cd7bbcd981,1
|
|
761
|
+
np.float64,0xffec2db1b4b85b62,0xbff5cae759667f83,1
|
|
762
|
+
np.float64,0x7fefce1ae27f9c35,0x3ff4b8b88f4876cf,1
|
|
763
|
+
np.float64,0x7fd1ff56a523feac,0xbff342ce192f14dd,1
|
|
764
|
+
np.float64,0x80026b3e3f84d67d,0x80026b3e3f84d67d,1
|
|
765
|
+
np.float64,0xffedee5879bbdcb0,0xc02fae11508b2be0,1
|
|
766
|
+
np.float64,0x8003c0dc822781ba,0x8003c0dc822781ba,1
|
|
767
|
+
np.float64,0xffe38a79eca714f4,0xc008aa23b7a63980,1
|
|
768
|
+
np.float64,0xbfda70411eb4e082,0xbfdc0d7e29c89010,1
|
|
769
|
+
np.float64,0x800a5e34f574bc6a,0x800a5e34f574bc6a,1
|
|
770
|
+
np.float64,0x3fc19fac6e233f59,0x3fc1bc66ac0d73d4,1
|
|
771
|
+
np.float64,0x3a8a61ea7514d,0x3a8a61ea7514d,1
|
|
772
|
+
np.float64,0x3fb57b536e2af6a0,0x3fb588451f72f44c,1
|
|
773
|
+
np.float64,0x7fd68c6d082d18d9,0xc032ac926b665c9a,1
|
|
774
|
+
np.float64,0xd5b87cfdab710,0xd5b87cfdab710,1
|
|
775
|
+
np.float64,0xfe80b20bfd017,0xfe80b20bfd017,1
|
|
776
|
+
np.float64,0x3fef8781e37f0f04,0x3ff8215fe2c1315a,1
|
|
777
|
+
np.float64,0xffedddbb9c3bbb76,0x3fd959b82258a32a,1
|
|
778
|
+
np.float64,0x3fc7d41f382fa83e,0x3fc81b94c3a091ba,1
|
|
779
|
+
np.float64,0xffc3275dcf264ebc,0x3fb2b3d4985c6078,1
|
|
780
|
+
np.float64,0x7fe34d2b7ba69a56,0x40001f3618e3c7c9,1
|
|
781
|
+
np.float64,0x3fd64ae35fac95c7,0x3fd73d77e0b730f8,1
|
|
782
|
+
np.float64,0x800e53bf6b3ca77f,0x800e53bf6b3ca77f,1
|
|
783
|
+
np.float64,0xbfddf7c9083bef92,0xbfe02f392744d2d1,1
|
|
784
|
+
np.float64,0x1c237cc038471,0x1c237cc038471,1
|
|
785
|
+
np.float64,0x3fe4172beea82e58,0x3fe739b4bf16bc7e,1
|
|
786
|
+
np.float64,0xfa950523f52a1,0xfa950523f52a1,1
|
|
787
|
+
np.float64,0xffc839a2c5307344,0xbff70ff8a3c9247f,1
|
|
788
|
+
np.float64,0x264f828c4c9f1,0x264f828c4c9f1,1
|
|
789
|
+
np.float64,0x148a650a2914e,0x148a650a2914e,1
|
|
790
|
+
np.float64,0x3fe8d255c0b1a4ac,0x3fef623c3ea8d6e3,1
|
|
791
|
+
np.float64,0x800f4fbb28be9f76,0x800f4fbb28be9f76,1
|
|
792
|
+
np.float64,0x7fdca57bcfb94af7,0x3ff51207563fb6cb,1
|
|
793
|
+
np.float64,0x3fe4944107692882,0x3fe7fad593235364,1
|
|
794
|
+
np.float64,0x800119b4f1a2336b,0x800119b4f1a2336b,1
|
|
795
|
+
np.float64,0xbfe734075e6e680e,0xbfec5b35381069f2,1
|
|
796
|
+
np.float64,0xffeb3c00db767801,0xbfbbd7d22df7b4b3,1
|
|
797
|
+
np.float64,0xbfe95c658cb2b8cb,0xbff03ad5e0bc888a,1
|
|
798
|
+
np.float64,0xffeefeb58fbdfd6a,0xbfd5c9264deb0e11,1
|
|
799
|
+
np.float64,0x7fccc80fde39901f,0xc012c60f914f3ca2,1
|
|
800
|
+
np.float64,0x3fe5da289c2bb451,0x3fea07ad00a0ca63,1
|
|
801
|
+
np.float64,0x800e364b0a5c6c96,0x800e364b0a5c6c96,1
|
|
802
|
+
np.float64,0x3fcf9ea7d23f3d50,0x3fd023b72e8c9dcf,1
|
|
803
|
+
np.float64,0x800a475cfc948eba,0x800a475cfc948eba,1
|
|
804
|
+
np.float64,0xffd4e0d757a9c1ae,0xbfa89d573352e011,1
|
|
805
|
+
np.float64,0xbfd4dbec8229b7da,0xbfd5a165f12c7c40,1
|
|
806
|
+
np.float64,0xffe307ab51260f56,0x3fe6b1639da58c3f,1
|
|
807
|
+
np.float64,0xbfe6955a546d2ab4,0xbfeb44ae2183fee9,1
|
|
808
|
+
np.float64,0xbfca1f18f5343e30,0xbfca7d804ccccdf4,1
|
|
809
|
+
np.float64,0xe9f4dfebd3e9c,0xe9f4dfebd3e9c,1
|
|
810
|
+
np.float64,0xfff0000000000000,0xfff8000000000000,1
|
|
811
|
+
np.float64,0x8008e69c0fb1cd38,0x8008e69c0fb1cd38,1
|
|
812
|
+
np.float64,0xbfead1ccf975a39a,0xbff1c84b3db8ca93,1
|
|
813
|
+
np.float64,0x25a982424b531,0x25a982424b531,1
|
|
814
|
+
np.float64,0x8010000000000000,0x8010000000000000,1
|
|
815
|
+
np.float64,0x80056204ea0ac40b,0x80056204ea0ac40b,1
|
|
816
|
+
np.float64,0x800d1442d07a2886,0x800d1442d07a2886,1
|
|
817
|
+
np.float64,0xbfaef3dadc3de7b0,0xbfaefd85ae6205f0,1
|
|
818
|
+
np.float64,0x7fe969ce4b32d39c,0xbff3c4364fc6778f,1
|
|
819
|
+
np.float64,0x7fe418bac0a83175,0x402167d16b1efe0b,1
|
|
820
|
+
np.float64,0x3fd7c82a25af9054,0x3fd8f0c701315672,1
|
|
821
|
+
np.float64,0x80013782a7826f06,0x80013782a7826f06,1
|
|
822
|
+
np.float64,0x7fc031c7ee20638f,0x400747ab705e6904,1
|
|
823
|
+
np.float64,0x3fe8cf327ff19e65,0x3fef5c14f8aafa89,1
|
|
824
|
+
np.float64,0xbfe331a416a66348,0xbfe5e2290a098dd4,1
|
|
825
|
+
np.float64,0x800607b2116c0f65,0x800607b2116c0f65,1
|
|
826
|
+
np.float64,0x7fb40448f0280891,0xbfd43d4f0ffa1d64,1
|
|
827
|
+
np.float64,0x7fefffffffffffff,0xbf74530cfe729484,1
|
|
828
|
+
np.float64,0x3fe39b5444a736a9,0x3fe67eaa0b6acf27,1
|
|
829
|
+
np.float64,0x3fee4733c4fc8e68,0x3ff631eabeef9696,1
|
|
830
|
+
np.float64,0xbfec840f3b79081e,0xbff3cc8563ab2e74,1
|
|
831
|
+
np.float64,0xbfc8f6854c31ed0c,0xbfc948caacb3bba0,1
|
|
832
|
+
np.float64,0xffbcf754a639eea8,0xbfc88d17cad3992b,1
|
|
833
|
+
np.float64,0x8000bd3163417a64,0x8000bd3163417a64,1
|
|
834
|
+
np.float64,0x3fe766d0eaeecda2,0x3fecb660882f7024,1
|
|
835
|
+
np.float64,0xb6cc30156d986,0xb6cc30156d986,1
|
|
836
|
+
np.float64,0xffc0161f9f202c40,0x3fe19bdefe5cf8b1,1
|
|
837
|
+
np.float64,0xffe1e462caa3c8c5,0x3fe392c47feea17b,1
|
|
838
|
+
np.float64,0x30a36a566146e,0x30a36a566146e,1
|
|
839
|
+
np.float64,0x3fa996f580332deb,0x3fa99c6b4f2abebe,1
|
|
840
|
+
np.float64,0x3fba71716e34e2e0,0x3fba899f35edba1d,1
|
|
841
|
+
np.float64,0xbfe8f7e5e971efcc,0xbfefac431a0e3d55,1
|
|
842
|
+
np.float64,0xf48f1803e91e3,0xf48f1803e91e3,1
|
|
843
|
+
np.float64,0x7fe3edc0a127db80,0xc03d1a579a5d74a8,1
|
|
844
|
+
np.float64,0xffeba82056375040,0x3fdfd701308700db,1
|
|
845
|
+
np.float64,0xbfeb5a924cf6b524,0xbff2640de7cd107f,1
|
|
846
|
+
np.float64,0xfa4cd1a9f499a,0xfa4cd1a9f499a,1
|
|
847
|
+
np.float64,0x800de1be7b9bc37d,0x800de1be7b9bc37d,1
|
|
848
|
+
np.float64,0xffd44e56ad289cae,0x3fdf4b8085db9b67,1
|
|
849
|
+
np.float64,0xbfe4fb3aea69f676,0xbfe89d2cc46fcc50,1
|
|
850
|
+
np.float64,0xbfe596495d6b2c92,0xbfe997a589a1f632,1
|
|
851
|
+
np.float64,0x6f55a2b8deab5,0x6f55a2b8deab5,1
|
|
852
|
+
np.float64,0x7fe72dc4712e5b88,0x4039c4586b28c2bc,1
|
|
853
|
+
np.float64,0x89348bd712692,0x89348bd712692,1
|
|
854
|
+
np.float64,0xffe062156120c42a,0x4005f0580973bc77,1
|
|
855
|
+
np.float64,0xbfeabc714d7578e2,0xbff1b07e2fa57dc0,1
|
|
856
|
+
np.float64,0x8003a56b3e874ad7,0x8003a56b3e874ad7,1
|
|
857
|
+
np.float64,0x800eeadfb85dd5c0,0x800eeadfb85dd5c0,1
|
|
858
|
+
np.float64,0x46d77a4c8daf0,0x46d77a4c8daf0,1
|
|
859
|
+
np.float64,0x8000c06e7dc180de,0x8000c06e7dc180de,1
|
|
860
|
+
np.float64,0x3fe428d211e851a4,0x3fe754b1c00a89bc,1
|
|
861
|
+
np.float64,0xc5be11818b7c2,0xc5be11818b7c2,1
|
|
862
|
+
np.float64,0x7fefc244893f8488,0x401133dc54f52de5,1
|
|
863
|
+
np.float64,0x3fde30eee93c61de,0x3fe0532b827543a6,1
|
|
864
|
+
np.float64,0xbfd447f48b288fea,0xbfd4fd0654f90718,1
|
|
865
|
+
np.float64,0xbfde98dc7b3d31b8,0xbfe094df12f84a06,1
|
|
866
|
+
np.float64,0x3fed2c1a1dfa5834,0x3ff4a6c4f3470a65,1
|
|
867
|
+
np.float64,0xbfe992165073242d,0xbff071ab039c9177,1
|
|
868
|
+
np.float64,0x3fd0145d1b2028ba,0x3fd06d3867b703dc,1
|
|
869
|
+
np.float64,0x3fe179457362f28b,0x3fe3722f1d045fda,1
|
|
870
|
+
np.float64,0x800e28964fbc512d,0x800e28964fbc512d,1
|
|
871
|
+
np.float64,0x8004a5d785294bb0,0x8004a5d785294bb0,1
|
|
872
|
+
np.float64,0xbfd652f2272ca5e4,0xbfd7469713125120,1
|
|
873
|
+
np.float64,0x7fe61f49036c3e91,0xbf9b6ccdf2d87e70,1
|
|
874
|
+
np.float64,0xffb7d47dd02fa8f8,0xc004449a82320b13,1
|
|
875
|
+
np.float64,0x3feb82f996b705f3,0x3ff29336c738a4c5,1
|
|
876
|
+
np.float64,0x3fbb7fceea36ffa0,0x3fbb9b02c8ad7f93,1
|
|
877
|
+
np.float64,0x80004519fb208a35,0x80004519fb208a35,1
|
|
878
|
+
np.float64,0xbfe0539114e0a722,0xbfe1e86dc5aa039c,1
|
|
879
|
+
np.float64,0x0,0x0,1
|
|
880
|
+
np.float64,0xbfe99d1125f33a22,0xbff07cf8ec04300f,1
|
|
881
|
+
np.float64,0xffd4fbeecc29f7de,0x3ffab76775a8455f,1
|
|
882
|
+
np.float64,0xbfbf1c618e3e38c0,0xbfbf43d2764a8333,1
|
|
883
|
+
np.float64,0x800cae02a9d95c06,0x800cae02a9d95c06,1
|
|
884
|
+
np.float64,0x3febc47d3bf788fa,0x3ff2e0d7cf8ef509,1
|
|
885
|
+
np.float64,0x3fef838f767f071f,0x3ff81aeac309bca0,1
|
|
886
|
+
np.float64,0xbfd5e70716abce0e,0xbfd6ccb033ef7a35,1
|
|
887
|
+
np.float64,0x3f9116fa60222df5,0x3f9117625f008e0b,1
|
|
888
|
+
np.float64,0xffe02b1e5f20563c,0xbfe6b2ec293520b7,1
|
|
889
|
+
np.float64,0xbf9b5aec3036b5e0,0xbf9b5c96c4c7f951,1
|
|
890
|
+
np.float64,0xfdb0169bfb603,0xfdb0169bfb603,1
|
|
891
|
+
np.float64,0x7fcdd1d51c3ba3a9,0x401f0e12fa0b7570,1
|
|
892
|
+
np.float64,0xbfd088103fa11020,0xbfd0e8c4a333ffb2,1
|
|
893
|
+
np.float64,0x3fe22df82ee45bf0,0x3fe46d03a7c14de2,1
|
|
894
|
+
np.float64,0xbfd57b0c28aaf618,0xbfd65349a6191de5,1
|
|
895
|
+
np.float64,0x3fe0a42f50a1485f,0x3fe252e26775d9a4,1
|
|
896
|
+
np.float64,0x800fab4e363f569c,0x800fab4e363f569c,1
|
|
897
|
+
np.float64,0xffe9f0ed63f3e1da,0xbfe278c341b171d5,1
|
|
898
|
+
np.float64,0x7fe26c244664d848,0xbfb325269dad1996,1
|
|
899
|
+
np.float64,0xffe830410bf06081,0xc00181a39f606e96,1
|
|
900
|
+
np.float64,0x800c548a0c78a914,0x800c548a0c78a914,1
|
|
901
|
+
np.float64,0x800f94761ebf28ec,0x800f94761ebf28ec,1
|
|
902
|
+
np.float64,0x3fe5984845eb3091,0x3fe99aeb653c666d,1
|
|
903
|
+
np.float64,0x7fe93e5bf8f27cb7,0xc010d159fa27396a,1
|
|
904
|
+
np.float64,0xffefffffffffffff,0x3f74530cfe729484,1
|
|
905
|
+
np.float64,0x4c83f1269907f,0x4c83f1269907f,1
|
|
906
|
+
np.float64,0x3fde0065a8bc00cc,0x3fe034a1cdf026d4,1
|
|
907
|
+
np.float64,0x800743810d6e8703,0x800743810d6e8703,1
|
|
908
|
+
np.float64,0x80040662d5280cc6,0x80040662d5280cc6,1
|
|
909
|
+
np.float64,0x3fed20b2c5ba4166,0x3ff497988519d7aa,1
|
|
910
|
+
np.float64,0xffe8fa15e5f1f42b,0x3fff82ca76d797b4,1
|
|
911
|
+
np.float64,0xbb72e22f76e5d,0xbb72e22f76e5d,1
|
|
912
|
+
np.float64,0x7fc18ffa7c231ff4,0xbff4b8b4c3315026,1
|
|
913
|
+
np.float64,0xbfe8d1ac44f1a358,0xbfef60efc4f821e3,1
|
|
914
|
+
np.float64,0x3fd38c1fe8271840,0x3fd42dc37ff7262b,1
|
|
915
|
+
np.float64,0xe577bee5caef8,0xe577bee5caef8,1
|
|
916
|
+
np.float64,0xbff0000000000000,0xbff8eb245cbee3a6,1
|
|
917
|
+
np.float64,0xffcb3a9dd436753c,0x3fcd1a3aff1c3fc7,1
|
|
918
|
+
np.float64,0x7fe44bf2172897e3,0x3ff60bfe82a379f4,1
|
|
919
|
+
np.float64,0x8009203823924071,0x8009203823924071,1
|
|
920
|
+
np.float64,0x7fef8e0abc7f1c14,0x3fe90e4962d47ce5,1
|
|
921
|
+
np.float64,0xffda50004434a000,0x3fb50dee03e1418b,1
|
|
922
|
+
np.float64,0x7fe2ff276ea5fe4e,0xc0355b7d2a0a8d9d,1
|
|
923
|
+
np.float64,0x3fd0711ba5a0e238,0x3fd0d03823d2d259,1
|
|
924
|
+
np.float64,0xe7625b03cec4c,0xe7625b03cec4c,1
|
|
925
|
+
np.float64,0xbfd492c8d7a92592,0xbfd55006cde8d300,1
|
|
926
|
+
np.float64,0x8001fee99f23fdd4,0x8001fee99f23fdd4,1
|
|
927
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
928
|
+
np.float64,0xfa15df97f42bc,0xfa15df97f42bc,1
|
|
929
|
+
np.float64,0xbfec3fdca9787fb9,0xbff377164b13c7a9,1
|
|
930
|
+
np.float64,0xbcec10e579d82,0xbcec10e579d82,1
|
|
931
|
+
np.float64,0xbfc3b4e2132769c4,0xbfc3dd1fcc7150a6,1
|
|
932
|
+
np.float64,0x80045b149ee8b62a,0x80045b149ee8b62a,1
|
|
933
|
+
np.float64,0xffe044554c2088aa,0xbff741436d558785,1
|
|
934
|
+
np.float64,0xffcc65f09f38cbe0,0xc0172b4adc2d317d,1
|
|
935
|
+
np.float64,0xf68b2d3bed166,0xf68b2d3bed166,1
|
|
936
|
+
np.float64,0x7fc7f44c572fe898,0x3fec69f3b1eca790,1
|
|
937
|
+
np.float64,0x3fac51f61438a3ec,0x3fac595d34156002,1
|
|
938
|
+
np.float64,0xbfeaa9f256f553e5,0xbff19bfdf5984326,1
|
|
939
|
+
np.float64,0x800e4742149c8e84,0x800e4742149c8e84,1
|
|
940
|
+
np.float64,0xbfc493df132927c0,0xbfc4c1ba4268ead9,1
|
|
941
|
+
np.float64,0xbfbf0c56383e18b0,0xbfbf3389fcf50c72,1
|
|
942
|
+
np.float64,0xbf978a0e082f1420,0xbf978b1dd1da3d3c,1
|
|
943
|
+
np.float64,0xbfe04375356086ea,0xbfe1d34c57314dd1,1
|
|
944
|
+
np.float64,0x3feaeeb29b75dd65,0x3ff1e8b772374979,1
|
|
945
|
+
np.float64,0xbfe15e42c3a2bc86,0xbfe34d45d56c5c15,1
|
|
946
|
+
np.float64,0x3fe507429a6a0e85,0x3fe8b058176b3225,1
|
|
947
|
+
np.float64,0x3feee2b26c3dc565,0x3ff71b73203de921,1
|
|
948
|
+
np.float64,0xbfd496577aa92cae,0xbfd553fa7fe15a5f,1
|
|
949
|
+
np.float64,0x7fe2c10953e58212,0x3fc8ead6a0d14bbf,1
|
|
950
|
+
np.float64,0x800035b77aa06b70,0x800035b77aa06b70,1
|
|
951
|
+
np.float64,0x2329201e46525,0x2329201e46525,1
|
|
952
|
+
np.float64,0xbfe6225c9a6c44b9,0xbfea80861590fa02,1
|
|
953
|
+
np.float64,0xbfd6925030ad24a0,0xbfd78e70b1c2215d,1
|
|
954
|
+
np.float64,0xbfd82225c4b0444c,0xbfd958a60f845b39,1
|
|
955
|
+
np.float64,0xbb03d8a17609,0xbb03d8a17609,1
|
|
956
|
+
np.float64,0x7fc33967b12672ce,0x40001e00c9af4002,1
|
|
957
|
+
np.float64,0xff9373c6d026e780,0xbff308654a459d3d,1
|
|
958
|
+
np.float64,0x3feab1f9c5f563f4,0x3ff1a4e0fd2f093d,1
|
|
959
|
+
np.float64,0xbf993ef768327de0,0xbf994046b64e308b,1
|
|
960
|
+
np.float64,0xffb87382fc30e708,0xbfde0accb83c891b,1
|
|
961
|
+
np.float64,0x800bb3a118176743,0x800bb3a118176743,1
|
|
962
|
+
np.float64,0x800c810250d90205,0x800c810250d90205,1
|
|
963
|
+
np.float64,0xbfd2c4eb9ba589d8,0xbfd3539508b4a4a8,1
|
|
964
|
+
np.float64,0xbee1f5437dc3f,0xbee1f5437dc3f,1
|
|
965
|
+
np.float64,0x3fc07aeab520f5d8,0x3fc0926272f9d8e2,1
|
|
966
|
+
np.float64,0xbfe23747a3246e90,0xbfe47a20a6e98687,1
|
|
967
|
+
np.float64,0x3fde1296debc252c,0x3fe0401143ff6b5c,1
|
|
968
|
+
np.float64,0xbfcec8c2f73d9184,0xbfcf644e25ed3b74,1
|
|
969
|
+
np.float64,0xff9314f2c82629e0,0x40559a0f9099dfd1,1
|
|
970
|
+
np.float64,0xbfe27487afa4e910,0xbfe4d0e01200bde6,1
|
|
971
|
+
np.float64,0xffb3d6637627acc8,0x3fe326d4b1e1834f,1
|
|
972
|
+
np.float64,0xffe6f84d642df09a,0x3fc73fa9f57c3acb,1
|
|
973
|
+
np.float64,0xffe67cf76fecf9ee,0xc01cf48c97937ef9,1
|
|
974
|
+
np.float64,0x7fdc73fc12b8e7f7,0xbfcfcecde9331104,1
|
|
975
|
+
np.float64,0xffdcf8789239f0f2,0x3fe345e3b8e28776,1
|
|
976
|
+
np.float64,0x800a70af5314e15f,0x800a70af5314e15f,1
|
|
977
|
+
np.float64,0xffc862300730c460,0x3fc4e9ea813beca7,1
|
|
978
|
+
np.float64,0xbfcc6961bd38d2c4,0xbfcce33bfa6c6bd1,1
|
|
979
|
+
np.float64,0xbfc9b76bbf336ed8,0xbfca117456ac37e5,1
|
|
980
|
+
np.float64,0x7fb86e829430dd04,0x400a5bd7a18e302d,1
|
|
981
|
+
np.float64,0x7fb9813ef833027d,0xbfe5a6494f143625,1
|
|
982
|
+
np.float64,0x8005085e2c2a10bd,0x8005085e2c2a10bd,1
|
|
983
|
+
np.float64,0xffe5af099d6b5e12,0x40369bbe31e03e06,1
|
|
984
|
+
np.float64,0xffde03b1fd3c0764,0x3ff061120aa1f52a,1
|
|
985
|
+
np.float64,0x7fa4eb6cdc29d6d9,0x3fe9defbe9010322,1
|
|
986
|
+
np.float64,0x800803f4b11007ea,0x800803f4b11007ea,1
|
|
987
|
+
np.float64,0x7febd50f6df7aa1e,0xbffcf540ccf220dd,1
|
|
988
|
+
np.float64,0x7fed454f08fa8a9d,0xbffc2a8b81079403,1
|
|
989
|
+
np.float64,0xbfed7e8c69bafd19,0xbff5161e51ba6634,1
|
|
990
|
+
np.float64,0xffef92e78eff25ce,0xbffefeecddae0ad3,1
|
|
991
|
+
np.float64,0x7fe5b9b413ab7367,0xbfc681ba29704176,1
|
|
992
|
+
np.float64,0x29284e805252,0x29284e805252,1
|
|
993
|
+
np.float64,0xffed3955bcfa72ab,0xbfc695acb5f468de,1
|
|
994
|
+
np.float64,0x3fe464ee1ca8c9dc,0x3fe7b140ce50fdca,1
|
|
995
|
+
np.float64,0xffe522ae4bea455c,0x3feb957c146e66ef,1
|
|
996
|
+
np.float64,0x8000000000000000,0x8000000000000000,1
|
|
997
|
+
np.float64,0x3fd0c353a2a186a8,0x3fd1283aaa43a411,1
|
|
998
|
+
np.float64,0x3fdb30a749b6614f,0x3fdcf40df006ed10,1
|
|
999
|
+
np.float64,0x800109213cc21243,0x800109213cc21243,1
|
|
1000
|
+
np.float64,0xbfe72aa0c5ee5542,0xbfec4a713f513bc5,1
|
|
1001
|
+
np.float64,0x800865344ad0ca69,0x800865344ad0ca69,1
|
|
1002
|
+
np.float64,0x7feb7df60eb6fbeb,0x3fb1df06a67aa22f,1
|
|
1003
|
+
np.float64,0x3fe83a5dd93074bc,0x3fee3d63cda72636,1
|
|
1004
|
+
np.float64,0xbfde70e548bce1ca,0xbfe07b8e19c9dac6,1
|
|
1005
|
+
np.float64,0xbfeea38d537d471b,0xbff6bb18c230c0be,1
|
|
1006
|
+
np.float64,0x3fefeebbc47fdd78,0x3ff8cdaa53b7c7b4,1
|
|
1007
|
+
np.float64,0x7fe6512e20eca25b,0xbff623cee44a22b5,1
|
|
1008
|
+
np.float64,0xf8fa5ca3f1f4c,0xf8fa5ca3f1f4c,1
|
|
1009
|
+
np.float64,0x7fd12d00ed225a01,0xbfe90d518ea61faf,1
|
|
1010
|
+
np.float64,0x80027db43504fb69,0x80027db43504fb69,1
|
|
1011
|
+
np.float64,0xffc10a01aa221404,0x3fcc2065b3d0157b,1
|
|
1012
|
+
np.float64,0xbfef8286e87f050e,0xbff8193a54449b59,1
|
|
1013
|
+
np.float64,0xbfc73178092e62f0,0xbfc7735072ba4593,1
|
|
1014
|
+
np.float64,0x3fc859d70630b3ae,0x3fc8a626522af1c0,1
|
|
1015
|
+
np.float64,0x3fe4654c4268ca99,0x3fe7b1d2913eda1a,1
|
|
1016
|
+
np.float64,0xbfce93cd843d279c,0xbfcf2c2ef16a0957,1
|
|
1017
|
+
np.float64,0xffbcaa16d4395430,0xbfd511ced032d784,1
|
|
1018
|
+
np.float64,0xbfe91f980e723f30,0xbfeffb39cf8c7746,1
|
|
1019
|
+
np.float64,0x800556fb6f0aadf8,0x800556fb6f0aadf8,1
|
|
1020
|
+
np.float64,0xffd009cde520139c,0x3fe4fa83b1e93d28,1
|
|
1021
|
+
np.float64,0x7febc0675e3780ce,0x3feb53930c004dae,1
|
|
1022
|
+
np.float64,0xbfe7f975bdeff2ec,0xbfedc36e6729b010,1
|
|
1023
|
+
np.float64,0x45aff57c8b5ff,0x45aff57c8b5ff,1
|
|
1024
|
+
np.float64,0xbfec7ebd0138fd7a,0xbff3c5cab680aae0,1
|
|
1025
|
+
np.float64,0x8009448003b28900,0x8009448003b28900,1
|
|
1026
|
+
np.float64,0x3fca4b992d349732,0x3fcaabebcc86aa9c,1
|
|
1027
|
+
np.float64,0x3fca069161340d20,0x3fca63ecc742ff3a,1
|
|
1028
|
+
np.float64,0x80063bc80bec7791,0x80063bc80bec7791,1
|
|
1029
|
+
np.float64,0xbfe1764bffe2ec98,0xbfe36e1cb30cec94,1
|
|
1030
|
+
np.float64,0xffd0dba72f21b74e,0x3fb1834964d57ef6,1
|
|
1031
|
+
np.float64,0xbfe31848fc263092,0xbfe5bd066445cbc3,1
|
|
1032
|
+
np.float64,0xbfd1fb227323f644,0xbfd278334e27f02d,1
|
|
1033
|
+
np.float64,0xffdc59069fb8b20e,0xbfdfc363f559ea2c,1
|
|
1034
|
+
np.float64,0x3fdea52a52bd4a55,0x3fe09cada4e5344c,1
|
|
1035
|
+
np.float64,0x3f715e55a022bd00,0x3f715e5c72a2809e,1
|
|
1036
|
+
np.float64,0x1d1ac6023a35a,0x1d1ac6023a35a,1
|
|
1037
|
+
np.float64,0x7feacc71627598e2,0x400486b82121da19,1
|
|
1038
|
+
np.float64,0xa0287fa340510,0xa0287fa340510,1
|
|
1039
|
+
np.float64,0xffe352c5abe6a58b,0xc002623346060543,1
|
|
1040
|
+
np.float64,0x7fed577a23baaef3,0x3fda19bc8fa3b21f,1
|
|
1041
|
+
np.float64,0x3fde8dd5263d1baa,0x3fe08de0fedf7029,1
|
|
1042
|
+
np.float64,0x3feddd3be2bbba78,0x3ff599b2f3e018cc,1
|
|
1043
|
+
np.float64,0xc7a009f58f401,0xc7a009f58f401,1
|
|
1044
|
+
np.float64,0xbfef03d5a4fe07ab,0xbff74ee08681f47b,1
|
|
1045
|
+
np.float64,0x7fe2cf60eea59ec1,0x3fe905fb44f8cc60,1
|
|
1046
|
+
np.float64,0xbfe498fcab6931fa,0xbfe8023a6ff8becf,1
|
|
1047
|
+
np.float64,0xbfef7142acfee285,0xbff7fd196133a595,1
|
|
1048
|
+
np.float64,0xd214ffdba42a0,0xd214ffdba42a0,1
|
|
1049
|
+
np.float64,0x8006de7d78cdbcfc,0x8006de7d78cdbcfc,1
|
|
1050
|
+
np.float64,0xb247d34f648fb,0xb247d34f648fb,1
|
|
1051
|
+
np.float64,0xbfdd5bece6bab7da,0xbfdf9ba63ca2c5b2,1
|
|
1052
|
+
np.float64,0x7fe874650af0e8c9,0x3fe74204e122c10f,1
|
|
1053
|
+
np.float64,0x800768c49baed18a,0x800768c49baed18a,1
|
|
1054
|
+
np.float64,0x3fb4c0a192298140,0x3fb4cc4c8aa43300,1
|
|
1055
|
+
np.float64,0xbfa740531c2e80a0,0xbfa7446b7c74ae8e,1
|
|
1056
|
+
np.float64,0x7fe10d6edf221add,0x3fedbcd2eae26657,1
|
|
1057
|
+
np.float64,0xbfe9175d0f722eba,0xbfefeaca7f32c6e3,1
|
|
1058
|
+
np.float64,0x953e11d32a7c2,0x953e11d32a7c2,1
|
|
1059
|
+
np.float64,0x80032df90c465bf3,0x80032df90c465bf3,1
|
|
1060
|
+
np.float64,0xffec5b799638b6f2,0xbfe95cd2c69be12c,1
|
|
1061
|
+
np.float64,0xffe0c3cfa9a1879f,0x3fe20b99b0c108ce,1
|
|
1062
|
+
np.float64,0x3fb610d8e22c21b2,0x3fb61ee0d6c16df8,1
|
|
1063
|
+
np.float64,0xffe16bb39962d766,0xc016d370381b6b42,1
|
|
1064
|
+
np.float64,0xbfdc72edb238e5dc,0xbfde7bd2de10717a,1
|
|
1065
|
+
np.float64,0xffed52dee3baa5bd,0xc01994c08899129a,1
|
|
1066
|
+
np.float64,0xffa92aab08325550,0xbff2b881ce363cbd,1
|
|
1067
|
+
np.float64,0x7fe028282de0504f,0xc0157ff96c69a9c7,1
|
|
1068
|
+
np.float64,0xbfdb2151bf3642a4,0xbfdce196fcc35857,1
|
|
1069
|
+
np.float64,0x3fcffbd13c3ff7a2,0x3fd0554b5f0371ac,1
|
|
1070
|
+
np.float64,0x800d206bff1a40d8,0x800d206bff1a40d8,1
|
|
1071
|
+
np.float64,0x458f818c8b1f1,0x458f818c8b1f1,1
|
|
1072
|
+
np.float64,0x800a7b56a234f6ae,0x800a7b56a234f6ae,1
|
|
1073
|
+
np.float64,0xffe3d86161e7b0c2,0xbff58d0dbde9f188,1
|
|
1074
|
+
np.float64,0xe8ed82e3d1db1,0xe8ed82e3d1db1,1
|
|
1075
|
+
np.float64,0x3fe234e0176469c0,0x3fe476bd36b96a75,1
|
|
1076
|
+
np.float64,0xbfc7cb9c132f9738,0xbfc812c46e185e0b,1
|
|
1077
|
+
np.float64,0xbfeba116c1f7422e,0xbff2b6b7563ad854,1
|
|
1078
|
+
np.float64,0x7fe7041de62e083b,0x3f5d2b42aca47274,1
|
|
1079
|
+
np.float64,0xbfcf60f4ff3ec1e8,0xbfd002eb83406436,1
|
|
1080
|
+
np.float64,0xbfc06067a520c0d0,0xbfc0776e5839ecda,1
|
|
1081
|
+
np.float64,0x4384965a87093,0x4384965a87093,1
|
|
1082
|
+
np.float64,0xd2ed9d01a5db4,0xd2ed9d01a5db4,1
|
|
1083
|
+
np.float64,0x3fbea88cb63d5119,0x3fbece49cc34a379,1
|
|
1084
|
+
np.float64,0x3fe7e982ebefd306,0x3feda5bd4c435d43,1
|
|
1085
|
+
np.float64,0xffdb60a3e036c148,0xbfcb7ed21e7a8f49,1
|
|
1086
|
+
np.float64,0x7fdba9231eb75245,0xbfd750cab1536398,1
|
|
1087
|
+
np.float64,0x800d593534dab26b,0x800d593534dab26b,1
|
|
1088
|
+
np.float64,0xffdf15fb683e2bf6,0x3fb3aaea23357f06,1
|
|
1089
|
+
np.float64,0xbfd6f8a2e5adf146,0xbfd802e509d67c67,1
|
|
1090
|
+
np.float64,0x3feeaa31513d5463,0x3ff6c52147dc053c,1
|
|
1091
|
+
np.float64,0xf2f6dfd3e5edc,0xf2f6dfd3e5edc,1
|
|
1092
|
+
np.float64,0x7fd58d8279ab1b04,0x403243f23d02af2a,1
|
|
1093
|
+
np.float64,0x8000000000000001,0x8000000000000001,1
|
|
1094
|
+
np.float64,0x3fdffb8e0ebff71c,0x3fe1786cb0a6b0f3,1
|
|
1095
|
+
np.float64,0xc999826b93331,0xc999826b93331,1
|
|
1096
|
+
np.float64,0xffc4966f19292ce0,0x3ff0836c75c56cc7,1
|
|
1097
|
+
np.float64,0x7fef95a4b2ff2b48,0xbfbbe2c27c78154f,1
|
|
1098
|
+
np.float64,0xb8f1307f71e26,0xb8f1307f71e26,1
|
|
1099
|
+
np.float64,0x3fe807bc7eb00f79,0x3fedde19f2d3c42d,1
|
|
1100
|
+
np.float64,0x5e4b6580bc98,0x5e4b6580bc98,1
|
|
1101
|
+
np.float64,0xffe19353576326a6,0xc0278c51fee07d36,1
|
|
1102
|
+
np.float64,0xbfb0ca6f3e2194e0,0xbfb0d09be673fa72,1
|
|
1103
|
+
np.float64,0x3fea724211b4e484,0x3ff15ee06f0a0a13,1
|
|
1104
|
+
np.float64,0xbfda21e1c4b443c4,0xbfdbb041f3c86832,1
|
|
1105
|
+
np.float64,0x8008082b24901057,0x8008082b24901057,1
|
|
1106
|
+
np.float64,0xbfd031aa4ea06354,0xbfd08c77729634bb,1
|
|
1107
|
+
np.float64,0xbfc407e153280fc4,0xbfc432275711df5f,1
|
|
1108
|
+
np.float64,0xbb4fa4b5769f5,0xbb4fa4b5769f5,1
|
|
1109
|
+
np.float64,0x7fed6d1daffada3a,0xc037a14bc7b41fab,1
|
|
1110
|
+
np.float64,0xffeee589943dcb12,0x3ff2abfe47037778,1
|
|
1111
|
+
np.float64,0x301379d260270,0x301379d260270,1
|
|
1112
|
+
np.float64,0xbfec2fefc2b85fe0,0xbff36362c0363e06,1
|
|
1113
|
+
np.float64,0xbfe0b1c82e216390,0xbfe264f503f7c22c,1
|
|
1114
|
+
np.float64,0xbfea2bce78f4579d,0xbff112d6f07935ea,1
|
|
1115
|
+
np.float64,0x18508ef230a13,0x18508ef230a13,1
|
|
1116
|
+
np.float64,0x800667a74d6ccf4f,0x800667a74d6ccf4f,1
|
|
1117
|
+
np.float64,0x79ce5c8cf39cc,0x79ce5c8cf39cc,1
|
|
1118
|
+
np.float64,0x3feda61c8efb4c39,0x3ff54c9ade076f54,1
|
|
1119
|
+
np.float64,0x3fe27e06b0e4fc0d,0x3fe4de665c1dc3ca,1
|
|
1120
|
+
np.float64,0xbfd15fea2722bfd4,0xbfd1d081c55813b0,1
|
|
1121
|
+
np.float64,0xbfe5222c4cea4458,0xbfe8db62deb7d2ad,1
|
|
1122
|
+
np.float64,0xbfe8a16c33b142d8,0xbfef02d5831592a8,1
|
|
1123
|
+
np.float64,0x3fdb60e7c4b6c1d0,0x3fdd2e4265c4c3b6,1
|
|
1124
|
+
np.float64,0x800076d62b60edad,0x800076d62b60edad,1
|
|
1125
|
+
np.float64,0xbfec8f1527791e2a,0xbff3da7ed3641e8d,1
|
|
1126
|
+
np.float64,0x2af03bfe55e08,0x2af03bfe55e08,1
|
|
1127
|
+
np.float64,0xa862ee0950c5e,0xa862ee0950c5e,1
|
|
1128
|
+
np.float64,0x7fea5a7c1eb4b4f7,0xbffa6f07d28ef211,1
|
|
1129
|
+
np.float64,0x90e118fb21c23,0x90e118fb21c23,1
|
|
1130
|
+
np.float64,0xbfead0721bf5a0e4,0xbff1c6c7a771a128,1
|
|
1131
|
+
np.float64,0x3f63f4a4c027e94a,0x3f63f4a75665da67,1
|
|
1132
|
+
np.float64,0x3fece0efa579c1e0,0x3ff443bec52f021e,1
|
|
1133
|
+
np.float64,0xbfdbe743b737ce88,0xbfddd129bff89c15,1
|
|
1134
|
+
np.float64,0x3fd48c9b8fa91938,0x3fd5492a630a8cb5,1
|
|
1135
|
+
np.float64,0x3ff0000000000000,0x3ff8eb245cbee3a6,1
|
|
1136
|
+
np.float64,0xbfd51ea33baa3d46,0xbfd5ebd5dc710204,1
|
|
1137
|
+
np.float64,0x3fcfbab0183f7560,0x3fd032a054580b00,1
|
|
1138
|
+
np.float64,0x8007abce13cf579d,0x8007abce13cf579d,1
|
|
1139
|
+
np.float64,0xbfef0f4723be1e8e,0xbff760c7008e8913,1
|
|
1140
|
+
np.float64,0x8006340f524c681f,0x8006340f524c681f,1
|
|
1141
|
+
np.float64,0x87b7d7010f71,0x87b7d7010f71,1
|
|
1142
|
+
np.float64,0x3fe9422da9b2845b,0x3ff02052e6148c45,1
|
|
1143
|
+
np.float64,0x7fddd259b93ba4b2,0xc000731aa33d84b6,1
|
|
1144
|
+
np.float64,0x3fe0156d12202ada,0x3fe1972ba309cb29,1
|
|
1145
|
+
np.float64,0x8004f1264b89e24d,0x8004f1264b89e24d,1
|
|
1146
|
+
np.float64,0x3fececdcacb9d9b9,0x3ff4534d5861f731,1
|
|
1147
|
+
np.float64,0x3fd1790ab822f215,0x3fd1eb97b1bb6fb4,1
|
|
1148
|
+
np.float64,0xffce5d11863cba24,0xbfcb4f38c17210da,1
|
|
1149
|
+
np.float64,0x800a30c32a546187,0x800a30c32a546187,1
|
|
1150
|
+
np.float64,0x3fa58cc61c2b198c,0x3fa59008add7233e,1
|
|
1151
|
+
np.float64,0xbfe0ac77d62158f0,0xbfe25de3dba0bc4a,1
|
|
1152
|
+
np.float64,0xeb8c5753d718b,0xeb8c5753d718b,1
|
|
1153
|
+
np.float64,0x3fee5438dafca872,0x3ff644fef7e7adb5,1
|
|
1154
|
+
np.float64,0x3faad1eb2c35a3e0,0x3faad83499f94057,1
|
|
1155
|
+
np.float64,0x3fe39152c46722a6,0x3fe66fba0b96ab6e,1
|
|
1156
|
+
np.float64,0xffd6fd17712dfa2e,0xc010d697d1ab8731,1
|
|
1157
|
+
np.float64,0x5214a888a4296,0x5214a888a4296,1
|
|
1158
|
+
np.float64,0x8000127a5da024f5,0x8000127a5da024f5,1
|
|
1159
|
+
np.float64,0x7feb3a366cb6746c,0x3fbe49bd8d5f213a,1
|
|
1160
|
+
np.float64,0xca479501948f3,0xca479501948f3,1
|
|
1161
|
+
np.float64,0x7fe7c799ce6f8f33,0xbfd796cd98dc620c,1
|
|
1162
|
+
np.float64,0xffe20bcf30a4179e,0xbff8ca5453fa088f,1
|
|
1163
|
+
np.float64,0x3fe624638a6c48c7,0x3fea83f123832c3c,1
|
|
1164
|
+
np.float64,0xbfe5f1377c6be26f,0xbfea2e143a2d522c,1
|
|
1165
|
+
np.float64,0x7fd193f9f8a327f3,0xbfb04ee2602574d4,1
|
|
1166
|
+
np.float64,0xbfe7419d2fee833a,0xbfec737f140d363d,1
|
|
1167
|
+
np.float64,0x1,0x1,1
|
|
1168
|
+
np.float64,0x7fe2ac246c655848,0x3fd14fee3237727a,1
|
|
1169
|
+
np.float64,0xa459b42948b37,0xa459b42948b37,1
|
|
1170
|
+
np.float64,0x3fb26155ae24c2ab,0x3fb2696fc446d4c6,1
|
|
1171
|
+
np.float64,0xbfdd7b332e3af666,0xbfdfc296c21f1aa8,1
|
|
1172
|
+
np.float64,0xbfe00dbda4a01b7c,0xbfe18d2b060f0506,1
|
|
1173
|
+
np.float64,0x8003bb22d3e77646,0x8003bb22d3e77646,1
|
|
1174
|
+
np.float64,0x3fee21b0a57c4361,0x3ff5fb6a21dc911c,1
|
|
1175
|
+
np.float64,0x80ca69270194d,0x80ca69270194d,1
|
|
1176
|
+
np.float64,0xbfd6d80350adb006,0xbfd7ddb501edbde0,1
|
|
1177
|
+
np.float64,0xd2f8b801a5f2,0xd2f8b801a5f2,1
|
|
1178
|
+
np.float64,0xbfe856b3f170ad68,0xbfee7334fdc49296,1
|
|
1179
|
+
np.float64,0x3fed5c1b20bab836,0x3ff4e73ee5d5c7f3,1
|
|
1180
|
+
np.float64,0xbfd58085a5ab010c,0xbfd6596ddc381ffa,1
|
|
1181
|
+
np.float64,0x3fe4f0134b29e027,0x3fe88b70602fbd21,1
|
|
1182
|
+
np.float64,0xffc9098fdc321320,0x4011c334a74a92cf,1
|
|
1183
|
+
np.float64,0x794749bef28ea,0x794749bef28ea,1
|
|
1184
|
+
np.float64,0xbfc86b547f30d6a8,0xbfc8b84a4fafe0af,1
|
|
1185
|
+
np.float64,0x7fe1356b9da26ad6,0x3fd270bca208d899,1
|
|
1186
|
+
np.float64,0x7fca0ef1aa341de2,0xbff851044c0734fa,1
|
|
1187
|
+
np.float64,0x80064cb8b62c9972,0x80064cb8b62c9972,1
|
|
1188
|
+
np.float64,0xffd3a09a83a74136,0x3ffb66dae0accdf5,1
|
|
1189
|
+
np.float64,0x800e301aa15c6035,0x800e301aa15c6035,1
|
|
1190
|
+
np.float64,0x800e51f323bca3e6,0x800e51f323bca3e6,1
|
|
1191
|
+
np.float64,0x7ff0000000000000,0xfff8000000000000,1
|
|
1192
|
+
np.float64,0x800c4278c87884f2,0x800c4278c87884f2,1
|
|
1193
|
+
np.float64,0xbfe8481649f0902c,0xbfee576772695096,1
|
|
1194
|
+
np.float64,0xffe2344e3fa4689c,0x3fb10442ec0888de,1
|
|
1195
|
+
np.float64,0xbfeada313d75b462,0xbff1d1aee3fab3a9,1
|
|
1196
|
+
np.float64,0x8009ddfb1333bbf7,0x8009ddfb1333bbf7,1
|
|
1197
|
+
np.float64,0x7fed3314c93a6629,0x3ff7a9b12dc1cd37,1
|
|
1198
|
+
np.float64,0x3fd55c26da2ab84e,0x3fd630a7b8aac78a,1
|
|
1199
|
+
np.float64,0x800cdb5203f9b6a4,0x800cdb5203f9b6a4,1
|
|
1200
|
+
np.float64,0xffd04a875da0950e,0x4009a13810ab121d,1
|
|
1201
|
+
np.float64,0x800f1acb527e3597,0x800f1acb527e3597,1
|
|
1202
|
+
np.float64,0xbf9519bf282a3380,0xbf951a82e9b955ff,1
|
|
1203
|
+
np.float64,0x3fcd7a42fa3af486,0x3fce028f3c51072d,1
|
|
1204
|
+
np.float64,0xbfdd3e21b73a7c44,0xbfdf769f2ff2480b,1
|
|
1205
|
+
np.float64,0xffd4361e2aa86c3c,0xbfc211ce8e9f792c,1
|
|
1206
|
+
np.float64,0x7fccf97f6939f2fe,0xbff8464bad830f06,1
|
|
1207
|
+
np.float64,0x800ce47fb939c900,0x800ce47fb939c900,1
|
|
1208
|
+
np.float64,0xffe9e51df173ca3b,0xbfceaf990d652c4e,1
|
|
1209
|
+
np.float64,0x3fe05bba5b20b775,0x3fe1f326e4455442,1
|
|
1210
|
+
np.float64,0x800a29b4b134536a,0x800a29b4b134536a,1
|
|
1211
|
+
np.float64,0xe6f794b7cdef3,0xe6f794b7cdef3,1
|
|
1212
|
+
np.float64,0xffb5b688ce2b6d10,0x3ff924bb97ae2f6d,1
|
|
1213
|
+
np.float64,0x7fa74105d82e820b,0x3fd49643aaa9eee4,1
|
|
1214
|
+
np.float64,0x80020d15f7a41a2d,0x80020d15f7a41a2d,1
|
|
1215
|
+
np.float64,0x3fd6a983d5ad5308,0x3fd7a8cc8835b5b8,1
|
|
1216
|
+
np.float64,0x7fcd9798f03b2f31,0x3fc534c2f7bf4721,1
|
|
1217
|
+
np.float64,0xffdd31873a3a630e,0xbfe3171fcdffb3f7,1
|
|
1218
|
+
np.float64,0x80075183234ea307,0x80075183234ea307,1
|
|
1219
|
+
np.float64,0x82f3132505e63,0x82f3132505e63,1
|
|
1220
|
+
np.float64,0x3febfd9cb837fb39,0x3ff325bbf812515d,1
|
|
1221
|
+
np.float64,0xbfb4630fda28c620,0xbfb46e1f802ec278,1
|
|
1222
|
+
np.float64,0x3feeed7c89fddafa,0x3ff72c20ce5a9ee4,1
|
|
1223
|
+
np.float64,0x7fd3dcb3c127b967,0x40123d27ec9ec31d,1
|
|
1224
|
+
np.float64,0xbfe923450c72468a,0xbff00149c5742725,1
|
|
1225
|
+
np.float64,0x7fdef7f91abdeff1,0xbfe02ceb21f7923d,1
|
|
1226
|
+
np.float64,0x7fdd70d28fbae1a4,0xbfefcc5c9d10cdfd,1
|
|
1227
|
+
np.float64,0x800ca445a8d9488c,0x800ca445a8d9488c,1
|
|
1228
|
+
np.float64,0x7fec2754e1f84ea9,0x40173f6c1c97f825,1
|
|
1229
|
+
np.float64,0x7fcbca31f7379463,0x401e26bd2667075b,1
|
|
1230
|
+
np.float64,0x8003fa1d0847f43b,0x8003fa1d0847f43b,1
|
|
1231
|
+
np.float64,0xffe95cf85932b9f0,0xc01308e60278aa11,1
|
|
1232
|
+
np.float64,0x8009c53948f38a73,0x8009c53948f38a73,1
|
|
1233
|
+
np.float64,0x3fdcca9226b99524,0x3fdee7a008f75d41,1
|
|
1234
|
+
np.float64,0xbfe9ee241f33dc48,0xbff0d16bfff6c8e9,1
|
|
1235
|
+
np.float64,0xbfb3365058266ca0,0xbfb33f9176ebb51d,1
|
|
1236
|
+
np.float64,0x7fa98e10f4331c21,0x3fdee04ffd31314e,1
|
|
1237
|
+
np.float64,0xbfe1a11aea634236,0xbfe3a8e3d84fda38,1
|
|
1238
|
+
np.float64,0xbfd8df051131be0a,0xbfda342805d1948b,1
|
|
1239
|
+
np.float64,0x3d49a2407a935,0x3d49a2407a935,1
|
|
1240
|
+
np.float64,0xfc51eefff8a3e,0xfc51eefff8a3e,1
|
|
1241
|
+
np.float64,0xda63950bb4c73,0xda63950bb4c73,1
|
|
1242
|
+
np.float64,0x80050f3d4fea1e7b,0x80050f3d4fea1e7b,1
|
|
1243
|
+
np.float64,0x3fcdbd6e453b7ae0,0x3fce497478c28e77,1
|
|
1244
|
+
np.float64,0x7ebd4932fd7aa,0x7ebd4932fd7aa,1
|
|
1245
|
+
np.float64,0x7fa3904eac27209c,0xc0015f3125efc151,1
|
|
1246
|
+
np.float64,0x7fc59f956b2b3f2a,0xc00c012e7a2c281f,1
|
|
1247
|
+
np.float64,0xbfd436d716a86dae,0xbfd4ea13533a942b,1
|
|
1248
|
+
np.float64,0x9347ae3d268f6,0x9347ae3d268f6,1
|
|
1249
|
+
np.float64,0xffd001764d2002ec,0xbffab3462e515623,1
|
|
1250
|
+
np.float64,0x3fe6f406662de80d,0x3febe9bac3954999,1
|
|
1251
|
+
np.float64,0x3f943ecaf8287d96,0x3f943f77dee5e77f,1
|
|
1252
|
+
np.float64,0x3fd6250efcac4a1c,0x3fd712afa947d56f,1
|
|
1253
|
+
np.float64,0xbfe849ff777093ff,0xbfee5b089d03391f,1
|
|
1254
|
+
np.float64,0xffd3b8ef8f2771e0,0x4000463ff7f29214,1
|
|
1255
|
+
np.float64,0xbfc3bae9252775d4,0xbfc3e34c133f1933,1
|
|
1256
|
+
np.float64,0xbfea93943df52728,0xbff18355e4fc341d,1
|
|
1257
|
+
np.float64,0x3fc4d922ad29b245,0x3fc508d66869ef29,1
|
|
1258
|
+
np.float64,0x4329694a8652e,0x4329694a8652e,1
|
|
1259
|
+
np.float64,0x8834f1a71069e,0x8834f1a71069e,1
|
|
1260
|
+
np.float64,0xe0e5be8dc1cb8,0xe0e5be8dc1cb8,1
|
|
1261
|
+
np.float64,0x7fef4d103afe9a1f,0xc0047b88b94554fe,1
|
|
1262
|
+
np.float64,0x3fe9b57af4f36af6,0x3ff0963831d51c3f,1
|
|
1263
|
+
np.float64,0x3fe081e2fa6103c6,0x3fe22572e41be655,1
|
|
1264
|
+
np.float64,0x3fd78cf7b42f19ef,0x3fd8acafa1ad776a,1
|
|
1265
|
+
np.float64,0x7fbffd58d43ffab1,0x3fb16092c7de6036,1
|
|
1266
|
+
np.float64,0xbfe1e8bfae23d180,0xbfe40c1c6277dd52,1
|
|
1267
|
+
np.float64,0x800a9f59fb153eb4,0x800a9f59fb153eb4,1
|
|
1268
|
+
np.float64,0xffebe14e33b7c29c,0x3fe0ec532f4deedd,1
|
|
1269
|
+
np.float64,0xffc36ca00426d940,0xc000806a712d6e83,1
|
|
1270
|
+
np.float64,0xbfcc2be82d3857d0,0xbfcca2a7d372ec64,1
|
|
1271
|
+
np.float64,0x800c03b908780772,0x800c03b908780772,1
|
|
1272
|
+
np.float64,0xf315a64be62b5,0xf315a64be62b5,1
|
|
1273
|
+
np.float64,0xbfe644043cec8808,0xbfeab974d3dc6d80,1
|
|
1274
|
+
np.float64,0x3fedb7de3cbb6fbc,0x3ff56549a5acd324,1
|
|
1275
|
+
np.float64,0xbfb1a875522350e8,0xbfb1afa41dee338d,1
|
|
1276
|
+
np.float64,0xffee8d4a407d1a94,0x3fead1749a636ff6,1
|
|
1277
|
+
np.float64,0x8004061c13080c39,0x8004061c13080c39,1
|
|
1278
|
+
np.float64,0x3fe650ae7feca15c,0x3feacefb8bc25f64,1
|
|
1279
|
+
np.float64,0x3fda8340e6b50682,0x3fdc24275cab1df8,1
|
|
1280
|
+
np.float64,0x8009084344321087,0x8009084344321087,1
|
|
1281
|
+
np.float64,0x7fdd19cb823a3396,0xbfd1d8fb35d89e3f,1
|
|
1282
|
+
np.float64,0xbfe893172571262e,0xbfeee716b592b93c,1
|
|
1283
|
+
np.float64,0x8ff5acc11fec,0x8ff5acc11fec,1
|
|
1284
|
+
np.float64,0xbfdca0c57cb9418a,0xbfdeb42465a1b59e,1
|
|
1285
|
+
np.float64,0xffd77bd2a3aef7a6,0x4012cd69e85b82d8,1
|
|
1286
|
+
np.float64,0xbfe6ea78982dd4f1,0xbfebd8ec61fb9e1f,1
|
|
1287
|
+
np.float64,0x7fe14b1d80a2963a,0xc02241642102cf71,1
|
|
1288
|
+
np.float64,0x3fe712bf286e257e,0x3fec20012329a7fb,1
|
|
1289
|
+
np.float64,0x7fcb6fa4d636df49,0x400b899d14a886b3,1
|
|
1290
|
+
np.float64,0x3fb82cb39a305960,0x3fb83f29c5f0822e,1
|
|
1291
|
+
np.float64,0x7fed694c8b3ad298,0xbfe2724373c69808,1
|
|
1292
|
+
np.float64,0xbfcd21229f3a4244,0xbfcda497fc3e1245,1
|
|
1293
|
+
np.float64,0x564d3770ac9a8,0x564d3770ac9a8,1
|
|
1294
|
+
np.float64,0xf4409e13e8814,0xf4409e13e8814,1
|
|
1295
|
+
np.float64,0x80068dca9a8d1b96,0x80068dca9a8d1b96,1
|
|
1296
|
+
np.float64,0xbfe13f82afe27f06,0xbfe3236ddded353f,1
|
|
1297
|
+
np.float64,0x80023f8114647f03,0x80023f8114647f03,1
|
|
1298
|
+
np.float64,0xeafba7dfd5f75,0xeafba7dfd5f75,1
|
|
1299
|
+
np.float64,0x3feca74ddeb94e9c,0x3ff3f95dcce5a227,1
|
|
1300
|
+
np.float64,0x10000000000000,0x10000000000000,1
|
|
1301
|
+
np.float64,0xbfebdb4141f7b682,0xbff2fc29823ac64a,1
|
|
1302
|
+
np.float64,0xbfcd75ee2f3aebdc,0xbfcdfdfd87cc6a29,1
|
|
1303
|
+
np.float64,0x7fc010cda420219a,0x3fae4ca2cf1f2657,1
|
|
1304
|
+
np.float64,0x1a90209e35205,0x1a90209e35205,1
|
|
1305
|
+
np.float64,0x8008057d01900afa,0x8008057d01900afa,1
|
|
1306
|
+
np.float64,0x3f9cb5f280396be5,0x3f9cb7dfb4e4be4e,1
|
|
1307
|
+
np.float64,0xffe1bbb60b63776c,0xc00011b1ffcb2561,1
|
|
1308
|
+
np.float64,0xffda883f6fb5107e,0x4044238ef4e2a198,1
|
|
1309
|
+
np.float64,0x3fc07c0b4a20f817,0x3fc09387de9eebcf,1
|
|
1310
|
+
np.float64,0x8003a9ebc0c753d8,0x8003a9ebc0c753d8,1
|
|
1311
|
+
np.float64,0x1d7fd5923affc,0x1d7fd5923affc,1
|
|
1312
|
+
np.float64,0xbfe9cd8cf9b39b1a,0xbff0af43e567ba4a,1
|
|
1313
|
+
np.float64,0x11285cb42250c,0x11285cb42250c,1
|
|
1314
|
+
np.float64,0xffe81ae1ccb035c3,0xbfe038be7eb563a6,1
|
|
1315
|
+
np.float64,0xbfe56473b1eac8e8,0xbfe94654d8ab9e75,1
|
|
1316
|
+
np.float64,0x3fee904619fd208c,0x3ff69e198152fe17,1
|
|
1317
|
+
np.float64,0xbfeeb9a2cbfd7346,0xbff6dc8d96da78cd,1
|
|
1318
|
+
np.float64,0x8006cdfa59ed9bf5,0x8006cdfa59ed9bf5,1
|
|
1319
|
+
np.float64,0x8008f2366d31e46d,0x8008f2366d31e46d,1
|
|
1320
|
+
np.float64,0x8008d5f91e31abf3,0x8008d5f91e31abf3,1
|
|
1321
|
+
np.float64,0x3fe85886f8b0b10e,0x3fee76af16f5a126,1
|
|
1322
|
+
np.float64,0x3fefb9b2b73f7365,0x3ff8745128fa3e3b,1
|
|
1323
|
+
np.float64,0x7fdf3e721f3e7ce3,0xbfb19381541ca2a8,1
|
|
1324
|
+
np.float64,0x3fd2768c41a4ed18,0x3fd2fe2f85a3f3a6,1
|
|
1325
|
+
np.float64,0xbfcabe3c6a357c78,0xbfcb239fb88bc260,1
|
|
1326
|
+
np.float64,0xffdffb6a3dbff6d4,0xbff7af4759fd557c,1
|
|
1327
|
+
np.float64,0x800817f75f302fef,0x800817f75f302fef,1
|
|
1328
|
+
np.float64,0xbfe6a1d1762d43a3,0xbfeb5a399a095ef3,1
|
|
1329
|
+
np.float64,0x7fd6f32f912de65e,0x40016dedc51aabd0,1
|
|
1330
|
+
np.float64,0x3fc6cb26652d964d,0x3fc7099f047d924a,1
|
|
1331
|
+
np.float64,0x3fe8b975d67172ec,0x3fef31946123c0e7,1
|
|
1332
|
+
np.float64,0xffe44a09d1e89413,0x3fdee9e5eac6e540,1
|
|
1333
|
+
np.float64,0xbfece76d4cb9cedb,0xbff44c34849d07ba,1
|
|
1334
|
+
np.float64,0x7feb76027036ec04,0x3fe08595a5e263ac,1
|
|
1335
|
+
np.float64,0xffe194f591a329ea,0x3fbe5bd626400a70,1
|
|
1336
|
+
np.float64,0xbfc170698122e0d4,0xbfc18c3de8b63565,1
|
|
1337
|
+
np.float64,0x3fc82b2c0f305658,0x3fc875c3b5fbcd08,1
|
|
1338
|
+
np.float64,0x3fd5015634aa02ac,0x3fd5cb1df07213c3,1
|
|
1339
|
+
np.float64,0x7fe640884b6c8110,0xbff66255a420abb5,1
|
|
1340
|
+
np.float64,0x5a245206b448b,0x5a245206b448b,1
|
|
1341
|
+
np.float64,0xffe9d9fa2f73b3f4,0xc0272b0dd34ab9bf,1
|
|
1342
|
+
np.float64,0x3fd990e8aab321d0,0x3fdb04cd3a29bcc3,1
|
|
1343
|
+
np.float64,0xde9dda8bbd3bc,0xde9dda8bbd3bc,1
|
|
1344
|
+
np.float64,0xbfe81b32b4703666,0xbfee029937fa9f5a,1
|
|
1345
|
+
np.float64,0xbfe68116886d022d,0xbfeb21c62081cb73,1
|
|
1346
|
+
np.float64,0x3fb8da191231b432,0x3fb8ee28c71507d3,1
|
|
1347
|
+
np.float64,0x3fb111395a222273,0x3fb117b57de3dea4,1
|
|
1348
|
+
np.float64,0xffbafadc6a35f5b8,0x3ffcc6d2370297b9,1
|
|
1349
|
+
np.float64,0x8002ca475b05948f,0x8002ca475b05948f,1
|
|
1350
|
+
np.float64,0xbfeafef57875fdeb,0xbff1fb1315676f24,1
|
|
1351
|
+
np.float64,0x7fcda427d73b484f,0xbff9f70212694d17,1
|
|
1352
|
+
np.float64,0xffe2517b3ba4a2f6,0xc029ca6707305bf4,1
|
|
1353
|
+
np.float64,0x7fc5ee156b2bdc2a,0xbff8384b59e9056e,1
|
|
1354
|
+
np.float64,0xbfec22af3278455e,0xbff3530fe25816b4,1
|
|
1355
|
+
np.float64,0x6b5a8c2cd6b52,0x6b5a8c2cd6b52,1
|
|
1356
|
+
np.float64,0xffdaf6c4b935ed8a,0x4002f00ce58affcf,1
|
|
1357
|
+
np.float64,0x800a41813c748303,0x800a41813c748303,1
|
|
1358
|
+
np.float64,0xbfd09a1269213424,0xbfd0fc0a0c5de8eb,1
|
|
1359
|
+
np.float64,0x7fa2cb74d42596e9,0x3fc3d40e000fa69d,1
|
|
1360
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
1361
|
+
np.float64,0x3fbfbf8ed63f7f1e,0x3fbfe97bcad9f53a,1
|
|
1362
|
+
np.float64,0x7fe0ebba65a1d774,0x401b0f17b28618df,1
|
|
1363
|
+
np.float64,0x3fd02c3a25a05874,0x3fd086aa55b19c9c,1
|
|
1364
|
+
np.float64,0xec628f95d8c52,0xec628f95d8c52,1
|
|
1365
|
+
np.float64,0x3fd319329fa63264,0x3fd3afb04e0dec63,1
|
|
1366
|
+
np.float64,0x180e0ade301c2,0x180e0ade301c2,1
|
|
1367
|
+
np.float64,0xbfe8d78324f1af06,0xbfef6c66153064ee,1
|
|
1368
|
+
np.float64,0xffb89fa200313f48,0xbfeb96ff2d9358dc,1
|
|
1369
|
+
np.float64,0x7fe6abcf86ed579e,0xc0269f4de86365ec,1
|
|
1370
|
+
np.float64,0x7fdff8cd65bff19a,0xbfd0f7c6b9052c9a,1
|
|
1371
|
+
np.float64,0xbfd2e3a53d25c74a,0xbfd37520cda5f6b2,1
|
|
1372
|
+
np.float64,0x7fe844b096708960,0x3ff696a6182e5a7a,1
|
|
1373
|
+
np.float64,0x7fdce0c7a3b9c18e,0x3fd42875d69ed379,1
|
|
1374
|
+
np.float64,0xffba5a91cc34b520,0x4001b571e8991951,1
|
|
1375
|
+
np.float64,0xffe78fe4a6ef1fc9,0x3ff4507b31f5b3bc,1
|
|
1376
|
+
np.float64,0xbfd7047493ae08ea,0xbfd810618a53fffb,1
|
|
1377
|
+
np.float64,0xc6559def8cab4,0xc6559def8cab4,1
|
|
1378
|
+
np.float64,0x3fe75d67a76ebacf,0x3feca56817de65e4,1
|
|
1379
|
+
np.float64,0xffd24adbd6a495b8,0xc012c491addf2df5,1
|
|
1380
|
+
np.float64,0x7fed35e28dba6bc4,0x403a0fa555ff7ec6,1
|
|
1381
|
+
np.float64,0x80078c4afa0f1897,0x80078c4afa0f1897,1
|
|
1382
|
+
np.float64,0xa6ec39114dd87,0xa6ec39114dd87,1
|
|
1383
|
+
np.float64,0x7fb1bd33ba237a66,0x4010092bb6810fd4,1
|
|
1384
|
+
np.float64,0x800ecf215edd9e43,0x800ecf215edd9e43,1
|
|
1385
|
+
np.float64,0x3fb7c169242f82d2,0x3fb7d2ed30c462e6,1
|
|
1386
|
+
np.float64,0xbf71b46d60236900,0xbf71b4749a10c112,1
|
|
1387
|
+
np.float64,0x800d7851787af0a3,0x800d7851787af0a3,1
|
|
1388
|
+
np.float64,0x3fcb4a45e7369488,0x3fcbb61701a1bcec,1
|
|
1389
|
+
np.float64,0x3fd4e3682429c6d0,0x3fd5a9bcb916eb94,1
|
|
1390
|
+
np.float64,0x800497564c292ead,0x800497564c292ead,1
|
|
1391
|
+
np.float64,0xbfca3737a1346e70,0xbfca96a86ae5d687,1
|
|
1392
|
+
np.float64,0x19aa87e03356,0x19aa87e03356,1
|
|
1393
|
+
np.float64,0xffb2593fe624b280,0xc05fedb99b467ced,1
|
|
1394
|
+
np.float64,0xbfdd8748fbbb0e92,0xbfdfd1a7df17252c,1
|
|
1395
|
+
np.float64,0x8004c7afc7098f60,0x8004c7afc7098f60,1
|
|
1396
|
+
np.float64,0x7fde48b2bf3c9164,0xbfe36ef1158ed420,1
|
|
1397
|
+
np.float64,0xbfec8e0eb0f91c1d,0xbff3d9319705a602,1
|
|
1398
|
+
np.float64,0xffea1be204f437c3,0xc0144f67298c3e6f,1
|
|
1399
|
+
np.float64,0x7fdb906b593720d6,0xbfce99233396eda7,1
|
|
1400
|
+
np.float64,0x3fef0f114ffe1e22,0x3ff76072a258a51b,1
|
|
1401
|
+
np.float64,0x3fe3e284c8e7c50a,0x3fe6e9b05e17c999,1
|
|
1402
|
+
np.float64,0xbfbda9eef23b53e0,0xbfbdcc1abb443597,1
|
|
1403
|
+
np.float64,0x3feb6454d4f6c8aa,0x3ff26f65a85baba4,1
|
|
1404
|
+
np.float64,0x3fea317439f462e8,0x3ff118e2187ef33f,1
|
|
1405
|
+
np.float64,0x376ad0646ed5b,0x376ad0646ed5b,1
|
|
1406
|
+
np.float64,0x7fdd461a1c3a8c33,0x3f7ba20fb79e785f,1
|
|
1407
|
+
np.float64,0xebc520a3d78a4,0xebc520a3d78a4,1
|
|
1408
|
+
np.float64,0x3fca90fe53352200,0x3fcaf45c7fae234d,1
|
|
1409
|
+
np.float64,0xbfe80dd1de701ba4,0xbfede97e12cde9de,1
|
|
1410
|
+
np.float64,0x3fd242b00ea48560,0x3fd2c5cf9bf69a31,1
|
|
1411
|
+
np.float64,0x7fe46c057828d80a,0xbfe2f76837488f94,1
|
|
1412
|
+
np.float64,0x3fc162bea322c580,0x3fc17e517c958867,1
|
|
1413
|
+
np.float64,0xffebf0452ff7e08a,0x3ffc3fd95c257b54,1
|
|
1414
|
+
np.float64,0xffd88043c6310088,0x4008b05598d0d95f,1
|
|
1415
|
+
np.float64,0x800d8c49da5b1894,0x800d8c49da5b1894,1
|
|
1416
|
+
np.float64,0xbfed33b487ba6769,0xbff4b0ea941f8a6a,1
|
|
1417
|
+
np.float64,0x16b881e22d711,0x16b881e22d711,1
|
|
1418
|
+
np.float64,0x288bae0051177,0x288bae0051177,1
|
|
1419
|
+
np.float64,0xffc83a0fe8307420,0x4006eff03da17f86,1
|
|
1420
|
+
np.float64,0x3fc7868b252f0d18,0x3fc7cb4954290324,1
|
|
1421
|
+
np.float64,0xbfe195514b232aa2,0xbfe398aae6c8ed76,1
|
|
1422
|
+
np.float64,0x800c001ae7f80036,0x800c001ae7f80036,1
|
|
1423
|
+
np.float64,0x7feb82abe7370557,0xbff1e13fe6fad23c,1
|
|
1424
|
+
np.float64,0xffecf609cdf9ec13,0xc0112aa1805ae59e,1
|
|
1425
|
+
np.float64,0xffddd654f63bacaa,0x3fe46cce899f710d,1
|
|
1426
|
+
np.float64,0x3fe2163138642c62,0x3fe44b9c760acd4c,1
|
|
1427
|
+
np.float64,0x4e570dc09cae2,0x4e570dc09cae2,1
|
|
1428
|
+
np.float64,0x7fe9e8d091f3d1a0,0xc000fe20f8e9a4b5,1
|
|
1429
|
+
np.float64,0x7fe60042952c0084,0x3fd0aa740f394c2a,1
|