numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +185 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +353 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1515 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +6 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +173 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +39 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +41 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1518 -0
- numpy/f2py/symbolic.pyi +219 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +500 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5758 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2001 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4705 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +655 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_common.pxd +107 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +117 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/mtrand.pyi +759 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +107 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +804 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +16 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +38 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +132 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.0.dist-info/METADATA +139 -0
- numpy-2.4.0.dist-info/RECORD +915 -0
- numpy-2.4.0.dist-info/WHEEL +5 -0
- numpy-2.4.0.dist-info/entry_points.txt +13 -0
- numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
- numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
- numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
- numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
- numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0x0
|
|
2
|
+
0, 0x399e5b222b82fa9
|
|
3
|
+
1, 0x41fd08c1f00f3bc5
|
|
4
|
+
2, 0x78b8824162ee4d04
|
|
5
|
+
3, 0x176747919e02739d
|
|
6
|
+
4, 0xfaa88f002a8d3596
|
|
7
|
+
5, 0x418eb6f592e6c227
|
|
8
|
+
6, 0xef83020b8344dd45
|
|
9
|
+
7, 0x30a74a1a6eaa064b
|
|
10
|
+
8, 0x93d43bf97a490c3
|
|
11
|
+
9, 0xe4ba28b442194cc
|
|
12
|
+
10, 0xc829083a168a8656
|
|
13
|
+
11, 0x73f45d50f8e22849
|
|
14
|
+
12, 0xf912db57352824cc
|
|
15
|
+
13, 0xf524216927b12ada
|
|
16
|
+
14, 0x22b7697473b1dfda
|
|
17
|
+
15, 0x311e2a936414b39f
|
|
18
|
+
16, 0xb905abfdcc425be6
|
|
19
|
+
17, 0x4b14630d031eac9c
|
|
20
|
+
18, 0x1cf0c4ae01222bc8
|
|
21
|
+
19, 0xa6c33efc6e82ef3
|
|
22
|
+
20, 0x43b3576937ba0948
|
|
23
|
+
21, 0x1e483d17cdde108a
|
|
24
|
+
22, 0x6722784cac11ac88
|
|
25
|
+
23, 0xee87569a48fc45d7
|
|
26
|
+
24, 0xb821dcbe74d18661
|
|
27
|
+
25, 0xa5d1876ef3da1a81
|
|
28
|
+
26, 0xe4121c2af72a483
|
|
29
|
+
27, 0x2d747e355a52cf43
|
|
30
|
+
28, 0x609059957bd03725
|
|
31
|
+
29, 0xc3327244b49e16c5
|
|
32
|
+
30, 0xb5ae6cb000dde769
|
|
33
|
+
31, 0x774315003209017
|
|
34
|
+
32, 0xa2013397ba8db605
|
|
35
|
+
33, 0x73b228945dbcd957
|
|
36
|
+
34, 0x801af7190375d3c0
|
|
37
|
+
35, 0xae6dca29f24c9c67
|
|
38
|
+
36, 0xd1cc0bcb1ca26249
|
|
39
|
+
37, 0x1defa62a5bd853be
|
|
40
|
+
38, 0x67c2f5557fa89462
|
|
41
|
+
39, 0xf1729b58122fab02
|
|
42
|
+
40, 0xb67eb71949ec6c42
|
|
43
|
+
41, 0x5456366ec1f8f7d7
|
|
44
|
+
42, 0x44492b32eb7966f5
|
|
45
|
+
43, 0xa801804159f175f1
|
|
46
|
+
44, 0x5a416f23cac70d84
|
|
47
|
+
45, 0x186f55293302303d
|
|
48
|
+
46, 0x7339d5d7b6a43639
|
|
49
|
+
47, 0xfc6df38d6a566121
|
|
50
|
+
48, 0xed2fe018f150b39e
|
|
51
|
+
49, 0x508e0b04a781fa1b
|
|
52
|
+
50, 0x8bee9d50f32eaf50
|
|
53
|
+
51, 0x9870015d37e63cc
|
|
54
|
+
52, 0x93c6b12309c14f2d
|
|
55
|
+
53, 0xb571cf798abe93ff
|
|
56
|
+
54, 0x85c35a297a88ae6e
|
|
57
|
+
55, 0x9b1b79afe497a2ae
|
|
58
|
+
56, 0x1ca02e5b95d96b8d
|
|
59
|
+
57, 0x5bb695a666c0a94a
|
|
60
|
+
58, 0x4e3caf9bbab0b208
|
|
61
|
+
59, 0x44a44be1a89f2dc1
|
|
62
|
+
60, 0x4ff37c33445758d1
|
|
63
|
+
61, 0xd0e02875322f35da
|
|
64
|
+
62, 0xfd449a91fb92646b
|
|
65
|
+
63, 0xbe0b49096b95db4d
|
|
66
|
+
64, 0xffa3647cad13ef5d
|
|
67
|
+
65, 0x75c127a61acd10c8
|
|
68
|
+
66, 0xd65f697756f5f98e
|
|
69
|
+
67, 0x3ced84be93d94434
|
|
70
|
+
68, 0x4da3095c2fc46d68
|
|
71
|
+
69, 0x67564e2a771ee9ac
|
|
72
|
+
70, 0x36944775180644a9
|
|
73
|
+
71, 0xf458db1c177cdb60
|
|
74
|
+
72, 0x5b58406dcd034c8
|
|
75
|
+
73, 0x793301a3fdab2a73
|
|
76
|
+
74, 0x1c2a1a16d6db6128
|
|
77
|
+
75, 0xc2dacd4ddddbe56c
|
|
78
|
+
76, 0x2e7d15be2301a111
|
|
79
|
+
77, 0xd4f4a6341b3bcd18
|
|
80
|
+
78, 0x3622996bbe6a9e3b
|
|
81
|
+
79, 0xaf29aa9a7d6d47da
|
|
82
|
+
80, 0x6d7dbb74a4cd68ae
|
|
83
|
+
81, 0xc260a17e0f39f841
|
|
84
|
+
82, 0xdee0170f2af66f0d
|
|
85
|
+
83, 0xf84ae780d7b5a06e
|
|
86
|
+
84, 0x8326247b73f43c3a
|
|
87
|
+
85, 0xd44eef44b4f98b84
|
|
88
|
+
86, 0x3d10aee62ec895e3
|
|
89
|
+
87, 0x4f23fef01bf703b3
|
|
90
|
+
88, 0xf8e50aa57d888df6
|
|
91
|
+
89, 0x7da67411e3bef261
|
|
92
|
+
90, 0x1d00f2769b2f96d7
|
|
93
|
+
91, 0x7ef9a15b7444b84e
|
|
94
|
+
92, 0xcfa16436cc2b7e21
|
|
95
|
+
93, 0x29ab8cfac00460ff
|
|
96
|
+
94, 0x23613de8608b0e70
|
|
97
|
+
95, 0xb1aa0980625798a8
|
|
98
|
+
96, 0xb9256fd29db7df99
|
|
99
|
+
97, 0xdacf311bf3e7fa18
|
|
100
|
+
98, 0xa013c8f9fada20d8
|
|
101
|
+
99, 0xaf5fd4fe8230fe3e
|
|
102
|
+
100, 0xd3d59ca55102bc5c
|
|
103
|
+
101, 0x9d08e2aa5242767f
|
|
104
|
+
102, 0x40278fe131e83b53
|
|
105
|
+
103, 0x56397d03c7c14c98
|
|
106
|
+
104, 0xe874b77b119359b3
|
|
107
|
+
105, 0x926a1ba4304ab19f
|
|
108
|
+
106, 0x1e115d5aa695a91d
|
|
109
|
+
107, 0xc6a459df441f2fe3
|
|
110
|
+
108, 0x2ca842bc1b0b3c6a
|
|
111
|
+
109, 0x24c804cf8e5eed16
|
|
112
|
+
110, 0x7ca00fc4a4c3ebd3
|
|
113
|
+
111, 0x546af7cecc4a4ba6
|
|
114
|
+
112, 0x8faae1fa18fd6e3
|
|
115
|
+
113, 0x40420b0089641a6a
|
|
116
|
+
114, 0x88175a35d9abcb83
|
|
117
|
+
115, 0xf7d746d1b8b1357c
|
|
118
|
+
116, 0x7dae771a651be970
|
|
119
|
+
117, 0x2f6485247ee4df84
|
|
120
|
+
118, 0x6883702fab2d8ec5
|
|
121
|
+
119, 0xeb7eea829a67f9a6
|
|
122
|
+
120, 0x60d5880b485562ed
|
|
123
|
+
121, 0x7d4ca3d7e41a4e7e
|
|
124
|
+
122, 0xbb7fef961ab8de18
|
|
125
|
+
123, 0x3b92452fb810c164
|
|
126
|
+
124, 0x5f4b4755348b338
|
|
127
|
+
125, 0xca45a715a7539806
|
|
128
|
+
126, 0xc33efd9da5399dd
|
|
129
|
+
127, 0x593d665a51d4aedd
|
|
130
|
+
128, 0x75d6b8636563036b
|
|
131
|
+
129, 0x7b57caa55e262082
|
|
132
|
+
130, 0x4ede7427969e0dd5
|
|
133
|
+
131, 0xc3f19b6f78ea00b
|
|
134
|
+
132, 0xeea7bab9be2181ea
|
|
135
|
+
133, 0x652c45fe9c420c04
|
|
136
|
+
134, 0x14ba9e3d175670ee
|
|
137
|
+
135, 0xd2ad156ba6490474
|
|
138
|
+
136, 0x4d65ae41065f614
|
|
139
|
+
137, 0x6ff911c8afa28eb1
|
|
140
|
+
138, 0xedc2b33588f3cb68
|
|
141
|
+
139, 0x437c8bc324666a2f
|
|
142
|
+
140, 0x828cee25457a3f0
|
|
143
|
+
141, 0x530c986091f31b9b
|
|
144
|
+
142, 0x2f34671e8326ade7
|
|
145
|
+
143, 0x4f686a8f4d77f6da
|
|
146
|
+
144, 0xa4c1987083498895
|
|
147
|
+
145, 0xbce5a88b672b0fb1
|
|
148
|
+
146, 0x8476115a9e6a00cc
|
|
149
|
+
147, 0x16de18a55dd2c238
|
|
150
|
+
148, 0xdf38cf4c416232bc
|
|
151
|
+
149, 0x2cb837924e7559f3
|
|
152
|
+
150, 0xfad4727484e982ed
|
|
153
|
+
151, 0x32a55d4b7801e4f
|
|
154
|
+
152, 0x8b9ef96804bd10a5
|
|
155
|
+
153, 0xa1fd422c9b5cf2a9
|
|
156
|
+
154, 0xf46ddb122eb7e442
|
|
157
|
+
155, 0x6e3842547afa3b33
|
|
158
|
+
156, 0x863dee1c34afe5c4
|
|
159
|
+
157, 0x6a43a1935b6db171
|
|
160
|
+
158, 0x1060a5c2f8145821
|
|
161
|
+
159, 0xf783ec9ed34c4607
|
|
162
|
+
160, 0x1da4a86bf5f8c0b0
|
|
163
|
+
161, 0x4c7714041ba12af8
|
|
164
|
+
162, 0x580da7010be2f192
|
|
165
|
+
163, 0xad682fe795a7ea7a
|
|
166
|
+
164, 0x6687b6cb88a9ed2c
|
|
167
|
+
165, 0x3c8d4b175517cd18
|
|
168
|
+
166, 0xe9247c3a524a6b6b
|
|
169
|
+
167, 0x337ca9cfaa02658
|
|
170
|
+
168, 0xed95399481c6feec
|
|
171
|
+
169, 0x58726a088e606062
|
|
172
|
+
170, 0xfe7588a5b4ee342a
|
|
173
|
+
171, 0xee434c7ed146fdee
|
|
174
|
+
172, 0xe2ade8b60fdc4ba5
|
|
175
|
+
173, 0xd57e4c155de4eaab
|
|
176
|
+
174, 0xdefeae12de1137cb
|
|
177
|
+
175, 0xb7a276a241316ac1
|
|
178
|
+
176, 0xeb838b1b1df4ca15
|
|
179
|
+
177, 0x6f78965edea32f6f
|
|
180
|
+
178, 0x18bebd264d7a5d53
|
|
181
|
+
179, 0x3641c691d77005ec
|
|
182
|
+
180, 0xbe70ed7efea8c24c
|
|
183
|
+
181, 0x33047fa8d03ca560
|
|
184
|
+
182, 0x3bed0d2221ff0f87
|
|
185
|
+
183, 0x23083a6ffbcf38a2
|
|
186
|
+
184, 0xc23eb827073d3fa5
|
|
187
|
+
185, 0xc873bb3415e9fb9b
|
|
188
|
+
186, 0xa4645179e54147fe
|
|
189
|
+
187, 0x2c72fb443f66e207
|
|
190
|
+
188, 0x98084915dd89d8f4
|
|
191
|
+
189, 0x88baa2de12c99037
|
|
192
|
+
190, 0x85c74ab238cb795f
|
|
193
|
+
191, 0xe122186469ea3a26
|
|
194
|
+
192, 0x4c3bba99b3249292
|
|
195
|
+
193, 0x85d6845d9a015234
|
|
196
|
+
194, 0x147ddd69c13e6a31
|
|
197
|
+
195, 0x255f4d678c9a570b
|
|
198
|
+
196, 0x2d7c0c410bf962b4
|
|
199
|
+
197, 0x58eb7649e0aa16ca
|
|
200
|
+
198, 0x9d240bf662fe0783
|
|
201
|
+
199, 0x5f74f6fa32d293cc
|
|
202
|
+
200, 0x4928e52f0f79d9b9
|
|
203
|
+
201, 0xe61c2b87146b706d
|
|
204
|
+
202, 0xcfcd90d100cf5431
|
|
205
|
+
203, 0xf15ea8138e6aa178
|
|
206
|
+
204, 0x6ab8287024f9a819
|
|
207
|
+
205, 0xed8942593db74e01
|
|
208
|
+
206, 0xefc00e4ec2ae36dd
|
|
209
|
+
207, 0xc21429fb9387f334
|
|
210
|
+
208, 0xf9a3389e285a9bce
|
|
211
|
+
209, 0xacdee8c43aae49b3
|
|
212
|
+
210, 0xefc382f02ad55c25
|
|
213
|
+
211, 0x1153b50e8d406b72
|
|
214
|
+
212, 0xb00d39ebcc2f89d8
|
|
215
|
+
213, 0xde62f0b9831c8850
|
|
216
|
+
214, 0xc076994662eef6c7
|
|
217
|
+
215, 0x66f08f4752f1e3ef
|
|
218
|
+
216, 0x283b90619796249a
|
|
219
|
+
217, 0x4e4869bc4227499e
|
|
220
|
+
218, 0xb45ad78a49efd7ed
|
|
221
|
+
219, 0xffe19aa77abf5f4b
|
|
222
|
+
220, 0xfce11a0daf913aef
|
|
223
|
+
221, 0x7e4e64450d5cdceb
|
|
224
|
+
222, 0xe9621997cfd62762
|
|
225
|
+
223, 0x4d2c9e156868081
|
|
226
|
+
224, 0x4e2d96eb7cc9a08
|
|
227
|
+
225, 0xda74849bba6e3bd3
|
|
228
|
+
226, 0x6f4621da935e7fde
|
|
229
|
+
227, 0xb94b914aa0497259
|
|
230
|
+
228, 0xd50d03e8b8db1563
|
|
231
|
+
229, 0x1a45c1ce5dca422e
|
|
232
|
+
230, 0xc8d30d33276f843f
|
|
233
|
+
231, 0xb57245774e4176b4
|
|
234
|
+
232, 0x8d36342c05abbbb1
|
|
235
|
+
233, 0x3591ad893ecf9e78
|
|
236
|
+
234, 0x62f4717239ee0ac8
|
|
237
|
+
235, 0x9b71148a1a1d4200
|
|
238
|
+
236, 0x65f8e0f56dd94463
|
|
239
|
+
237, 0x453b1fcfd4fac8c2
|
|
240
|
+
238, 0x4c25e48e54a55865
|
|
241
|
+
239, 0xa866baa05112ace2
|
|
242
|
+
240, 0x7741d3c69c6e79c5
|
|
243
|
+
241, 0x7deb375e8f4f7a8a
|
|
244
|
+
242, 0xc242087ede42abd8
|
|
245
|
+
243, 0x2fa9d1d488750c4b
|
|
246
|
+
244, 0xe8940137a935d3d3
|
|
247
|
+
245, 0x1dab4918ca24b2f2
|
|
248
|
+
246, 0xe2368c782168fe3e
|
|
249
|
+
247, 0x6e8b2d1d73695909
|
|
250
|
+
248, 0x70455ebea268b33e
|
|
251
|
+
249, 0x656a919202e28da1
|
|
252
|
+
250, 0x5a5a8935647da999
|
|
253
|
+
251, 0x428c6f77e118c13c
|
|
254
|
+
252, 0xa87aee2b675bb083
|
|
255
|
+
253, 0x3873a6412b239969
|
|
256
|
+
254, 0x5f72c1e91cb8a2ee
|
|
257
|
+
255, 0xa25af80a1beb5679
|
|
258
|
+
256, 0x1af65d27c7b4abc3
|
|
259
|
+
257, 0x133437060670e067
|
|
260
|
+
258, 0xb1990fa39a97d32e
|
|
261
|
+
259, 0x724adc89ae10ed17
|
|
262
|
+
260, 0x3f682a3f2363a240
|
|
263
|
+
261, 0x29198f8dbd343499
|
|
264
|
+
262, 0xdfaeeaa42bc51105
|
|
265
|
+
263, 0x5baff3901b9480c2
|
|
266
|
+
264, 0x3f760a67043e77f5
|
|
267
|
+
265, 0x610fa7aa355a43ba
|
|
268
|
+
266, 0x394856ac09c4f7a7
|
|
269
|
+
267, 0x1d9229d058aee82e
|
|
270
|
+
268, 0x19c674804c41aeec
|
|
271
|
+
269, 0x74cf12372012f4aa
|
|
272
|
+
270, 0xa5d89b353fa2f6ca
|
|
273
|
+
271, 0x697e4f672ac363dd
|
|
274
|
+
272, 0xde6f55ba73df5af9
|
|
275
|
+
273, 0x679cf537510bd68f
|
|
276
|
+
274, 0x3dc916114ae9ef7e
|
|
277
|
+
275, 0xd7e31a66ec2ee7ba
|
|
278
|
+
276, 0xc21bebb968728495
|
|
279
|
+
277, 0xc5e0781414e2adfd
|
|
280
|
+
278, 0x71147b5412ddd4bd
|
|
281
|
+
279, 0x3b864b410625cca9
|
|
282
|
+
280, 0x433d67c0036cdc6
|
|
283
|
+
281, 0x48083afa0ae20b1b
|
|
284
|
+
282, 0x2d80beecd64ac4e8
|
|
285
|
+
283, 0x2a753c27c3a3ee3e
|
|
286
|
+
284, 0xb2c5e6afd1fe051a
|
|
287
|
+
285, 0xea677930cd66c46b
|
|
288
|
+
286, 0x4c3960932f92810a
|
|
289
|
+
287, 0xf1b367a9e527eaba
|
|
290
|
+
288, 0xb7d92a8a9a69a98e
|
|
291
|
+
289, 0x9f9ad3210bd6b453
|
|
292
|
+
290, 0x817f2889db2dcbd8
|
|
293
|
+
291, 0x4270a665ac15813c
|
|
294
|
+
292, 0x90b85353bd2be4dd
|
|
295
|
+
293, 0x10c0460f7b2d68d
|
|
296
|
+
294, 0x11cef32b94f947f5
|
|
297
|
+
295, 0x3cf29ed8e7d477e8
|
|
298
|
+
296, 0x793aaa9bd50599ef
|
|
299
|
+
297, 0xbac15d1190014aad
|
|
300
|
+
298, 0x987944ae80b5cb13
|
|
301
|
+
299, 0x460aa51f8d57c484
|
|
302
|
+
300, 0xc77df0385f97c2d3
|
|
303
|
+
301, 0x92e743b7293a3822
|
|
304
|
+
302, 0xbc3458bcfbcbb8c0
|
|
305
|
+
303, 0xe277bcf3d04b4ed7
|
|
306
|
+
304, 0xa537ae5cf1c9a31c
|
|
307
|
+
305, 0x95eb00d30bd8cfb2
|
|
308
|
+
306, 0x6376361c24e4f2dd
|
|
309
|
+
307, 0x374477fe87b9ea8e
|
|
310
|
+
308, 0x8210f1a9a039902e
|
|
311
|
+
309, 0xe7628f7031321f68
|
|
312
|
+
310, 0x8b8e9c0888fc1d3d
|
|
313
|
+
311, 0x306be461fdc9e0ed
|
|
314
|
+
312, 0x510009372f9b56f5
|
|
315
|
+
313, 0xa6e6fa486b7a027a
|
|
316
|
+
314, 0x9d3f002025203b5a
|
|
317
|
+
315, 0x7a46e0e81ecbef86
|
|
318
|
+
316, 0x41e280c611d04df0
|
|
319
|
+
317, 0xedcec10418a99e8a
|
|
320
|
+
318, 0x5c27b6327e0b9dbd
|
|
321
|
+
319, 0xa81ed2035b509f07
|
|
322
|
+
320, 0x3581e855983a4cc4
|
|
323
|
+
321, 0x4744594b25e9809d
|
|
324
|
+
322, 0xc737ac7c27fbd0ed
|
|
325
|
+
323, 0x1b523a307045433a
|
|
326
|
+
324, 0x8b4ce9171076f1d9
|
|
327
|
+
325, 0x2db02d817cd5eec0
|
|
328
|
+
326, 0x24a1f1229af50288
|
|
329
|
+
327, 0x5550c0dcf583ff16
|
|
330
|
+
328, 0x3587baaa122ec422
|
|
331
|
+
329, 0xf9d3dc894229e510
|
|
332
|
+
330, 0xf3100430d5cf8e87
|
|
333
|
+
331, 0xc31af79862f8e2fb
|
|
334
|
+
332, 0xd20582063b9f3537
|
|
335
|
+
333, 0xac5e90ac95fcc7ad
|
|
336
|
+
334, 0x107c4c704d5109d4
|
|
337
|
+
335, 0xebc8628906dbfd70
|
|
338
|
+
336, 0x215242776da8c531
|
|
339
|
+
337, 0xa98002f1dcf08b51
|
|
340
|
+
338, 0xbc3bdc07f3b09718
|
|
341
|
+
339, 0x238677062495b512
|
|
342
|
+
340, 0x53b4796f2a3c49e8
|
|
343
|
+
341, 0x6424286467e22f0e
|
|
344
|
+
342, 0x14d0952a11a71bac
|
|
345
|
+
343, 0x2f97098149b82514
|
|
346
|
+
344, 0x3777f2fdc425ad2
|
|
347
|
+
345, 0xa32f2382938876d4
|
|
348
|
+
346, 0xda8a39a021f20ae3
|
|
349
|
+
347, 0x364361ef0a6ac32c
|
|
350
|
+
348, 0x4413eede008ff05a
|
|
351
|
+
349, 0x8dda8ace851aa327
|
|
352
|
+
350, 0x4303cabbdcecd1ee
|
|
353
|
+
351, 0x2e69f06d74aa549f
|
|
354
|
+
352, 0x4797079cd4d9275c
|
|
355
|
+
353, 0xc7b1890917e98307
|
|
356
|
+
354, 0x34031b0e822a4b4c
|
|
357
|
+
355, 0xfc79f76b566303ea
|
|
358
|
+
356, 0x77014adbe255a930
|
|
359
|
+
357, 0xab6c43dd162f3be5
|
|
360
|
+
358, 0xa430041f3463f6b9
|
|
361
|
+
359, 0x5c191a32ada3f84a
|
|
362
|
+
360, 0xe8674a0781645a31
|
|
363
|
+
361, 0x3a11cb667b8d0916
|
|
364
|
+
362, 0xaedc73e80c39fd8a
|
|
365
|
+
363, 0xfde12c1b42328765
|
|
366
|
+
364, 0x97abb7dcccdc1a0b
|
|
367
|
+
365, 0x52475c14d2167bc8
|
|
368
|
+
366, 0x540e8811196d5aff
|
|
369
|
+
367, 0xa867e4ccdb2b4b77
|
|
370
|
+
368, 0x2be04af61e5bcfb9
|
|
371
|
+
369, 0x81b645102bfc5dfd
|
|
372
|
+
370, 0x96a52c9a66c6450f
|
|
373
|
+
371, 0x632ec2d136889234
|
|
374
|
+
372, 0x4ed530c0b36a6c25
|
|
375
|
+
373, 0x6f4851225546b75
|
|
376
|
+
374, 0x2c065d6ba46a1144
|
|
377
|
+
375, 0xf8a3613ff416551d
|
|
378
|
+
376, 0xb5f0fd60e9c971a9
|
|
379
|
+
377, 0x339011a03bb4be65
|
|
380
|
+
378, 0x9439f72b6995ded6
|
|
381
|
+
379, 0xc1b03f3ef3b2292d
|
|
382
|
+
380, 0xad12fd221daab3ae
|
|
383
|
+
381, 0xf615b770f2cf996f
|
|
384
|
+
382, 0x269d0fdcb764172
|
|
385
|
+
383, 0x67837025e8039256
|
|
386
|
+
384, 0x6402831fc823fafa
|
|
387
|
+
385, 0x22854146a4abb964
|
|
388
|
+
386, 0x7b5ad9b5a1bad7a8
|
|
389
|
+
387, 0x67170e7beb6ac935
|
|
390
|
+
388, 0xfc2d1e8e24adfaaa
|
|
391
|
+
389, 0x7ded4395345ff40d
|
|
392
|
+
390, 0x418981760a80dd07
|
|
393
|
+
391, 0xc03bef38022c1d2
|
|
394
|
+
392, 0x3a11850b26eade29
|
|
395
|
+
393, 0xaa56d02c7175c5f4
|
|
396
|
+
394, 0xd83b7917b9bfbff5
|
|
397
|
+
395, 0x3c1df2f8fa6fced3
|
|
398
|
+
396, 0xf3d6e2999c0bb760
|
|
399
|
+
397, 0xc66d683a59a950e3
|
|
400
|
+
398, 0x8e3972a9d73ffabf
|
|
401
|
+
399, 0x97720a0443edffd9
|
|
402
|
+
400, 0xa85f5d2fe198444a
|
|
403
|
+
401, 0xfc5f0458e1b0de5e
|
|
404
|
+
402, 0xe3973f03df632b87
|
|
405
|
+
403, 0xe151073c84c594b3
|
|
406
|
+
404, 0x68eb4e22e7ff8ecf
|
|
407
|
+
405, 0x274f36eaed7cae27
|
|
408
|
+
406, 0x3b87b1eb60896b13
|
|
409
|
+
407, 0xbe0b2f831442d70a
|
|
410
|
+
408, 0x2782ed7a48a1b328
|
|
411
|
+
409, 0xb3619d890310f704
|
|
412
|
+
410, 0xb03926b11b55921a
|
|
413
|
+
411, 0xdb46fc44aa6a0ce4
|
|
414
|
+
412, 0x4b063e2ef2e9453a
|
|
415
|
+
413, 0xe1584f1aeec60fb5
|
|
416
|
+
414, 0x7092bd6a879c5a49
|
|
417
|
+
415, 0xb84e1e7c7d52b0e6
|
|
418
|
+
416, 0x29d09ca48db64dfb
|
|
419
|
+
417, 0x8f6c4a402066e905
|
|
420
|
+
418, 0x77390795eabc36b
|
|
421
|
+
419, 0xcc2dc2e4141cc69f
|
|
422
|
+
420, 0x2727f83beb9e3c7c
|
|
423
|
+
421, 0x1b29868619331de0
|
|
424
|
+
422, 0xd38c571e192c246f
|
|
425
|
+
423, 0x535327479fe37b6f
|
|
426
|
+
424, 0xaff9ce5758617eb3
|
|
427
|
+
425, 0x5658539e9288a4e4
|
|
428
|
+
426, 0x8df91d87126c4c6d
|
|
429
|
+
427, 0xe931cf8fdba6e255
|
|
430
|
+
428, 0x815dfdf25fbee9e8
|
|
431
|
+
429, 0x5c61f4c7cba91697
|
|
432
|
+
430, 0xdd5f5512fe2313a1
|
|
433
|
+
431, 0x499dd918a92a53cd
|
|
434
|
+
432, 0xa7e969d007c97dfd
|
|
435
|
+
433, 0xb8d39c6fc81ac0bb
|
|
436
|
+
434, 0x1d646983def5746c
|
|
437
|
+
435, 0x44d4b3b17432a60c
|
|
438
|
+
436, 0x65664232a14db1e3
|
|
439
|
+
437, 0xda8fae6433e7500b
|
|
440
|
+
438, 0xbe51b94ff2a3fe94
|
|
441
|
+
439, 0xe9b1bd9a9098ef9f
|
|
442
|
+
440, 0xfe47d54176297ef5
|
|
443
|
+
441, 0xb8ab99bc03bb7135
|
|
444
|
+
442, 0xcfad97f608565b38
|
|
445
|
+
443, 0xf05da71f6760d9c1
|
|
446
|
+
444, 0xef8da40a7c70e7b
|
|
447
|
+
445, 0xe0465d58dbd5d138
|
|
448
|
+
446, 0xb54a2d70eb1a938
|
|
449
|
+
447, 0xfdd50c905958f2d8
|
|
450
|
+
448, 0x3c41933c90a57d43
|
|
451
|
+
449, 0x678f6d894c6ad0bb
|
|
452
|
+
450, 0x403e8f4582274e8
|
|
453
|
+
451, 0x5cbbe975668df6b0
|
|
454
|
+
452, 0x297e6520a7902f03
|
|
455
|
+
453, 0x8f6dded33cd1efd7
|
|
456
|
+
454, 0x8e903c97be8d783b
|
|
457
|
+
455, 0x10bd015577e30f77
|
|
458
|
+
456, 0x3fcd69d1c36eab0c
|
|
459
|
+
457, 0xb45989f3ca198d3
|
|
460
|
+
458, 0x507655ce02b491a9
|
|
461
|
+
459, 0xa92cf99bb78602ce
|
|
462
|
+
460, 0xebfb82055fbc2f0f
|
|
463
|
+
461, 0x3334256279289b7a
|
|
464
|
+
462, 0xc19d2a0f740ee0ac
|
|
465
|
+
463, 0x8bb070dea3934905
|
|
466
|
+
464, 0xa4ab57d3a8d1b3eb
|
|
467
|
+
465, 0xfee1b09bcacf7ff4
|
|
468
|
+
466, 0xccc7fb41ceec41fa
|
|
469
|
+
467, 0xd4da49094eb5a74d
|
|
470
|
+
468, 0xed5c693770af02ed
|
|
471
|
+
469, 0x369dabc9bbfaa8e4
|
|
472
|
+
470, 0x7eab9f360d054199
|
|
473
|
+
471, 0xe36dbebf5ee94076
|
|
474
|
+
472, 0xd30840e499b23d7
|
|
475
|
+
473, 0x8678e6cb545015ff
|
|
476
|
+
474, 0x3a47932ca0b336e
|
|
477
|
+
475, 0xeb7c742b6e93d6fe
|
|
478
|
+
476, 0x1404ea51fe5a62a9
|
|
479
|
+
477, 0xa72cd49db978e288
|
|
480
|
+
478, 0xfd7bada020173dcf
|
|
481
|
+
479, 0xc9e74fc7abe50054
|
|
482
|
+
480, 0x93197847bb66808d
|
|
483
|
+
481, 0x25fd5f053dce5698
|
|
484
|
+
482, 0xe198a9b18cc21f4
|
|
485
|
+
483, 0x5cc27b1689452d5d
|
|
486
|
+
484, 0x8b3657af955a98dc
|
|
487
|
+
485, 0xc17f7584f54aa1c0
|
|
488
|
+
486, 0xe821b088246b1427
|
|
489
|
+
487, 0x32b5a9f6b45b6fa0
|
|
490
|
+
488, 0x2aef7c315c2bae0c
|
|
491
|
+
489, 0xe1af8129846b705a
|
|
492
|
+
490, 0x4123b4c091b34614
|
|
493
|
+
491, 0x6999d61ec341c073
|
|
494
|
+
492, 0x14b9a8fcf86831ea
|
|
495
|
+
493, 0xfd4cff6548f46c9f
|
|
496
|
+
494, 0x350c3b7e6cc8d7d6
|
|
497
|
+
495, 0x202a5047fecafcd5
|
|
498
|
+
496, 0xa82509fe496bb57d
|
|
499
|
+
497, 0x835e4b2608b575fe
|
|
500
|
+
498, 0xf3abe3da919f54ec
|
|
501
|
+
499, 0x8705a21e2c9b8796
|
|
502
|
+
500, 0xfd02d1427005c314
|
|
503
|
+
501, 0xa38458faa637f49b
|
|
504
|
+
502, 0x61622f2360e7622a
|
|
505
|
+
503, 0xe89335a773c2963b
|
|
506
|
+
504, 0x481264b659b0e0d0
|
|
507
|
+
505, 0x1e82ae94ebf62f15
|
|
508
|
+
506, 0x8ea7812de49209d4
|
|
509
|
+
507, 0xff963d764680584
|
|
510
|
+
508, 0x418a68bef717f4af
|
|
511
|
+
509, 0x581f0e7621a8ab91
|
|
512
|
+
510, 0x840337e9a0ec4150
|
|
513
|
+
511, 0x951ef61b344be505
|
|
514
|
+
512, 0xc8b1b899feb61ec2
|
|
515
|
+
513, 0x8b78ca13c56f6ed9
|
|
516
|
+
514, 0x3d2fd793715a946f
|
|
517
|
+
515, 0xf1c04fabcd0f4084
|
|
518
|
+
516, 0x92b602614a9a9fcc
|
|
519
|
+
517, 0x7991bd7a94a65be7
|
|
520
|
+
518, 0x5dead10b06cad2d7
|
|
521
|
+
519, 0xda7719b33f722f06
|
|
522
|
+
520, 0x9d87a722b7bff71e
|
|
523
|
+
521, 0xb038e479071409e9
|
|
524
|
+
522, 0xf4e8bbec48054775
|
|
525
|
+
523, 0x4fec2cd7a28a88ea
|
|
526
|
+
524, 0x839e28526aad3e56
|
|
527
|
+
525, 0xd37ec57852a98bf0
|
|
528
|
+
526, 0xdef2cbbe00f3a02d
|
|
529
|
+
527, 0x1aecfe01a9e4d801
|
|
530
|
+
528, 0x59018d3c8beaf067
|
|
531
|
+
529, 0x892753e6ac8bf3cd
|
|
532
|
+
530, 0xefdd3437023d2d1c
|
|
533
|
+
531, 0x447bfbd148c8cb88
|
|
534
|
+
532, 0x282380221bd442b8
|
|
535
|
+
533, 0xfce8658d1347384a
|
|
536
|
+
534, 0x60b211a7ec6bfa8
|
|
537
|
+
535, 0xd21729cfcc692974
|
|
538
|
+
536, 0x162087ecd5038a47
|
|
539
|
+
537, 0x2b17000c4bce39d2
|
|
540
|
+
538, 0x3a1f75ff6adcdce0
|
|
541
|
+
539, 0x721a411d312f1a2c
|
|
542
|
+
540, 0x9c13b6133f66934d
|
|
543
|
+
541, 0xaa975d14978980e5
|
|
544
|
+
542, 0x9403dbd4754203fa
|
|
545
|
+
543, 0x588c15762fdd643
|
|
546
|
+
544, 0xdd1290f8d0ada73a
|
|
547
|
+
545, 0xd9b77380936103f4
|
|
548
|
+
546, 0xb2e2047a356eb829
|
|
549
|
+
547, 0x7019e5e7f76f7a47
|
|
550
|
+
548, 0x3c29a461f62b001d
|
|
551
|
+
549, 0xa07dc6cfab59c116
|
|
552
|
+
550, 0x9b97e278433f8eb
|
|
553
|
+
551, 0x6affc714e7236588
|
|
554
|
+
552, 0x36170aeb32911a73
|
|
555
|
+
553, 0x4a665104d364a789
|
|
556
|
+
554, 0x4be01464ec276c9c
|
|
557
|
+
555, 0x71bb10271a8b4ecf
|
|
558
|
+
556, 0xbf62e1d068bc018
|
|
559
|
+
557, 0xc9ada5db2cbbb413
|
|
560
|
+
558, 0x2bded75e726650e5
|
|
561
|
+
559, 0x33d5a7af2f34385d
|
|
562
|
+
560, 0x8179c46661d85657
|
|
563
|
+
561, 0x324ebcfd29267359
|
|
564
|
+
562, 0xac4c9311dc9f9110
|
|
565
|
+
563, 0xc14bb6a52f9f9c0
|
|
566
|
+
564, 0xc430abe15e7fb9db
|
|
567
|
+
565, 0xf1cce5c14df91c38
|
|
568
|
+
566, 0x651e3efa2c0750d3
|
|
569
|
+
567, 0x38a33604a8be5c75
|
|
570
|
+
568, 0x7aaf77fe7ff56a49
|
|
571
|
+
569, 0xc0d1cc56bbf27706
|
|
572
|
+
570, 0x887aa47324e156c6
|
|
573
|
+
571, 0x12547c004b085e8d
|
|
574
|
+
572, 0xd86a8d6fbbbfd011
|
|
575
|
+
573, 0x57c860188c92d7b4
|
|
576
|
+
574, 0xcd5d3843d361b8ca
|
|
577
|
+
575, 0x8f586ef05a9cb3ef
|
|
578
|
+
576, 0x174456e1ba6267d5
|
|
579
|
+
577, 0xf5dc302c62fe583c
|
|
580
|
+
578, 0xa349442fabcdb71
|
|
581
|
+
579, 0xe5123c1a8b6fd08e
|
|
582
|
+
580, 0x80681552aa318593
|
|
583
|
+
581, 0xb295396deaef1e31
|
|
584
|
+
582, 0xabb626e0b900e32b
|
|
585
|
+
583, 0xf024db8d3f19c15e
|
|
586
|
+
584, 0x1d04bb9548e2fb6c
|
|
587
|
+
585, 0xd8ed2b2214936c2b
|
|
588
|
+
586, 0x618ca1e430a52bc9
|
|
589
|
+
587, 0xccbca44a6088136b
|
|
590
|
+
588, 0xd0481855c8b9ccbe
|
|
591
|
+
589, 0x3c92a2fade28bdf7
|
|
592
|
+
590, 0x855e9fefc38c0816
|
|
593
|
+
591, 0x1269bbfe55a7b27c
|
|
594
|
+
592, 0x1d6c853d83726d43
|
|
595
|
+
593, 0xc8655511cc7fcafc
|
|
596
|
+
594, 0x301503eb125a9b0e
|
|
597
|
+
595, 0xb3108e4532016b11
|
|
598
|
+
596, 0xbb7ab6245da9cb3d
|
|
599
|
+
597, 0x18004c49116d85eb
|
|
600
|
+
598, 0x3480849c20f61129
|
|
601
|
+
599, 0xe28f45157463937b
|
|
602
|
+
600, 0x8e85e61060f2ce1
|
|
603
|
+
601, 0x1673da4ec589ba5e
|
|
604
|
+
602, 0x74b9a6bd1b194712
|
|
605
|
+
603, 0xed39e147fa8b7601
|
|
606
|
+
604, 0x28ce54019102ca77
|
|
607
|
+
605, 0x42e0347f6d7a2f30
|
|
608
|
+
606, 0xb6a908d1c4814731
|
|
609
|
+
607, 0x16c3435e4e9a126d
|
|
610
|
+
608, 0x8880190514c1ad54
|
|
611
|
+
609, 0xfffd86229a6f773c
|
|
612
|
+
610, 0x4f2420cdb0aa1a93
|
|
613
|
+
611, 0xf8e1acb4120fc1fa
|
|
614
|
+
612, 0x63a8c553ab36a2f2
|
|
615
|
+
613, 0x86b88cf3c0a6a190
|
|
616
|
+
614, 0x44d8b2801622c792
|
|
617
|
+
615, 0xf6eae14e93082ff1
|
|
618
|
+
616, 0xd9ed4f5d1b8fac61
|
|
619
|
+
617, 0x1808ce17f4e1f70
|
|
620
|
+
618, 0x446e83ea336f262f
|
|
621
|
+
619, 0xc7c802b04c0917b7
|
|
622
|
+
620, 0x626f45fd64968b73
|
|
623
|
+
621, 0x9ffa540edc9b2c5c
|
|
624
|
+
622, 0xa96a1e219e486af8
|
|
625
|
+
623, 0x2bb8963884e887a1
|
|
626
|
+
624, 0xba7f68a5d029e3c4
|
|
627
|
+
625, 0xefc45f44392d9ca0
|
|
628
|
+
626, 0x98d77762503c5eab
|
|
629
|
+
627, 0xd89bcf62f2da627c
|
|
630
|
+
628, 0xa3cab8347f833151
|
|
631
|
+
629, 0xa095b7595907d5c7
|
|
632
|
+
630, 0x3b3041274286181
|
|
633
|
+
631, 0xb518db8919eb71fa
|
|
634
|
+
632, 0x187036c14fdc9a36
|
|
635
|
+
633, 0xd06e28301e696f5d
|
|
636
|
+
634, 0xdbc71184e0c56492
|
|
637
|
+
635, 0xfe51e9cae6125bfd
|
|
638
|
+
636, 0x3b12d17cd014df24
|
|
639
|
+
637, 0x3b95e4e2c986ac1a
|
|
640
|
+
638, 0x29c1cce59fb2dea2
|
|
641
|
+
639, 0x58c05793182a49d6
|
|
642
|
+
640, 0xc016477e330d8c00
|
|
643
|
+
641, 0x79ef335133ada5d
|
|
644
|
+
642, 0x168e2cad941203f3
|
|
645
|
+
643, 0xf99d0f219d702ef0
|
|
646
|
+
644, 0x655628068f8f135b
|
|
647
|
+
645, 0xdcdea51910ae3f92
|
|
648
|
+
646, 0x8e4505039c567892
|
|
649
|
+
647, 0x91a9ec7e947c89ae
|
|
650
|
+
648, 0x8717172530f93949
|
|
651
|
+
649, 0x1c80aba9a440171a
|
|
652
|
+
650, 0x9c8f83f6ebe7441e
|
|
653
|
+
651, 0x6c05e1efea4aa7f9
|
|
654
|
+
652, 0x10af696b777c01b
|
|
655
|
+
653, 0x5892e9d9a92fc309
|
|
656
|
+
654, 0xd2ba7da71e709432
|
|
657
|
+
655, 0x46378c7c3269a466
|
|
658
|
+
656, 0x942c63dfe18e772c
|
|
659
|
+
657, 0x6245cf02ef2476f
|
|
660
|
+
658, 0x6f265b2759ea2aea
|
|
661
|
+
659, 0x5aa757f17d17f4a6
|
|
662
|
+
660, 0x1ad6a3c44fa09be6
|
|
663
|
+
661, 0xe861af14e7015fb8
|
|
664
|
+
662, 0x86be2e7db388c77
|
|
665
|
+
663, 0x5c7bba32b519e9a0
|
|
666
|
+
664, 0x3feb314850c4437b
|
|
667
|
+
665, 0x97955add60cfb45b
|
|
668
|
+
666, 0xfdb536230a540bdc
|
|
669
|
+
667, 0xdac9d7bf6e58512e
|
|
670
|
+
668, 0x4894c00e474e8120
|
|
671
|
+
669, 0xa1918a37739da366
|
|
672
|
+
670, 0xa8097f2096532807
|
|
673
|
+
671, 0x592afe50e6c5e643
|
|
674
|
+
672, 0xd69050ee6dcb33dc
|
|
675
|
+
673, 0xa6956b262dd3c561
|
|
676
|
+
674, 0x1a55c815555e63f7
|
|
677
|
+
675, 0x2ec7fd37516de2bb
|
|
678
|
+
676, 0x8ec251d9c70e76ba
|
|
679
|
+
677, 0x9b76e4abafd2689
|
|
680
|
+
678, 0x9ce3f5c751a57df1
|
|
681
|
+
679, 0x915c4818bf287bc7
|
|
682
|
+
680, 0x2293a0d1fe07c735
|
|
683
|
+
681, 0x7627dcd5d5a66d3d
|
|
684
|
+
682, 0xb5e4f92cc49c7138
|
|
685
|
+
683, 0x6fc51298731d268c
|
|
686
|
+
684, 0xd19800aa95441f87
|
|
687
|
+
685, 0x14f70f31162fa115
|
|
688
|
+
686, 0x41a3da3752936f59
|
|
689
|
+
687, 0xbec0652be95652ee
|
|
690
|
+
688, 0x7aa4bdb1020a290f
|
|
691
|
+
689, 0x4382d0d9bee899ef
|
|
692
|
+
690, 0xe6d988ae4277d6ff
|
|
693
|
+
691, 0xe618088ccb2a32d1
|
|
694
|
+
692, 0x411669dfaa899e90
|
|
695
|
+
693, 0x234e2bf4ba76d9f
|
|
696
|
+
694, 0xe109fe4cb7828687
|
|
697
|
+
695, 0x1fb96b5022b0b360
|
|
698
|
+
696, 0x6b24ad76c061a716
|
|
699
|
+
697, 0x7e1781d4d7ecee15
|
|
700
|
+
698, 0xf20c2dbe82ba38ba
|
|
701
|
+
699, 0xeda8e8ae1d943655
|
|
702
|
+
700, 0xa58d196e2a77eaec
|
|
703
|
+
701, 0x44564765a5995a0b
|
|
704
|
+
702, 0x11902fe871ecae21
|
|
705
|
+
703, 0x2ea60279900e675d
|
|
706
|
+
704, 0x38427227c18a9a96
|
|
707
|
+
705, 0xe0af01490a1b1b48
|
|
708
|
+
706, 0x826f91997e057824
|
|
709
|
+
707, 0x1e57308e6e50451
|
|
710
|
+
708, 0xb42d469bbbfdc350
|
|
711
|
+
709, 0xb9734cff1109c49b
|
|
712
|
+
710, 0x98967559bb9d364f
|
|
713
|
+
711, 0xd6be360041907c12
|
|
714
|
+
712, 0xa86a1279122a1e21
|
|
715
|
+
713, 0x26f99a8527bfc698
|
|
716
|
+
714, 0xfa8b85758f28f5d6
|
|
717
|
+
715, 0xe3057429940806ae
|
|
718
|
+
716, 0x4bee2d7e84f93b2b
|
|
719
|
+
717, 0x948350a76ea506f4
|
|
720
|
+
718, 0xa139154488045e74
|
|
721
|
+
719, 0x8893579ba5e78085
|
|
722
|
+
720, 0x5f21c215c6a9e397
|
|
723
|
+
721, 0x456134f3a59641dc
|
|
724
|
+
722, 0x92c0273f8e97a9c6
|
|
725
|
+
723, 0xd2936c9c3f0c6936
|
|
726
|
+
724, 0xcfa4221e752c4735
|
|
727
|
+
725, 0x28cd5a7457355dca
|
|
728
|
+
726, 0xecdfdde23d90999f
|
|
729
|
+
727, 0x60631b2d494d032b
|
|
730
|
+
728, 0xf67289df269a827f
|
|
731
|
+
729, 0xcbe8011ef0f5b7ef
|
|
732
|
+
730, 0x20eea973c70a84f5
|
|
733
|
+
731, 0xbe1fd200398557ce
|
|
734
|
+
732, 0xd2279ee030191bba
|
|
735
|
+
733, 0xf2bd4291dedaf819
|
|
736
|
+
734, 0xfc6d167dbe8c402
|
|
737
|
+
735, 0x39ac298da5d0044b
|
|
738
|
+
736, 0xceac026f5f561ce
|
|
739
|
+
737, 0x10a5b0bdd8ad60e6
|
|
740
|
+
738, 0xdeb3c626df6d4bcb
|
|
741
|
+
739, 0x3c128962e77ff6ca
|
|
742
|
+
740, 0xc786262e9c67a0e5
|
|
743
|
+
741, 0x4332855b3febcdc0
|
|
744
|
+
742, 0x7bda9724d1c0e020
|
|
745
|
+
743, 0x6a8c93399bc4df22
|
|
746
|
+
744, 0xa9b20100ac707396
|
|
747
|
+
745, 0xa11a3458502c4eb5
|
|
748
|
+
746, 0xb185461c60478941
|
|
749
|
+
747, 0x13131d56195b7ff6
|
|
750
|
+
748, 0x8d55875ddbd4aa1c
|
|
751
|
+
749, 0xc09b67425f469aa5
|
|
752
|
+
750, 0x39e33786cc7594c4
|
|
753
|
+
751, 0x75e96db8e4b08b93
|
|
754
|
+
752, 0xda01cd12a3275d1e
|
|
755
|
+
753, 0x2c49e7822344fab5
|
|
756
|
+
754, 0x9bd5f10612514ca7
|
|
757
|
+
755, 0x1c801a5c828e7332
|
|
758
|
+
756, 0x29797d3f4f6c7b4c
|
|
759
|
+
757, 0xac992715e21e4e53
|
|
760
|
+
758, 0xe40e89ee887ddb37
|
|
761
|
+
759, 0x15189a2b265a783b
|
|
762
|
+
760, 0xa854159a52af5c5
|
|
763
|
+
761, 0xb9d8a5a81c12bead
|
|
764
|
+
762, 0x3240cdc9d59e2a58
|
|
765
|
+
763, 0x1d0b872234cf8e23
|
|
766
|
+
764, 0xc01224cf6ce12cff
|
|
767
|
+
765, 0x2601e9f3905c8663
|
|
768
|
+
766, 0xd4ecf9890168d6b4
|
|
769
|
+
767, 0xa45db796d89bfdd5
|
|
770
|
+
768, 0x9f389406dad64ab4
|
|
771
|
+
769, 0xa5a851adce43ffe3
|
|
772
|
+
770, 0xd0962c41c26e5aa9
|
|
773
|
+
771, 0x8a671679e48510a4
|
|
774
|
+
772, 0xc196dc0924a6bfeb
|
|
775
|
+
773, 0x3ead661043b549cb
|
|
776
|
+
774, 0x51af4ca737d405ac
|
|
777
|
+
775, 0xf4425b5c62275fb6
|
|
778
|
+
776, 0x71e69d1f818c10f5
|
|
779
|
+
777, 0xacaf4af2d3c70162
|
|
780
|
+
778, 0x2e1f1d4fd7524244
|
|
781
|
+
779, 0xe54fdd8f388890e8
|
|
782
|
+
780, 0xfda0d33e84eb2b83
|
|
783
|
+
781, 0x53965c5e392b81da
|
|
784
|
+
782, 0x5c92288267263097
|
|
785
|
+
783, 0xcac1b431c878c66c
|
|
786
|
+
784, 0x36c0e1cf417241c6
|
|
787
|
+
785, 0x5cc4d9cd1a36bf2c
|
|
788
|
+
786, 0x32e4257bb5d3e470
|
|
789
|
+
787, 0x4aecff904adb44fb
|
|
790
|
+
788, 0x4d91a8e0d1d60cac
|
|
791
|
+
789, 0xa3b478388385b038
|
|
792
|
+
790, 0x48d955f24eba70be
|
|
793
|
+
791, 0x310e4deb07f24f68
|
|
794
|
+
792, 0x8853e73b1f30a5a
|
|
795
|
+
793, 0x278aee45c2a65c5
|
|
796
|
+
794, 0xf6932eedbd62fb0b
|
|
797
|
+
795, 0xafb95958c82fafad
|
|
798
|
+
796, 0x78e807c18616c16c
|
|
799
|
+
797, 0xd7abadda7488ed9f
|
|
800
|
+
798, 0x2dd72e2572aa2ae6
|
|
801
|
+
799, 0x6ec3791982c2be09
|
|
802
|
+
800, 0x6865bb314fac478f
|
|
803
|
+
801, 0xa14dc0ce09000d1a
|
|
804
|
+
802, 0xb8081ad134da10f2
|
|
805
|
+
803, 0xc4ac1534aa825ef5
|
|
806
|
+
804, 0xd83aeb48ae2d538f
|
|
807
|
+
805, 0x38052027e3074be4
|
|
808
|
+
806, 0xa9833e06ef136582
|
|
809
|
+
807, 0x4f02d790ec9fd78
|
|
810
|
+
808, 0xec2f60bc711c5bdc
|
|
811
|
+
809, 0x9253b0d12268e561
|
|
812
|
+
810, 0xa8ac607fdd62c206
|
|
813
|
+
811, 0x895e28ebc920289f
|
|
814
|
+
812, 0xe2fd42b154243ac7
|
|
815
|
+
813, 0xc69cac2f776eee19
|
|
816
|
+
814, 0xf4d4ac11db56d0dc
|
|
817
|
+
815, 0xa8d37049b9f39833
|
|
818
|
+
816, 0x75abbf8a196c337c
|
|
819
|
+
817, 0xb115bb76750d27b8
|
|
820
|
+
818, 0x39426d187839154
|
|
821
|
+
819, 0xd488423e7f38bf83
|
|
822
|
+
820, 0xbb92e0c76ecb6a62
|
|
823
|
+
821, 0x3055a018ce39f4e3
|
|
824
|
+
822, 0xc93fe0e907729bfb
|
|
825
|
+
823, 0x65985d17c5863340
|
|
826
|
+
824, 0x2088ae081b2028e1
|
|
827
|
+
825, 0x6e628de873314057
|
|
828
|
+
826, 0x864377cccf573f0e
|
|
829
|
+
827, 0xae03f4c9aa63d132
|
|
830
|
+
828, 0xb1db766d6404c66d
|
|
831
|
+
829, 0xdce5a22414a374b
|
|
832
|
+
830, 0x622155b777819997
|
|
833
|
+
831, 0x69fe96e620371f3c
|
|
834
|
+
832, 0xa9c67dbc326d94fc
|
|
835
|
+
833, 0x932a84ae5dd43bab
|
|
836
|
+
834, 0xe2301a20f6c48c3f
|
|
837
|
+
835, 0x795d2e79c6477300
|
|
838
|
+
836, 0xd8e3e631289521e7
|
|
839
|
+
837, 0xae2684979002dfd6
|
|
840
|
+
838, 0xc9c2392377550f89
|
|
841
|
+
839, 0xa1b0c99d508ef7ec
|
|
842
|
+
840, 0x593aef3c5a5272ec
|
|
843
|
+
841, 0xe32e511a4b7162cd
|
|
844
|
+
842, 0xab3b81655f5a2857
|
|
845
|
+
843, 0x1b535e1a0aaf053e
|
|
846
|
+
844, 0x5b33f56c1b6a07e2
|
|
847
|
+
845, 0x782dc8cfcac4ef36
|
|
848
|
+
846, 0xb3d4f256eecfd202
|
|
849
|
+
847, 0xf73a6598f58c4f7e
|
|
850
|
+
848, 0xd5722189524870ae
|
|
851
|
+
849, 0x707878de6b995fc0
|
|
852
|
+
850, 0xc3eb6ba73e3d7e8a
|
|
853
|
+
851, 0xca75c017655b75a7
|
|
854
|
+
852, 0x1b29369ea3541e5f
|
|
855
|
+
853, 0x352e98858bdb58a3
|
|
856
|
+
854, 0x1e4412d184b6b27d
|
|
857
|
+
855, 0x2d375ba0304b2d17
|
|
858
|
+
856, 0x56c30fce69a5d08e
|
|
859
|
+
857, 0x6b8c2b0c06584bda
|
|
860
|
+
858, 0xde4dfff228c8c91f
|
|
861
|
+
859, 0xb7c9edd574e6287f
|
|
862
|
+
860, 0xf6078281c9fca2b2
|
|
863
|
+
861, 0xb9b9a51de02a2f1e
|
|
864
|
+
862, 0xa411bef31c0103b0
|
|
865
|
+
863, 0xc5facd8fc5e1d7a3
|
|
866
|
+
864, 0x54e631c05ddf7359
|
|
867
|
+
865, 0x815b42b3fd06c474
|
|
868
|
+
866, 0xc9ac07566fda18ec
|
|
869
|
+
867, 0xd84ea62957bd8e15
|
|
870
|
+
868, 0x5575f74b5cfd8803
|
|
871
|
+
869, 0x5779a8d460c2e304
|
|
872
|
+
870, 0xfd6e87e264a85587
|
|
873
|
+
871, 0xa1d674daa320b26d
|
|
874
|
+
872, 0x2c3c3ec64b35afc4
|
|
875
|
+
873, 0x393a274ff03e6935
|
|
876
|
+
874, 0x1f40ecbac52c50ea
|
|
877
|
+
875, 0xc3de64fa324ffc0c
|
|
878
|
+
876, 0x56ae828b7f9deb04
|
|
879
|
+
877, 0xe7c1a77b5c1f2cb3
|
|
880
|
+
878, 0xa4c4aab19ea921cc
|
|
881
|
+
879, 0xec164c238825822c
|
|
882
|
+
880, 0xa6a3304770c03b03
|
|
883
|
+
881, 0x3a63641d5b1e8123
|
|
884
|
+
882, 0x42677be3a54617ef
|
|
885
|
+
883, 0xa2680423e3a200c0
|
|
886
|
+
884, 0x8b17cf75f3f37277
|
|
887
|
+
885, 0xe7ce65a49242be3d
|
|
888
|
+
886, 0x7f85934271323e4b
|
|
889
|
+
887, 0xcfb0f431f79a4fab
|
|
890
|
+
888, 0x392e4041a8505b65
|
|
891
|
+
889, 0xd3e5daf0d8b25ea6
|
|
892
|
+
890, 0x9447eff675d80f53
|
|
893
|
+
891, 0xea27a9d53cfaeea8
|
|
894
|
+
892, 0xe3f2335945a83ba
|
|
895
|
+
893, 0x8875a43ce216413b
|
|
896
|
+
894, 0xe49941f9eabce33e
|
|
897
|
+
895, 0x9357c1296683a5b1
|
|
898
|
+
896, 0xf0f16439e81ee701
|
|
899
|
+
897, 0x3181515295ffd79a
|
|
900
|
+
898, 0x9d7150fffd169ed8
|
|
901
|
+
899, 0x2d6a1d281e255a72
|
|
902
|
+
900, 0x81bf1286fb3a92b6
|
|
903
|
+
901, 0x566d3079b499e279
|
|
904
|
+
902, 0xc7939ca8f047341
|
|
905
|
+
903, 0xb1f8050e7c2d59f6
|
|
906
|
+
904, 0x605701045e7be192
|
|
907
|
+
905, 0x51b73360e8e31a1c
|
|
908
|
+
906, 0x9f4ad54483ba9fe0
|
|
909
|
+
907, 0xd3085b8fcf69d1c8
|
|
910
|
+
908, 0xc3e7475026dc5f0b
|
|
911
|
+
909, 0x5800f8554b157354
|
|
912
|
+
910, 0x37dfdf858cfcd963
|
|
913
|
+
911, 0x3a1fce05ce385072
|
|
914
|
+
912, 0xf495c062645c20c3
|
|
915
|
+
913, 0xdcbeec2c3492c773
|
|
916
|
+
914, 0xc38f427589d1d0b4
|
|
917
|
+
915, 0x681ead60216a8184
|
|
918
|
+
916, 0x4bd569c40cc88c41
|
|
919
|
+
917, 0x49b0d442e130b7a2
|
|
920
|
+
918, 0xee349156b7d1fa3f
|
|
921
|
+
919, 0x2bde2d2db055135b
|
|
922
|
+
920, 0xc6a460d2fbcb2378
|
|
923
|
+
921, 0xd0f170494ff3dbb
|
|
924
|
+
922, 0xb294422492528a23
|
|
925
|
+
923, 0xfc95873c854e7b86
|
|
926
|
+
924, 0x6c9c3ad1797bb19c
|
|
927
|
+
925, 0xe0c06f2aab65062d
|
|
928
|
+
926, 0x58e32ce0f11e3a81
|
|
929
|
+
927, 0xa745fcd729ff5036
|
|
930
|
+
928, 0x599b249b2fc2cdb2
|
|
931
|
+
929, 0x78f23b5b0dd5b082
|
|
932
|
+
930, 0x6de3e957f549ecfc
|
|
933
|
+
931, 0x9d0712fa6d878756
|
|
934
|
+
932, 0x9076e8554e4a413a
|
|
935
|
+
933, 0xf3185818c0294de8
|
|
936
|
+
934, 0x5de7cdf4b455b9b6
|
|
937
|
+
935, 0xb15f6908ed703f7d
|
|
938
|
+
936, 0x98c654dfedc6818
|
|
939
|
+
937, 0x120502ab0e93ae42
|
|
940
|
+
938, 0x67966a98a58dc120
|
|
941
|
+
939, 0x1caa0fc628989482
|
|
942
|
+
940, 0xd8b2c3cd480a8625
|
|
943
|
+
941, 0x85c70071b3aed671
|
|
944
|
+
942, 0xff385f8473714662
|
|
945
|
+
943, 0xe2868e4bf3773b63
|
|
946
|
+
944, 0x96cf8019b279298e
|
|
947
|
+
945, 0x8511cc930bd74800
|
|
948
|
+
946, 0x5312e48fdd55f5ab
|
|
949
|
+
947, 0xfcdae564b52df78d
|
|
950
|
+
948, 0x9eee48373e652176
|
|
951
|
+
949, 0x953788f6bcbc56b0
|
|
952
|
+
950, 0xd1a3855dbd2f6b37
|
|
953
|
+
951, 0x3ad32acf77f4d1e9
|
|
954
|
+
952, 0x917c7be81b003e30
|
|
955
|
+
953, 0x9ce817da1e2e9dfb
|
|
956
|
+
954, 0x2968983db162d44d
|
|
957
|
+
955, 0x1e005decef5828ad
|
|
958
|
+
956, 0xc38fe59d1aa4f3d5
|
|
959
|
+
957, 0xf357f1710dc02f1d
|
|
960
|
+
958, 0x2613912a4c83ec67
|
|
961
|
+
959, 0x832a11470b9a17cb
|
|
962
|
+
960, 0x5e85508a611f0dad
|
|
963
|
+
961, 0x2781131677f59d56
|
|
964
|
+
962, 0xa82358d7d4b0237f
|
|
965
|
+
963, 0xfbf8b3cc030c3af6
|
|
966
|
+
964, 0x68b2f68ac8a55adb
|
|
967
|
+
965, 0x3b6fcf353add0ada
|
|
968
|
+
966, 0xd1956049bcd15bd5
|
|
969
|
+
967, 0x95b76f31c7f98b6d
|
|
970
|
+
968, 0x814b6690df971a84
|
|
971
|
+
969, 0xdcf7959cddd819e4
|
|
972
|
+
970, 0xcf8c72c5d804fc88
|
|
973
|
+
971, 0x56883769c8945a22
|
|
974
|
+
972, 0x1f034652f658cf46
|
|
975
|
+
973, 0x41df1324cda235a1
|
|
976
|
+
974, 0xeccd32524504a054
|
|
977
|
+
975, 0x974e0910a04ec02c
|
|
978
|
+
976, 0x72104507b821f6db
|
|
979
|
+
977, 0x791f8d089f273044
|
|
980
|
+
978, 0xe0f79a4f567f73c3
|
|
981
|
+
979, 0x52fe5bea3997f024
|
|
982
|
+
980, 0x5f8b9b446494f78
|
|
983
|
+
981, 0xfd9f511947059190
|
|
984
|
+
982, 0x3aea9dac6063bce3
|
|
985
|
+
983, 0xbfdae4dfc24aee60
|
|
986
|
+
984, 0xa82cdbbf0a280318
|
|
987
|
+
985, 0xf460aae18d70aa9d
|
|
988
|
+
986, 0x997367cb204a57c4
|
|
989
|
+
987, 0x616e21ab95ba05ef
|
|
990
|
+
988, 0x9bfc93bec116769f
|
|
991
|
+
989, 0x2b2ee27c37a3fa5b
|
|
992
|
+
990, 0xb25c6ed54006ee38
|
|
993
|
+
991, 0xab04d4a5c69e69a5
|
|
994
|
+
992, 0x6d2f6b45f2d8438f
|
|
995
|
+
993, 0x4ad2f32afc82f092
|
|
996
|
+
994, 0x513d718908f709c0
|
|
997
|
+
995, 0x5272aadc4fffca51
|
|
998
|
+
996, 0xeb3f87e66156ef5d
|
|
999
|
+
997, 0xf8a3d5a46a86ba85
|
|
1000
|
+
998, 0xdb4548a86f27abfd
|
|
1001
|
+
999, 0x57c05f47ff62380d
|