numpy 2.3.5__cp313-cp313-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.
Potentially problematic release.
This version of numpy might be problematic. Click here for more details.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +102 -0
- numpy/__init__.cython-30.pxd +1241 -0
- numpy/__init__.pxd +1154 -0
- numpy/__init__.py +945 -0
- numpy/__init__.pyi +6147 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +207 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +186 -0
- numpy/_core/__init__.pyi +2 -0
- numpy/_core/_add_newdocs.py +6967 -0
- numpy/_core/_add_newdocs.pyi +3 -0
- numpy/_core/_add_newdocs_scalars.py +390 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +134 -0
- numpy/_core/_asarray.pyi +41 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +58 -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 +55 -0
- numpy/_core/_internal.py +958 -0
- numpy/_core/_internal.pyi +72 -0
- numpy/_core/_machar.py +355 -0
- numpy/_core/_machar.pyi +55 -0
- numpy/_core/_methods.py +255 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_rational_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.pyi +25 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_type_aliases.py +119 -0
- numpy/_core/_type_aliases.pyi +97 -0
- numpy/_core/_ufunc_config.py +491 -0
- numpy/_core/_ufunc_config.pyi +78 -0
- numpy/_core/_umath_tests.cpython-313-darwin.so +0 -0
- numpy/_core/arrayprint.py +1775 -0
- numpy/_core/arrayprint.pyi +238 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1427 -0
- numpy/_core/defchararray.pyi +1135 -0
- numpy/_core/einsumfunc.py +1498 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4269 -0
- numpy/_core/fromnumeric.pyi +1750 -0
- numpy/_core/function_base.py +545 -0
- numpy/_core/function_base.pyi +278 -0
- numpy/_core/getlimits.py +748 -0
- numpy/_core/getlimits.pyi +3 -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 +54 -0
- numpy/_core/include/numpy/__ufunc_api.h +341 -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 +196 -0
- numpy/_core/include/numpy/dtype_api.h +480 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1950 -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 +977 -0
- numpy/_core/include/numpy/npy_cpu.h +124 -0
- numpy/_core/include/numpy/npy_endian.h +78 -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 +182 -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 +1762 -0
- numpy/_core/multiarray.pyi +1285 -0
- numpy/_core/numeric.py +2760 -0
- numpy/_core/numeric.pyi +882 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +197 -0
- numpy/_core/overrides.py +183 -0
- numpy/_core/overrides.pyi +48 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1089 -0
- numpy/_core/records.pyi +333 -0
- numpy/_core/shape_base.py +998 -0
- numpy/_core/shape_base.pyi +175 -0
- numpy/_core/strings.py +1829 -0
- numpy/_core/strings.pyi +511 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +205 -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 +654 -0
- numpy/_core/tests/test_argparse.py +92 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +911 -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 +1328 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +817 -0
- numpy/_core/tests/test_conversion_utils.py +206 -0
- numpy/_core/tests/test_cpu_dispatcher.py +49 -0
- numpy/_core/tests/test_cpu_features.py +432 -0
- numpy/_core/tests/test_custom_dtypes.py +315 -0
- numpy/_core/tests/test_cython.py +351 -0
- numpy/_core/tests/test_datetime.py +2734 -0
- numpy/_core/tests/test_defchararray.py +825 -0
- numpy/_core/tests/test_deprecations.py +454 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +1995 -0
- numpy/_core/tests/test_einsum.py +1317 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_function_base.py +503 -0
- numpy/_core/tests/test_getlimits.py +205 -0
- numpy/_core/tests/test_half.py +568 -0
- numpy/_core/tests/test_hashtable.py +35 -0
- numpy/_core/tests/test_indexerrors.py +125 -0
- numpy/_core/tests/test_indexing.py +1455 -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 +369 -0
- numpy/_core/tests/test_machar.py +30 -0
- numpy/_core/tests/test_mem_overlap.py +930 -0
- numpy/_core/tests/test_mem_policy.py +452 -0
- numpy/_core/tests/test_memmap.py +246 -0
- numpy/_core/tests/test_multiarray.py +10577 -0
- numpy/_core/tests/test_multithreading.py +292 -0
- numpy/_core/tests/test_nditer.py +3498 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4247 -0
- numpy/_core/tests/test_numerictypes.py +651 -0
- numpy/_core/tests/test_overrides.py +791 -0
- numpy/_core/tests/test_print.py +200 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2670 -0
- numpy/_core/tests/test_scalar_ctors.py +207 -0
- numpy/_core/tests/test_scalar_methods.py +246 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1176 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +891 -0
- numpy/_core/tests/test_simd.py +1341 -0
- numpy/_core/tests/test_simd_module.py +103 -0
- numpy/_core/tests/test_stringdtype.py +1814 -0
- numpy/_core/tests/test_strings.py +1499 -0
- numpy/_core/tests/test_ufunc.py +3313 -0
- numpy/_core/tests/test_umath.py +4928 -0
- numpy/_core/tests/test_umath_accuracy.py +124 -0
- numpy/_core/tests/test_umath_complex.py +626 -0
- numpy/_core/tests/test_unicode.py +368 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +197 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +79 -0
- numpy/_expired_attrs_2_0.pyi +62 -0
- numpy/_globals.py +96 -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 +13 -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 +148 -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 +40 -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 +941 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +30 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +71 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +121 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +258 -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 +33 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +245 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +631 -0
- numpy/exceptions.py +247 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +6 -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 +231 -0
- numpy/f2py/_backends/_meson.pyi +63 -0
- numpy/f2py/_backends/meson.build.template +55 -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 +29 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +264 -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 +258 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +786 -0
- numpy/f2py/f2py2e.pyi +76 -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 +43 -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 +1516 -0
- numpy/f2py/symbolic.pyi +221 -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 +64 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +964 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +53 -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 +495 -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 +215 -0
- numpy/fft/__init__.pyi +43 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +45 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +138 -0
- numpy/fft/_pocketfft_umath.cpython-313-darwin.so +0 -0
- numpy/fft/helper.py +17 -0
- numpy/fft/helper.pyi +22 -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 +44 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +26 -0
- numpy/lib/_arraypad_impl.py +890 -0
- numpy/lib/_arraypad_impl.pyi +89 -0
- numpy/lib/_arraysetops_impl.py +1260 -0
- numpy/lib/_arraysetops_impl.pyi +468 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +46 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +31 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +26 -0
- numpy/lib/_function_base_impl.py +5844 -0
- numpy/lib/_function_base_impl.pyi +1164 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +50 -0
- numpy/lib/_index_tricks_impl.py +1067 -0
- numpy/lib/_index_tricks_impl.pyi +208 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +114 -0
- numpy/lib/_nanfunctions_impl.py +2024 -0
- numpy/lib/_nanfunctions_impl.pyi +52 -0
- numpy/lib/_npyio_impl.py +2596 -0
- numpy/lib/_npyio_impl.pyi +301 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +318 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1301 -0
- numpy/lib/_shape_base_impl.pyi +235 -0
- numpy/lib/_stride_tricks_impl.py +549 -0
- numpy/lib/_stride_tricks_impl.pyi +74 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +438 -0
- numpy/lib/_type_check_impl.py +699 -0
- numpy/lib/_type_check_impl.pyi +350 -0
- numpy/lib/_ufunclike_impl.py +207 -0
- numpy/lib/_ufunclike_impl.pyi +67 -0
- numpy/lib/_user_array_impl.py +299 -0
- numpy/lib/_user_array_impl.pyi +225 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +10 -0
- numpy/lib/_version.py +154 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +12 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +66 -0
- numpy/lib/introspect.py +95 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +77 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +9 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +435 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +30 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +6 -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 +352 -0
- numpy/lib/tests/test__iotools.py +360 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1415 -0
- numpy/lib/tests/test_arraysetops.py +1074 -0
- numpy/lib/tests/test_arrayterator.py +46 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4573 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +573 -0
- numpy/lib/tests/test_io.py +2848 -0
- numpy/lib/tests/test_loadtxt.py +1101 -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 +320 -0
- numpy/lib/tests/test_recfunctions.py +1052 -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 +656 -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 +98 -0
- numpy/linalg/__init__.pyi +73 -0
- numpy/linalg/_linalg.py +3682 -0
- numpy/linalg/_linalg.pyi +475 -0
- numpy/linalg/_umath_linalg.cpython-313-darwin.so +0 -0
- numpy/linalg/_umath_linalg.pyi +61 -0
- numpy/linalg/lapack_lite.cpython-313-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +141 -0
- numpy/linalg/linalg.py +17 -0
- numpy/linalg/linalg.pyi +69 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +20 -0
- numpy/linalg/tests/test_linalg.py +2443 -0
- numpy/linalg/tests/test_regression.py +181 -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 +8933 -0
- numpy/ma/core.pyi +1462 -0
- numpy/ma/extras.py +2344 -0
- numpy/ma/extras.pyi +138 -0
- numpy/ma/mrecords.py +773 -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 +5886 -0
- numpy/ma/tests/test_deprecations.py +87 -0
- numpy/ma/tests/test_extras.py +1998 -0
- numpy/ma/tests/test_mrecords.py +497 -0
- numpy/ma/tests/test_old_ma.py +942 -0
- numpy/ma/tests/test_regression.py +100 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +582 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +5 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +17 -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 +105 -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 +25 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +285 -0
- numpy/polynomial/_polytypes.pyi +892 -0
- numpy/polynomial/chebyshev.py +2003 -0
- numpy/polynomial/chebyshev.pyi +181 -0
- numpy/polynomial/hermite.py +1740 -0
- numpy/polynomial/hermite.pyi +107 -0
- numpy/polynomial/hermite_e.py +1642 -0
- numpy/polynomial/hermite_e.pyi +107 -0
- numpy/polynomial/laguerre.py +1675 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1605 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1616 -0
- numpy/polynomial/polynomial.pyi +89 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +423 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +623 -0
- numpy/polynomial/tests/test_classes.py +618 -0
- numpy/polynomial/tests/test_hermite.py +558 -0
- numpy/polynomial/tests/test_hermite_e.py +559 -0
- numpy/polynomial/tests/test_laguerre.py +540 -0
- numpy/polynomial/tests/test_legendre.py +571 -0
- numpy/polynomial/tests/test_polynomial.py +669 -0
- numpy/polynomial/tests/test_polyutils.py +128 -0
- numpy/polynomial/tests/test_printing.py +555 -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-313-darwin.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313-darwin.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 +118 -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-313-darwin.so +0 -0
- numpy/random/_generator.pyi +861 -0
- numpy/random/_mt19937.cpython-313-darwin.so +0 -0
- numpy/random/_mt19937.pyi +25 -0
- numpy/random/_pcg64.cpython-313-darwin.so +0 -0
- numpy/random/_pcg64.pyi +44 -0
- numpy/random/_philox.cpython-313-darwin.so +0 -0
- numpy/random/_philox.pyi +39 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313-darwin.so +0 -0
- numpy/random/_sfc64.pyi +28 -0
- numpy/random/bit_generator.cpython-313-darwin.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +124 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313-darwin.so +0 -0
- numpy/random/mtrand.pyi +703 -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 +592 -0
- numpy/random/tests/test_extending.py +127 -0
- numpy/random/tests/test_generator_mt19937.py +2809 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +207 -0
- numpy/random/tests/test_random.py +1757 -0
- numpy/random/tests/test_randomstate.py +2130 -0
- numpy/random/tests/test_randomstate_regression.py +217 -0
- numpy/random/tests/test_regression.py +152 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +819 -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 +102 -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 +2752 -0
- numpy/testing/_private/utils.pyi +499 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +11 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +27 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +1917 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +48 -0
- numpy/tests/test_ctypeslib.py +377 -0
- numpy/tests/test_lazyloading.py +38 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +46 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +806 -0
- numpy/tests/test_reloading.py +74 -0
- numpy/tests/test_scripts.py +49 -0
- numpy/tests/test_warnings.py +78 -0
- numpy/typing/__init__.py +201 -0
- numpy/typing/mypy_plugin.py +195 -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 +16 -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 +65 -0
- numpy/typing/tests/data/fail/chararray.pyi +62 -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 +15 -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 +20 -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 +62 -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 +48 -0
- numpy/typing/tests/data/fail/ma.pyi +143 -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 +36 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +16 -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 +87 -0
- numpy/typing/tests/data/fail/shape.pyi +6 -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 +32 -0
- numpy/typing/tests/data/fail/type_check.pyi +13 -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 +9 -0
- numpy/typing/tests/data/pass/arithmetic.py +612 -0
- numpy/typing/tests/data/pass/array_constructors.py +137 -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 +27 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +315 -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 +19 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +60 -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 +51 -0
- numpy/typing/tests/data/pass/ma.py +174 -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 +76 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +87 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +203 -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 +95 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1497 -0
- numpy/typing/tests/data/pass/recfunctions.py +161 -0
- numpy/typing/tests/data/pass/scalars.py +248 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +168 -0
- numpy/typing/tests/data/pass/simple_py3.py +6 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +47 -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 +720 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +249 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +22 -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 +167 -0
- numpy/typing/tests/data/reveal/char.pyi +224 -0
- numpy/typing/tests/data/reveal/chararray.pyi +137 -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 +136 -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 +47 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +51 -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 +213 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -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 +132 -0
- numpy/typing/tests/data/reveal/ma.pyi +369 -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 +179 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +247 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -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 +134 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -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 +145 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +32 -0
- numpy/typing/tests/test_runtime.py +102 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +18 -0
- numpy-2.3.5.dist-info/LICENSE.txt +971 -0
- numpy-2.3.5.dist-info/METADATA +1093 -0
- numpy-2.3.5.dist-info/RECORD +897 -0
- numpy-2.3.5.dist-info/WHEEL +6 -0
- numpy-2.3.5.dist-info/entry_points.txt +13 -0
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
seed, 0x0
|
|
2
|
+
0, 0x7ab4ea94
|
|
3
|
+
1, 0x9b561119
|
|
4
|
+
2, 0x4957d02e
|
|
5
|
+
3, 0x7dd3fdc2
|
|
6
|
+
4, 0x5affe54
|
|
7
|
+
5, 0x5a01741c
|
|
8
|
+
6, 0x8b9e8c1f
|
|
9
|
+
7, 0xda5bf11a
|
|
10
|
+
8, 0x509226
|
|
11
|
+
9, 0x64e2ea17
|
|
12
|
+
10, 0x82c6dab5
|
|
13
|
+
11, 0xe4302515
|
|
14
|
+
12, 0x8198b873
|
|
15
|
+
13, 0xc3ec9a82
|
|
16
|
+
14, 0x829dff28
|
|
17
|
+
15, 0x5278e44f
|
|
18
|
+
16, 0x994a7d2c
|
|
19
|
+
17, 0xf1c89398
|
|
20
|
+
18, 0xaf2fddec
|
|
21
|
+
19, 0x22abc6ee
|
|
22
|
+
20, 0x963dbd43
|
|
23
|
+
21, 0xc29edffb
|
|
24
|
+
22, 0x41c1ce07
|
|
25
|
+
23, 0x9c90034d
|
|
26
|
+
24, 0x1f17a796
|
|
27
|
+
25, 0x3833caa8
|
|
28
|
+
26, 0xb8795528
|
|
29
|
+
27, 0xebc595a2
|
|
30
|
+
28, 0xf8f5b5dd
|
|
31
|
+
29, 0xc2881f72
|
|
32
|
+
30, 0x18e5d3f0
|
|
33
|
+
31, 0x9b19ac7a
|
|
34
|
+
32, 0xb9992436
|
|
35
|
+
33, 0xc00052b3
|
|
36
|
+
34, 0xb63f4475
|
|
37
|
+
35, 0x962642d9
|
|
38
|
+
36, 0x63506c10
|
|
39
|
+
37, 0x2be6b127
|
|
40
|
+
38, 0x569bdbc6
|
|
41
|
+
39, 0x7f185e01
|
|
42
|
+
40, 0xebb55f53
|
|
43
|
+
41, 0x1c30198c
|
|
44
|
+
42, 0x7c8d75c6
|
|
45
|
+
43, 0xd3f2186b
|
|
46
|
+
44, 0xaca5b9b1
|
|
47
|
+
45, 0xbc49ff45
|
|
48
|
+
46, 0xc4a802af
|
|
49
|
+
47, 0x2cecd86f
|
|
50
|
+
48, 0x8e0da529
|
|
51
|
+
49, 0x1f22b00e
|
|
52
|
+
50, 0x4559ea80
|
|
53
|
+
51, 0x60f587d8
|
|
54
|
+
52, 0x7c7460e9
|
|
55
|
+
53, 0x67be0a4a
|
|
56
|
+
54, 0x987a0183
|
|
57
|
+
55, 0x7bd30f1
|
|
58
|
+
56, 0xab18c4ac
|
|
59
|
+
57, 0xffdbfb64
|
|
60
|
+
58, 0x9ea917f9
|
|
61
|
+
59, 0x1239dab7
|
|
62
|
+
60, 0x38efabeb
|
|
63
|
+
61, 0x5da91888
|
|
64
|
+
62, 0x8f49ed62
|
|
65
|
+
63, 0x83f60b1e
|
|
66
|
+
64, 0x5950a3fc
|
|
67
|
+
65, 0xd8911104
|
|
68
|
+
66, 0x19e8859e
|
|
69
|
+
67, 0x1a4d89ec
|
|
70
|
+
68, 0x968ca180
|
|
71
|
+
69, 0x9e1b6da3
|
|
72
|
+
70, 0x3d99c2c
|
|
73
|
+
71, 0x55f76289
|
|
74
|
+
72, 0x8fa28b9e
|
|
75
|
+
73, 0x9fe01d33
|
|
76
|
+
74, 0xdade4e38
|
|
77
|
+
75, 0x1ea04290
|
|
78
|
+
76, 0xa7263313
|
|
79
|
+
77, 0xaafc762e
|
|
80
|
+
78, 0x460476d6
|
|
81
|
+
79, 0x31226e12
|
|
82
|
+
80, 0x451d3f05
|
|
83
|
+
81, 0xd0d2764b
|
|
84
|
+
82, 0xd06e1ab3
|
|
85
|
+
83, 0x1394e3f4
|
|
86
|
+
84, 0x2fc04ea3
|
|
87
|
+
85, 0x5b8401c
|
|
88
|
+
86, 0xebd6c929
|
|
89
|
+
87, 0xe881687c
|
|
90
|
+
88, 0x94bdd66a
|
|
91
|
+
89, 0xabf85983
|
|
92
|
+
90, 0x223ad12d
|
|
93
|
+
91, 0x2aaeeaa3
|
|
94
|
+
92, 0x1f704934
|
|
95
|
+
93, 0x2db2efb6
|
|
96
|
+
94, 0xf49b8dfb
|
|
97
|
+
95, 0x5bdbbb9d
|
|
98
|
+
96, 0xba0cd0db
|
|
99
|
+
97, 0x4ec4674e
|
|
100
|
+
98, 0xad0129e
|
|
101
|
+
99, 0x7a66129b
|
|
102
|
+
100, 0x50d12c5e
|
|
103
|
+
101, 0x85b1d335
|
|
104
|
+
102, 0x3efda58a
|
|
105
|
+
103, 0xecd886fb
|
|
106
|
+
104, 0x8ecadd3d
|
|
107
|
+
105, 0x60ebac0f
|
|
108
|
+
106, 0x5e10fe79
|
|
109
|
+
107, 0xa84f7e5d
|
|
110
|
+
108, 0x43931288
|
|
111
|
+
109, 0xfacf448
|
|
112
|
+
110, 0x4ee01997
|
|
113
|
+
111, 0xcdc0a651
|
|
114
|
+
112, 0x33c87037
|
|
115
|
+
113, 0x8b50fc03
|
|
116
|
+
114, 0xf52aad34
|
|
117
|
+
115, 0xda6cd856
|
|
118
|
+
116, 0x7585bea0
|
|
119
|
+
117, 0xe947c762
|
|
120
|
+
118, 0x4ddff5d8
|
|
121
|
+
119, 0xe0e79b3b
|
|
122
|
+
120, 0xb804cf09
|
|
123
|
+
121, 0x84765c44
|
|
124
|
+
122, 0x3ff666b4
|
|
125
|
+
123, 0xe31621ad
|
|
126
|
+
124, 0x816f2236
|
|
127
|
+
125, 0x228176bc
|
|
128
|
+
126, 0xfdc14904
|
|
129
|
+
127, 0x635f5077
|
|
130
|
+
128, 0x6981a817
|
|
131
|
+
129, 0xfd9a0300
|
|
132
|
+
130, 0xd3fa8a24
|
|
133
|
+
131, 0xd67c1a77
|
|
134
|
+
132, 0x903fe97a
|
|
135
|
+
133, 0xf7c4a4d5
|
|
136
|
+
134, 0x109f2058
|
|
137
|
+
135, 0x48ab87fe
|
|
138
|
+
136, 0xfd6f1928
|
|
139
|
+
137, 0x707e9452
|
|
140
|
+
138, 0xf327db9e
|
|
141
|
+
139, 0x7b80d76d
|
|
142
|
+
140, 0xfb6ba193
|
|
143
|
+
141, 0x454a1ad0
|
|
144
|
+
142, 0xe20b51e
|
|
145
|
+
143, 0xb774d085
|
|
146
|
+
144, 0x6b1ed574
|
|
147
|
+
145, 0xb1e77de4
|
|
148
|
+
146, 0xe2a83b37
|
|
149
|
+
147, 0x33d3176f
|
|
150
|
+
148, 0x2f0ca0fc
|
|
151
|
+
149, 0x17f51e2
|
|
152
|
+
150, 0x7c1fbf55
|
|
153
|
+
151, 0xf09e9cd0
|
|
154
|
+
152, 0xe3d9bacd
|
|
155
|
+
153, 0x4244db0a
|
|
156
|
+
154, 0x876c09fc
|
|
157
|
+
155, 0x9db4fc2f
|
|
158
|
+
156, 0xd3771d60
|
|
159
|
+
157, 0x25fc6a75
|
|
160
|
+
158, 0xb309915c
|
|
161
|
+
159, 0xc50ee027
|
|
162
|
+
160, 0xaa5b7b38
|
|
163
|
+
161, 0x4c650ded
|
|
164
|
+
162, 0x1acb2879
|
|
165
|
+
163, 0x50db5887
|
|
166
|
+
164, 0x90054847
|
|
167
|
+
165, 0xfef23e5b
|
|
168
|
+
166, 0x2dd7b7d5
|
|
169
|
+
167, 0x990b8c2e
|
|
170
|
+
168, 0x6001a601
|
|
171
|
+
169, 0xb5d314c4
|
|
172
|
+
170, 0xfbfb7bf9
|
|
173
|
+
171, 0x1aba997d
|
|
174
|
+
172, 0x814e7304
|
|
175
|
+
173, 0x989d956a
|
|
176
|
+
174, 0x86d5a29c
|
|
177
|
+
175, 0x70a9fa08
|
|
178
|
+
176, 0xc4ccba87
|
|
179
|
+
177, 0x7e9cb366
|
|
180
|
+
178, 0xee18eb0a
|
|
181
|
+
179, 0x44f5be58
|
|
182
|
+
180, 0x91d4af2d
|
|
183
|
+
181, 0x5ab6e593
|
|
184
|
+
182, 0x9fd6bb4d
|
|
185
|
+
183, 0x85894ce
|
|
186
|
+
184, 0x728a2401
|
|
187
|
+
185, 0xf006f6d4
|
|
188
|
+
186, 0xd782741e
|
|
189
|
+
187, 0x842cd5bd
|
|
190
|
+
188, 0xfb5883aa
|
|
191
|
+
189, 0x7e5a471
|
|
192
|
+
190, 0x83ff6965
|
|
193
|
+
191, 0xc9675c6b
|
|
194
|
+
192, 0xb6ced3c7
|
|
195
|
+
193, 0x3de6425b
|
|
196
|
+
194, 0x25e14db4
|
|
197
|
+
195, 0x69ca3dec
|
|
198
|
+
196, 0x81342d13
|
|
199
|
+
197, 0xd7cd8417
|
|
200
|
+
198, 0x88d15e69
|
|
201
|
+
199, 0xefba17c9
|
|
202
|
+
200, 0x43d595e6
|
|
203
|
+
201, 0x89d4cf25
|
|
204
|
+
202, 0x7cae9b9b
|
|
205
|
+
203, 0x2242c621
|
|
206
|
+
204, 0x27fc3598
|
|
207
|
+
205, 0x467b1d84
|
|
208
|
+
206, 0xe84d4622
|
|
209
|
+
207, 0xa26bf980
|
|
210
|
+
208, 0x80411010
|
|
211
|
+
209, 0xe2c2bfea
|
|
212
|
+
210, 0xbc6ca25a
|
|
213
|
+
211, 0x3ddb592a
|
|
214
|
+
212, 0xdd46eb9e
|
|
215
|
+
213, 0xdfe8f657
|
|
216
|
+
214, 0x2cedc974
|
|
217
|
+
215, 0xf0dc546b
|
|
218
|
+
216, 0xd46be68f
|
|
219
|
+
217, 0x26d8a5aa
|
|
220
|
+
218, 0x76e96ba3
|
|
221
|
+
219, 0x7d5b5353
|
|
222
|
+
220, 0xf532237c
|
|
223
|
+
221, 0x6478b79
|
|
224
|
+
222, 0x9b81a5e5
|
|
225
|
+
223, 0x5fc68e5c
|
|
226
|
+
224, 0x68436e70
|
|
227
|
+
225, 0x2a0043f9
|
|
228
|
+
226, 0x108d523c
|
|
229
|
+
227, 0x7a4c32a3
|
|
230
|
+
228, 0x9c84c742
|
|
231
|
+
229, 0x6f813dae
|
|
232
|
+
230, 0xfcc5bbcc
|
|
233
|
+
231, 0x215b6f3a
|
|
234
|
+
232, 0x84cb321d
|
|
235
|
+
233, 0x7913a248
|
|
236
|
+
234, 0xb1e6b585
|
|
237
|
+
235, 0x49376b31
|
|
238
|
+
236, 0x1dc896b0
|
|
239
|
+
237, 0x347051ad
|
|
240
|
+
238, 0x5524c042
|
|
241
|
+
239, 0xda0eef9d
|
|
242
|
+
240, 0xf2e73342
|
|
243
|
+
241, 0xbeee2f9d
|
|
244
|
+
242, 0x7c702874
|
|
245
|
+
243, 0x9eb3bd34
|
|
246
|
+
244, 0x97b09700
|
|
247
|
+
245, 0xcdbab1d4
|
|
248
|
+
246, 0x4a2f6ed1
|
|
249
|
+
247, 0x2047bda5
|
|
250
|
+
248, 0x3ecc7005
|
|
251
|
+
249, 0x8d0d5e67
|
|
252
|
+
250, 0x40876fb5
|
|
253
|
+
251, 0xb5fd2187
|
|
254
|
+
252, 0xe915d8af
|
|
255
|
+
253, 0x9a2351c7
|
|
256
|
+
254, 0xccc658ae
|
|
257
|
+
255, 0xebb1eddc
|
|
258
|
+
256, 0xc4a83671
|
|
259
|
+
257, 0xffb2548f
|
|
260
|
+
258, 0xe4fe387a
|
|
261
|
+
259, 0x477aaab4
|
|
262
|
+
260, 0x8475a4e4
|
|
263
|
+
261, 0xf8823e46
|
|
264
|
+
262, 0xe4130f71
|
|
265
|
+
263, 0xbdb54482
|
|
266
|
+
264, 0x98fe0462
|
|
267
|
+
265, 0xf36b27b8
|
|
268
|
+
266, 0xed7733da
|
|
269
|
+
267, 0x5f428afc
|
|
270
|
+
268, 0x43a3a21a
|
|
271
|
+
269, 0xf8370b55
|
|
272
|
+
270, 0xfade1de1
|
|
273
|
+
271, 0xd9a038ea
|
|
274
|
+
272, 0x3c69af23
|
|
275
|
+
273, 0x24df7dd0
|
|
276
|
+
274, 0xf66d9353
|
|
277
|
+
275, 0x71d811be
|
|
278
|
+
276, 0xcc4d024b
|
|
279
|
+
277, 0xb8c30bf0
|
|
280
|
+
278, 0x4198509d
|
|
281
|
+
279, 0x8b37ba36
|
|
282
|
+
280, 0xa41ae29a
|
|
283
|
+
281, 0x8cf7799e
|
|
284
|
+
282, 0x5cd0136a
|
|
285
|
+
283, 0xa11324ef
|
|
286
|
+
284, 0x2f8b6d4b
|
|
287
|
+
285, 0x3657cf17
|
|
288
|
+
286, 0x35b6873f
|
|
289
|
+
287, 0xee6e5bd7
|
|
290
|
+
288, 0xbeeaa98
|
|
291
|
+
289, 0x9ad3c581
|
|
292
|
+
290, 0xe2376c3f
|
|
293
|
+
291, 0x738027cc
|
|
294
|
+
292, 0x536ac839
|
|
295
|
+
293, 0xf066227
|
|
296
|
+
294, 0x6c9cb0f9
|
|
297
|
+
295, 0x84082ae6
|
|
298
|
+
296, 0xab38ae9d
|
|
299
|
+
297, 0x493eade9
|
|
300
|
+
298, 0xcb630b3a
|
|
301
|
+
299, 0x64d44250
|
|
302
|
+
300, 0xe5efb557
|
|
303
|
+
301, 0xea2424d9
|
|
304
|
+
302, 0x11a690ba
|
|
305
|
+
303, 0x30a48ae4
|
|
306
|
+
304, 0x58987e53
|
|
307
|
+
305, 0x94ec6076
|
|
308
|
+
306, 0x5d3308fa
|
|
309
|
+
307, 0xf1635ebb
|
|
310
|
+
308, 0x56a5ab90
|
|
311
|
+
309, 0x2b2f2ee4
|
|
312
|
+
310, 0x6f9e6483
|
|
313
|
+
311, 0x8b93e327
|
|
314
|
+
312, 0xa7ce140b
|
|
315
|
+
313, 0x4c8aa42
|
|
316
|
+
314, 0x7657bb3f
|
|
317
|
+
315, 0xf250fd75
|
|
318
|
+
316, 0x1edfcb0f
|
|
319
|
+
317, 0xdb42ace3
|
|
320
|
+
318, 0xf8147e16
|
|
321
|
+
319, 0xd1992bd
|
|
322
|
+
320, 0x64bb14d1
|
|
323
|
+
321, 0x423e724d
|
|
324
|
+
322, 0x7b172f7c
|
|
325
|
+
323, 0x17171696
|
|
326
|
+
324, 0x4acaf83b
|
|
327
|
+
325, 0x7a83527e
|
|
328
|
+
326, 0xfc980c60
|
|
329
|
+
327, 0xc8b56bb
|
|
330
|
+
328, 0x2453f77f
|
|
331
|
+
329, 0x85ad1bf9
|
|
332
|
+
330, 0x62a85dfe
|
|
333
|
+
331, 0x48238c4d
|
|
334
|
+
332, 0xbb3ec1eb
|
|
335
|
+
333, 0x4c1c039c
|
|
336
|
+
334, 0x1f37f571
|
|
337
|
+
335, 0x98aecb63
|
|
338
|
+
336, 0xc3b3ddd6
|
|
339
|
+
337, 0xd22dad4
|
|
340
|
+
338, 0xe49671a3
|
|
341
|
+
339, 0xe3baf945
|
|
342
|
+
340, 0xb9e21680
|
|
343
|
+
341, 0xda562856
|
|
344
|
+
342, 0xe8b88ce4
|
|
345
|
+
343, 0x86f88de2
|
|
346
|
+
344, 0x986faf76
|
|
347
|
+
345, 0x6f0025c3
|
|
348
|
+
346, 0x3fe21234
|
|
349
|
+
347, 0xd8d3f729
|
|
350
|
+
348, 0xc2d11c6f
|
|
351
|
+
349, 0xd4f9e8f
|
|
352
|
+
350, 0xf61a0aa
|
|
353
|
+
351, 0xc48bb313
|
|
354
|
+
352, 0xe944e940
|
|
355
|
+
353, 0xf1801b2e
|
|
356
|
+
354, 0x253590be
|
|
357
|
+
355, 0x981f069d
|
|
358
|
+
356, 0x891454d8
|
|
359
|
+
357, 0xa4f824ad
|
|
360
|
+
358, 0x6dd2cc48
|
|
361
|
+
359, 0x3018827e
|
|
362
|
+
360, 0x3fb329e6
|
|
363
|
+
361, 0x65276517
|
|
364
|
+
362, 0x8d2c0dd2
|
|
365
|
+
363, 0xc965b48e
|
|
366
|
+
364, 0x85d14d90
|
|
367
|
+
365, 0x5a51623c
|
|
368
|
+
366, 0xa9573d6a
|
|
369
|
+
367, 0x82d00edf
|
|
370
|
+
368, 0x5ed7ce07
|
|
371
|
+
369, 0x1d946abc
|
|
372
|
+
370, 0x24fa567b
|
|
373
|
+
371, 0x83ef5ecc
|
|
374
|
+
372, 0x9001724a
|
|
375
|
+
373, 0xc4fe48f3
|
|
376
|
+
374, 0x1e07c25c
|
|
377
|
+
375, 0xf4d5e65e
|
|
378
|
+
376, 0xb734f6e9
|
|
379
|
+
377, 0x327a2df8
|
|
380
|
+
378, 0x766d59b7
|
|
381
|
+
379, 0x625e6b61
|
|
382
|
+
380, 0xe82f32d7
|
|
383
|
+
381, 0x1566c638
|
|
384
|
+
382, 0x2e815871
|
|
385
|
+
383, 0x606514aa
|
|
386
|
+
384, 0x36b7386e
|
|
387
|
+
385, 0xcaa8ce08
|
|
388
|
+
386, 0xb453fe9c
|
|
389
|
+
387, 0x48574e23
|
|
390
|
+
388, 0x71f0da06
|
|
391
|
+
389, 0xa8a79463
|
|
392
|
+
390, 0x6b590210
|
|
393
|
+
391, 0x86e989db
|
|
394
|
+
392, 0x42899f4f
|
|
395
|
+
393, 0x7a654ef9
|
|
396
|
+
394, 0x4c4fe932
|
|
397
|
+
395, 0x77b2fd10
|
|
398
|
+
396, 0xb6b4565c
|
|
399
|
+
397, 0xa2e537a3
|
|
400
|
+
398, 0xef5a3dca
|
|
401
|
+
399, 0x41235ea8
|
|
402
|
+
400, 0x95c90541
|
|
403
|
+
401, 0x50ad32c4
|
|
404
|
+
402, 0xc1b8e0a4
|
|
405
|
+
403, 0x498e9aab
|
|
406
|
+
404, 0xffc965f1
|
|
407
|
+
405, 0x72633485
|
|
408
|
+
406, 0x3a731aef
|
|
409
|
+
407, 0x7cfddd0b
|
|
410
|
+
408, 0xb04d4129
|
|
411
|
+
409, 0x184fc28e
|
|
412
|
+
410, 0x424369b0
|
|
413
|
+
411, 0xf9ae13a1
|
|
414
|
+
412, 0xaf357c8d
|
|
415
|
+
413, 0x7a19228e
|
|
416
|
+
414, 0xb46de2a8
|
|
417
|
+
415, 0xeff2ac76
|
|
418
|
+
416, 0xa6c9357b
|
|
419
|
+
417, 0x614f19c1
|
|
420
|
+
418, 0x8ee1a53f
|
|
421
|
+
419, 0xbe1257b1
|
|
422
|
+
420, 0xf72651fe
|
|
423
|
+
421, 0xd347c298
|
|
424
|
+
422, 0x96dd2f23
|
|
425
|
+
423, 0x5bb1d63e
|
|
426
|
+
424, 0x32e10887
|
|
427
|
+
425, 0x36a144da
|
|
428
|
+
426, 0x9d70e791
|
|
429
|
+
427, 0x5e535a25
|
|
430
|
+
428, 0x214253da
|
|
431
|
+
429, 0x2e43dd40
|
|
432
|
+
430, 0xfc0413f4
|
|
433
|
+
431, 0x1f5ea409
|
|
434
|
+
432, 0x1754c126
|
|
435
|
+
433, 0xcdbeebbe
|
|
436
|
+
434, 0x1fb44a14
|
|
437
|
+
435, 0xaec7926
|
|
438
|
+
436, 0xb9d9a1e
|
|
439
|
+
437, 0x9e4a6577
|
|
440
|
+
438, 0x8b1f04c5
|
|
441
|
+
439, 0x19854e8a
|
|
442
|
+
440, 0x531080cd
|
|
443
|
+
441, 0xc0cbd73
|
|
444
|
+
442, 0x20399d77
|
|
445
|
+
443, 0x7d8e9ed5
|
|
446
|
+
444, 0x66177598
|
|
447
|
+
445, 0x4d18a5c2
|
|
448
|
+
446, 0xe08ebf58
|
|
449
|
+
447, 0xb1f9c87b
|
|
450
|
+
448, 0x66bedb10
|
|
451
|
+
449, 0x26670d21
|
|
452
|
+
450, 0x7a7892da
|
|
453
|
+
451, 0x69b69d86
|
|
454
|
+
452, 0xd04f1d1c
|
|
455
|
+
453, 0xaf469625
|
|
456
|
+
454, 0x7946b813
|
|
457
|
+
455, 0x1ee596bd
|
|
458
|
+
456, 0x7f365d85
|
|
459
|
+
457, 0x795b662b
|
|
460
|
+
458, 0x194ad02d
|
|
461
|
+
459, 0x5a9649b5
|
|
462
|
+
460, 0x6085e278
|
|
463
|
+
461, 0x2cf54550
|
|
464
|
+
462, 0x9c77ea0b
|
|
465
|
+
463, 0x3c6ff8b
|
|
466
|
+
464, 0x2141cd34
|
|
467
|
+
465, 0xb90bc671
|
|
468
|
+
466, 0x35037c4b
|
|
469
|
+
467, 0xd04c0d76
|
|
470
|
+
468, 0xc75bff8
|
|
471
|
+
469, 0x8f52003b
|
|
472
|
+
470, 0xfad3d031
|
|
473
|
+
471, 0x667024bc
|
|
474
|
+
472, 0xcb04ea36
|
|
475
|
+
473, 0x3e03d587
|
|
476
|
+
474, 0x2644d3a0
|
|
477
|
+
475, 0xa8fe99ba
|
|
478
|
+
476, 0x2b9a55fc
|
|
479
|
+
477, 0x45c4d44a
|
|
480
|
+
478, 0xd059881
|
|
481
|
+
479, 0xe07fcd20
|
|
482
|
+
480, 0x4e22046c
|
|
483
|
+
481, 0x7c2cbf81
|
|
484
|
+
482, 0xbf7f23de
|
|
485
|
+
483, 0x69d924c3
|
|
486
|
+
484, 0xe53cd01
|
|
487
|
+
485, 0x3879017c
|
|
488
|
+
486, 0xa590e558
|
|
489
|
+
487, 0x263bc076
|
|
490
|
+
488, 0x245465b1
|
|
491
|
+
489, 0x449212c6
|
|
492
|
+
490, 0x249dcb29
|
|
493
|
+
491, 0x703d42d7
|
|
494
|
+
492, 0x140eb9ec
|
|
495
|
+
493, 0xc86c5741
|
|
496
|
+
494, 0x7992aa5b
|
|
497
|
+
495, 0xb8b76a91
|
|
498
|
+
496, 0x771dac3d
|
|
499
|
+
497, 0x4ecd81e3
|
|
500
|
+
498, 0xe5ac30b3
|
|
501
|
+
499, 0xf4d7a5a6
|
|
502
|
+
500, 0xac24b97
|
|
503
|
+
501, 0x63494d78
|
|
504
|
+
502, 0x627ffa89
|
|
505
|
+
503, 0xfa4f330
|
|
506
|
+
504, 0x8098a1aa
|
|
507
|
+
505, 0xcc0c61dc
|
|
508
|
+
506, 0x34749fa0
|
|
509
|
+
507, 0x7f217822
|
|
510
|
+
508, 0x418d6f15
|
|
511
|
+
509, 0xa4b6e51e
|
|
512
|
+
510, 0x1036de68
|
|
513
|
+
511, 0x1436986e
|
|
514
|
+
512, 0x44df961d
|
|
515
|
+
513, 0x368e4651
|
|
516
|
+
514, 0x6a9e5d8c
|
|
517
|
+
515, 0x27d1597e
|
|
518
|
+
516, 0xa1926c62
|
|
519
|
+
517, 0x8d1f2b55
|
|
520
|
+
518, 0x5797eb42
|
|
521
|
+
519, 0xa90f9e81
|
|
522
|
+
520, 0x57547b10
|
|
523
|
+
521, 0xdbbcca8e
|
|
524
|
+
522, 0x9edd2d86
|
|
525
|
+
523, 0xbb0a7527
|
|
526
|
+
524, 0x7662380c
|
|
527
|
+
525, 0xe7c98590
|
|
528
|
+
526, 0x950fbf3f
|
|
529
|
+
527, 0xdc2b76b3
|
|
530
|
+
528, 0x8a945102
|
|
531
|
+
529, 0x3f0a1a85
|
|
532
|
+
530, 0xeb215834
|
|
533
|
+
531, 0xc59f2802
|
|
534
|
+
532, 0xe2a4610
|
|
535
|
+
533, 0x8b5a8665
|
|
536
|
+
534, 0x8b2d9933
|
|
537
|
+
535, 0x40a4f0bc
|
|
538
|
+
536, 0xaab5bc67
|
|
539
|
+
537, 0x1442a69e
|
|
540
|
+
538, 0xdf531193
|
|
541
|
+
539, 0x698d3db4
|
|
542
|
+
540, 0x2d40324e
|
|
543
|
+
541, 0x1a25feb2
|
|
544
|
+
542, 0xe8cc898f
|
|
545
|
+
543, 0xf12e98f5
|
|
546
|
+
544, 0xc03ad34c
|
|
547
|
+
545, 0xf62fceff
|
|
548
|
+
546, 0xdd827e1e
|
|
549
|
+
547, 0x7d8ccb3b
|
|
550
|
+
548, 0xab2d6bc1
|
|
551
|
+
549, 0xc323a124
|
|
552
|
+
550, 0x8184a19a
|
|
553
|
+
551, 0xc3c4e934
|
|
554
|
+
552, 0x5487424d
|
|
555
|
+
553, 0xd6a81a44
|
|
556
|
+
554, 0x90a8689d
|
|
557
|
+
555, 0xe69c4c67
|
|
558
|
+
556, 0xbdae02dd
|
|
559
|
+
557, 0x72a18a79
|
|
560
|
+
558, 0x2a88e907
|
|
561
|
+
559, 0x31cf4b5d
|
|
562
|
+
560, 0xb157772f
|
|
563
|
+
561, 0x206ba601
|
|
564
|
+
562, 0x18529232
|
|
565
|
+
563, 0x7dac90d8
|
|
566
|
+
564, 0x3a5f8a09
|
|
567
|
+
565, 0x9f4b64a3
|
|
568
|
+
566, 0xae373af9
|
|
569
|
+
567, 0x1d79447c
|
|
570
|
+
568, 0x2a23684b
|
|
571
|
+
569, 0x41fb7ba4
|
|
572
|
+
570, 0x55e4bb9e
|
|
573
|
+
571, 0xd7619d3e
|
|
574
|
+
572, 0xc04e4dd8
|
|
575
|
+
573, 0x8418d516
|
|
576
|
+
574, 0x2b2ca585
|
|
577
|
+
575, 0xfa8eedf
|
|
578
|
+
576, 0x5bafd977
|
|
579
|
+
577, 0x31974fb0
|
|
580
|
+
578, 0x9eb6697b
|
|
581
|
+
579, 0xc8be22f5
|
|
582
|
+
580, 0x173b126a
|
|
583
|
+
581, 0x8809becf
|
|
584
|
+
582, 0x3e41efe1
|
|
585
|
+
583, 0x3d6cbbb8
|
|
586
|
+
584, 0x278c81d8
|
|
587
|
+
585, 0xa6f08434
|
|
588
|
+
586, 0xa0e6601d
|
|
589
|
+
587, 0x2fccd88d
|
|
590
|
+
588, 0x3cbc8beb
|
|
591
|
+
589, 0x5f65d864
|
|
592
|
+
590, 0xa1ff8ddf
|
|
593
|
+
591, 0x609dcb7c
|
|
594
|
+
592, 0x4a4e1663
|
|
595
|
+
593, 0xeae5531
|
|
596
|
+
594, 0x962a7c85
|
|
597
|
+
595, 0x1e110607
|
|
598
|
+
596, 0x8c5db5d0
|
|
599
|
+
597, 0xc7f2337e
|
|
600
|
+
598, 0xc94fcc9c
|
|
601
|
+
599, 0xe7f62629
|
|
602
|
+
600, 0x6c9aa9f8
|
|
603
|
+
601, 0x2e27fe0e
|
|
604
|
+
602, 0x4d0dae12
|
|
605
|
+
603, 0x9eecf588
|
|
606
|
+
604, 0x977ba3f2
|
|
607
|
+
605, 0xed0a51af
|
|
608
|
+
606, 0x3f3ec633
|
|
609
|
+
607, 0xc174b2ec
|
|
610
|
+
608, 0x590be8a9
|
|
611
|
+
609, 0x4f630d18
|
|
612
|
+
610, 0xf579e989
|
|
613
|
+
611, 0xe2a55584
|
|
614
|
+
612, 0xee11edcd
|
|
615
|
+
613, 0x150a4833
|
|
616
|
+
614, 0xc0a0535c
|
|
617
|
+
615, 0xb5e00993
|
|
618
|
+
616, 0xb6435700
|
|
619
|
+
617, 0xa98dbff
|
|
620
|
+
618, 0x315716af
|
|
621
|
+
619, 0x94395776
|
|
622
|
+
620, 0x6cbd48d9
|
|
623
|
+
621, 0xab17f8fc
|
|
624
|
+
622, 0xa794ffb7
|
|
625
|
+
623, 0x6b55e231
|
|
626
|
+
624, 0x89ff5783
|
|
627
|
+
625, 0x431dcb26
|
|
628
|
+
626, 0x270f9bf8
|
|
629
|
+
627, 0x2af1b8d0
|
|
630
|
+
628, 0x881745ed
|
|
631
|
+
629, 0x17e1be4e
|
|
632
|
+
630, 0x132a0ec4
|
|
633
|
+
631, 0x5712df17
|
|
634
|
+
632, 0x2dfb3334
|
|
635
|
+
633, 0xf5a35519
|
|
636
|
+
634, 0xcafbdac6
|
|
637
|
+
635, 0x73b6189d
|
|
638
|
+
636, 0x10107cac
|
|
639
|
+
637, 0x18c1045e
|
|
640
|
+
638, 0xbc19bbad
|
|
641
|
+
639, 0x8b4f05ac
|
|
642
|
+
640, 0x5830d038
|
|
643
|
+
641, 0x468cd98a
|
|
644
|
+
642, 0x5b83a201
|
|
645
|
+
643, 0xf0ccdd9c
|
|
646
|
+
644, 0xcb20c4bd
|
|
647
|
+
645, 0x1ff186c9
|
|
648
|
+
646, 0xcdddb47f
|
|
649
|
+
647, 0x5c65ce6
|
|
650
|
+
648, 0xb748c580
|
|
651
|
+
649, 0x23b6f262
|
|
652
|
+
650, 0xe2ba8e5c
|
|
653
|
+
651, 0x9a164a03
|
|
654
|
+
652, 0x62d3322e
|
|
655
|
+
653, 0x918d8b43
|
|
656
|
+
654, 0x45c8b49d
|
|
657
|
+
655, 0xce172c6e
|
|
658
|
+
656, 0x23febc6
|
|
659
|
+
657, 0x84fdc5b7
|
|
660
|
+
658, 0xe7d1fd82
|
|
661
|
+
659, 0xf0ddf3a6
|
|
662
|
+
660, 0x87050436
|
|
663
|
+
661, 0x13d46375
|
|
664
|
+
662, 0x5b191c78
|
|
665
|
+
663, 0x2cbd99c0
|
|
666
|
+
664, 0x7686c7f
|
|
667
|
+
665, 0xcff56c84
|
|
668
|
+
666, 0x7f9b4486
|
|
669
|
+
667, 0xefc997fe
|
|
670
|
+
668, 0x984d4588
|
|
671
|
+
669, 0xfa44f36a
|
|
672
|
+
670, 0x7a5276c1
|
|
673
|
+
671, 0xcfde6176
|
|
674
|
+
672, 0xcacf7b1d
|
|
675
|
+
673, 0xcffae9a7
|
|
676
|
+
674, 0xe98848d5
|
|
677
|
+
675, 0xd4346001
|
|
678
|
+
676, 0xa2196cac
|
|
679
|
+
677, 0x217f07dc
|
|
680
|
+
678, 0x42d5bef
|
|
681
|
+
679, 0x6f2e8838
|
|
682
|
+
680, 0x4677a24
|
|
683
|
+
681, 0x4ad9cd54
|
|
684
|
+
682, 0x43df42af
|
|
685
|
+
683, 0x2dde417
|
|
686
|
+
684, 0xaef5acb1
|
|
687
|
+
685, 0xf377f4b3
|
|
688
|
+
686, 0x7d870d40
|
|
689
|
+
687, 0xe53df1c2
|
|
690
|
+
688, 0xaeb5be50
|
|
691
|
+
689, 0x7c92eac0
|
|
692
|
+
690, 0x4f00838c
|
|
693
|
+
691, 0x91e05e84
|
|
694
|
+
692, 0x23856c80
|
|
695
|
+
693, 0xc4266fa6
|
|
696
|
+
694, 0x912fddb
|
|
697
|
+
695, 0x34d42d22
|
|
698
|
+
696, 0x6c02ffa
|
|
699
|
+
697, 0xe47d093
|
|
700
|
+
698, 0x183c55b3
|
|
701
|
+
699, 0xc161d142
|
|
702
|
+
700, 0x3d43ff5f
|
|
703
|
+
701, 0xc944a36
|
|
704
|
+
702, 0x27bb9fc6
|
|
705
|
+
703, 0x75c91080
|
|
706
|
+
704, 0x2460d0dc
|
|
707
|
+
705, 0xd2174558
|
|
708
|
+
706, 0x68062dbf
|
|
709
|
+
707, 0x778e5c6e
|
|
710
|
+
708, 0xa4dc9a
|
|
711
|
+
709, 0x7a191e69
|
|
712
|
+
710, 0xc084b2ba
|
|
713
|
+
711, 0xbb391d2
|
|
714
|
+
712, 0x88849be
|
|
715
|
+
713, 0x69c02714
|
|
716
|
+
714, 0x69d4a389
|
|
717
|
+
715, 0x8f51854d
|
|
718
|
+
716, 0xaf10bb82
|
|
719
|
+
717, 0x4d5d1c77
|
|
720
|
+
718, 0x53b53109
|
|
721
|
+
719, 0xa0a92aa0
|
|
722
|
+
720, 0x83ecb757
|
|
723
|
+
721, 0x5325752a
|
|
724
|
+
722, 0x114e466e
|
|
725
|
+
723, 0x4b3f2780
|
|
726
|
+
724, 0xa7a6a39c
|
|
727
|
+
725, 0x5e723357
|
|
728
|
+
726, 0xa6b8be9b
|
|
729
|
+
727, 0x157c32ff
|
|
730
|
+
728, 0x8b898012
|
|
731
|
+
729, 0xd7ff2b1e
|
|
732
|
+
730, 0x69cd8444
|
|
733
|
+
731, 0x6ad8030c
|
|
734
|
+
732, 0xa08a49ec
|
|
735
|
+
733, 0xfbc055d3
|
|
736
|
+
734, 0xedf17e46
|
|
737
|
+
735, 0xc9526200
|
|
738
|
+
736, 0x3849b88a
|
|
739
|
+
737, 0x2746860b
|
|
740
|
+
738, 0xae13d0c1
|
|
741
|
+
739, 0x4f15154f
|
|
742
|
+
740, 0xd65c3975
|
|
743
|
+
741, 0x6a377278
|
|
744
|
+
742, 0x54d501f7
|
|
745
|
+
743, 0x81a054ea
|
|
746
|
+
744, 0x143592ba
|
|
747
|
+
745, 0x97714ad6
|
|
748
|
+
746, 0x4f9926d9
|
|
749
|
+
747, 0x4f7ac56d
|
|
750
|
+
748, 0xe87ca939
|
|
751
|
+
749, 0x58b76f6f
|
|
752
|
+
750, 0x60901ad8
|
|
753
|
+
751, 0x3e401bb6
|
|
754
|
+
752, 0xa058468e
|
|
755
|
+
753, 0xc0bb14f6
|
|
756
|
+
754, 0x2cb8f02a
|
|
757
|
+
755, 0x7c2cf756
|
|
758
|
+
756, 0x34c31de5
|
|
759
|
+
757, 0x9b243e83
|
|
760
|
+
758, 0xa5c85ab4
|
|
761
|
+
759, 0x2741e3b3
|
|
762
|
+
760, 0x1249000e
|
|
763
|
+
761, 0x3fc4e72b
|
|
764
|
+
762, 0xa3e038a2
|
|
765
|
+
763, 0x952dd92c
|
|
766
|
+
764, 0x2b821966
|
|
767
|
+
765, 0xfa81b365
|
|
768
|
+
766, 0x530919b9
|
|
769
|
+
767, 0x4486d66f
|
|
770
|
+
768, 0xccf4f3c1
|
|
771
|
+
769, 0xa8bddd1d
|
|
772
|
+
770, 0xcc295eb9
|
|
773
|
+
771, 0xfccbe42f
|
|
774
|
+
772, 0x38bacd8d
|
|
775
|
+
773, 0x2261854f
|
|
776
|
+
774, 0x56068c62
|
|
777
|
+
775, 0x9bdaeb8
|
|
778
|
+
776, 0x555fa5b6
|
|
779
|
+
777, 0x20fe615e
|
|
780
|
+
778, 0x49fb23d3
|
|
781
|
+
779, 0xd093bad6
|
|
782
|
+
780, 0x54919e86
|
|
783
|
+
781, 0x7373eb24
|
|
784
|
+
782, 0xfbaa7a98
|
|
785
|
+
783, 0x5f62fb39
|
|
786
|
+
784, 0xe03bc9ec
|
|
787
|
+
785, 0xa5074d41
|
|
788
|
+
786, 0xa1cefb1
|
|
789
|
+
787, 0x13912d74
|
|
790
|
+
788, 0xf6421b8
|
|
791
|
+
789, 0xfcb48812
|
|
792
|
+
790, 0x8f1db50b
|
|
793
|
+
791, 0xc1654b87
|
|
794
|
+
792, 0x948b43c2
|
|
795
|
+
793, 0xf503ef77
|
|
796
|
+
794, 0x117d891d
|
|
797
|
+
795, 0x5493ffa
|
|
798
|
+
796, 0x171313b1
|
|
799
|
+
797, 0xa4b62e1e
|
|
800
|
+
798, 0x77454ea6
|
|
801
|
+
799, 0xbea0aff0
|
|
802
|
+
800, 0x13c36389
|
|
803
|
+
801, 0xe3b60bac
|
|
804
|
+
802, 0xa176bed3
|
|
805
|
+
803, 0x2863d428
|
|
806
|
+
804, 0xe2314f46
|
|
807
|
+
805, 0xa85cd3d4
|
|
808
|
+
806, 0x7866e57
|
|
809
|
+
807, 0x8f03f5bc
|
|
810
|
+
808, 0x239ae
|
|
811
|
+
809, 0x46f279fb
|
|
812
|
+
810, 0xcca00559
|
|
813
|
+
811, 0xaa07a104
|
|
814
|
+
812, 0x89123d08
|
|
815
|
+
813, 0x2e6856ba
|
|
816
|
+
814, 0x43a9780d
|
|
817
|
+
815, 0x676cff25
|
|
818
|
+
816, 0x6744b87d
|
|
819
|
+
817, 0xee260d4f
|
|
820
|
+
818, 0xb98d8b77
|
|
821
|
+
819, 0x9b0ca455
|
|
822
|
+
820, 0x659f6fe
|
|
823
|
+
821, 0x28d20d1c
|
|
824
|
+
822, 0x601f2657
|
|
825
|
+
823, 0xdec3073e
|
|
826
|
+
824, 0x61263863
|
|
827
|
+
825, 0x1a13435a
|
|
828
|
+
826, 0x27497d1e
|
|
829
|
+
827, 0x17a8458e
|
|
830
|
+
828, 0xdddc407d
|
|
831
|
+
829, 0x4bb2e8ac
|
|
832
|
+
830, 0x16b2aedb
|
|
833
|
+
831, 0x77ccd696
|
|
834
|
+
832, 0x9d108fcd
|
|
835
|
+
833, 0x25ad233e
|
|
836
|
+
834, 0xaa9bc370
|
|
837
|
+
835, 0xa873ab50
|
|
838
|
+
836, 0xaf19c9d9
|
|
839
|
+
837, 0x696e1e6b
|
|
840
|
+
838, 0x1fdc4bf4
|
|
841
|
+
839, 0x4c2ebc81
|
|
842
|
+
840, 0xde4929ed
|
|
843
|
+
841, 0xf4d0c10c
|
|
844
|
+
842, 0xb6595b76
|
|
845
|
+
843, 0x75cbb1b3
|
|
846
|
+
844, 0xbcb6de49
|
|
847
|
+
845, 0xe23157fd
|
|
848
|
+
846, 0x5e596078
|
|
849
|
+
847, 0xa69b0d29
|
|
850
|
+
848, 0x2118a41
|
|
851
|
+
849, 0x7088c16
|
|
852
|
+
850, 0xc75e1e1
|
|
853
|
+
851, 0x6a4af2d6
|
|
854
|
+
852, 0xf19c6521
|
|
855
|
+
853, 0xaff7b3b1
|
|
856
|
+
854, 0x615295c7
|
|
857
|
+
855, 0xbda3a8d7
|
|
858
|
+
856, 0x5b5ca72e
|
|
859
|
+
857, 0xdad9d80f
|
|
860
|
+
858, 0xfa81c084
|
|
861
|
+
859, 0xf4703fa
|
|
862
|
+
860, 0x3ca54540
|
|
863
|
+
861, 0xa8961d51
|
|
864
|
+
862, 0x53d1ecc2
|
|
865
|
+
863, 0x808d83b6
|
|
866
|
+
864, 0x68e8c48e
|
|
867
|
+
865, 0x89be2039
|
|
868
|
+
866, 0x9088ea11
|
|
869
|
+
867, 0xb8665d12
|
|
870
|
+
868, 0x91272f9
|
|
871
|
+
869, 0x53dddff2
|
|
872
|
+
870, 0xb7a54ab
|
|
873
|
+
871, 0xd2b645ca
|
|
874
|
+
872, 0x99fb8590
|
|
875
|
+
873, 0x5315c8e
|
|
876
|
+
874, 0x2a913806
|
|
877
|
+
875, 0x7f15eb2b
|
|
878
|
+
876, 0xa7f1cc5d
|
|
879
|
+
877, 0xbb2ee836
|
|
880
|
+
878, 0xd9fafd60
|
|
881
|
+
879, 0x17448d6f
|
|
882
|
+
880, 0x999ec436
|
|
883
|
+
881, 0x482ec606
|
|
884
|
+
882, 0x9b403c0e
|
|
885
|
+
883, 0x569eb51b
|
|
886
|
+
884, 0xb275d1a6
|
|
887
|
+
885, 0xadd29c31
|
|
888
|
+
886, 0xb7ebdb15
|
|
889
|
+
887, 0xdfef3662
|
|
890
|
+
888, 0x51aba6db
|
|
891
|
+
889, 0x6d41946d
|
|
892
|
+
890, 0x77bf8896
|
|
893
|
+
891, 0xcafa6fab
|
|
894
|
+
892, 0x976ab40f
|
|
895
|
+
893, 0x49a6d86b
|
|
896
|
+
894, 0x56639e55
|
|
897
|
+
895, 0x9945b996
|
|
898
|
+
896, 0x81459b50
|
|
899
|
+
897, 0xbce97542
|
|
900
|
+
898, 0xe397c9c9
|
|
901
|
+
899, 0x247a5955
|
|
902
|
+
900, 0xb72b1573
|
|
903
|
+
901, 0x86306f86
|
|
904
|
+
902, 0x34f65dc5
|
|
905
|
+
903, 0x909360c0
|
|
906
|
+
904, 0xf3f696ef
|
|
907
|
+
905, 0xcb9faae5
|
|
908
|
+
906, 0x93daecd9
|
|
909
|
+
907, 0xde1af7af
|
|
910
|
+
908, 0x43a1f2d
|
|
911
|
+
909, 0x6d75cde5
|
|
912
|
+
910, 0x9e412b6
|
|
913
|
+
911, 0x5673fed
|
|
914
|
+
912, 0x16bb511a
|
|
915
|
+
913, 0x35ef4cca
|
|
916
|
+
914, 0x4e615aca
|
|
917
|
+
915, 0x5cdaf47a
|
|
918
|
+
916, 0x26676047
|
|
919
|
+
917, 0x8c199325
|
|
920
|
+
918, 0x2adf0cb9
|
|
921
|
+
919, 0x84f2e6fd
|
|
922
|
+
920, 0x5e627f64
|
|
923
|
+
921, 0xb7cee354
|
|
924
|
+
922, 0x542ab4a6
|
|
925
|
+
923, 0xe59cd83b
|
|
926
|
+
924, 0x89cc3f10
|
|
927
|
+
925, 0x92b0f5f
|
|
928
|
+
926, 0xc1328370
|
|
929
|
+
927, 0x8208d9f7
|
|
930
|
+
928, 0x68eb00cf
|
|
931
|
+
929, 0xfadd4ac4
|
|
932
|
+
930, 0x2517784f
|
|
933
|
+
931, 0x4042b99
|
|
934
|
+
932, 0x75ce0230
|
|
935
|
+
933, 0x97c5a1b4
|
|
936
|
+
934, 0x1a97f709
|
|
937
|
+
935, 0x4c62781e
|
|
938
|
+
936, 0xf530a83
|
|
939
|
+
937, 0x75776413
|
|
940
|
+
938, 0x321c7240
|
|
941
|
+
939, 0x6afe4e36
|
|
942
|
+
940, 0xad00a2b4
|
|
943
|
+
941, 0xbc05477d
|
|
944
|
+
942, 0xb0911e80
|
|
945
|
+
943, 0x9935b87d
|
|
946
|
+
944, 0xd535eec5
|
|
947
|
+
945, 0x149af45e
|
|
948
|
+
946, 0x786934b0
|
|
949
|
+
947, 0xbc13cdac
|
|
950
|
+
948, 0x208bfa2e
|
|
951
|
+
949, 0xcf4b39cc
|
|
952
|
+
950, 0x6ac6c172
|
|
953
|
+
951, 0xbfa9a37
|
|
954
|
+
952, 0x42d28db6
|
|
955
|
+
953, 0x2bf1ea63
|
|
956
|
+
954, 0xbed6e677
|
|
957
|
+
955, 0x50325d27
|
|
958
|
+
956, 0xa79d3b8b
|
|
959
|
+
957, 0x52448bb1
|
|
960
|
+
958, 0xefaad1bd
|
|
961
|
+
959, 0x833a2e54
|
|
962
|
+
960, 0xd9de549a
|
|
963
|
+
961, 0x9f59672f
|
|
964
|
+
962, 0x9d5f5f16
|
|
965
|
+
963, 0x1c914489
|
|
966
|
+
964, 0xc08fa058
|
|
967
|
+
965, 0xb188698b
|
|
968
|
+
966, 0xdc4672b5
|
|
969
|
+
967, 0x594f720e
|
|
970
|
+
968, 0x56ed428f
|
|
971
|
+
969, 0x9b0898af
|
|
972
|
+
970, 0x8a64d3d5
|
|
973
|
+
971, 0x773308d6
|
|
974
|
+
972, 0x84d62098
|
|
975
|
+
973, 0x46da7cf9
|
|
976
|
+
974, 0x1114eae7
|
|
977
|
+
975, 0xf9f2a092
|
|
978
|
+
976, 0x5363a28
|
|
979
|
+
977, 0xf2db7b3a
|
|
980
|
+
978, 0x102c71a9
|
|
981
|
+
979, 0xe8e76aaf
|
|
982
|
+
980, 0x77a97b3b
|
|
983
|
+
981, 0x77b090d
|
|
984
|
+
982, 0x1099620e
|
|
985
|
+
983, 0xa6daaae6
|
|
986
|
+
984, 0x86ff4713
|
|
987
|
+
985, 0xc0ef85b8
|
|
988
|
+
986, 0xf621d409
|
|
989
|
+
987, 0xfd1561e2
|
|
990
|
+
988, 0x4bcc687d
|
|
991
|
+
989, 0x596f760
|
|
992
|
+
990, 0x7c8819f9
|
|
993
|
+
991, 0x8cb865b8
|
|
994
|
+
992, 0xadea115a
|
|
995
|
+
993, 0x56609348
|
|
996
|
+
994, 0xb321ac14
|
|
997
|
+
995, 0x1bac7db2
|
|
998
|
+
996, 0x5fe6ee2
|
|
999
|
+
997, 0xe9bfe072
|
|
1000
|
+
998, 0x15549e74
|
|
1001
|
+
999, 0xad8c191b
|