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.

Files changed (897) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +102 -0
  3. numpy/__init__.cython-30.pxd +1241 -0
  4. numpy/__init__.pxd +1154 -0
  5. numpy/__init__.py +945 -0
  6. numpy/__init__.pyi +6147 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +207 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +186 -0
  12. numpy/_core/__init__.pyi +2 -0
  13. numpy/_core/_add_newdocs.py +6967 -0
  14. numpy/_core/_add_newdocs.pyi +3 -0
  15. numpy/_core/_add_newdocs_scalars.py +390 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +134 -0
  18. numpy/_core/_asarray.pyi +41 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +58 -0
  21. numpy/_core/_dtype_ctypes.py +120 -0
  22. numpy/_core/_dtype_ctypes.pyi +83 -0
  23. numpy/_core/_exceptions.py +162 -0
  24. numpy/_core/_exceptions.pyi +55 -0
  25. numpy/_core/_internal.py +958 -0
  26. numpy/_core/_internal.pyi +72 -0
  27. numpy/_core/_machar.py +355 -0
  28. numpy/_core/_machar.pyi +55 -0
  29. numpy/_core/_methods.py +255 -0
  30. numpy/_core/_methods.pyi +22 -0
  31. numpy/_core/_multiarray_tests.cpython-313-darwin.so +0 -0
  32. numpy/_core/_multiarray_umath.cpython-313-darwin.so +0 -0
  33. numpy/_core/_operand_flag_tests.cpython-313-darwin.so +0 -0
  34. numpy/_core/_rational_tests.cpython-313-darwin.so +0 -0
  35. numpy/_core/_simd.cpython-313-darwin.so +0 -0
  36. numpy/_core/_simd.pyi +25 -0
  37. numpy/_core/_string_helpers.py +100 -0
  38. numpy/_core/_string_helpers.pyi +12 -0
  39. numpy/_core/_struct_ufunc_tests.cpython-313-darwin.so +0 -0
  40. numpy/_core/_type_aliases.py +119 -0
  41. numpy/_core/_type_aliases.pyi +97 -0
  42. numpy/_core/_ufunc_config.py +491 -0
  43. numpy/_core/_ufunc_config.pyi +78 -0
  44. numpy/_core/_umath_tests.cpython-313-darwin.so +0 -0
  45. numpy/_core/arrayprint.py +1775 -0
  46. numpy/_core/arrayprint.pyi +238 -0
  47. numpy/_core/cversions.py +13 -0
  48. numpy/_core/defchararray.py +1427 -0
  49. numpy/_core/defchararray.pyi +1135 -0
  50. numpy/_core/einsumfunc.py +1498 -0
  51. numpy/_core/einsumfunc.pyi +184 -0
  52. numpy/_core/fromnumeric.py +4269 -0
  53. numpy/_core/fromnumeric.pyi +1750 -0
  54. numpy/_core/function_base.py +545 -0
  55. numpy/_core/function_base.pyi +278 -0
  56. numpy/_core/getlimits.py +748 -0
  57. numpy/_core/getlimits.pyi +3 -0
  58. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  59. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  60. numpy/_core/include/numpy/__ufunc_api.c +54 -0
  61. numpy/_core/include/numpy/__ufunc_api.h +341 -0
  62. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  63. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  64. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  65. numpy/_core/include/numpy/arrayobject.h +7 -0
  66. numpy/_core/include/numpy/arrayscalars.h +196 -0
  67. numpy/_core/include/numpy/dtype_api.h +480 -0
  68. numpy/_core/include/numpy/halffloat.h +70 -0
  69. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  70. numpy/_core/include/numpy/ndarraytypes.h +1950 -0
  71. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  72. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  73. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  74. numpy/_core/include/numpy/npy_common.h +977 -0
  75. numpy/_core/include/numpy/npy_cpu.h +124 -0
  76. numpy/_core/include/numpy/npy_endian.h +78 -0
  77. numpy/_core/include/numpy/npy_math.h +602 -0
  78. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  79. numpy/_core/include/numpy/npy_os.h +42 -0
  80. numpy/_core/include/numpy/numpyconfig.h +182 -0
  81. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  82. numpy/_core/include/numpy/random/bitgen.h +20 -0
  83. numpy/_core/include/numpy/random/distributions.h +209 -0
  84. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  85. numpy/_core/include/numpy/ufuncobject.h +343 -0
  86. numpy/_core/include/numpy/utils.h +37 -0
  87. numpy/_core/lib/libnpymath.a +0 -0
  88. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  89. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  90. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  91. numpy/_core/memmap.py +363 -0
  92. numpy/_core/memmap.pyi +3 -0
  93. numpy/_core/multiarray.py +1762 -0
  94. numpy/_core/multiarray.pyi +1285 -0
  95. numpy/_core/numeric.py +2760 -0
  96. numpy/_core/numeric.pyi +882 -0
  97. numpy/_core/numerictypes.py +633 -0
  98. numpy/_core/numerictypes.pyi +197 -0
  99. numpy/_core/overrides.py +183 -0
  100. numpy/_core/overrides.pyi +48 -0
  101. numpy/_core/printoptions.py +32 -0
  102. numpy/_core/printoptions.pyi +28 -0
  103. numpy/_core/records.py +1089 -0
  104. numpy/_core/records.pyi +333 -0
  105. numpy/_core/shape_base.py +998 -0
  106. numpy/_core/shape_base.pyi +175 -0
  107. numpy/_core/strings.py +1829 -0
  108. numpy/_core/strings.pyi +511 -0
  109. numpy/_core/tests/_locales.py +72 -0
  110. numpy/_core/tests/_natype.py +205 -0
  111. numpy/_core/tests/data/astype_copy.pkl +0 -0
  112. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  113. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  114. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  115. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  116. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  117. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  118. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  119. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  120. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  121. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  122. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  123. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  124. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  125. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  127. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  128. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  129. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  130. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  131. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  132. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  134. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  135. numpy/_core/tests/examples/cython/checks.pyx +373 -0
  136. numpy/_core/tests/examples/cython/meson.build +43 -0
  137. numpy/_core/tests/examples/cython/setup.py +39 -0
  138. numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
  139. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  140. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  141. numpy/_core/tests/examples/limited_api/meson.build +59 -0
  142. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  143. numpy/_core/tests/test__exceptions.py +90 -0
  144. numpy/_core/tests/test_abc.py +54 -0
  145. numpy/_core/tests/test_api.py +654 -0
  146. numpy/_core/tests/test_argparse.py +92 -0
  147. numpy/_core/tests/test_array_api_info.py +113 -0
  148. numpy/_core/tests/test_array_coercion.py +911 -0
  149. numpy/_core/tests/test_array_interface.py +222 -0
  150. numpy/_core/tests/test_arraymethod.py +84 -0
  151. numpy/_core/tests/test_arrayobject.py +75 -0
  152. numpy/_core/tests/test_arrayprint.py +1328 -0
  153. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  154. numpy/_core/tests/test_casting_unittests.py +817 -0
  155. numpy/_core/tests/test_conversion_utils.py +206 -0
  156. numpy/_core/tests/test_cpu_dispatcher.py +49 -0
  157. numpy/_core/tests/test_cpu_features.py +432 -0
  158. numpy/_core/tests/test_custom_dtypes.py +315 -0
  159. numpy/_core/tests/test_cython.py +351 -0
  160. numpy/_core/tests/test_datetime.py +2734 -0
  161. numpy/_core/tests/test_defchararray.py +825 -0
  162. numpy/_core/tests/test_deprecations.py +454 -0
  163. numpy/_core/tests/test_dlpack.py +190 -0
  164. numpy/_core/tests/test_dtype.py +1995 -0
  165. numpy/_core/tests/test_einsum.py +1317 -0
  166. numpy/_core/tests/test_errstate.py +131 -0
  167. numpy/_core/tests/test_extint128.py +217 -0
  168. numpy/_core/tests/test_function_base.py +503 -0
  169. numpy/_core/tests/test_getlimits.py +205 -0
  170. numpy/_core/tests/test_half.py +568 -0
  171. numpy/_core/tests/test_hashtable.py +35 -0
  172. numpy/_core/tests/test_indexerrors.py +125 -0
  173. numpy/_core/tests/test_indexing.py +1455 -0
  174. numpy/_core/tests/test_item_selection.py +167 -0
  175. numpy/_core/tests/test_limited_api.py +102 -0
  176. numpy/_core/tests/test_longdouble.py +369 -0
  177. numpy/_core/tests/test_machar.py +30 -0
  178. numpy/_core/tests/test_mem_overlap.py +930 -0
  179. numpy/_core/tests/test_mem_policy.py +452 -0
  180. numpy/_core/tests/test_memmap.py +246 -0
  181. numpy/_core/tests/test_multiarray.py +10577 -0
  182. numpy/_core/tests/test_multithreading.py +292 -0
  183. numpy/_core/tests/test_nditer.py +3498 -0
  184. numpy/_core/tests/test_nep50_promotions.py +287 -0
  185. numpy/_core/tests/test_numeric.py +4247 -0
  186. numpy/_core/tests/test_numerictypes.py +651 -0
  187. numpy/_core/tests/test_overrides.py +791 -0
  188. numpy/_core/tests/test_print.py +200 -0
  189. numpy/_core/tests/test_protocols.py +46 -0
  190. numpy/_core/tests/test_records.py +544 -0
  191. numpy/_core/tests/test_regression.py +2670 -0
  192. numpy/_core/tests/test_scalar_ctors.py +207 -0
  193. numpy/_core/tests/test_scalar_methods.py +246 -0
  194. numpy/_core/tests/test_scalarbuffer.py +153 -0
  195. numpy/_core/tests/test_scalarinherit.py +105 -0
  196. numpy/_core/tests/test_scalarmath.py +1176 -0
  197. numpy/_core/tests/test_scalarprint.py +403 -0
  198. numpy/_core/tests/test_shape_base.py +891 -0
  199. numpy/_core/tests/test_simd.py +1341 -0
  200. numpy/_core/tests/test_simd_module.py +103 -0
  201. numpy/_core/tests/test_stringdtype.py +1814 -0
  202. numpy/_core/tests/test_strings.py +1499 -0
  203. numpy/_core/tests/test_ufunc.py +3313 -0
  204. numpy/_core/tests/test_umath.py +4928 -0
  205. numpy/_core/tests/test_umath_accuracy.py +124 -0
  206. numpy/_core/tests/test_umath_complex.py +626 -0
  207. numpy/_core/tests/test_unicode.py +368 -0
  208. numpy/_core/umath.py +60 -0
  209. numpy/_core/umath.pyi +197 -0
  210. numpy/_distributor_init.py +15 -0
  211. numpy/_distributor_init.pyi +1 -0
  212. numpy/_expired_attrs_2_0.py +79 -0
  213. numpy/_expired_attrs_2_0.pyi +62 -0
  214. numpy/_globals.py +96 -0
  215. numpy/_globals.pyi +17 -0
  216. numpy/_pyinstaller/__init__.py +0 -0
  217. numpy/_pyinstaller/__init__.pyi +0 -0
  218. numpy/_pyinstaller/hook-numpy.py +36 -0
  219. numpy/_pyinstaller/hook-numpy.pyi +13 -0
  220. numpy/_pyinstaller/tests/__init__.py +16 -0
  221. numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
  222. numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
  223. numpy/_pytesttester.py +201 -0
  224. numpy/_pytesttester.pyi +18 -0
  225. numpy/_typing/__init__.py +148 -0
  226. numpy/_typing/_add_docstring.py +153 -0
  227. numpy/_typing/_array_like.py +106 -0
  228. numpy/_typing/_char_codes.py +213 -0
  229. numpy/_typing/_dtype_like.py +114 -0
  230. numpy/_typing/_extended_precision.py +15 -0
  231. numpy/_typing/_nbit.py +19 -0
  232. numpy/_typing/_nbit_base.py +94 -0
  233. numpy/_typing/_nbit_base.pyi +40 -0
  234. numpy/_typing/_nested_sequence.py +79 -0
  235. numpy/_typing/_scalars.py +20 -0
  236. numpy/_typing/_shape.py +8 -0
  237. numpy/_typing/_ufunc.py +7 -0
  238. numpy/_typing/_ufunc.pyi +941 -0
  239. numpy/_utils/__init__.py +95 -0
  240. numpy/_utils/__init__.pyi +30 -0
  241. numpy/_utils/_convertions.py +18 -0
  242. numpy/_utils/_convertions.pyi +4 -0
  243. numpy/_utils/_inspect.py +192 -0
  244. numpy/_utils/_inspect.pyi +71 -0
  245. numpy/_utils/_pep440.py +486 -0
  246. numpy/_utils/_pep440.pyi +121 -0
  247. numpy/char/__init__.py +2 -0
  248. numpy/char/__init__.pyi +111 -0
  249. numpy/conftest.py +258 -0
  250. numpy/core/__init__.py +33 -0
  251. numpy/core/__init__.pyi +0 -0
  252. numpy/core/_dtype.py +10 -0
  253. numpy/core/_dtype.pyi +0 -0
  254. numpy/core/_dtype_ctypes.py +10 -0
  255. numpy/core/_dtype_ctypes.pyi +0 -0
  256. numpy/core/_internal.py +27 -0
  257. numpy/core/_multiarray_umath.py +57 -0
  258. numpy/core/_utils.py +21 -0
  259. numpy/core/arrayprint.py +10 -0
  260. numpy/core/defchararray.py +10 -0
  261. numpy/core/einsumfunc.py +10 -0
  262. numpy/core/fromnumeric.py +10 -0
  263. numpy/core/function_base.py +10 -0
  264. numpy/core/getlimits.py +10 -0
  265. numpy/core/multiarray.py +25 -0
  266. numpy/core/numeric.py +12 -0
  267. numpy/core/numerictypes.py +10 -0
  268. numpy/core/overrides.py +10 -0
  269. numpy/core/overrides.pyi +7 -0
  270. numpy/core/records.py +10 -0
  271. numpy/core/shape_base.py +10 -0
  272. numpy/core/umath.py +10 -0
  273. numpy/ctypeslib/__init__.py +13 -0
  274. numpy/ctypeslib/__init__.pyi +33 -0
  275. numpy/ctypeslib/_ctypeslib.py +603 -0
  276. numpy/ctypeslib/_ctypeslib.pyi +245 -0
  277. numpy/doc/ufuncs.py +138 -0
  278. numpy/dtypes.py +41 -0
  279. numpy/dtypes.pyi +631 -0
  280. numpy/exceptions.py +247 -0
  281. numpy/exceptions.pyi +27 -0
  282. numpy/f2py/__init__.py +86 -0
  283. numpy/f2py/__init__.pyi +6 -0
  284. numpy/f2py/__main__.py +5 -0
  285. numpy/f2py/__version__.py +1 -0
  286. numpy/f2py/__version__.pyi +1 -0
  287. numpy/f2py/_backends/__init__.py +9 -0
  288. numpy/f2py/_backends/__init__.pyi +5 -0
  289. numpy/f2py/_backends/_backend.py +44 -0
  290. numpy/f2py/_backends/_backend.pyi +46 -0
  291. numpy/f2py/_backends/_distutils.py +76 -0
  292. numpy/f2py/_backends/_distutils.pyi +13 -0
  293. numpy/f2py/_backends/_meson.py +231 -0
  294. numpy/f2py/_backends/_meson.pyi +63 -0
  295. numpy/f2py/_backends/meson.build.template +55 -0
  296. numpy/f2py/_isocbind.py +62 -0
  297. numpy/f2py/_isocbind.pyi +13 -0
  298. numpy/f2py/_src_pyf.py +247 -0
  299. numpy/f2py/_src_pyf.pyi +29 -0
  300. numpy/f2py/auxfuncs.py +1004 -0
  301. numpy/f2py/auxfuncs.pyi +264 -0
  302. numpy/f2py/capi_maps.py +811 -0
  303. numpy/f2py/capi_maps.pyi +33 -0
  304. numpy/f2py/cb_rules.py +665 -0
  305. numpy/f2py/cb_rules.pyi +17 -0
  306. numpy/f2py/cfuncs.py +1563 -0
  307. numpy/f2py/cfuncs.pyi +31 -0
  308. numpy/f2py/common_rules.py +143 -0
  309. numpy/f2py/common_rules.pyi +9 -0
  310. numpy/f2py/crackfortran.py +3725 -0
  311. numpy/f2py/crackfortran.pyi +258 -0
  312. numpy/f2py/diagnose.py +149 -0
  313. numpy/f2py/diagnose.pyi +1 -0
  314. numpy/f2py/f2py2e.py +786 -0
  315. numpy/f2py/f2py2e.pyi +76 -0
  316. numpy/f2py/f90mod_rules.py +269 -0
  317. numpy/f2py/f90mod_rules.pyi +16 -0
  318. numpy/f2py/func2subr.py +329 -0
  319. numpy/f2py/func2subr.pyi +7 -0
  320. numpy/f2py/rules.py +1629 -0
  321. numpy/f2py/rules.pyi +43 -0
  322. numpy/f2py/setup.cfg +3 -0
  323. numpy/f2py/src/fortranobject.c +1436 -0
  324. numpy/f2py/src/fortranobject.h +173 -0
  325. numpy/f2py/symbolic.py +1516 -0
  326. numpy/f2py/symbolic.pyi +221 -0
  327. numpy/f2py/tests/__init__.py +16 -0
  328. numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
  329. numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
  330. numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
  331. numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
  332. numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
  333. numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
  334. numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
  335. numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
  336. numpy/f2py/tests/src/block_docstring/foo.f +6 -0
  337. numpy/f2py/tests/src/callback/foo.f +62 -0
  338. numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
  339. numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
  340. numpy/f2py/tests/src/callback/gh25211.f +10 -0
  341. numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
  342. numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
  343. numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
  344. numpy/f2py/tests/src/cli/hi77.f +3 -0
  345. numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
  346. numpy/f2py/tests/src/common/block.f +11 -0
  347. numpy/f2py/tests/src/common/gh19161.f90 +10 -0
  348. numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
  349. numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
  350. numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
  351. numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
  352. numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
  353. numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
  354. numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
  355. numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
  356. numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
  357. numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
  358. numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
  359. numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
  360. numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
  361. numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
  362. numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
  363. numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
  364. numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
  365. numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
  366. numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
  367. numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
  368. numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
  369. numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
  370. numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
  371. numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
  372. numpy/f2py/tests/src/kind/foo.f90 +20 -0
  373. numpy/f2py/tests/src/mixed/foo.f +5 -0
  374. numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
  375. numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
  376. numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
  377. numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
  378. numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
  379. numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
  380. numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
  381. numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
  382. numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
  383. numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
  384. numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
  385. numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
  386. numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
  387. numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
  388. numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
  389. numpy/f2py/tests/src/quoted_character/foo.f +14 -0
  390. numpy/f2py/tests/src/regression/AB.inc +1 -0
  391. numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
  392. numpy/f2py/tests/src/regression/datonly.f90 +17 -0
  393. numpy/f2py/tests/src/regression/f77comments.f +26 -0
  394. numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
  395. numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
  396. numpy/f2py/tests/src/regression/incfile.f90 +5 -0
  397. numpy/f2py/tests/src/regression/inout.f90 +9 -0
  398. numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
  399. numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
  400. numpy/f2py/tests/src/return_character/foo77.f +45 -0
  401. numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
  402. numpy/f2py/tests/src/return_complex/foo77.f +45 -0
  403. numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
  404. numpy/f2py/tests/src/return_integer/foo77.f +56 -0
  405. numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
  406. numpy/f2py/tests/src/return_logical/foo77.f +56 -0
  407. numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
  408. numpy/f2py/tests/src/return_real/foo77.f +45 -0
  409. numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
  410. numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
  411. numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
  412. numpy/f2py/tests/src/routines/subrout.f +4 -0
  413. numpy/f2py/tests/src/routines/subrout.pyf +10 -0
  414. numpy/f2py/tests/src/size/foo.f90 +44 -0
  415. numpy/f2py/tests/src/string/char.f90 +29 -0
  416. numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
  417. numpy/f2py/tests/src/string/gh24008.f +8 -0
  418. numpy/f2py/tests/src/string/gh24662.f90 +7 -0
  419. numpy/f2py/tests/src/string/gh25286.f90 +14 -0
  420. numpy/f2py/tests/src/string/gh25286.pyf +12 -0
  421. numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
  422. numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
  423. numpy/f2py/tests/src/string/string.f +12 -0
  424. numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
  425. numpy/f2py/tests/test_abstract_interface.py +26 -0
  426. numpy/f2py/tests/test_array_from_pyobj.py +678 -0
  427. numpy/f2py/tests/test_assumed_shape.py +50 -0
  428. numpy/f2py/tests/test_block_docstring.py +20 -0
  429. numpy/f2py/tests/test_callback.py +263 -0
  430. numpy/f2py/tests/test_character.py +641 -0
  431. numpy/f2py/tests/test_common.py +23 -0
  432. numpy/f2py/tests/test_crackfortran.py +421 -0
  433. numpy/f2py/tests/test_data.py +71 -0
  434. numpy/f2py/tests/test_docs.py +64 -0
  435. numpy/f2py/tests/test_f2cmap.py +17 -0
  436. numpy/f2py/tests/test_f2py2e.py +964 -0
  437. numpy/f2py/tests/test_isoc.py +56 -0
  438. numpy/f2py/tests/test_kind.py +53 -0
  439. numpy/f2py/tests/test_mixed.py +35 -0
  440. numpy/f2py/tests/test_modules.py +83 -0
  441. numpy/f2py/tests/test_parameter.py +129 -0
  442. numpy/f2py/tests/test_pyf_src.py +43 -0
  443. numpy/f2py/tests/test_quoted_character.py +18 -0
  444. numpy/f2py/tests/test_regression.py +187 -0
  445. numpy/f2py/tests/test_return_character.py +48 -0
  446. numpy/f2py/tests/test_return_complex.py +67 -0
  447. numpy/f2py/tests/test_return_integer.py +55 -0
  448. numpy/f2py/tests/test_return_logical.py +65 -0
  449. numpy/f2py/tests/test_return_real.py +109 -0
  450. numpy/f2py/tests/test_routines.py +29 -0
  451. numpy/f2py/tests/test_semicolon_split.py +75 -0
  452. numpy/f2py/tests/test_size.py +45 -0
  453. numpy/f2py/tests/test_string.py +100 -0
  454. numpy/f2py/tests/test_symbolic.py +495 -0
  455. numpy/f2py/tests/test_value_attrspec.py +15 -0
  456. numpy/f2py/tests/util.py +442 -0
  457. numpy/f2py/use_rules.py +99 -0
  458. numpy/f2py/use_rules.pyi +9 -0
  459. numpy/fft/__init__.py +215 -0
  460. numpy/fft/__init__.pyi +43 -0
  461. numpy/fft/_helper.py +235 -0
  462. numpy/fft/_helper.pyi +45 -0
  463. numpy/fft/_pocketfft.py +1693 -0
  464. numpy/fft/_pocketfft.pyi +138 -0
  465. numpy/fft/_pocketfft_umath.cpython-313-darwin.so +0 -0
  466. numpy/fft/helper.py +17 -0
  467. numpy/fft/helper.pyi +22 -0
  468. numpy/fft/tests/__init__.py +0 -0
  469. numpy/fft/tests/test_helper.py +167 -0
  470. numpy/fft/tests/test_pocketfft.py +589 -0
  471. numpy/lib/__init__.py +97 -0
  472. numpy/lib/__init__.pyi +44 -0
  473. numpy/lib/_array_utils_impl.py +62 -0
  474. numpy/lib/_array_utils_impl.pyi +26 -0
  475. numpy/lib/_arraypad_impl.py +890 -0
  476. numpy/lib/_arraypad_impl.pyi +89 -0
  477. numpy/lib/_arraysetops_impl.py +1260 -0
  478. numpy/lib/_arraysetops_impl.pyi +468 -0
  479. numpy/lib/_arrayterator_impl.py +224 -0
  480. numpy/lib/_arrayterator_impl.pyi +46 -0
  481. numpy/lib/_datasource.py +700 -0
  482. numpy/lib/_datasource.pyi +31 -0
  483. numpy/lib/_format_impl.py +1036 -0
  484. numpy/lib/_format_impl.pyi +26 -0
  485. numpy/lib/_function_base_impl.py +5844 -0
  486. numpy/lib/_function_base_impl.pyi +1164 -0
  487. numpy/lib/_histograms_impl.py +1085 -0
  488. numpy/lib/_histograms_impl.pyi +50 -0
  489. numpy/lib/_index_tricks_impl.py +1067 -0
  490. numpy/lib/_index_tricks_impl.pyi +208 -0
  491. numpy/lib/_iotools.py +900 -0
  492. numpy/lib/_iotools.pyi +114 -0
  493. numpy/lib/_nanfunctions_impl.py +2024 -0
  494. numpy/lib/_nanfunctions_impl.pyi +52 -0
  495. numpy/lib/_npyio_impl.py +2596 -0
  496. numpy/lib/_npyio_impl.pyi +301 -0
  497. numpy/lib/_polynomial_impl.py +1465 -0
  498. numpy/lib/_polynomial_impl.pyi +318 -0
  499. numpy/lib/_scimath_impl.py +642 -0
  500. numpy/lib/_scimath_impl.pyi +93 -0
  501. numpy/lib/_shape_base_impl.py +1301 -0
  502. numpy/lib/_shape_base_impl.pyi +235 -0
  503. numpy/lib/_stride_tricks_impl.py +549 -0
  504. numpy/lib/_stride_tricks_impl.pyi +74 -0
  505. numpy/lib/_twodim_base_impl.py +1201 -0
  506. numpy/lib/_twodim_base_impl.pyi +438 -0
  507. numpy/lib/_type_check_impl.py +699 -0
  508. numpy/lib/_type_check_impl.pyi +350 -0
  509. numpy/lib/_ufunclike_impl.py +207 -0
  510. numpy/lib/_ufunclike_impl.pyi +67 -0
  511. numpy/lib/_user_array_impl.py +299 -0
  512. numpy/lib/_user_array_impl.pyi +225 -0
  513. numpy/lib/_utils_impl.py +784 -0
  514. numpy/lib/_utils_impl.pyi +10 -0
  515. numpy/lib/_version.py +154 -0
  516. numpy/lib/_version.pyi +17 -0
  517. numpy/lib/array_utils.py +7 -0
  518. numpy/lib/array_utils.pyi +12 -0
  519. numpy/lib/format.py +24 -0
  520. numpy/lib/format.pyi +66 -0
  521. numpy/lib/introspect.py +95 -0
  522. numpy/lib/introspect.pyi +3 -0
  523. numpy/lib/mixins.py +180 -0
  524. numpy/lib/mixins.pyi +77 -0
  525. numpy/lib/npyio.py +1 -0
  526. numpy/lib/npyio.pyi +9 -0
  527. numpy/lib/recfunctions.py +1681 -0
  528. numpy/lib/recfunctions.pyi +435 -0
  529. numpy/lib/scimath.py +13 -0
  530. numpy/lib/scimath.pyi +30 -0
  531. numpy/lib/stride_tricks.py +1 -0
  532. numpy/lib/stride_tricks.pyi +6 -0
  533. numpy/lib/tests/__init__.py +0 -0
  534. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  535. numpy/lib/tests/data/py2-objarr.npy +0 -0
  536. numpy/lib/tests/data/py2-objarr.npz +0 -0
  537. numpy/lib/tests/data/py3-objarr.npy +0 -0
  538. numpy/lib/tests/data/py3-objarr.npz +0 -0
  539. numpy/lib/tests/data/python3.npy +0 -0
  540. numpy/lib/tests/data/win64python2.npy +0 -0
  541. numpy/lib/tests/test__datasource.py +352 -0
  542. numpy/lib/tests/test__iotools.py +360 -0
  543. numpy/lib/tests/test__version.py +64 -0
  544. numpy/lib/tests/test_array_utils.py +32 -0
  545. numpy/lib/tests/test_arraypad.py +1415 -0
  546. numpy/lib/tests/test_arraysetops.py +1074 -0
  547. numpy/lib/tests/test_arrayterator.py +46 -0
  548. numpy/lib/tests/test_format.py +1054 -0
  549. numpy/lib/tests/test_function_base.py +4573 -0
  550. numpy/lib/tests/test_histograms.py +855 -0
  551. numpy/lib/tests/test_index_tricks.py +573 -0
  552. numpy/lib/tests/test_io.py +2848 -0
  553. numpy/lib/tests/test_loadtxt.py +1101 -0
  554. numpy/lib/tests/test_mixins.py +215 -0
  555. numpy/lib/tests/test_nanfunctions.py +1438 -0
  556. numpy/lib/tests/test_packbits.py +376 -0
  557. numpy/lib/tests/test_polynomial.py +320 -0
  558. numpy/lib/tests/test_recfunctions.py +1052 -0
  559. numpy/lib/tests/test_regression.py +231 -0
  560. numpy/lib/tests/test_shape_base.py +813 -0
  561. numpy/lib/tests/test_stride_tricks.py +656 -0
  562. numpy/lib/tests/test_twodim_base.py +559 -0
  563. numpy/lib/tests/test_type_check.py +473 -0
  564. numpy/lib/tests/test_ufunclike.py +97 -0
  565. numpy/lib/tests/test_utils.py +80 -0
  566. numpy/lib/user_array.py +1 -0
  567. numpy/lib/user_array.pyi +1 -0
  568. numpy/linalg/__init__.py +98 -0
  569. numpy/linalg/__init__.pyi +73 -0
  570. numpy/linalg/_linalg.py +3682 -0
  571. numpy/linalg/_linalg.pyi +475 -0
  572. numpy/linalg/_umath_linalg.cpython-313-darwin.so +0 -0
  573. numpy/linalg/_umath_linalg.pyi +61 -0
  574. numpy/linalg/lapack_lite.cpython-313-darwin.so +0 -0
  575. numpy/linalg/lapack_lite.pyi +141 -0
  576. numpy/linalg/linalg.py +17 -0
  577. numpy/linalg/linalg.pyi +69 -0
  578. numpy/linalg/tests/__init__.py +0 -0
  579. numpy/linalg/tests/test_deprecations.py +20 -0
  580. numpy/linalg/tests/test_linalg.py +2443 -0
  581. numpy/linalg/tests/test_regression.py +181 -0
  582. numpy/ma/API_CHANGES.txt +135 -0
  583. numpy/ma/LICENSE +24 -0
  584. numpy/ma/README.rst +236 -0
  585. numpy/ma/__init__.py +53 -0
  586. numpy/ma/__init__.pyi +458 -0
  587. numpy/ma/core.py +8933 -0
  588. numpy/ma/core.pyi +1462 -0
  589. numpy/ma/extras.py +2344 -0
  590. numpy/ma/extras.pyi +138 -0
  591. numpy/ma/mrecords.py +773 -0
  592. numpy/ma/mrecords.pyi +96 -0
  593. numpy/ma/tests/__init__.py +0 -0
  594. numpy/ma/tests/test_arrayobject.py +40 -0
  595. numpy/ma/tests/test_core.py +5886 -0
  596. numpy/ma/tests/test_deprecations.py +87 -0
  597. numpy/ma/tests/test_extras.py +1998 -0
  598. numpy/ma/tests/test_mrecords.py +497 -0
  599. numpy/ma/tests/test_old_ma.py +942 -0
  600. numpy/ma/tests/test_regression.py +100 -0
  601. numpy/ma/tests/test_subclassing.py +469 -0
  602. numpy/ma/testutils.py +294 -0
  603. numpy/matlib.py +380 -0
  604. numpy/matlib.pyi +582 -0
  605. numpy/matrixlib/__init__.py +12 -0
  606. numpy/matrixlib/__init__.pyi +5 -0
  607. numpy/matrixlib/defmatrix.py +1119 -0
  608. numpy/matrixlib/defmatrix.pyi +17 -0
  609. numpy/matrixlib/tests/__init__.py +0 -0
  610. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  611. numpy/matrixlib/tests/test_interaction.py +360 -0
  612. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  613. numpy/matrixlib/tests/test_matrix_linalg.py +105 -0
  614. numpy/matrixlib/tests/test_multiarray.py +17 -0
  615. numpy/matrixlib/tests/test_numeric.py +18 -0
  616. numpy/matrixlib/tests/test_regression.py +31 -0
  617. numpy/polynomial/__init__.py +187 -0
  618. numpy/polynomial/__init__.pyi +25 -0
  619. numpy/polynomial/_polybase.py +1191 -0
  620. numpy/polynomial/_polybase.pyi +285 -0
  621. numpy/polynomial/_polytypes.pyi +892 -0
  622. numpy/polynomial/chebyshev.py +2003 -0
  623. numpy/polynomial/chebyshev.pyi +181 -0
  624. numpy/polynomial/hermite.py +1740 -0
  625. numpy/polynomial/hermite.pyi +107 -0
  626. numpy/polynomial/hermite_e.py +1642 -0
  627. numpy/polynomial/hermite_e.pyi +107 -0
  628. numpy/polynomial/laguerre.py +1675 -0
  629. numpy/polynomial/laguerre.pyi +100 -0
  630. numpy/polynomial/legendre.py +1605 -0
  631. numpy/polynomial/legendre.pyi +100 -0
  632. numpy/polynomial/polynomial.py +1616 -0
  633. numpy/polynomial/polynomial.pyi +89 -0
  634. numpy/polynomial/polyutils.py +759 -0
  635. numpy/polynomial/polyutils.pyi +423 -0
  636. numpy/polynomial/tests/__init__.py +0 -0
  637. numpy/polynomial/tests/test_chebyshev.py +623 -0
  638. numpy/polynomial/tests/test_classes.py +618 -0
  639. numpy/polynomial/tests/test_hermite.py +558 -0
  640. numpy/polynomial/tests/test_hermite_e.py +559 -0
  641. numpy/polynomial/tests/test_laguerre.py +540 -0
  642. numpy/polynomial/tests/test_legendre.py +571 -0
  643. numpy/polynomial/tests/test_polynomial.py +669 -0
  644. numpy/polynomial/tests/test_polyutils.py +128 -0
  645. numpy/polynomial/tests/test_printing.py +555 -0
  646. numpy/polynomial/tests/test_symbol.py +217 -0
  647. numpy/py.typed +0 -0
  648. numpy/random/LICENSE.md +71 -0
  649. numpy/random/__init__.pxd +14 -0
  650. numpy/random/__init__.py +213 -0
  651. numpy/random/__init__.pyi +124 -0
  652. numpy/random/_bounded_integers.cpython-313-darwin.so +0 -0
  653. numpy/random/_bounded_integers.pxd +29 -0
  654. numpy/random/_bounded_integers.pyi +1 -0
  655. numpy/random/_common.cpython-313-darwin.so +0 -0
  656. numpy/random/_common.pxd +107 -0
  657. numpy/random/_common.pyi +16 -0
  658. numpy/random/_examples/cffi/extending.py +44 -0
  659. numpy/random/_examples/cffi/parse.py +53 -0
  660. numpy/random/_examples/cython/extending.pyx +77 -0
  661. numpy/random/_examples/cython/extending_distributions.pyx +118 -0
  662. numpy/random/_examples/cython/meson.build +53 -0
  663. numpy/random/_examples/numba/extending.py +86 -0
  664. numpy/random/_examples/numba/extending_distributions.py +67 -0
  665. numpy/random/_generator.cpython-313-darwin.so +0 -0
  666. numpy/random/_generator.pyi +861 -0
  667. numpy/random/_mt19937.cpython-313-darwin.so +0 -0
  668. numpy/random/_mt19937.pyi +25 -0
  669. numpy/random/_pcg64.cpython-313-darwin.so +0 -0
  670. numpy/random/_pcg64.pyi +44 -0
  671. numpy/random/_philox.cpython-313-darwin.so +0 -0
  672. numpy/random/_philox.pyi +39 -0
  673. numpy/random/_pickle.py +88 -0
  674. numpy/random/_pickle.pyi +43 -0
  675. numpy/random/_sfc64.cpython-313-darwin.so +0 -0
  676. numpy/random/_sfc64.pyi +28 -0
  677. numpy/random/bit_generator.cpython-313-darwin.so +0 -0
  678. numpy/random/bit_generator.pxd +35 -0
  679. numpy/random/bit_generator.pyi +124 -0
  680. numpy/random/c_distributions.pxd +119 -0
  681. numpy/random/lib/libnpyrandom.a +0 -0
  682. numpy/random/mtrand.cpython-313-darwin.so +0 -0
  683. numpy/random/mtrand.pyi +703 -0
  684. numpy/random/tests/__init__.py +0 -0
  685. numpy/random/tests/data/__init__.py +0 -0
  686. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  687. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  688. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  689. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  690. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  691. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  692. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  693. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  694. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  695. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  696. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  697. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  698. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  699. numpy/random/tests/test_direct.py +592 -0
  700. numpy/random/tests/test_extending.py +127 -0
  701. numpy/random/tests/test_generator_mt19937.py +2809 -0
  702. numpy/random/tests/test_generator_mt19937_regressions.py +207 -0
  703. numpy/random/tests/test_random.py +1757 -0
  704. numpy/random/tests/test_randomstate.py +2130 -0
  705. numpy/random/tests/test_randomstate_regression.py +217 -0
  706. numpy/random/tests/test_regression.py +152 -0
  707. numpy/random/tests/test_seed_sequence.py +79 -0
  708. numpy/random/tests/test_smoke.py +819 -0
  709. numpy/rec/__init__.py +2 -0
  710. numpy/rec/__init__.pyi +23 -0
  711. numpy/strings/__init__.py +2 -0
  712. numpy/strings/__init__.pyi +97 -0
  713. numpy/testing/__init__.py +22 -0
  714. numpy/testing/__init__.pyi +102 -0
  715. numpy/testing/_private/__init__.py +0 -0
  716. numpy/testing/_private/__init__.pyi +0 -0
  717. numpy/testing/_private/extbuild.py +250 -0
  718. numpy/testing/_private/extbuild.pyi +25 -0
  719. numpy/testing/_private/utils.py +2752 -0
  720. numpy/testing/_private/utils.pyi +499 -0
  721. numpy/testing/overrides.py +84 -0
  722. numpy/testing/overrides.pyi +11 -0
  723. numpy/testing/print_coercion_tables.py +207 -0
  724. numpy/testing/print_coercion_tables.pyi +27 -0
  725. numpy/testing/tests/__init__.py +0 -0
  726. numpy/testing/tests/test_utils.py +1917 -0
  727. numpy/tests/__init__.py +0 -0
  728. numpy/tests/test__all__.py +10 -0
  729. numpy/tests/test_configtool.py +48 -0
  730. numpy/tests/test_ctypeslib.py +377 -0
  731. numpy/tests/test_lazyloading.py +38 -0
  732. numpy/tests/test_matlib.py +59 -0
  733. numpy/tests/test_numpy_config.py +46 -0
  734. numpy/tests/test_numpy_version.py +54 -0
  735. numpy/tests/test_public_api.py +806 -0
  736. numpy/tests/test_reloading.py +74 -0
  737. numpy/tests/test_scripts.py +49 -0
  738. numpy/tests/test_warnings.py +78 -0
  739. numpy/typing/__init__.py +201 -0
  740. numpy/typing/mypy_plugin.py +195 -0
  741. numpy/typing/tests/__init__.py +0 -0
  742. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  743. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  744. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  745. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  746. numpy/typing/tests/data/fail/arrayprint.pyi +16 -0
  747. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  748. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  749. numpy/typing/tests/data/fail/char.pyi +65 -0
  750. numpy/typing/tests/data/fail/chararray.pyi +62 -0
  751. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  752. numpy/typing/tests/data/fail/constants.pyi +3 -0
  753. numpy/typing/tests/data/fail/datasource.pyi +15 -0
  754. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  755. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  756. numpy/typing/tests/data/fail/flatiter.pyi +20 -0
  757. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  758. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  759. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  760. numpy/typing/tests/data/fail/lib_function_base.pyi +62 -0
  761. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  762. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  763. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  764. numpy/typing/tests/data/fail/linalg.pyi +48 -0
  765. numpy/typing/tests/data/fail/ma.pyi +143 -0
  766. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  767. numpy/typing/tests/data/fail/modules.pyi +17 -0
  768. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  769. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  770. numpy/typing/tests/data/fail/ndarray_misc.pyi +36 -0
  771. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  772. numpy/typing/tests/data/fail/nested_sequence.pyi +16 -0
  773. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  774. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  775. numpy/typing/tests/data/fail/random.pyi +62 -0
  776. numpy/typing/tests/data/fail/rec.pyi +17 -0
  777. numpy/typing/tests/data/fail/scalars.pyi +87 -0
  778. numpy/typing/tests/data/fail/shape.pyi +6 -0
  779. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  780. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  781. numpy/typing/tests/data/fail/strings.pyi +52 -0
  782. numpy/typing/tests/data/fail/testing.pyi +28 -0
  783. numpy/typing/tests/data/fail/twodim_base.pyi +32 -0
  784. numpy/typing/tests/data/fail/type_check.pyi +13 -0
  785. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  786. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  787. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  788. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  789. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  790. numpy/typing/tests/data/mypy.ini +9 -0
  791. numpy/typing/tests/data/pass/arithmetic.py +612 -0
  792. numpy/typing/tests/data/pass/array_constructors.py +137 -0
  793. numpy/typing/tests/data/pass/array_like.py +43 -0
  794. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  795. numpy/typing/tests/data/pass/arrayterator.py +27 -0
  796. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  797. numpy/typing/tests/data/pass/comparisons.py +315 -0
  798. numpy/typing/tests/data/pass/dtype.py +57 -0
  799. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  800. numpy/typing/tests/data/pass/flatiter.py +19 -0
  801. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  802. numpy/typing/tests/data/pass/index_tricks.py +60 -0
  803. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  804. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  805. numpy/typing/tests/data/pass/lib_version.py +18 -0
  806. numpy/typing/tests/data/pass/literal.py +51 -0
  807. numpy/typing/tests/data/pass/ma.py +174 -0
  808. numpy/typing/tests/data/pass/mod.py +149 -0
  809. numpy/typing/tests/data/pass/modules.py +45 -0
  810. numpy/typing/tests/data/pass/multiarray.py +76 -0
  811. numpy/typing/tests/data/pass/ndarray_conversion.py +87 -0
  812. numpy/typing/tests/data/pass/ndarray_misc.py +203 -0
  813. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  814. numpy/typing/tests/data/pass/nditer.py +4 -0
  815. numpy/typing/tests/data/pass/numeric.py +95 -0
  816. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  817. numpy/typing/tests/data/pass/random.py +1497 -0
  818. numpy/typing/tests/data/pass/recfunctions.py +161 -0
  819. numpy/typing/tests/data/pass/scalars.py +248 -0
  820. numpy/typing/tests/data/pass/shape.py +19 -0
  821. numpy/typing/tests/data/pass/simple.py +168 -0
  822. numpy/typing/tests/data/pass/simple_py3.py +6 -0
  823. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  824. numpy/typing/tests/data/pass/ufunclike.py +47 -0
  825. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  826. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  827. numpy/typing/tests/data/reveal/arithmetic.pyi +720 -0
  828. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  829. numpy/typing/tests/data/reveal/array_constructors.pyi +249 -0
  830. numpy/typing/tests/data/reveal/arraypad.pyi +22 -0
  831. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  832. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  833. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  834. numpy/typing/tests/data/reveal/bitwise_ops.pyi +167 -0
  835. numpy/typing/tests/data/reveal/char.pyi +224 -0
  836. numpy/typing/tests/data/reveal/chararray.pyi +137 -0
  837. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  838. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  839. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  840. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  841. numpy/typing/tests/data/reveal/dtype.pyi +136 -0
  842. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  843. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  844. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  845. numpy/typing/tests/data/reveal/flatiter.pyi +47 -0
  846. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  847. numpy/typing/tests/data/reveal/getlimits.pyi +51 -0
  848. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  849. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  850. numpy/typing/tests/data/reveal/lib_function_base.pyi +213 -0
  851. numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -0
  852. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  853. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  854. numpy/typing/tests/data/reveal/linalg.pyi +132 -0
  855. numpy/typing/tests/data/reveal/ma.pyi +369 -0
  856. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  857. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  858. numpy/typing/tests/data/reveal/mod.pyi +179 -0
  859. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  860. numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
  861. numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
  862. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
  863. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
  864. numpy/typing/tests/data/reveal/ndarray_misc.pyi +247 -0
  865. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -0
  866. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  867. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  868. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  869. numpy/typing/tests/data/reveal/numeric.pyi +134 -0
  870. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  871. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
  872. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -0
  873. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  874. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  875. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  876. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  877. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  878. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  879. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  880. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  881. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  882. numpy/typing/tests/data/reveal/twodim_base.pyi +145 -0
  883. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  884. numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
  885. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  886. numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
  887. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  888. numpy/typing/tests/test_isfile.py +32 -0
  889. numpy/typing/tests/test_runtime.py +102 -0
  890. numpy/typing/tests/test_typing.py +205 -0
  891. numpy/version.py +11 -0
  892. numpy/version.pyi +18 -0
  893. numpy-2.3.5.dist-info/LICENSE.txt +971 -0
  894. numpy-2.3.5.dist-info/METADATA +1093 -0
  895. numpy-2.3.5.dist-info/RECORD +897 -0
  896. numpy-2.3.5.dist-info/WHEEL +6 -0
  897. numpy-2.3.5.dist-info/entry_points.txt +13 -0
@@ -0,0 +1,1429 @@
1
+ dtype,input,output,ulperrortol
2
+ np.float32,0xbf24142a,0xbf1a85ef,2
3
+ np.float32,0x3e71cf91,0x3e6f9e37,2
4
+ np.float32,0xe52a7,0xe52a7,2
5
+ np.float32,0x3ef1e074,0x3ee9add9,2
6
+ np.float32,0x806160ac,0x806160ac,2
7
+ np.float32,0x7e2d59a2,0x42af4798,2
8
+ np.float32,0xbf32cac9,0xbf26bf96,2
9
+ np.float32,0x3f081701,0x3f026142,2
10
+ np.float32,0x3f23cc88,0x3f1a499c,2
11
+ np.float32,0xbf090d94,0xbf033ad0,2
12
+ np.float32,0x803af2fc,0x803af2fc,2
13
+ np.float32,0x807eb17e,0x807eb17e,2
14
+ np.float32,0x5c0d8e,0x5c0d8e,2
15
+ np.float32,0x3f7b79d2,0x3f5e6b1d,2
16
+ np.float32,0x806feeae,0x806feeae,2
17
+ np.float32,0x3e4b423a,0x3e49f274,2
18
+ np.float32,0x3f49e5ac,0x3f394a41,2
19
+ np.float32,0x3f18cd4e,0x3f10ef35,2
20
+ np.float32,0xbed75734,0xbed17322,2
21
+ np.float32,0x7f591151,0x42b28085,2
22
+ np.float32,0xfefe9da6,0xc2b16f51,2
23
+ np.float32,0xfeac90fc,0xc2b0a82a,2
24
+ np.float32,0x805c198e,0x805c198e,2
25
+ np.float32,0x7f66d6df,0x42b2a004,2
26
+ np.float32,0x505438,0x505438,2
27
+ np.float32,0xbf39a209,0xbf2c5255,2
28
+ np.float32,0x7fa00000,0x7fe00000,2
29
+ np.float32,0xc84cb,0xc84cb,2
30
+ np.float32,0x7f07d6f5,0x42b19088,2
31
+ np.float32,0x79d7e4,0x79d7e4,2
32
+ np.float32,0xff32f6a0,0xc2b21db1,2
33
+ np.float32,0x7c005c05,0x42a9222e,2
34
+ np.float32,0x3ec449aa,0x3ebfc5ae,2
35
+ np.float32,0x800ec323,0x800ec323,2
36
+ np.float32,0xff1c904c,0xc2b1d93a,2
37
+ np.float32,0x7f4eca52,0x42b267b0,2
38
+ np.float32,0x3ee06540,0x3ed9c514,2
39
+ np.float32,0x6aab4,0x6aab4,2
40
+ np.float32,0x3e298d8c,0x3e28c99e,2
41
+ np.float32,0xbf38d162,0xbf2ba94a,2
42
+ np.float32,0x2d9083,0x2d9083,2
43
+ np.float32,0x7eae5032,0x42b0ad52,2
44
+ np.float32,0x3ead5b3c,0x3eaa3443,2
45
+ np.float32,0x806fef66,0x806fef66,2
46
+ np.float32,0x3f5b614e,0x3f46ca71,2
47
+ np.float32,0xbf4c906a,0xbf3b60fc,2
48
+ np.float32,0x8049453e,0x8049453e,2
49
+ np.float32,0x3d305220,0x3d304432,2
50
+ np.float32,0x2e1a89,0x2e1a89,2
51
+ np.float32,0xbf4e74ec,0xbf3cdacf,2
52
+ np.float32,0x807a827a,0x807a827a,2
53
+ np.float32,0x80070745,0x80070745,2
54
+ np.float32,0xbe1ba2fc,0xbe1b0b28,2
55
+ np.float32,0xbe5131d0,0xbe4fc421,2
56
+ np.float32,0x5bfd98,0x5bfd98,2
57
+ np.float32,0xbd8e1a48,0xbd8dfd27,2
58
+ np.float32,0x8006c160,0x8006c160,2
59
+ np.float32,0x346490,0x346490,2
60
+ np.float32,0xbdbdf060,0xbdbdaaf0,2
61
+ np.float32,0x3ea9d0c4,0x3ea6d8c7,2
62
+ np.float32,0xbf2aaa28,0xbf200916,2
63
+ np.float32,0xbf160c26,0xbf0e9047,2
64
+ np.float32,0x80081fd4,0x80081fd4,2
65
+ np.float32,0x7db44283,0x42adf8b6,2
66
+ np.float32,0xbf1983f8,0xbf118bf5,2
67
+ np.float32,0x2c4a35,0x2c4a35,2
68
+ np.float32,0x6165a7,0x6165a7,2
69
+ np.float32,0xbe776b44,0xbe75129f,2
70
+ np.float32,0xfe81841a,0xc2b0153b,2
71
+ np.float32,0xbf7d1b2f,0xbf5f9461,2
72
+ np.float32,0x80602d36,0x80602d36,2
73
+ np.float32,0xfe8d5046,0xc2b041dd,2
74
+ np.float32,0xfe5037bc,0xc2afa56d,2
75
+ np.float32,0x4bbea6,0x4bbea6,2
76
+ np.float32,0xfea039de,0xc2b0822d,2
77
+ np.float32,0x7ea627a4,0x42b094c7,2
78
+ np.float32,0x3f556198,0x3f423591,2
79
+ np.float32,0xfedbae04,0xc2b123c1,2
80
+ np.float32,0xbe30432c,0xbe2f6744,2
81
+ np.float32,0x80202c77,0x80202c77,2
82
+ np.float32,0xff335cc1,0xc2b21ed5,2
83
+ np.float32,0x3e1e1ebe,0x3e1d7f95,2
84
+ np.float32,0x8021c9c0,0x8021c9c0,2
85
+ np.float32,0x7dc978,0x7dc978,2
86
+ np.float32,0xff6cfabc,0xc2b2ad75,2
87
+ np.float32,0x7f2bd542,0x42b208e0,2
88
+ np.float32,0x53bf33,0x53bf33,2
89
+ np.float32,0x804e04bb,0x804e04bb,2
90
+ np.float32,0x3f30d2f9,0x3f2521ca,2
91
+ np.float32,0x3dfde876,0x3dfd4316,2
92
+ np.float32,0x46f8b1,0x46f8b1,2
93
+ np.float32,0xbd5f9e20,0xbd5f81ba,2
94
+ np.float32,0x807d6a22,0x807d6a22,2
95
+ np.float32,0xff3881da,0xc2b22d50,2
96
+ np.float32,0x1b1cb5,0x1b1cb5,2
97
+ np.float32,0x3f75f2d0,0x3f5a7435,2
98
+ np.float32,0xfee39c1a,0xc2b135e9,2
99
+ np.float32,0x7f79f14a,0x42b2c8b9,2
100
+ np.float32,0x8000e2d1,0x8000e2d1,2
101
+ np.float32,0xab779,0xab779,2
102
+ np.float32,0xbede6690,0xbed7f102,2
103
+ np.float32,0x76e20d,0x76e20d,2
104
+ np.float32,0x3ed714cb,0x3ed135e9,2
105
+ np.float32,0xbeaa6f44,0xbea76f31,2
106
+ np.float32,0x7f7dc8b1,0x42b2d089,2
107
+ np.float32,0x108cb2,0x108cb2,2
108
+ np.float32,0x7d37ba82,0x42ac9f94,2
109
+ np.float32,0x3f31d068,0x3f25f221,2
110
+ np.float32,0x8010a331,0x8010a331,2
111
+ np.float32,0x3f2fdc7c,0x3f2456cd,2
112
+ np.float32,0x7f7a9a67,0x42b2ca13,2
113
+ np.float32,0x3f2acb31,0x3f202492,2
114
+ np.float32,0x7f54fa94,0x42b276c9,2
115
+ np.float32,0x3ebf8a70,0x3ebb553c,2
116
+ np.float32,0x7f75b1a7,0x42b2bff2,2
117
+ np.float32,0x7daebe07,0x42ade8cc,2
118
+ np.float32,0xbd3a3ef0,0xbd3a2e86,2
119
+ np.float32,0x8078ec9e,0x8078ec9e,2
120
+ np.float32,0x3eda206a,0x3ed403ec,2
121
+ np.float32,0x3f7248f2,0x3f57cd77,2
122
+ np.float32,0x805d55ba,0x805d55ba,2
123
+ np.float32,0xff30dc3e,0xc2b217a3,2
124
+ np.float32,0xbe12b27c,0xbe123333,2
125
+ np.float32,0xbf6ed9cf,0xbf554cd0,2
126
+ np.float32,0xbed9eb5c,0xbed3d31c,2
127
+ np.float32,0xbf1c9aea,0xbf14307b,2
128
+ np.float32,0x3f540ac4,0x3f412de2,2
129
+ np.float32,0x800333ac,0x800333ac,2
130
+ np.float32,0x3f74cdb4,0x3f59a09a,2
131
+ np.float32,0xbf41dc41,0xbf32ee6f,2
132
+ np.float32,0xff2c7804,0xc2b20ac4,2
133
+ np.float32,0x514493,0x514493,2
134
+ np.float32,0xbddf1220,0xbddea1cf,2
135
+ np.float32,0xfeaf74de,0xc2b0b0ab,2
136
+ np.float32,0xfe5dfb30,0xc2afc633,2
137
+ np.float32,0xbf4785c4,0xbf376bdb,2
138
+ np.float32,0x80191cd3,0x80191cd3,2
139
+ np.float32,0xfe44f708,0xc2af88fb,2
140
+ np.float32,0x3d4cd8a0,0x3d4cc2ca,2
141
+ np.float32,0x7f572eff,0x42b27c0f,2
142
+ np.float32,0x8031bacb,0x8031bacb,2
143
+ np.float32,0x7f2ea684,0x42b21133,2
144
+ np.float32,0xbea1976a,0xbe9f05bb,2
145
+ np.float32,0x3d677b41,0x3d675bc1,2
146
+ np.float32,0x3f61bf24,0x3f4b9870,2
147
+ np.float32,0x7ef55ddf,0x42b15c5f,2
148
+ np.float32,0x3eabcb20,0x3ea8b91c,2
149
+ np.float32,0xff73d9ec,0xc2b2bc18,2
150
+ np.float32,0x77b9f5,0x77b9f5,2
151
+ np.float32,0x4c6c6c,0x4c6c6c,2
152
+ np.float32,0x7ed09c94,0x42b10949,2
153
+ np.float32,0xdeeec,0xdeeec,2
154
+ np.float32,0x7eac5858,0x42b0a782,2
155
+ np.float32,0x7e190658,0x42af07bd,2
156
+ np.float32,0xbe3c8980,0xbe3b7ce2,2
157
+ np.float32,0x8059e86e,0x8059e86e,2
158
+ np.float32,0xff201836,0xc2b1e4a5,2
159
+ np.float32,0xbeac109c,0xbea8fafb,2
160
+ np.float32,0x7edd1e2b,0x42b12718,2
161
+ np.float32,0x639cd8,0x639cd8,2
162
+ np.float32,0x3f5e4cae,0x3f490059,2
163
+ np.float32,0x3d84c185,0x3d84a9c4,2
164
+ np.float32,0xbe8c1130,0xbe8a605b,2
165
+ np.float32,0x80000000,0x80000000,2
166
+ np.float32,0x3f1da5e4,0x3f151404,2
167
+ np.float32,0x7f75a873,0x42b2bfdf,2
168
+ np.float32,0xbd873540,0xbd871c28,2
169
+ np.float32,0xbe8e5e10,0xbe8c9808,2
170
+ np.float32,0x7f004bf2,0x42b17347,2
171
+ np.float32,0x800000,0x800000,2
172
+ np.float32,0xbf6d6b79,0xbf544095,2
173
+ np.float32,0x7ed7b563,0x42b11a6a,2
174
+ np.float32,0x80693745,0x80693745,2
175
+ np.float32,0x3ee0f608,0x3eda49a8,2
176
+ np.float32,0xfe1285a4,0xc2aef181,2
177
+ np.float32,0x72d946,0x72d946,2
178
+ np.float32,0x6a0dca,0x6a0dca,2
179
+ np.float32,0x3f5c9df6,0x3f47ba99,2
180
+ np.float32,0xff002af6,0xc2b172c4,2
181
+ np.float32,0x3f4ac98f,0x3f39fd0a,2
182
+ np.float32,0x8066acf7,0x8066acf7,2
183
+ np.float32,0xbcaa4e60,0xbcaa4b3c,2
184
+ np.float32,0x80162813,0x80162813,2
185
+ np.float32,0xff34b318,0xc2b222a2,2
186
+ np.float32,0x7f1ce33c,0x42b1da49,2
187
+ np.float32,0x3f0e55ab,0x3f07ddb0,2
188
+ np.float32,0x7c75d996,0x42aa6eec,2
189
+ np.float32,0xbf221bc6,0xbf18dc89,2
190
+ np.float32,0x3f5a1a4c,0x3f45d1d4,2
191
+ np.float32,0x7f2451b8,0x42b1f1fb,2
192
+ np.float32,0x3ec55ca0,0x3ec0c655,2
193
+ np.float32,0x3f752dc2,0x3f59e600,2
194
+ np.float32,0xbe33f638,0xbe330c4d,2
195
+ np.float32,0x3e2a9148,0x3e29c9d8,2
196
+ np.float32,0x3f3362a1,0x3f273c01,2
197
+ np.float32,0x5f83b3,0x5f83b3,2
198
+ np.float32,0x3e362488,0x3e353216,2
199
+ np.float32,0x140bcf,0x140bcf,2
200
+ np.float32,0x7e3e96df,0x42af7822,2
201
+ np.float32,0xbebc7082,0xbeb86ce6,2
202
+ np.float32,0xbe92a92e,0xbe90b9d2,2
203
+ np.float32,0xff3d8afc,0xc2b23b19,2
204
+ np.float32,0x804125e3,0x804125e3,2
205
+ np.float32,0x3f3675d1,0x3f29bedb,2
206
+ np.float32,0xff70bb09,0xc2b2b57f,2
207
+ np.float32,0x3f29681c,0x3f1efcd2,2
208
+ np.float32,0xbdc70380,0xbdc6b3a8,2
209
+ np.float32,0x54e0dd,0x54e0dd,2
210
+ np.float32,0x3d545de0,0x3d54458c,2
211
+ np.float32,0x7f800000,0x7f800000,2
212
+ np.float32,0x8014a4c2,0x8014a4c2,2
213
+ np.float32,0xbe93f58a,0xbe91f938,2
214
+ np.float32,0x17de33,0x17de33,2
215
+ np.float32,0xfefb679a,0xc2b168d2,2
216
+ np.float32,0xbf23423e,0xbf19d511,2
217
+ np.float32,0x7e893fa1,0x42b032ec,2
218
+ np.float32,0x3f44fe2d,0x3f356bda,2
219
+ np.float32,0xbebb2e78,0xbeb73e8f,2
220
+ np.float32,0x3f5632e0,0x3f42d633,2
221
+ np.float32,0x3ddd8698,0x3ddd1896,2
222
+ np.float32,0x80164ea7,0x80164ea7,2
223
+ np.float32,0x80087b37,0x80087b37,2
224
+ np.float32,0xbf06ab1e,0xbf011f95,2
225
+ np.float32,0x3db95524,0x3db9149f,2
226
+ np.float32,0x7aa1fbb3,0x42a570a1,2
227
+ np.float32,0xbd84fc48,0xbd84e467,2
228
+ np.float32,0x3d65c6f5,0x3d65a826,2
229
+ np.float32,0xfe987800,0xc2b068c4,2
230
+ np.float32,0x7ec59532,0x42b0ed7a,2
231
+ np.float32,0x3ea0232c,0x3e9da29a,2
232
+ np.float32,0x80292a08,0x80292a08,2
233
+ np.float32,0x734cfe,0x734cfe,2
234
+ np.float32,0x3f3b6d63,0x3f2dc596,2
235
+ np.float32,0x3f27bcc1,0x3f1d97e6,2
236
+ np.float32,0xfe1da554,0xc2af16f9,2
237
+ np.float32,0x7c91f5,0x7c91f5,2
238
+ np.float32,0xfe4e78cc,0xc2afa11e,2
239
+ np.float32,0x7e4b4e08,0x42af9933,2
240
+ np.float32,0xfe0949ec,0xc2aed02e,2
241
+ np.float32,0x7e2f057f,0x42af4c81,2
242
+ np.float32,0xbf200ae0,0xbf171ce1,2
243
+ np.float32,0x3ebcc244,0x3eb8b99e,2
244
+ np.float32,0xbf68f58d,0xbf50f7aa,2
245
+ np.float32,0x4420b1,0x4420b1,2
246
+ np.float32,0x3f5b61bf,0x3f46cac7,2
247
+ np.float32,0x3fec78,0x3fec78,2
248
+ np.float32,0x7f4183c8,0x42b245b7,2
249
+ np.float32,0xbf10587c,0xbf099ee2,2
250
+ np.float32,0x0,0x0,2
251
+ np.float32,0x7ec84dc3,0x42b0f47a,2
252
+ np.float32,0x3f5fbd7b,0x3f4a166d,2
253
+ np.float32,0xbd884eb8,0xbd883502,2
254
+ np.float32,0xfe3f10a4,0xc2af7969,2
255
+ np.float32,0xff3f4920,0xc2b23fc9,2
256
+ np.float32,0x8013900f,0x8013900f,2
257
+ np.float32,0x8003529d,0x8003529d,2
258
+ np.float32,0xbf032384,0xbefbfb3c,2
259
+ np.float32,0xff418c7c,0xc2b245ce,2
260
+ np.float32,0xbec0aad0,0xbebc633b,2
261
+ np.float32,0xfdbff178,0xc2ae18de,2
262
+ np.float32,0x68ab15,0x68ab15,2
263
+ np.float32,0xbdfc4a88,0xbdfba848,2
264
+ np.float32,0xbf5adec6,0xbf466747,2
265
+ np.float32,0x807d5dcc,0x807d5dcc,2
266
+ np.float32,0x61d144,0x61d144,2
267
+ np.float32,0x807e3a03,0x807e3a03,2
268
+ np.float32,0x1872f2,0x1872f2,2
269
+ np.float32,0x7f2a272c,0x42b203d8,2
270
+ np.float32,0xfe7f8314,0xc2b00e3a,2
271
+ np.float32,0xbe42aeac,0xbe418737,2
272
+ np.float32,0x8024b614,0x8024b614,2
273
+ np.float32,0xbe41b6b8,0xbe40939a,2
274
+ np.float32,0xa765c,0xa765c,2
275
+ np.float32,0x7ea74f4b,0x42b09853,2
276
+ np.float32,0x7f7ef631,0x42b2d2e7,2
277
+ np.float32,0x7eaef5e6,0x42b0af38,2
278
+ np.float32,0xff733d85,0xc2b2bacf,2
279
+ np.float32,0x537ac0,0x537ac0,2
280
+ np.float32,0xbeca4790,0xbec55b1d,2
281
+ np.float32,0x80117314,0x80117314,2
282
+ np.float32,0xfe958536,0xc2b05ec5,2
283
+ np.float32,0x8066ecc2,0x8066ecc2,2
284
+ np.float32,0xbf56baf3,0xbf433e82,2
285
+ np.float32,0x1f7fd7,0x1f7fd7,2
286
+ np.float32,0x3e942104,0x3e9222fc,2
287
+ np.float32,0xfeaffe82,0xc2b0b23c,2
288
+ np.float32,0xfe0e02b0,0xc2aee17e,2
289
+ np.float32,0xbf800000,0xbf61a1b3,2
290
+ np.float32,0x800b7e49,0x800b7e49,2
291
+ np.float32,0x6c514f,0x6c514f,2
292
+ np.float32,0xff800000,0xff800000,2
293
+ np.float32,0x7f7d9a45,0x42b2d02b,2
294
+ np.float32,0x800c9c69,0x800c9c69,2
295
+ np.float32,0x274b14,0x274b14,2
296
+ np.float32,0xbf4b22b0,0xbf3a42e2,2
297
+ np.float32,0x63e5ae,0x63e5ae,2
298
+ np.float32,0xbe18facc,0xbe186a90,2
299
+ np.float32,0x7e137351,0x42aef4bd,2
300
+ np.float32,0x80518ffd,0x80518ffd,2
301
+ np.float32,0xbf0a8ffc,0xbf048f0d,2
302
+ np.float32,0x841d,0x841d,2
303
+ np.float32,0x7edfdc9e,0x42b12d69,2
304
+ np.float32,0xfd1092b0,0xc2ac24de,2
305
+ np.float32,0x7e2c9bdf,0x42af4566,2
306
+ np.float32,0x7f7fffff,0x42b2d4fc,2
307
+ np.float32,0x3f4954a6,0x3f38d853,2
308
+ np.float32,0xbe83efd2,0xbe8284c3,2
309
+ np.float32,0x800e8e02,0x800e8e02,2
310
+ np.float32,0x78ad39,0x78ad39,2
311
+ np.float32,0x7eb0f967,0x42b0b514,2
312
+ np.float32,0xbe39aa94,0xbe38a9ee,2
313
+ np.float32,0x80194e7b,0x80194e7b,2
314
+ np.float32,0x3cf3a340,0x3cf39a0f,2
315
+ np.float32,0x3ed3117a,0x3ecd8173,2
316
+ np.float32,0x7f530b11,0x42b2721c,2
317
+ np.float32,0xff756ba2,0xc2b2bf60,2
318
+ np.float32,0x15ea25,0x15ea25,2
319
+ np.float32,0x803cbb64,0x803cbb64,2
320
+ np.float32,0x3f34722d,0x3f281a2c,2
321
+ np.float32,0x3ddd88e0,0x3ddd1adb,2
322
+ np.float32,0x3f54244c,0x3f41418b,2
323
+ np.float32,0x3e0adb98,0x3e0a6f8b,2
324
+ np.float32,0x80800000,0x80800000,2
325
+ np.float32,0x58902b,0x58902b,2
326
+ np.float32,0xfe3b50b8,0xc2af6f43,2
327
+ np.float32,0xfe0846d0,0xc2aecc64,2
328
+ np.float32,0xbe0299d0,0xbe023fd4,2
329
+ np.float32,0x18dde6,0x18dde6,2
330
+ np.float32,0x8039fe8b,0x8039fe8b,2
331
+ np.float32,0x8015d179,0x8015d179,2
332
+ np.float32,0x3f551322,0x3f41f947,2
333
+ np.float32,0x2ab387,0x2ab387,2
334
+ np.float32,0xbf7e311e,0xbf6059d0,2
335
+ np.float32,0xbdba58a8,0xbdba1713,2
336
+ np.float32,0xbf1d008a,0xbf148724,2
337
+ np.float32,0xbf6b9c97,0xbf52ec98,2
338
+ np.float32,0x802acf04,0x802acf04,2
339
+ np.float32,0x1,0x1,2
340
+ np.float32,0xbe9e16d6,0xbe9bade3,2
341
+ np.float32,0xbf048a14,0xbefe78c7,2
342
+ np.float32,0x7e432ad3,0x42af8449,2
343
+ np.float32,0xbdcc7fe0,0xbdcc2944,2
344
+ np.float32,0x6dfc27,0x6dfc27,2
345
+ np.float32,0xfef6eed8,0xc2b15fa1,2
346
+ np.float32,0xbeeff6e8,0xbee7f2e4,2
347
+ np.float32,0x7e3a6ca8,0x42af6cd2,2
348
+ np.float32,0xff2c82e8,0xc2b20ae4,2
349
+ np.float32,0x3e9f8d74,0x3e9d13b0,2
350
+ np.float32,0x7ea36191,0x42b08c29,2
351
+ np.float32,0x7f734bed,0x42b2baed,2
352
+ np.float32,0x7f2df96d,0x42b20f37,2
353
+ np.float32,0x5036fd,0x5036fd,2
354
+ np.float32,0x806eab38,0x806eab38,2
355
+ np.float32,0xbe9db90e,0xbe9b5446,2
356
+ np.float32,0xfeef6fac,0xc2b14fd9,2
357
+ np.float32,0xc2bf7,0xc2bf7,2
358
+ np.float32,0xff53ec3d,0xc2b2743d,2
359
+ np.float32,0x7e837637,0x42b01cde,2
360
+ np.float32,0xbefb5934,0xbef23662,2
361
+ np.float32,0x3f6cec80,0x3f53e371,2
362
+ np.float32,0x3e86e7de,0x3e85643f,2
363
+ np.float32,0x3f09cb42,0x3f03e1ef,2
364
+ np.float32,0xbec3d236,0xbebf5620,2
365
+ np.float32,0xfedef246,0xc2b12b50,2
366
+ np.float32,0xbf08d6a8,0xbf030a62,2
367
+ np.float32,0x8036cbf9,0x8036cbf9,2
368
+ np.float32,0x3f74d3e3,0x3f59a512,2
369
+ np.float32,0x6a600c,0x6a600c,2
370
+ np.float32,0xfd1295b0,0xc2ac2bf1,2
371
+ np.float32,0xbeb61142,0xbeb26efa,2
372
+ np.float32,0x80216556,0x80216556,2
373
+ np.float32,0xbf1fa0f6,0xbf16c30a,2
374
+ np.float32,0x3e0af8e1,0x3e0a8c90,2
375
+ np.float32,0x80434709,0x80434709,2
376
+ np.float32,0x49efd9,0x49efd9,2
377
+ np.float32,0x7f7cce6c,0x42b2ce8f,2
378
+ np.float32,0x6e5450,0x6e5450,2
379
+ np.float32,0x7f0fc115,0x42b1ad86,2
380
+ np.float32,0x632db0,0x632db0,2
381
+ np.float32,0x3f6f4c2a,0x3f55a064,2
382
+ np.float32,0x7ec4f273,0x42b0ebd3,2
383
+ np.float32,0x61ae1e,0x61ae1e,2
384
+ np.float32,0x5f47c4,0x5f47c4,2
385
+ np.float32,0xbf3c8f62,0xbf2eaf54,2
386
+ np.float32,0xfca38900,0xc2ab0113,2
387
+ np.float32,0x3ec89d52,0x3ec3ce78,2
388
+ np.float32,0xbe0e3f70,0xbe0dcb53,2
389
+ np.float32,0x805d3156,0x805d3156,2
390
+ np.float32,0x3eee33f8,0x3ee65a4e,2
391
+ np.float32,0xbeda7e9a,0xbed45a90,2
392
+ np.float32,0x7e2fac7b,0x42af4e69,2
393
+ np.float32,0x7efd0e28,0x42b16c2c,2
394
+ np.float32,0x3f0c7b17,0x3f063e46,2
395
+ np.float32,0xbf395bec,0xbf2c198f,2
396
+ np.float32,0xfdf1c3f8,0xc2ae8f05,2
397
+ np.float32,0xbe11f4e4,0xbe117783,2
398
+ np.float32,0x7eddc901,0x42b128a3,2
399
+ np.float32,0x3f4bad09,0x3f3aaf33,2
400
+ np.float32,0xfefb5d76,0xc2b168bd,2
401
+ np.float32,0x3ed3a4cf,0x3ece09a3,2
402
+ np.float32,0x7ec582e4,0x42b0ed4a,2
403
+ np.float32,0x3dc2268a,0x3dc1dc64,2
404
+ np.float32,0x3ef9b17c,0x3ef0b9c9,2
405
+ np.float32,0x2748ac,0x2748ac,2
406
+ np.float32,0xfed6a602,0xc2b117e4,2
407
+ np.float32,0xbefc9c36,0xbef35832,2
408
+ np.float32,0x7e0476,0x7e0476,2
409
+ np.float32,0x804be1a0,0x804be1a0,2
410
+ np.float32,0xbefbc1c2,0xbef2943a,2
411
+ np.float32,0xbd4698f0,0xbd46850a,2
412
+ np.float32,0x688627,0x688627,2
413
+ np.float32,0x3f7f7685,0x3f61406f,2
414
+ np.float32,0x827fb,0x827fb,2
415
+ np.float32,0x3f503264,0x3f3e34fd,2
416
+ np.float32,0x7f5458d1,0x42b27543,2
417
+ np.float32,0x800ac01f,0x800ac01f,2
418
+ np.float32,0x6188dd,0x6188dd,2
419
+ np.float32,0x806ac0ba,0x806ac0ba,2
420
+ np.float32,0xbe14493c,0xbe13c5cc,2
421
+ np.float32,0x3f77542c,0x3f5b72ae,2
422
+ np.float32,0xfeaacab6,0xc2b0a2df,2
423
+ np.float32,0x7f2893d5,0x42b1ff15,2
424
+ np.float32,0x66b528,0x66b528,2
425
+ np.float32,0xbf653e24,0xbf4e3573,2
426
+ np.float32,0x801a2853,0x801a2853,2
427
+ np.float32,0x3f3d8c98,0x3f2f7b04,2
428
+ np.float32,0xfdffbad8,0xc2aeabc5,2
429
+ np.float32,0x3dd50f,0x3dd50f,2
430
+ np.float32,0x3f325a4c,0x3f266353,2
431
+ np.float32,0xfcc48ec0,0xc2ab5f3f,2
432
+ np.float32,0x3e6f5b9a,0x3e6d3ae5,2
433
+ np.float32,0x3dbcd62b,0x3dbc91ee,2
434
+ np.float32,0xbf7458d9,0xbf594c1c,2
435
+ np.float32,0xff5adb24,0xc2b284b9,2
436
+ np.float32,0x807b246d,0x807b246d,2
437
+ np.float32,0x3f800000,0x3f61a1b3,2
438
+ np.float32,0x231a28,0x231a28,2
439
+ np.float32,0xbdc66258,0xbdc61341,2
440
+ np.float32,0x3c84b4b4,0x3c84b338,2
441
+ np.float32,0xbf215894,0xbf183783,2
442
+ np.float32,0xff4ee298,0xc2b267ec,2
443
+ np.float32,0x801ef52e,0x801ef52e,2
444
+ np.float32,0x1040b0,0x1040b0,2
445
+ np.float32,0xff545582,0xc2b2753b,2
446
+ np.float32,0x3f3b9dda,0x3f2decaf,2
447
+ np.float32,0x730f99,0x730f99,2
448
+ np.float32,0xff7fffff,0xc2b2d4fc,2
449
+ np.float32,0xff24cc5e,0xc2b1f379,2
450
+ np.float32,0xbe9b456a,0xbe98fc0b,2
451
+ np.float32,0x188fb,0x188fb,2
452
+ np.float32,0x3f5c7ce2,0x3f47a18a,2
453
+ np.float32,0x7fc00000,0x7fc00000,2
454
+ np.float32,0x806ea4da,0x806ea4da,2
455
+ np.float32,0xfe810570,0xc2b01345,2
456
+ np.float32,0x8036af89,0x8036af89,2
457
+ np.float32,0x8043cec6,0x8043cec6,2
458
+ np.float32,0x80342bb3,0x80342bb3,2
459
+ np.float32,0x1a2bd4,0x1a2bd4,2
460
+ np.float32,0x3f6248c2,0x3f4bff9a,2
461
+ np.float32,0x8024eb35,0x8024eb35,2
462
+ np.float32,0x7ea55872,0x42b09247,2
463
+ np.float32,0x806d6e56,0x806d6e56,2
464
+ np.float32,0x25c21a,0x25c21a,2
465
+ np.float32,0x3f4e95f3,0x3f3cf483,2
466
+ np.float32,0x15ca38,0x15ca38,2
467
+ np.float32,0x803f01b2,0x803f01b2,2
468
+ np.float32,0xbe731634,0xbe70dc10,2
469
+ np.float32,0x3e80cee4,0x3e7ef933,2
470
+ np.float32,0x3ef6dda5,0x3eee2e7b,2
471
+ np.float32,0x3f3dfdc2,0x3f2fd5ed,2
472
+ np.float32,0xff0492a7,0xc2b18411,2
473
+ np.float32,0xbf1d0adf,0xbf148ff3,2
474
+ np.float32,0xfcf75460,0xc2abd4e3,2
475
+ np.float32,0x3f46fca6,0x3f36ffa6,2
476
+ np.float32,0xbe63b5c0,0xbe61dfb3,2
477
+ np.float32,0xff019bec,0xc2b1787d,2
478
+ np.float32,0x801f14a9,0x801f14a9,2
479
+ np.float32,0x3f176cfa,0x3f0fc051,2
480
+ np.float32,0x3f69d976,0x3f51a015,2
481
+ np.float32,0x3f4917cb,0x3f38a87a,2
482
+ np.float32,0x3b2a0bea,0x3b2a0bdd,2
483
+ np.float32,0xbf41d857,0xbf32eb50,2
484
+ np.float32,0xbf08841a,0xbf02c18f,2
485
+ np.float32,0x7ec86f14,0x42b0f4d0,2
486
+ np.float32,0xbf7d15d1,0xbf5f9090,2
487
+ np.float32,0xbd080550,0xbd07feea,2
488
+ np.float32,0xbf6f1bef,0xbf557d26,2
489
+ np.float32,0xfebc282c,0xc2b0d473,2
490
+ np.float32,0x3e68d2f5,0x3e66dd03,2
491
+ np.float32,0x3f3ed8fe,0x3f3085d5,2
492
+ np.float32,0xff2f78ae,0xc2b2139a,2
493
+ np.float32,0xff647a70,0xc2b29ac1,2
494
+ np.float32,0xfd0859a0,0xc2ac06e2,2
495
+ np.float32,0x3ea578a8,0x3ea2b7e1,2
496
+ np.float32,0x6c58c6,0x6c58c6,2
497
+ np.float32,0xff23f26a,0xc2b1f0d2,2
498
+ np.float32,0x800902a4,0x800902a4,2
499
+ np.float32,0xfe8ba64e,0xc2b03bcd,2
500
+ np.float32,0x3f091143,0x3f033e0f,2
501
+ np.float32,0x8017c4bd,0x8017c4bd,2
502
+ np.float32,0xbf708fd4,0xbf568c8c,2
503
+ np.float32,0x3be1d8,0x3be1d8,2
504
+ np.float32,0x80091f07,0x80091f07,2
505
+ np.float32,0x68eabe,0x68eabe,2
506
+ np.float32,0xfe9ab2c8,0xc2b07033,2
507
+ np.float32,0x3eabe752,0x3ea8d3d7,2
508
+ np.float32,0xbf7adcb2,0xbf5dfaf5,2
509
+ np.float32,0x801ecc01,0x801ecc01,2
510
+ np.float32,0xbf5570a9,0xbf424123,2
511
+ np.float32,0x3e89eecd,0x3e88510e,2
512
+ np.float32,0xfeb2feee,0xc2b0bae4,2
513
+ np.float32,0xbeb25ec2,0xbeaef22b,2
514
+ np.float32,0x201e49,0x201e49,2
515
+ np.float32,0x800a35f6,0x800a35f6,2
516
+ np.float32,0xbf02d449,0xbefb6e2a,2
517
+ np.float32,0x3f062bea,0x3f00aef6,2
518
+ np.float32,0x7f5219ff,0x42b26fd2,2
519
+ np.float32,0xbd4561d0,0xbd454e47,2
520
+ np.float32,0x3f6c4789,0x3f536a4b,2
521
+ np.float32,0x7f58b06d,0x42b27fa1,2
522
+ np.float32,0x7f132f39,0x42b1b999,2
523
+ np.float32,0x3e05dcb4,0x3e057bd8,2
524
+ np.float32,0x7f526045,0x42b2707d,2
525
+ np.float32,0x3f6117d0,0x3f4b1adb,2
526
+ np.float32,0xbf21f47d,0xbf18bb57,2
527
+ np.float32,0x1a26d6,0x1a26d6,2
528
+ np.float32,0x46b114,0x46b114,2
529
+ np.float32,0x3eb24518,0x3eaed9ef,2
530
+ np.float32,0xfe2139c8,0xc2af2278,2
531
+ np.float32,0xbf7c36fb,0xbf5ef1f6,2
532
+ np.float32,0x3f193834,0x3f114af7,2
533
+ np.float32,0xff3ea650,0xc2b23e14,2
534
+ np.float32,0xfeeb3bca,0xc2b146c7,2
535
+ np.float32,0x7e8b8ca0,0x42b03b6f,2
536
+ np.float32,0x3eed903d,0x3ee5c5d2,2
537
+ np.float32,0xbdc73740,0xbdc6e72a,2
538
+ np.float32,0x7e500307,0x42afa4ec,2
539
+ np.float32,0xe003c,0xe003c,2
540
+ np.float32,0x3e612bb4,0x3e5f64fd,2
541
+ np.float32,0xfd81e248,0xc2ad50e6,2
542
+ np.float32,0x766a4f,0x766a4f,2
543
+ np.float32,0x3e8708c9,0x3e858414,2
544
+ np.float32,0xbf206c58,0xbf176f7f,2
545
+ np.float32,0x7e93aeb0,0x42b0586f,2
546
+ np.float32,0xfd9d36b8,0xc2adb2ad,2
547
+ np.float32,0xff1f4e0e,0xc2b1e21d,2
548
+ np.float32,0x3f22bd5a,0x3f1964f8,2
549
+ np.float32,0x7f6a517a,0x42b2a7ad,2
550
+ np.float32,0xff6ca773,0xc2b2acc1,2
551
+ np.float32,0x7f6bf453,0x42b2ab3d,2
552
+ np.float32,0x3edfdd64,0x3ed9489f,2
553
+ np.float32,0xbeafc5ba,0xbeac7daa,2
554
+ np.float32,0x7d862039,0x42ad615b,2
555
+ np.float32,0xbe9d2002,0xbe9ac1fc,2
556
+ np.float32,0xbdcc54c0,0xbdcbfe5b,2
557
+ np.float32,0xbf1bc0aa,0xbf13762a,2
558
+ np.float32,0xbf4679ce,0xbf36984b,2
559
+ np.float32,0x3ef45696,0x3eebe713,2
560
+ np.float32,0xff6eb999,0xc2b2b137,2
561
+ np.float32,0xbe4b2e4c,0xbe49dee8,2
562
+ np.float32,0x3f498951,0x3f3901b7,2
563
+ np.float32,0xbe9692f4,0xbe947be1,2
564
+ np.float32,0xbf44ce26,0xbf3545c8,2
565
+ np.float32,0x805787a8,0x805787a8,2
566
+ np.float32,0xbf342650,0xbf27dc26,2
567
+ np.float32,0x3edafbf0,0x3ed4cdd2,2
568
+ np.float32,0x3f6fb858,0x3f55ef63,2
569
+ np.float32,0xff227d0a,0xc2b1ec3f,2
570
+ np.float32,0xfeb9a202,0xc2b0cd89,2
571
+ np.float32,0x7f5b12c1,0x42b2853b,2
572
+ np.float32,0x584578,0x584578,2
573
+ np.float32,0x7ec0b76f,0x42b0e0b5,2
574
+ np.float32,0x3f57f54b,0x3f442f10,2
575
+ np.float32,0x7eef3620,0x42b14f5d,2
576
+ np.float32,0x4525b5,0x4525b5,2
577
+ np.float32,0x801bd407,0x801bd407,2
578
+ np.float32,0xbed1f166,0xbecc7703,2
579
+ np.float32,0x3f57e732,0x3f442449,2
580
+ np.float32,0x80767cd5,0x80767cd5,2
581
+ np.float32,0xbef1a7d2,0xbee97aa3,2
582
+ np.float32,0x3dd5b1af,0x3dd54ee6,2
583
+ np.float32,0x960c,0x960c,2
584
+ np.float32,0x7c392d41,0x42a9ddd1,2
585
+ np.float32,0x3f5c9a34,0x3f47b7c1,2
586
+ np.float32,0x3f5cecee,0x3f47f667,2
587
+ np.float32,0xbee482ce,0xbedd8899,2
588
+ np.float32,0x8066ba7e,0x8066ba7e,2
589
+ np.float32,0x7ed76127,0x42b119a2,2
590
+ np.float32,0x805ca40b,0x805ca40b,2
591
+ np.float32,0x7f5ed5d1,0x42b28df3,2
592
+ np.float32,0xfe9e1b1e,0xc2b07b5b,2
593
+ np.float32,0x3f0201a2,0x3ef9f6c4,2
594
+ np.float32,0xbf2e6430,0xbf232039,2
595
+ np.float32,0x80326b4d,0x80326b4d,2
596
+ np.float32,0x3f11dc7c,0x3f0af06e,2
597
+ np.float32,0xbe89c42e,0xbe8827e6,2
598
+ np.float32,0x3f3c69f8,0x3f2e9133,2
599
+ np.float32,0x806326a9,0x806326a9,2
600
+ np.float32,0x3f1c5286,0x3f13f2b6,2
601
+ np.float32,0xff5c0ead,0xc2b28786,2
602
+ np.float32,0xff32b952,0xc2b21d01,2
603
+ np.float32,0x7dd27c4e,0x42ae4815,2
604
+ np.float32,0xbf7a6816,0xbf5da7a2,2
605
+ np.float32,0xfeac72f8,0xc2b0a7d1,2
606
+ np.float32,0x335ad7,0x335ad7,2
607
+ np.float32,0xbe682da4,0xbe663bcc,2
608
+ np.float32,0x3f2df244,0x3f22c208,2
609
+ np.float32,0x80686e8e,0x80686e8e,2
610
+ np.float32,0x7f50120f,0x42b26ad9,2
611
+ np.float32,0x3dbc596a,0x3dbc15b3,2
612
+ np.float32,0xbf4f2868,0xbf3d666d,2
613
+ np.float32,0x80000001,0x80000001,2
614
+ np.float32,0xff66c059,0xc2b29fd2,2
615
+ np.float32,0xfe8bbcaa,0xc2b03c1f,2
616
+ np.float32,0x3ece6a51,0x3ec93271,2
617
+ np.float32,0x7f06cd26,0x42b18c9a,2
618
+ np.float32,0x7e41e6dc,0x42af80f5,2
619
+ np.float32,0x7d878334,0x42ad669f,2
620
+ np.float32,0xfe8c5c4c,0xc2b03e67,2
621
+ np.float32,0x337a05,0x337a05,2
622
+ np.float32,0x3e63801d,0x3e61ab58,2
623
+ np.float32,0x62c315,0x62c315,2
624
+ np.float32,0x802aa888,0x802aa888,2
625
+ np.float32,0x80038b43,0x80038b43,2
626
+ np.float32,0xff5c1271,0xc2b2878f,2
627
+ np.float32,0xff4184a5,0xc2b245b9,2
628
+ np.float32,0x7ef58f4b,0x42b15cc6,2
629
+ np.float32,0x7f42d8ac,0x42b2493a,2
630
+ np.float32,0x806609f2,0x806609f2,2
631
+ np.float32,0x801e763b,0x801e763b,2
632
+ np.float32,0x7f2bc073,0x42b208a2,2
633
+ np.float32,0x801d7d7f,0x801d7d7f,2
634
+ np.float32,0x7d415dc1,0x42acb9c2,2
635
+ np.float32,0xbf624ff9,0xbf4c0502,2
636
+ np.float32,0xbf603afd,0xbf4a74e2,2
637
+ np.float32,0x8007fe42,0x8007fe42,2
638
+ np.float32,0x800456db,0x800456db,2
639
+ np.float32,0x620871,0x620871,2
640
+ np.float32,0x3e9c6c1e,0x3e9a15fa,2
641
+ np.float32,0x4245d,0x4245d,2
642
+ np.float32,0x8035bde9,0x8035bde9,2
643
+ np.float32,0xbf597418,0xbf45533c,2
644
+ np.float32,0x3c730f80,0x3c730d38,2
645
+ np.float32,0x3f7cd8ed,0x3f5f6540,2
646
+ np.float32,0x807e49c3,0x807e49c3,2
647
+ np.float32,0x3d6584c0,0x3d65660c,2
648
+ np.float32,0xff42a744,0xc2b248b8,2
649
+ np.float32,0xfedc6f56,0xc2b12583,2
650
+ np.float32,0x806263a4,0x806263a4,2
651
+ np.float32,0x175a17,0x175a17,2
652
+ np.float32,0x3f1e8537,0x3f15d208,2
653
+ np.float32,0x4055b5,0x4055b5,2
654
+ np.float32,0x438aa6,0x438aa6,2
655
+ np.float32,0x8038507f,0x8038507f,2
656
+ np.float32,0xbed75348,0xbed16f85,2
657
+ np.float32,0x7f07b7d6,0x42b19012,2
658
+ np.float32,0xfe8b9d30,0xc2b03bac,2
659
+ np.float32,0x805c501c,0x805c501c,2
660
+ np.float32,0x3ef22b1d,0x3ee9f159,2
661
+ np.float32,0x802b6759,0x802b6759,2
662
+ np.float32,0x45281a,0x45281a,2
663
+ np.float32,0xbf7e9970,0xbf60a3cf,2
664
+ np.float32,0xbf14d152,0xbf0d8062,2
665
+ np.float32,0x3d9ff950,0x3d9fcfc8,2
666
+ np.float32,0x7865d9,0x7865d9,2
667
+ np.float32,0xbee67fa4,0xbedf58eb,2
668
+ np.float32,0x7dc822d1,0x42ae2e44,2
669
+ np.float32,0x3f3af0fe,0x3f2d612c,2
670
+ np.float32,0xbefea106,0xbef5274e,2
671
+ np.float32,0xbf758a3f,0xbf5a28c5,2
672
+ np.float32,0xbf331bdd,0xbf270209,2
673
+ np.float32,0x7f51c901,0x42b26f0d,2
674
+ np.float32,0x3f67c33b,0x3f5014d8,2
675
+ np.float32,0xbbc9d980,0xbbc9d92c,2
676
+ np.float32,0xbc407540,0xbc40741e,2
677
+ np.float32,0x7eed9a3c,0x42b14be9,2
678
+ np.float32,0x1be0fe,0x1be0fe,2
679
+ np.float32,0xbf6b4913,0xbf52af1f,2
680
+ np.float32,0xbda8eba8,0xbda8bac6,2
681
+ np.float32,0x8004bcea,0x8004bcea,2
682
+ np.float32,0xff6f6afe,0xc2b2b2b3,2
683
+ np.float32,0xbf205810,0xbf175e50,2
684
+ np.float32,0x80651944,0x80651944,2
685
+ np.float32,0xbec73016,0xbec27a3f,2
686
+ np.float32,0x5701b9,0x5701b9,2
687
+ np.float32,0xbf1062ce,0xbf09a7df,2
688
+ np.float32,0x3e0306ae,0x3e02abd1,2
689
+ np.float32,0x7bfc62,0x7bfc62,2
690
+ np.float32,0xbf48dd3c,0xbf387a6b,2
691
+ np.float32,0x8009573e,0x8009573e,2
692
+ np.float32,0x660a2c,0x660a2c,2
693
+ np.float32,0xff2280da,0xc2b1ec4b,2
694
+ np.float32,0xbf7034fe,0xbf564a54,2
695
+ np.float32,0xbeeb448e,0xbee3b045,2
696
+ np.float32,0xff4e949c,0xc2b2672b,2
697
+ np.float32,0xbf3c4486,0xbf2e7309,2
698
+ np.float32,0x7eb086d8,0x42b0b3c8,2
699
+ np.float32,0x7eac8aca,0x42b0a817,2
700
+ np.float32,0xfd3d2d60,0xc2acae8b,2
701
+ np.float32,0xbf363226,0xbf2987bd,2
702
+ np.float32,0x7f02e524,0x42b17d8c,2
703
+ np.float32,0x8049a148,0x8049a148,2
704
+ np.float32,0x147202,0x147202,2
705
+ np.float32,0x8031d3f6,0x8031d3f6,2
706
+ np.float32,0xfe78bf68,0xc2b0007d,2
707
+ np.float32,0x7ebd16d0,0x42b0d6fb,2
708
+ np.float32,0xbdaed2e8,0xbdae9cbb,2
709
+ np.float32,0x802833ae,0x802833ae,2
710
+ np.float32,0x7f62adf6,0x42b296b5,2
711
+ np.float32,0xff2841c0,0xc2b1fe1b,2
712
+ np.float32,0xbeb2c47e,0xbeaf523b,2
713
+ np.float32,0x7e42a36e,0x42af82e6,2
714
+ np.float32,0x41ea29,0x41ea29,2
715
+ np.float32,0xbcaaa800,0xbcaaa4d7,2
716
+ np.float64,0x3fed71f27ebae3e5,0x3fea5c6095012ca6,1
717
+ np.float64,0x224dc392449b9,0x224dc392449b9,1
718
+ np.float64,0x3fdf897a7d3f12f5,0x3fde620339360992,1
719
+ np.float64,0xbfe1f99a5123f334,0xbfe124a57cfaf556,1
720
+ np.float64,0xbfd9725c3bb2e4b8,0xbfd8d1e3f75110c7,1
721
+ np.float64,0x3fe38977546712ee,0x3fe27d9d37f4b91f,1
722
+ np.float64,0xbfc36c29e526d854,0xbfc3594743ee45c4,1
723
+ np.float64,0xbfe5cbec332b97d8,0xbfe4638802316849,1
724
+ np.float64,0x2ff35efe5fe6d,0x2ff35efe5fe6d,1
725
+ np.float64,0x7fd3f828e227f051,0x40862a7d4a40b1e0,1
726
+ np.float64,0xffd06fc11620df82,0xc08628ee8f1bf6c8,1
727
+ np.float64,0x3fe5321bf4aa6438,0x3fe3e3d9fa453199,1
728
+ np.float64,0xffd07a323ca0f464,0xc08628f3a2930f8c,1
729
+ np.float64,0x3fdf7abe7abef57c,0x3fde54cb193d49cb,1
730
+ np.float64,0x40941f1881285,0x40941f1881285,1
731
+ np.float64,0xffef18defc7e31bd,0xc0863393f2c9f061,1
732
+ np.float64,0xbfe379f871e6f3f1,0xbfe270620cb68347,1
733
+ np.float64,0xffec829848f90530,0xc08632e210edaa2b,1
734
+ np.float64,0x80070c00574e1801,0x80070c00574e1801,1
735
+ np.float64,0xffce7654b23ceca8,0xc086285291e89975,1
736
+ np.float64,0x7fc9932daa33265a,0x408626ec6cc2b807,1
737
+ np.float64,0x355ee98c6abde,0x355ee98c6abde,1
738
+ np.float64,0x3fac54962c38a920,0x3fac50e40b6c19f2,1
739
+ np.float64,0x800857984af0af31,0x800857984af0af31,1
740
+ np.float64,0x7fea6a3d55f4d47a,0x40863245bf39f179,1
741
+ np.float64,0x3fdb8fab33371f56,0x3fdac5ffc9e1c347,1
742
+ np.float64,0x800a887a7bf510f5,0x800a887a7bf510f5,1
743
+ np.float64,0xbfbdbda3c63b7b48,0xbfbdac9dd5a2d3e8,1
744
+ np.float64,0xbfd4a2457b29448a,0xbfd44acb3b316d6d,1
745
+ np.float64,0x7fd5329a502a6534,0x40862af789b528b5,1
746
+ np.float64,0x3fd96a7bceb2d4f8,0x3fd8ca92104d6cd6,1
747
+ np.float64,0x3fde6a0cd6bcd41a,0x3fdd5f4b85abf749,1
748
+ np.float64,0xbfc7faaff32ff560,0xbfc7d7560b8c4a52,1
749
+ np.float64,0x7fec381b2f787035,0x408632cd0e9c095c,1
750
+ np.float64,0x1fc2eb543f85e,0x1fc2eb543f85e,1
751
+ np.float64,0x7ac6000af58c1,0x7ac6000af58c1,1
752
+ np.float64,0xffe060a87920c150,0xc0862e72c37d5a4e,1
753
+ np.float64,0xbfb7d8c89e2fb190,0xbfb7cffd3c3f8e3a,1
754
+ np.float64,0x3fd91033deb22068,0x3fd87695b067aa1e,1
755
+ np.float64,0x3fec1aff01b835fe,0x3fe95d5cbd729af7,1
756
+ np.float64,0x7fb97f69ec32fed3,0x4086215aaae5c697,1
757
+ np.float64,0x7feaf1e4e5f5e3c9,0x4086326e6ca6a2bb,1
758
+ np.float64,0x800537e44d0a6fc9,0x800537e44d0a6fc9,1
759
+ np.float64,0x800b2a0d0d36541a,0x800b2a0d0d36541a,1
760
+ np.float64,0x3fe2193846e43270,0x3fe140308550138e,1
761
+ np.float64,0x5e2a0a32bc542,0x5e2a0a32bc542,1
762
+ np.float64,0xffe5888b09eb1116,0xc08630a348783aa3,1
763
+ np.float64,0xbfceb9b5033d736c,0xbfce701049c10435,1
764
+ np.float64,0x7fe5d68589abad0a,0x408630c00ce63f23,1
765
+ np.float64,0x8009b5457ff36a8b,0x8009b5457ff36a8b,1
766
+ np.float64,0xbfb5518c2e2aa318,0xbfb54b42638ca718,1
767
+ np.float64,0x3f9c58469838b080,0x3f9c575974fbcd7b,1
768
+ np.float64,0x3fe8db4b4731b697,0x3fe6dc9231587966,1
769
+ np.float64,0x8007d0f77f4fa1f0,0x8007d0f77f4fa1f0,1
770
+ np.float64,0x7fe79eef542f3dde,0x40863160c673c67f,1
771
+ np.float64,0xffbdc0b6163b8170,0xc0862296be4bf032,1
772
+ np.float64,0x3fbb8d3312371a66,0x3fbb7fa76fb4cf8d,1
773
+ np.float64,0xffd8a0eedbb141de,0xc0862c2ac6e512f0,1
774
+ np.float64,0x7fee99d8d87d33b1,0x4086337301c4c8df,1
775
+ np.float64,0xffe7479b552e8f36,0xc0863142fba0f0ec,1
776
+ np.float64,0xffedf8ef4abbf1de,0xc08633488068fe69,1
777
+ np.float64,0x895c4d9f12b8a,0x895c4d9f12b8a,1
778
+ np.float64,0x29b4caf05369a,0x29b4caf05369a,1
779
+ np.float64,0xbfefb90d657f721b,0xbfec01efa2425b35,1
780
+ np.float64,0xde07c3bdbc0f9,0xde07c3bdbc0f9,1
781
+ np.float64,0x7feae9fd02f5d3f9,0x4086326c1368ed5a,1
782
+ np.float64,0x3feab792da756f26,0x3fe84f6e15338ed7,1
783
+ np.float64,0xbfeff8ed72fff1db,0xbfec2f35da06daaf,1
784
+ np.float64,0x8004b2c132896583,0x8004b2c132896583,1
785
+ np.float64,0xbf9fcb00103f9600,0xbf9fc9b1751c569e,1
786
+ np.float64,0x4182b72e83058,0x4182b72e83058,1
787
+ np.float64,0x90820d812105,0x90820d812105,1
788
+ np.float64,0xbfdec9a0ba3d9342,0xbfddb585df607ce1,1
789
+ np.float64,0x7fdc0a69a03814d2,0x40862d347f201b63,1
790
+ np.float64,0xbfef0708937e0e11,0xbfeb82d27f8ea97f,1
791
+ np.float64,0xffda57e4ddb4afca,0xc0862cb49e2e0c4c,1
792
+ np.float64,0xbfa30b9af4261730,0xbfa30a7b4a633060,1
793
+ np.float64,0x7feb57fcc4b6aff9,0x4086328c83957a0b,1
794
+ np.float64,0x7fe6759153eceb22,0x408630f980433963,1
795
+ np.float64,0x7fdd3278c8ba64f1,0x40862d87445243e9,1
796
+ np.float64,0xd3b8e6b9a771d,0xd3b8e6b9a771d,1
797
+ np.float64,0x6267dc88c4cfc,0x6267dc88c4cfc,1
798
+ np.float64,0x7fedd3cf00bba79d,0x4086333e91712ff5,1
799
+ np.float64,0xffbe512ce03ca258,0xc08622bd39314cea,1
800
+ np.float64,0xbfe71742ca6e2e86,0xbfe572ccbf2d010d,1
801
+ np.float64,0x8002fb048c65f60a,0x8002fb048c65f60a,1
802
+ np.float64,0x800d9d9ddf7b3b3c,0x800d9d9ddf7b3b3c,1
803
+ np.float64,0xbfeaf6230df5ec46,0xbfe87f5d751ec3d5,1
804
+ np.float64,0xbfe69973a42d32e8,0xbfe50c680f7002fe,1
805
+ np.float64,0x3fe309cf87e613a0,0x3fe21048714ce1ac,1
806
+ np.float64,0x800435d17a286ba4,0x800435d17a286ba4,1
807
+ np.float64,0x7fefffffffffffff,0x408633ce8fb9f87e,1
808
+ np.float64,0x3fe36ade1766d5bc,0x3fe26379fb285dde,1
809
+ np.float64,0x3f98d8d94831b1c0,0x3f98d839885dc527,1
810
+ np.float64,0xbfd08f7ae5211ef6,0xbfd0618ab5293e1e,1
811
+ np.float64,0xbfcf630bd53ec618,0xbfcf14a0cd20704d,1
812
+ np.float64,0xbfe58f0ca6eb1e1a,0xbfe4312225df8e28,1
813
+ np.float64,0xffef4f6406be9ec7,0xc08633a1ed1d27e5,1
814
+ np.float64,0x7fe10120b3e20240,0x40862ebfaf94e6e8,1
815
+ np.float64,0xffe96c52fbb2d8a5,0xc08631f75d9a59a0,1
816
+ np.float64,0xbfe448a333e89146,0xbfe31fee44c3ec43,1
817
+ np.float64,0x80045ff4e788bfeb,0x80045ff4e788bfeb,1
818
+ np.float64,0x7fefaa2f823f545e,0x408633b8fea29524,1
819
+ np.float64,0xffea6b8bf234d717,0xc0863246248e5960,1
820
+ np.float64,0xbfdb085d80b610bc,0xbfda498b15b43eec,1
821
+ np.float64,0xbfd5e12da3abc25c,0xbfd57970e2b8aecc,1
822
+ np.float64,0x3fcc84928a390925,0x3fcc497c417a89f3,1
823
+ np.float64,0xbfdcb713bf396e28,0xbfdbd46c5e731fd9,1
824
+ np.float64,0xffdf50c0453ea180,0xc0862e16b5562f25,1
825
+ np.float64,0x800342c2f7268587,0x800342c2f7268587,1
826
+ np.float64,0x7feb8b6d743716da,0x4086329b8248de2c,1
827
+ np.float64,0x800a9b18b4953632,0x800a9b18b4953632,1
828
+ np.float64,0xffedaf0d12fb5e19,0xc0863334af82de1a,1
829
+ np.float64,0x800aebda4ab5d7b5,0x800aebda4ab5d7b5,1
830
+ np.float64,0xbfa9f5848433eb10,0xbfa9f2ac7ac065d4,1
831
+ np.float64,0x3fea375928f46eb2,0x3fe7ec9f10eeac7d,1
832
+ np.float64,0x3fd6c213fead8428,0x3fd64dcc1eff5f1b,1
833
+ np.float64,0xbfa0476f44208ee0,0xbfa046bb986007ac,1
834
+ np.float64,0x6c8e18aed91c4,0x6c8e18aed91c4,1
835
+ np.float64,0x8000000000000001,0x8000000000000001,1
836
+ np.float64,0x7fea86b5ba350d6a,0x4086324e59f13027,1
837
+ np.float64,0x2316c3b0462d9,0x2316c3b0462d9,1
838
+ np.float64,0x3fec4e3281389c65,0x3fe983c5c9d65940,1
839
+ np.float64,0x3fbb87c47f772,0x3fbb87c47f772,1
840
+ np.float64,0x8004af00fdc95e03,0x8004af00fdc95e03,1
841
+ np.float64,0xbfd316db9ba62db8,0xbfd2d12765b9d155,1
842
+ np.float64,0x3fec1a7a99f834f6,0x3fe95cf941889b3d,1
843
+ np.float64,0x3feff7e1477fefc3,0x3fec2e782392d4b9,1
844
+ np.float64,0xbfc683ea042d07d4,0xbfc66698cfa5026e,1
845
+ np.float64,0x3fdbc8aaa9b79154,0x3fdafa50e6fc3fff,1
846
+ np.float64,0xfb3b630ff676d,0xfb3b630ff676d,1
847
+ np.float64,0x7fe715ef8eae2bde,0x40863131d794b41f,1
848
+ np.float64,0x7fefa06c11bf40d7,0x408633b686c7996a,1
849
+ np.float64,0x80002a40f5205483,0x80002a40f5205483,1
850
+ np.float64,0x7fe95f3c74b2be78,0x408631f33e37bf76,1
851
+ np.float64,0x3fb2977b32252ef0,0x3fb2934eaf5a4be8,1
852
+ np.float64,0x3fc0f3dbc821e7b8,0x3fc0e745288c84c3,1
853
+ np.float64,0x3fda98da56b531b5,0x3fd9e2b19447dacc,1
854
+ np.float64,0x3f95b9d5202b73aa,0x3f95b96a53282949,1
855
+ np.float64,0x3fdc1ace7738359d,0x3fdb4597d31df7ff,1
856
+ np.float64,0xffeac5bb2e358b76,0xc0863261452ab66c,1
857
+ np.float64,0xbfefb1b78f7f636f,0xbfebfcb9be100ced,1
858
+ np.float64,0xf5c9e191eb93c,0xf5c9e191eb93c,1
859
+ np.float64,0x3fe83a977630752f,0x3fe65d0df90ff6ef,1
860
+ np.float64,0x3fc317515d262ea0,0x3fc3056072b719f0,1
861
+ np.float64,0x7fe2dcfab225b9f4,0x40862f94257c28a2,1
862
+ np.float64,0xca2b115794562,0xca2b115794562,1
863
+ np.float64,0x3fd495301aa92a60,0x3fd43e57108761d5,1
864
+ np.float64,0x800ccc4293199885,0x800ccc4293199885,1
865
+ np.float64,0xc8d3173d91a63,0xc8d3173d91a63,1
866
+ np.float64,0xbf2541bb7e4a8,0xbf2541bb7e4a8,1
867
+ np.float64,0xbfe9a330df334662,0xbfe779816573f5be,1
868
+ np.float64,0xffd5e4c8252bc990,0xc0862b39b3ca5d72,1
869
+ np.float64,0x3fe90f3a53721e75,0x3fe70585ae09531d,1
870
+ np.float64,0xbfe2b5ddc7a56bbc,0xbfe1c7fa91a675ed,1
871
+ np.float64,0xbf981a0360303400,0xbf9819719345073a,1
872
+ np.float64,0x19174b0e322ea,0x19174b0e322ea,1
873
+ np.float64,0xbfd2f71a1725ee34,0xbfd2b2b6f7cd10b1,1
874
+ np.float64,0x80056e83236add07,0x80056e83236add07,1
875
+ np.float64,0x7fe4bc41d9697883,0x40863055f20ce0cb,1
876
+ np.float64,0xffe76e06c46edc0d,0xc086315024b25559,1
877
+ np.float64,0x3fe3c4f0f96789e2,0x3fe2b04b584609bf,1
878
+ np.float64,0x3fe6cfc533ed9f8a,0x3fe538b4d784d5ee,1
879
+ np.float64,0x7fd234a640a4694c,0x408629bfead4f0b2,1
880
+ np.float64,0x3fdbc49c9ab78939,0x3fdaf698a83d08e2,1
881
+ np.float64,0x3fe4c5336ee98a66,0x3fe388c6ddb60e0a,1
882
+ np.float64,0xf4b9497be9729,0xf4b9497be9729,1
883
+ np.float64,0x3fb312be12262580,0x3fb30e3c847c1d16,1
884
+ np.float64,0x3fe9554218f2aa84,0x3fe73c8b311c7a98,1
885
+ np.float64,0xff899816a0333040,0xc08610bfb2cd8559,1
886
+ np.float64,0x8006008ad52c0116,0x8006008ad52c0116,1
887
+ np.float64,0x3fd7d47be4afa8f8,0x3fd74fa71ec17fd0,1
888
+ np.float64,0x8010000000000000,0x8010000000000000,1
889
+ np.float64,0xdf2a9943be553,0xdf2a9943be553,1
890
+ np.float64,0xbfeb86bf1eb70d7e,0xbfe8ed797580ba5c,1
891
+ np.float64,0x800e2c0c28bc5818,0x800e2c0c28bc5818,1
892
+ np.float64,0xbfe2be65d4657ccc,0xbfe1cf578dec2323,1
893
+ np.float64,0xbfedea3a5afbd475,0xbfeab490bf05e585,1
894
+ np.float64,0xbfe04b1583a0962b,0xbfdf523dfd7be25c,1
895
+ np.float64,0x75929bb4eb254,0x75929bb4eb254,1
896
+ np.float64,0x3fd7b4968caf692d,0x3fd731c0938ff97c,1
897
+ np.float64,0x60bd8fd2c17b3,0x60bd8fd2c17b3,1
898
+ np.float64,0xbfdaf15e70b5e2bc,0xbfda345a95ce18fe,1
899
+ np.float64,0x7fdd7c35c2baf86b,0x40862d9b5f40c6b2,1
900
+ np.float64,0x7feeb4d2ab7d69a4,0x4086337a0c0dffaf,1
901
+ np.float64,0xffe65b5a1decb6b4,0xc08630f024420efb,1
902
+ np.float64,0x7feb272b30764e55,0x4086327e2e553aa2,1
903
+ np.float64,0x3fd27513e8a4ea28,0x3fd235ea49670f6a,1
904
+ np.float64,0x3fe6541a6aeca834,0x3fe4d3a5b69fd1b6,1
905
+ np.float64,0xbfe0c6ca0f618d94,0xbfe017058259efdb,1
906
+ np.float64,0x7fc1bf07b7237e0e,0x4086240000fa5a52,1
907
+ np.float64,0x7fe96af9c0f2d5f3,0x408631f6f0f4faa2,1
908
+ np.float64,0x3fe0728be7a0e518,0x3fdf9881a5869de9,1
909
+ np.float64,0xffe8ea4441b1d488,0xc08631ce0685ae7e,1
910
+ np.float64,0xffd0b973f02172e8,0xc08629121e7fdf85,1
911
+ np.float64,0xffe37b907a26f720,0xc0862fd6529401a0,1
912
+ np.float64,0x3fe0ee826461dd05,0x3fe03a2a424a1b40,1
913
+ np.float64,0xbfe8073c92300e79,0xbfe6340cbd179ac1,1
914
+ np.float64,0x800768383f8ed071,0x800768383f8ed071,1
915
+ np.float64,0x8002e467c7c5c8d0,0x8002e467c7c5c8d0,1
916
+ np.float64,0xbfd8d53ea5b1aa7e,0xbfd83fa7243289d7,1
917
+ np.float64,0xffebefce2bb7df9c,0xc08632b874f4f8dc,1
918
+ np.float64,0xffe3be9eb9277d3d,0xc0862ff1ac70ad0b,1
919
+ np.float64,0xffe2f8a82e65f150,0xc0862f9fd9e77d86,1
920
+ np.float64,0xbfa01d151c203a30,0xbfa01c66dc13a70a,1
921
+ np.float64,0x800877062d30ee0d,0x800877062d30ee0d,1
922
+ np.float64,0xaade16a755bc3,0xaade16a755bc3,1
923
+ np.float64,0xbfeb1abc70363579,0xbfe89b52c3b003aa,1
924
+ np.float64,0x80097d0b2ad2fa17,0x80097d0b2ad2fa17,1
925
+ np.float64,0x8001499907429333,0x8001499907429333,1
926
+ np.float64,0x3fe8db2aaf71b656,0x3fe6dc7873f1b235,1
927
+ np.float64,0x5cfeadc4b9fd6,0x5cfeadc4b9fd6,1
928
+ np.float64,0xff3f77d1fe7ef,0xff3f77d1fe7ef,1
929
+ np.float64,0xffeecd56f9bd9aad,0xc08633806cb1163d,1
930
+ np.float64,0xbf96f3ca582de7a0,0xbf96f34c6b8e1c85,1
931
+ np.float64,0x7ed6b44afdad7,0x7ed6b44afdad7,1
932
+ np.float64,0x80071808da4e3012,0x80071808da4e3012,1
933
+ np.float64,0x3feb8aee2bf715dc,0x3fe8f0a55516615c,1
934
+ np.float64,0x800038f62e2071ed,0x800038f62e2071ed,1
935
+ np.float64,0x3fb13f9af2227f30,0x3fb13c456ced8e08,1
936
+ np.float64,0xffd584d1812b09a4,0xc0862b165558ec0c,1
937
+ np.float64,0x800b20c30fb64186,0x800b20c30fb64186,1
938
+ np.float64,0x80024f9646e49f2d,0x80024f9646e49f2d,1
939
+ np.float64,0xffefffffffffffff,0xc08633ce8fb9f87e,1
940
+ np.float64,0x3fdddbcb5bbbb797,0x3fdcde981111f650,1
941
+ np.float64,0xffed14077f3a280e,0xc086330a795ad634,1
942
+ np.float64,0x800fec2da7ffd85b,0x800fec2da7ffd85b,1
943
+ np.float64,0x3fe8205ffc7040c0,0x3fe6482318d217f9,1
944
+ np.float64,0x3013e5226027d,0x3013e5226027d,1
945
+ np.float64,0xffe4e5aad469cb55,0xc0863065dc2fb4e3,1
946
+ np.float64,0x5cb0f7b2b9620,0x5cb0f7b2b9620,1
947
+ np.float64,0xbfeb4537d2768a70,0xbfe8bbb2c1d3bff9,1
948
+ np.float64,0xbfd859e297b0b3c6,0xbfd7cc807948bf9d,1
949
+ np.float64,0x71f00b8ce3e02,0x71f00b8ce3e02,1
950
+ np.float64,0xf5c1b875eb837,0xf5c1b875eb837,1
951
+ np.float64,0xa0f35c8141e8,0xa0f35c8141e8,1
952
+ np.float64,0xffe24860b42490c1,0xc0862f54222f616e,1
953
+ np.float64,0xffcd9ae8583b35d0,0xc08628181e643a42,1
954
+ np.float64,0x7fe9b710c7736e21,0x4086320ec033490f,1
955
+ np.float64,0x3fd2b9ca1d257394,0x3fd277e631f0c0b3,1
956
+ np.float64,0x23559bfc46ab4,0x23559bfc46ab4,1
957
+ np.float64,0x8002adf75e455bef,0x8002adf75e455bef,1
958
+ np.float64,0xbfefa4d75cbf49af,0xbfebf392e51d6a1a,1
959
+ np.float64,0xffcfef263e3fde4c,0xc08628b336adb611,1
960
+ np.float64,0x80061acaa8ec3596,0x80061acaa8ec3596,1
961
+ np.float64,0x7fc1b33be0236677,0x408623faaddcc17e,1
962
+ np.float64,0x7fe3a84083675080,0x40862fe8972e41e1,1
963
+ np.float64,0xbfe756c1276ead82,0xbfe5a6318b061e1b,1
964
+ np.float64,0xbfae4b71b43c96e0,0xbfae46ed0b6203a4,1
965
+ np.float64,0x800421c6d0a8438e,0x800421c6d0a8438e,1
966
+ np.float64,0x8009ad56fe335aae,0x8009ad56fe335aae,1
967
+ np.float64,0xbfe71afc976e35f9,0xbfe575d21f3d7193,1
968
+ np.float64,0x7fec0bbe4c38177c,0x408632c0710f1d8a,1
969
+ np.float64,0x750e1daeea1c4,0x750e1daeea1c4,1
970
+ np.float64,0x800501d4240a03a9,0x800501d4240a03a9,1
971
+ np.float64,0x800794955cef292b,0x800794955cef292b,1
972
+ np.float64,0x3fdf8a87f5bf1510,0x3fde62f4f00cfa19,1
973
+ np.float64,0xbfebebdbc7f7d7b8,0xbfe939e51ba1340c,1
974
+ np.float64,0xbfe3a16217a742c4,0xbfe292039dd08a71,1
975
+ np.float64,0x3fed6cd04c3ad9a1,0x3fea58995973f74b,1
976
+ np.float64,0xffcad8787335b0f0,0xc086274fbb35dd37,1
977
+ np.float64,0x3fcb178e3d362f1c,0x3fcae4c9f3e6dddc,1
978
+ np.float64,0xbfcadc669435b8cc,0xbfcaaae7cf075420,1
979
+ np.float64,0x7fe0e3906321c720,0x40862eb1bacc5c43,1
980
+ np.float64,0xff8ad5edb035abc0,0xc0861120b6404d0b,1
981
+ np.float64,0x3fe175a21562eb44,0x3fe0b13120a46549,1
982
+ np.float64,0xbfeb4c4a5f769895,0xbfe8c1147f1c9d8f,1
983
+ np.float64,0x7fca22f4e63445e9,0x40862718e9b4094e,1
984
+ np.float64,0x3fe4269d0c684d3a,0x3fe3032aa2015c53,1
985
+ np.float64,0x3fef551c09beaa38,0x3febbabe03f49c83,1
986
+ np.float64,0xffd843df9fb087c0,0xc0862c0c52d5e5d9,1
987
+ np.float64,0x7fc497e2ca292fc5,0x40862530bbd9fcc7,1
988
+ np.float64,0x3fee02919efc0523,0x3feac655588a4acd,1
989
+ np.float64,0x7fed1e52c0fa3ca5,0x4086330d4ddd8a2c,1
990
+ np.float64,0xba04d4ef7409b,0xba04d4ef7409b,1
991
+ np.float64,0x3fee22d0937c45a2,0x3feaddd4ca66b447,1
992
+ np.float64,0xffeb2558cf764ab1,0xc086327da4e84053,1
993
+ np.float64,0xbfe103d987e207b3,0xbfe04d04818ad1ff,1
994
+ np.float64,0x3f9fd7fed03faffe,0x3f9fd6ae9a45be84,1
995
+ np.float64,0x800a53ec4c34a7d9,0x800a53ec4c34a7d9,1
996
+ np.float64,0xbfe2feb17f65fd63,0xbfe206b9d33a78a2,1
997
+ np.float64,0x989bdd613139,0x989bdd613139,1
998
+ np.float64,0xbfdd0ad3fb3a15a8,0xbfdc20c32a530741,1
999
+ np.float64,0xbfc4222163284444,0xbfc40d1c612784b5,1
1000
+ np.float64,0xc30cf5c78619f,0xc30cf5c78619f,1
1001
+ np.float64,0x3fe913bd6732277b,0x3fe70912f76bad71,1
1002
+ np.float64,0x98f175f531e2f,0x98f175f531e2f,1
1003
+ np.float64,0x3fed8c1f717b183f,0x3fea6f9fb3af3423,1
1004
+ np.float64,0x7fee46b085bc8d60,0x4086335d269eb7e9,1
1005
+ np.float64,0x8007480f564e901f,0x8007480f564e901f,1
1006
+ np.float64,0xc9b96e179372e,0xc9b96e179372e,1
1007
+ np.float64,0x3fe44deac4289bd6,0x3fe32463a74a69e7,1
1008
+ np.float64,0x80021d6c5c243ad9,0x80021d6c5c243ad9,1
1009
+ np.float64,0xbfebc805a6f7900b,0xbfe91edcf65a1c19,1
1010
+ np.float64,0x80044748adc88e92,0x80044748adc88e92,1
1011
+ np.float64,0x4007ee44800fe,0x4007ee44800fe,1
1012
+ np.float64,0xbfe24307a4648610,0xbfe1648ad5c47b6f,1
1013
+ np.float64,0xbfee6d3a93fcda75,0xbfeb13e1a3196e78,1
1014
+ np.float64,0x3fe49a287f293451,0x3fe364a11b9f0068,1
1015
+ np.float64,0x80052b37ceaa5670,0x80052b37ceaa5670,1
1016
+ np.float64,0xbfd42be893a857d2,0xbfd3da05dac7c286,1
1017
+ np.float64,0xffb4bbe4ac2977c8,0xc0861fb31bda6956,1
1018
+ np.float64,0xbfc732a4142e6548,0xbfc7129a4eafa399,1
1019
+ np.float64,0x7fd0696791a0d2ce,0x408628eb7756cb9c,1
1020
+ np.float64,0x3fe46c8f8d68d91f,0x3fe33e3df16187c1,1
1021
+ np.float64,0x3fe3a28f1ce7451e,0x3fe293043238d08c,1
1022
+ np.float64,0xffedc4eb723b89d6,0xc086333a92258c15,1
1023
+ np.float64,0x8000d15b4c41a2b7,0x8000d15b4c41a2b7,1
1024
+ np.float64,0xffeb73450236e689,0xc08632947b0148ab,1
1025
+ np.float64,0xffe68cf4722d19e8,0xc0863101d08d77bd,1
1026
+ np.float64,0x800c70eb4698e1d7,0x800c70eb4698e1d7,1
1027
+ np.float64,0xffa94387ff529,0xffa94387ff529,1
1028
+ np.float64,0x7fe3835d996706ba,0x40862fd985ff8e7d,1
1029
+ np.float64,0x3fe55e476feabc8e,0x3fe408a15594ec52,1
1030
+ np.float64,0xffc69672222d2ce4,0xc08625ee0c4c0f6a,1
1031
+ np.float64,0xbf9d900b883b2020,0xbf9d8efe811d36df,1
1032
+ np.float64,0xbfdb9b9755b7372e,0xbfdad0f2aa2cb110,1
1033
+ np.float64,0xffeade6073b5bcc0,0xc08632689f17a25d,1
1034
+ np.float64,0xffd1d6a6baa3ad4e,0xc086299630a93a7b,1
1035
+ np.float64,0x7fd05ba25620b744,0x408628e4be1ef845,1
1036
+ np.float64,0xbfc7d422d52fa844,0xbfc7b170a61531bf,1
1037
+ np.float64,0x3fd5196797aa32d0,0x3fd4bc0f0e7d8e1d,1
1038
+ np.float64,0x617594a4c2eb3,0x617594a4c2eb3,1
1039
+ np.float64,0x7fd779bc4caef378,0x40862bc89271b882,1
1040
+ np.float64,0xffd2fb262ba5f64c,0xc0862a15561e9524,1
1041
+ np.float64,0x72fd661ae5fad,0x72fd661ae5fad,1
1042
+ np.float64,0x3fecf441f339e884,0x3fe9ff880d584f64,1
1043
+ np.float64,0x7fc3a8968827512c,0x408624d198b05c61,1
1044
+ np.float64,0x3fe7a25c56ef44b9,0x3fe5e32509a7c32d,1
1045
+ np.float64,0x7fd117d514222fa9,0x4086293ec640d5f2,1
1046
+ np.float64,0x3fe37dfe5ee6fbfc,0x3fe273d1bcaa1ef0,1
1047
+ np.float64,0xbfed4cd19d7a99a3,0xbfea41064cba4c8b,1
1048
+ np.float64,0x8003ff12aaa7fe26,0x8003ff12aaa7fe26,1
1049
+ np.float64,0x3fcbc3d1193787a2,0x3fcb8d39e3e88264,1
1050
+ np.float64,0xe9ba1a91d3744,0xe9ba1a91d3744,1
1051
+ np.float64,0x8002ab71998556e4,0x8002ab71998556e4,1
1052
+ np.float64,0x800110057922200c,0x800110057922200c,1
1053
+ np.float64,0xbfe3b7af19a76f5e,0xbfe2a502fc0a2882,1
1054
+ np.float64,0x7fd9de9d5e33bd3a,0x40862c8f73cccabf,1
1055
+ np.float64,0xbfba0f0a86341e18,0xbfba0392f44c2771,1
1056
+ np.float64,0x8000000000000000,0x8000000000000000,1
1057
+ np.float64,0x7fe5d162e96ba2c5,0x408630be2b15e01b,1
1058
+ np.float64,0x800b7f0eac76fe1e,0x800b7f0eac76fe1e,1
1059
+ np.float64,0xff98bed150317da0,0xc086160633164f5f,1
1060
+ np.float64,0x3fef91fd70ff23fb,0x3febe629709d0ae7,1
1061
+ np.float64,0x7fe5bea7f16b7d4f,0x408630b749f445e9,1
1062
+ np.float64,0xbfe3dc428467b885,0xbfe2c41ea93fab07,1
1063
+ np.float64,0xbfeba1fbfcf743f8,0xbfe9021b52851bb9,1
1064
+ np.float64,0x7fd2fb2108a5f641,0x40862a1553f45830,1
1065
+ np.float64,0x7feb8199a4370332,0x40863298a7169dad,1
1066
+ np.float64,0x800f97ff8d7f2fff,0x800f97ff8d7f2fff,1
1067
+ np.float64,0x3fd5e20b6b2bc417,0x3fd57a42bd1c0993,1
1068
+ np.float64,0x8006b4072dad680f,0x8006b4072dad680f,1
1069
+ np.float64,0x605dccf2c0bba,0x605dccf2c0bba,1
1070
+ np.float64,0x3fc705ed142e0bda,0x3fc6e69971d86f73,1
1071
+ np.float64,0xffd2ba1aad257436,0xc08629f9bc918f8b,1
1072
+ np.float64,0x8002954e23c52a9d,0x8002954e23c52a9d,1
1073
+ np.float64,0xbfecc65da7798cbb,0xbfe9dd745be18562,1
1074
+ np.float64,0x7fc66110482cc220,0x408625db0db57ef8,1
1075
+ np.float64,0x3fcd09446d3a1289,0x3fcccaf2dd0a41ea,1
1076
+ np.float64,0x3febe7095437ce13,0x3fe93642d1e73b2a,1
1077
+ np.float64,0x8004773c7da8ee7a,0x8004773c7da8ee7a,1
1078
+ np.float64,0x8001833241230665,0x8001833241230665,1
1079
+ np.float64,0x3fe6a262db6d44c6,0x3fe513b3dab5adce,1
1080
+ np.float64,0xe6282cc1cc506,0xe6282cc1cc506,1
1081
+ np.float64,0x800b9d8553973b0b,0x800b9d8553973b0b,1
1082
+ np.float64,0x3fdfbe0c7b3f7c19,0x3fde912375d867a8,1
1083
+ np.float64,0x7fd5ac11ebab5823,0x40862b24dfc6d08e,1
1084
+ np.float64,0x800e4b7cb1fc96f9,0x800e4b7cb1fc96f9,1
1085
+ np.float64,0x3fe14706da628e0e,0x3fe0883aec2a917a,1
1086
+ np.float64,0x7fc963f97532c7f2,0x408626dd9b0cafe1,1
1087
+ np.float64,0xbfe9c250b5b384a2,0xbfe791c5eabcb05d,1
1088
+ np.float64,0x3fe8d16e6c71a2dd,0x3fe6d4c7a33a0bf4,1
1089
+ np.float64,0x3fe474ae4628e95d,0x3fe34515c93f4733,1
1090
+ np.float64,0x3fbf3257ee3e64b0,0x3fbf1eb530e126ea,1
1091
+ np.float64,0x8005f089b3abe114,0x8005f089b3abe114,1
1092
+ np.float64,0x3fece07bccf9c0f8,0x3fe9f0dc228124d5,1
1093
+ np.float64,0xbfc52521632a4a44,0xbfc50ccebdf59c2c,1
1094
+ np.float64,0x7fdf53beb13ea77c,0x40862e177918195e,1
1095
+ np.float64,0x8003d9f6ad07b3ee,0x8003d9f6ad07b3ee,1
1096
+ np.float64,0xffeacf96bbb59f2d,0xc086326436b38b1a,1
1097
+ np.float64,0xdccaea29b995e,0xdccaea29b995e,1
1098
+ np.float64,0x5948d21eb291b,0x5948d21eb291b,1
1099
+ np.float64,0x10000000000000,0x10000000000000,1
1100
+ np.float64,0x7fef6d2c543eda58,0x408633a98593cdf5,1
1101
+ np.float64,0x7feda454f47b48a9,0x40863331cb6dc9f7,1
1102
+ np.float64,0x3fdd377cecba6ef8,0x3fdc4968f74a9c83,1
1103
+ np.float64,0x800644096d4c8814,0x800644096d4c8814,1
1104
+ np.float64,0xbfe33ca15ae67942,0xbfe23be5de832bd8,1
1105
+ np.float64,0xffce9582bd3d2b04,0xc086285abdf9bf9d,1
1106
+ np.float64,0x3fe6621e86acc43d,0x3fe4df231bfa93e1,1
1107
+ np.float64,0xee7d19e9dcfa3,0xee7d19e9dcfa3,1
1108
+ np.float64,0x800be5997277cb33,0x800be5997277cb33,1
1109
+ np.float64,0x82069041040e,0x82069041040e,1
1110
+ np.float64,0x800d6efdc19addfc,0x800d6efdc19addfc,1
1111
+ np.float64,0x7fb27770ee24eee1,0x40861ec5ed91b839,1
1112
+ np.float64,0x3fd506064caa0c0d,0x3fd4a9a66353fefd,1
1113
+ np.float64,0xbfeca9b36bf95367,0xbfe9c81f03ba37b8,1
1114
+ np.float64,0xffeab1b7bab5636f,0xc086325b47f61f2b,1
1115
+ np.float64,0xffc99f5b2e333eb8,0xc08626f03b08b412,1
1116
+ np.float64,0x3fbf1a71bc3e34e3,0x3fbf06fbcaa5de58,1
1117
+ np.float64,0x3fe75015736ea02b,0x3fe5a0cd8d763d8d,1
1118
+ np.float64,0xffe6a7442fad4e88,0xc086310b20addba4,1
1119
+ np.float64,0x3fe5d62ff86bac60,0x3fe46c033195bf28,1
1120
+ np.float64,0x7fd0b1f0362163df,0x4086290e857dc1be,1
1121
+ np.float64,0xbe0353737c06b,0xbe0353737c06b,1
1122
+ np.float64,0x7fec912d8739225a,0x408632e627704635,1
1123
+ np.float64,0xded8ba2fbdb18,0xded8ba2fbdb18,1
1124
+ np.float64,0x7fec0b53fdf816a7,0x408632c052bc1bd2,1
1125
+ np.float64,0x7fe9640d12b2c819,0x408631f4c2ba54d8,1
1126
+ np.float64,0x800be714eeb7ce2a,0x800be714eeb7ce2a,1
1127
+ np.float64,0xbfcf444a793e8894,0xbfcef6c126b54853,1
1128
+ np.float64,0xffeb20cf1bf6419e,0xc086327c4e6ffe80,1
1129
+ np.float64,0xc07de22180fd,0xc07de22180fd,1
1130
+ np.float64,0xffed129d387a253a,0xc086330a15ad0adb,1
1131
+ np.float64,0x3fd9e94fedb3d2a0,0x3fd94049924706a8,1
1132
+ np.float64,0x7fe6ba488c2d7490,0x40863111d51e7861,1
1133
+ np.float64,0xbfebbdf25db77be5,0xbfe91740ad7ba521,1
1134
+ np.float64,0x7fbc6c3c4838d878,0x40862239160cb613,1
1135
+ np.float64,0xbfefa82ecebf505e,0xbfebf5f31957dffd,1
1136
+ np.float64,0x800bebeb7ad7d7d7,0x800bebeb7ad7d7d7,1
1137
+ np.float64,0x7fecccc6f8f9998d,0x408632f6c6da8aac,1
1138
+ np.float64,0xcbe4926197ca,0xcbe4926197ca,1
1139
+ np.float64,0x2c5d9fd858bb5,0x2c5d9fd858bb5,1
1140
+ np.float64,0xbfe9fb021073f604,0xbfe7bddc61f1151a,1
1141
+ np.float64,0xbfebb18572f7630b,0xbfe90ddc5002313f,1
1142
+ np.float64,0x13bb0d3227763,0x13bb0d3227763,1
1143
+ np.float64,0x3feefa5e5cbdf4bd,0x3feb79b9e8ce16bf,1
1144
+ np.float64,0x3fc97f086132fe10,0x3fc9549fc8e15ecb,1
1145
+ np.float64,0xffe70887c06e110f,0xc086312d30fd31cf,1
1146
+ np.float64,0xa00c113540182,0xa00c113540182,1
1147
+ np.float64,0x800950984772a131,0x800950984772a131,1
1148
+ np.float64,0x1,0x1,1
1149
+ np.float64,0x3fd83b4026b07680,0x3fd7afdc659d9a34,1
1150
+ np.float64,0xbfe32348fbe64692,0xbfe226292a706a1a,1
1151
+ np.float64,0x800b894dcc77129c,0x800b894dcc77129c,1
1152
+ np.float64,0xeb2ca419d6595,0xeb2ca419d6595,1
1153
+ np.float64,0xbff0000000000000,0xbfec34366179d427,1
1154
+ np.float64,0x3feb269e99f64d3d,0x3fe8a4634b927a21,1
1155
+ np.float64,0xbfe83149d7706294,0xbfe655a2b245254e,1
1156
+ np.float64,0xbfe6eef3ca6ddde8,0xbfe5521310e24d16,1
1157
+ np.float64,0x3fea89a4b7b51349,0x3fe82c1fc69edcec,1
1158
+ np.float64,0x800f2a8bf17e5518,0x800f2a8bf17e5518,1
1159
+ np.float64,0x800f71fac29ee3f6,0x800f71fac29ee3f6,1
1160
+ np.float64,0xe7cb31f1cf966,0xe7cb31f1cf966,1
1161
+ np.float64,0x3b0f8752761f2,0x3b0f8752761f2,1
1162
+ np.float64,0x3fea27dea3744fbd,0x3fe7e0a4705476b2,1
1163
+ np.float64,0xbfa97c019c32f800,0xbfa97950c1257b92,1
1164
+ np.float64,0xffeff13647ffe26c,0xc08633cadc7105ed,1
1165
+ np.float64,0x3feee162353dc2c4,0x3feb67c2da0fbce8,1
1166
+ np.float64,0x80088c0807911810,0x80088c0807911810,1
1167
+ np.float64,0x3fe936ab1db26d56,0x3fe72489bc69719d,1
1168
+ np.float64,0xa2f84bd545f0a,0xa2f84bd545f0a,1
1169
+ np.float64,0xbfed445ed27a88be,0xbfea3acac0aaf482,1
1170
+ np.float64,0x800faf3e69df5e7d,0x800faf3e69df5e7d,1
1171
+ np.float64,0x3fc145a330228b46,0x3fc13853f11b1c90,1
1172
+ np.float64,0xbfe25ec5abe4bd8c,0xbfe17c9e9b486f07,1
1173
+ np.float64,0x3fe119b160e23363,0x3fe0604b10178966,1
1174
+ np.float64,0x7fe0cbf2836197e4,0x40862ea6831e5f4a,1
1175
+ np.float64,0x3fe75dd3b4eebba8,0x3fe5abe80fd628fb,1
1176
+ np.float64,0x3f7c391000387220,0x3f7c39015d8f3a36,1
1177
+ np.float64,0x899d9cad133b4,0x899d9cad133b4,1
1178
+ np.float64,0x3fe5f0e34febe1c6,0x3fe4820cefe138fc,1
1179
+ np.float64,0x7fe060dfdba0c1bf,0x40862e72de8afcd0,1
1180
+ np.float64,0xbfae42f7103c85f0,0xbfae3e7630819c60,1
1181
+ np.float64,0x35f1f2c06be5,0x35f1f2c06be5,1
1182
+ np.float64,0xffc5194d362a329c,0xc086256266c8b7ad,1
1183
+ np.float64,0xbfda034f1b34069e,0xbfd95860a44c43ad,1
1184
+ np.float64,0x32bcebca6579e,0x32bcebca6579e,1
1185
+ np.float64,0xbfd1751ebca2ea3e,0xbfd13f79f45bf75c,1
1186
+ np.float64,0x3fee4fa1e5bc9f44,0x3feafe69e0d6c1c7,1
1187
+ np.float64,0x7f9c03cd5038079a,0x4086170459172900,1
1188
+ np.float64,0x7fc5fb6d6d2bf6da,0x408625b6651cfc73,1
1189
+ np.float64,0x7ff8000000000000,0x7ff8000000000000,1
1190
+ np.float64,0xffd1a8162ca3502c,0xc0862981333931ad,1
1191
+ np.float64,0x7fc415c198282b82,0x408624fd8c155d1b,1
1192
+ np.float64,0xffda37fbe7b46ff8,0xc0862caae7865c43,1
1193
+ np.float64,0xbfef4312257e8624,0xbfebadd89f3ee31c,1
1194
+ np.float64,0xbfec45e1fd788bc4,0xbfe97d8b14db6274,1
1195
+ np.float64,0xbfe6fdcfd26dfba0,0xbfe55e25b770d00a,1
1196
+ np.float64,0x7feb66d424f6cda7,0x40863290d9ff7ea2,1
1197
+ np.float64,0x8b08a29916115,0x8b08a29916115,1
1198
+ np.float64,0xffe12ca25c625944,0xc0862ed40d769f72,1
1199
+ np.float64,0x7ff4000000000000,0x7ffc000000000000,1
1200
+ np.float64,0x804925e100925,0x804925e100925,1
1201
+ np.float64,0xcebf3e019d9,0xcebf3e019d9,1
1202
+ np.float64,0xbfd5d75d4aabaeba,0xbfd57027671dedf7,1
1203
+ np.float64,0x800b829ecd37053e,0x800b829ecd37053e,1
1204
+ np.float64,0x800b1205daf6240c,0x800b1205daf6240c,1
1205
+ np.float64,0x3fdf7e9889befd31,0x3fde583fdff406c3,1
1206
+ np.float64,0x7ff0000000000000,0x7ff0000000000000,1
1207
+ np.float64,0x3fdc09760d3812ec,0x3fdb35b55c8090c6,1
1208
+ np.float64,0x800c4d99e4f89b34,0x800c4d99e4f89b34,1
1209
+ np.float64,0xffbaa6772e354cf0,0xc08621b535badb2f,1
1210
+ np.float64,0xbfc91188fd322310,0xbfc8e933b5d25ea7,1
1211
+ np.float64,0xffc1b947f4237290,0xc08623fd69164251,1
1212
+ np.float64,0x3fc6ab3b252d5678,0x3fc68d50bbac106d,1
1213
+ np.float64,0xffac8eb968391d70,0xc0861cb734833355,1
1214
+ np.float64,0xffe29a35c365346b,0xc0862f77a1aed6d8,1
1215
+ np.float64,0x3fde14b9543c2973,0x3fdd122697779015,1
1216
+ np.float64,0xbf10f5400021e000,0xbf10f53fffef1383,1
1217
+ np.float64,0xffe0831aa3e10635,0xc0862e838553d0ca,1
1218
+ np.float64,0x3fccbadbcf3975b8,0x3fcc7e768d0154ec,1
1219
+ np.float64,0x3fe092ef66e125df,0x3fdfd212a7116c9b,1
1220
+ np.float64,0xbfd727f039ae4fe0,0xbfd6adad040b2334,1
1221
+ np.float64,0xbfe4223b93a84477,0xbfe2ff7587364db4,1
1222
+ np.float64,0x3f4e5c3a003cb874,0x3f4e5c39b75c70f7,1
1223
+ np.float64,0x800e76b1a87ced63,0x800e76b1a87ced63,1
1224
+ np.float64,0x3fed2b7368fa56e7,0x3fea2863b9131b8c,1
1225
+ np.float64,0xffadb76ec43b6ee0,0xc0861d08ae79f20c,1
1226
+ np.float64,0x800b6a0cd1f6d41a,0x800b6a0cd1f6d41a,1
1227
+ np.float64,0xffee6aa943fcd552,0xc0863366a24250d5,1
1228
+ np.float64,0xbfe68cbc4e6d1978,0xbfe502040591aa5b,1
1229
+ np.float64,0xff859a38002b3480,0xc0860f64726235cc,1
1230
+ np.float64,0x3474d13e68e9b,0x3474d13e68e9b,1
1231
+ np.float64,0xffc11d49f6223a94,0xc08623b5c2df9712,1
1232
+ np.float64,0x800d82d019bb05a0,0x800d82d019bb05a0,1
1233
+ np.float64,0xbfe2af0192255e03,0xbfe1c20e38106388,1
1234
+ np.float64,0x3fe97d13c032fa28,0x3fe75bba11a65f86,1
1235
+ np.float64,0x7fcd457e133a8afb,0x40862800e80f5863,1
1236
+ np.float64,0x9d7254cf3ae4b,0x9d7254cf3ae4b,1
1237
+ np.float64,0x8003047675a608ee,0x8003047675a608ee,1
1238
+ np.float64,0x3fead6cd7d75ad9a,0x3fe8676138e5ff93,1
1239
+ np.float64,0x3fea6ee3b0f4ddc7,0x3fe817838a2bcbe3,1
1240
+ np.float64,0x3feed0edea7da1dc,0x3feb5bea3cb12fe2,1
1241
+ np.float64,0x88003fe510008,0x88003fe510008,1
1242
+ np.float64,0x3fe64cadc56c995c,0x3fe4cd8ead87fc79,1
1243
+ np.float64,0xaae30c5955c62,0xaae30c5955c62,1
1244
+ np.float64,0x7fc8c97cae3192f8,0x408626ac579f4fc5,1
1245
+ np.float64,0xbfc2bc0e8b25781c,0xbfc2ab188fdab7dc,1
1246
+ np.float64,0xc8f8e5e791f1d,0xc8f8e5e791f1d,1
1247
+ np.float64,0x3fecfaa5d6f9f54c,0x3fea0444dabe5a15,1
1248
+ np.float64,0xbfeb93740ff726e8,0xbfe8f71a9ab13baf,1
1249
+ np.float64,0xffd951236c32a246,0xc0862c633a4661eb,1
1250
+ np.float64,0x3fddbc5fcd3b78c0,0x3fdcc21c1a0a9246,1
1251
+ np.float64,0xbfd242443da48488,0xbfd20512d91f7924,1
1252
+ np.float64,0x2a3689b2546d2,0x2a3689b2546d2,1
1253
+ np.float64,0xffe24c67382498ce,0xc0862f55e4ea6283,1
1254
+ np.float64,0x800cbfce22197f9c,0x800cbfce22197f9c,1
1255
+ np.float64,0x8002269428044d29,0x8002269428044d29,1
1256
+ np.float64,0x7fd44babbd289756,0x40862a9e79b51c3b,1
1257
+ np.float64,0x3feea056a27d40ad,0x3feb38dcddb682f0,1
1258
+ np.float64,0xffeca8174b39502e,0xc08632ec8f88a5b2,1
1259
+ np.float64,0x7fbe0853a03c10a6,0x408622a9e8d53a9e,1
1260
+ np.float64,0xbfa9704b2432e090,0xbfa96d9dfc8c0cc2,1
1261
+ np.float64,0x800bda28fab7b452,0x800bda28fab7b452,1
1262
+ np.float64,0xbfb0ffa2f621ff48,0xbfb0fc71f405e82a,1
1263
+ np.float64,0xbfe66c04216cd808,0xbfe4e73ea3b58cf6,1
1264
+ np.float64,0x3fe336ea5d266dd5,0x3fe236ffcf078c62,1
1265
+ np.float64,0xbfe7729ae6aee536,0xbfe5bcad4b8ac62d,1
1266
+ np.float64,0x558cfc96ab1a0,0x558cfc96ab1a0,1
1267
+ np.float64,0xbfe7d792aaefaf26,0xbfe60de1b8f0279d,1
1268
+ np.float64,0xffd19ef6bda33dee,0xc086297d0ffee3c7,1
1269
+ np.float64,0x666b3ab4ccd68,0x666b3ab4ccd68,1
1270
+ np.float64,0xffa3d89e3c27b140,0xc08619cdeb2c1e49,1
1271
+ np.float64,0xbfb1728f7f62f,0xbfb1728f7f62f,1
1272
+ np.float64,0x3fc76319f32ec634,0x3fc74247bd005e20,1
1273
+ np.float64,0xbfbf1caee23e3960,0xbfbf0934c13d70e2,1
1274
+ np.float64,0x7fe79626f32f2c4d,0x4086315dcc68a5cb,1
1275
+ np.float64,0xffee78c4603cf188,0xc086336a572c05c2,1
1276
+ np.float64,0x3fce546eda3ca8de,0x3fce0d8d737fd31d,1
1277
+ np.float64,0xa223644d4446d,0xa223644d4446d,1
1278
+ np.float64,0x3fecea878b79d510,0x3fe9f850d50973f6,1
1279
+ np.float64,0x3fc20e0ea1241c1d,0x3fc1fedda87c5e75,1
1280
+ np.float64,0xffd1c5a99ca38b54,0xc086298e8e94cd47,1
1281
+ np.float64,0x7feb2c299d765852,0x4086327fa6db2808,1
1282
+ np.float64,0xcaf9d09595f3a,0xcaf9d09595f3a,1
1283
+ np.float64,0xbfe293bf21e5277e,0xbfe1aa7f6ac274ef,1
1284
+ np.float64,0xbfbaa3c8ce354790,0xbfba97891df19c01,1
1285
+ np.float64,0x3faf5784543eaf09,0x3faf5283acc7d71d,1
1286
+ np.float64,0x7fc014f8f62029f1,0x40862336531c662d,1
1287
+ np.float64,0xbfe0d9ac2d61b358,0xbfe027bce36699ca,1
1288
+ np.float64,0x8003e112ff27c227,0x8003e112ff27c227,1
1289
+ np.float64,0xffec0d4151381a82,0xc08632c0df718dd0,1
1290
+ np.float64,0x7fa2156fb0242ade,0x4086190f7587d708,1
1291
+ np.float64,0xd698358dad307,0xd698358dad307,1
1292
+ np.float64,0xbfed8d1b0efb1a36,0xbfea70588ef9ba18,1
1293
+ np.float64,0xbfd2cae6a92595ce,0xbfd28851e2185dee,1
1294
+ np.float64,0xffe7a36764ef46ce,0xc086316249c9287a,1
1295
+ np.float64,0xbfdb8ad8e5b715b2,0xbfdac19213c14315,1
1296
+ np.float64,0x3b5dba6076bc,0x3b5dba6076bc,1
1297
+ np.float64,0x800e6e8347bcdd07,0x800e6e8347bcdd07,1
1298
+ np.float64,0x800bea9f3fb7d53f,0x800bea9f3fb7d53f,1
1299
+ np.float64,0x7fb6d0e5fc2da1cb,0x4086207714c4ab85,1
1300
+ np.float64,0x0,0x0,1
1301
+ np.float64,0xbfe2aa1e1465543c,0xbfe1bdd550ef2966,1
1302
+ np.float64,0x7fd3f6a47fa7ed48,0x40862a7caea33055,1
1303
+ np.float64,0x800094e292c129c6,0x800094e292c129c6,1
1304
+ np.float64,0x800e1500ecbc2a02,0x800e1500ecbc2a02,1
1305
+ np.float64,0xbfd8ff6f97b1fee0,0xbfd866f84346ecdc,1
1306
+ np.float64,0x681457d0d028c,0x681457d0d028c,1
1307
+ np.float64,0x3feed0b5987da16b,0x3feb5bc1ab424984,1
1308
+ np.float64,0x3fdbcb34cdb79668,0x3fdafca540f32c06,1
1309
+ np.float64,0xbfdc9eacdcb93d5a,0xbfdbbe274aa8aeb0,1
1310
+ np.float64,0xffe6e35d526dc6ba,0xc08631203df38ed2,1
1311
+ np.float64,0x3fcac1cc65358398,0x3fca90de41889613,1
1312
+ np.float64,0xbfebf07a55b7e0f5,0xbfe93d6007db0c67,1
1313
+ np.float64,0xbfd7a7b1e7af4f64,0xbfd725a9081c22cb,1
1314
+ np.float64,0x800232bd7de4657c,0x800232bd7de4657c,1
1315
+ np.float64,0x7fb1dae43c23b5c7,0x40861e80f5c0a64e,1
1316
+ np.float64,0x8013ded70027c,0x8013ded70027c,1
1317
+ np.float64,0x7fc4373a59286e74,0x4086250ad60575d0,1
1318
+ np.float64,0xbfe9980fd6733020,0xbfe770d1352d0ed3,1
1319
+ np.float64,0x8008a66b8dd14cd7,0x8008a66b8dd14cd7,1
1320
+ np.float64,0xbfaebc67f83d78d0,0xbfaeb7b015848478,1
1321
+ np.float64,0xffd0c52762218a4e,0xc0862917b564afc6,1
1322
+ np.float64,0xbfd503860aaa070c,0xbfd4a74618441561,1
1323
+ np.float64,0x5bdacabcb7b5a,0x5bdacabcb7b5a,1
1324
+ np.float64,0xf3623cffe6c48,0xf3623cffe6c48,1
1325
+ np.float64,0x7fe16c6c7ea2d8d8,0x40862ef18d90201f,1
1326
+ np.float64,0x3ff0000000000000,0x3fec34366179d427,1
1327
+ np.float64,0x7fe19cbc84233978,0x40862f079dcbc169,1
1328
+ np.float64,0x3fcfd3d6933fa7ad,0x3fcf822187907f6b,1
1329
+ np.float64,0x8007d65d672facbc,0x8007d65d672facbc,1
1330
+ np.float64,0xffca6115aa34c22c,0xc086272bd7728750,1
1331
+ np.float64,0xbfe77ab1556ef562,0xbfe5c332fb55b66e,1
1332
+ np.float64,0x8001ed797c23daf4,0x8001ed797c23daf4,1
1333
+ np.float64,0x7fdd3d16cb3a7a2d,0x40862d8a2c869281,1
1334
+ np.float64,0x75f36beaebe6e,0x75f36beaebe6e,1
1335
+ np.float64,0xffda3c2798b47850,0xc0862cac2d3435df,1
1336
+ np.float64,0xbfa37cc3c426f980,0xbfa37b8f9d3ec4b7,1
1337
+ np.float64,0x80030ea8bd061d52,0x80030ea8bd061d52,1
1338
+ np.float64,0xffe41f7617683eec,0xc08630188a3e135e,1
1339
+ np.float64,0x800e40590dfc80b2,0x800e40590dfc80b2,1
1340
+ np.float64,0x3fea950d80f52a1c,0x3fe834e74481e66f,1
1341
+ np.float64,0xffec95e39a792bc6,0xc08632e779150084,1
1342
+ np.float64,0xbfd54310ecaa8622,0xbfd4e39c4d767002,1
1343
+ np.float64,0xffd40c9971a81932,0xc0862a85764eb2f4,1
1344
+ np.float64,0xb0a2230761445,0xb0a2230761445,1
1345
+ np.float64,0x80092973661252e7,0x80092973661252e7,1
1346
+ np.float64,0x7fb13b030a227605,0x40861e380aeb5549,1
1347
+ np.float64,0x3fbd5d8db23abb1b,0x3fbd4d2a0b94af36,1
1348
+ np.float64,0xbfd6cb8567ad970a,0xbfd656b19ab8fa61,1
1349
+ np.float64,0xbfe7c0fd346f81fa,0xbfe5fbc28807c794,1
1350
+ np.float64,0xffd586579eab0cb0,0xc0862b16e65c0754,1
1351
+ np.float64,0x8000e52da461ca5c,0x8000e52da461ca5c,1
1352
+ np.float64,0x3fc69d17112d3a2e,0x3fc67f63fe1fea1c,1
1353
+ np.float64,0x3fd36ba892a6d750,0x3fd3225be1fa87af,1
1354
+ np.float64,0x7fe2850598e50a0a,0x40862f6e7fcd6c1a,1
1355
+ np.float64,0x80074a4dacce949c,0x80074a4dacce949c,1
1356
+ np.float64,0x3fe25eea4d64bdd5,0x3fe17cbe5fefbd4e,1
1357
+ np.float64,0xbfe250c08be4a181,0xbfe17074c520e5de,1
1358
+ np.float64,0x8000f5665481eacd,0x8000f5665481eacd,1
1359
+ np.float64,0x7fdb3172f83662e5,0x40862cf5a46764f1,1
1360
+ np.float64,0x7fd8ed82d631db05,0x40862c4380658afa,1
1361
+ np.float64,0xffec5163feb8a2c7,0xc08632d4366aab06,1
1362
+ np.float64,0x800ff14ac6ffe296,0x800ff14ac6ffe296,1
1363
+ np.float64,0xbfc7cc7aea2f98f4,0xbfc7a9e9cb38f023,1
1364
+ np.float64,0xbfd50cdfc32a19c0,0xbfd4b0282b452fb2,1
1365
+ np.float64,0xbfec256d75b84adb,0xbfe965328c1860b2,1
1366
+ np.float64,0xffe860c4cdb0c189,0xc08631a164b7059a,1
1367
+ np.float64,0xbfe23de164247bc3,0xbfe16011bffa4651,1
1368
+ np.float64,0xcc96b39d992d7,0xcc96b39d992d7,1
1369
+ np.float64,0xbfec43acf938875a,0xbfe97be3a13b50c3,1
1370
+ np.float64,0xc4f587bb89eb1,0xc4f587bb89eb1,1
1371
+ np.float64,0xbfcd971d9a3b2e3c,0xbfcd5537ad15dab4,1
1372
+ np.float64,0xffcaf00d8035e01c,0xc0862756bf2cdf8f,1
1373
+ np.float64,0x8008c26f93f184e0,0x8008c26f93f184e0,1
1374
+ np.float64,0xfff0000000000000,0xfff0000000000000,1
1375
+ np.float64,0xbfd13552c3a26aa6,0xbfd101e5e252eb7b,1
1376
+ np.float64,0x7fe497235e292e46,0x4086304792fb423a,1
1377
+ np.float64,0x7fd6dc0192adb802,0x40862b921a5e935d,1
1378
+ np.float64,0xf16d49a1e2da9,0xf16d49a1e2da9,1
1379
+ np.float64,0xffef6b1b71bed636,0xc08633a8feed0178,1
1380
+ np.float64,0x7fe15ec62f62bd8b,0x40862eeb46b193dc,1
1381
+ np.float64,0x3fef4369ec7e86d4,0x3febae1768be52cc,1
1382
+ np.float64,0x4f84e8e89f09e,0x4f84e8e89f09e,1
1383
+ np.float64,0xbfe19e71ade33ce4,0xbfe0d4fad05e0ebc,1
1384
+ np.float64,0xbfe7e1df1defc3be,0xbfe616233e15b3d0,1
1385
+ np.float64,0x7fe9349afdb26935,0x408631e5c1c5c6cd,1
1386
+ np.float64,0xff90c35ac82186c0,0xc08612e896a06467,1
1387
+ np.float64,0xbfe88bf8807117f1,0xbfe69dc786464422,1
1388
+ np.float64,0x3feaf9ff6475f3fe,0x3fe8825132410d18,1
1389
+ np.float64,0x9ff487a33fe91,0x9ff487a33fe91,1
1390
+ np.float64,0x7fedb30159bb6602,0x40863335c0419322,1
1391
+ np.float64,0x800bddf6ed77bbee,0x800bddf6ed77bbee,1
1392
+ np.float64,0x3fd919df133233be,0x3fd87f963b9584ce,1
1393
+ np.float64,0x7fd64da3b52c9b46,0x40862b5fa9dd3b6d,1
1394
+ np.float64,0xbfce288db43c511c,0xbfcde2d953407ae8,1
1395
+ np.float64,0x3fe88bc72771178e,0x3fe69da05e9e9b4e,1
1396
+ np.float64,0x800feafe259fd5fc,0x800feafe259fd5fc,1
1397
+ np.float64,0x3febbbff4a7777ff,0x3fe915c78f6a280f,1
1398
+ np.float64,0xbfefbde4417f7bc9,0xbfec055f4fb2cd21,1
1399
+ np.float64,0xf13ca103e2794,0xf13ca103e2794,1
1400
+ np.float64,0x3fe6423884ec8471,0x3fe4c4f97eaa876a,1
1401
+ np.float64,0x800ca01c8cb94039,0x800ca01c8cb94039,1
1402
+ np.float64,0x3fbc5073f638a0e0,0x3fbc41c163ac0001,1
1403
+ np.float64,0xbfda0d83cfb41b08,0xbfd961d4cacc82cf,1
1404
+ np.float64,0x800f37b8f17e6f72,0x800f37b8f17e6f72,1
1405
+ np.float64,0x7fe0b08cd7216119,0x40862e996becb771,1
1406
+ np.float64,0xffd4222a40a84454,0xc0862a8e0c984917,1
1407
+ np.float64,0x7feb3df98ff67bf2,0x40863284e3a86ee6,1
1408
+ np.float64,0x8001d5d291e3aba6,0x8001d5d291e3aba6,1
1409
+ np.float64,0xbfd3c21629a7842c,0xbfd3750095a5894a,1
1410
+ np.float64,0xbfd069eb48a0d3d6,0xbfd03d2b1c2ae9db,1
1411
+ np.float64,0xffeb1be2973637c4,0xc086327ada954662,1
1412
+ np.float64,0x3fc659f97e2cb3f3,0x3fc63d497a451f10,1
1413
+ np.float64,0xbfeb624bc776c498,0xbfe8d1cf7c0626ca,1
1414
+ np.float64,0xffeedf26e23dbe4d,0xc08633850baab425,1
1415
+ np.float64,0xffe70da48a6e1b48,0xc086312ef75d5036,1
1416
+ np.float64,0x2b4f4830569ea,0x2b4f4830569ea,1
1417
+ np.float64,0xffe82e7fcfb05cff,0xc0863190d4771f75,1
1418
+ np.float64,0x3fcc2c1fd5385840,0x3fcbf3211ddc5123,1
1419
+ np.float64,0x7fe22ced5a6459da,0x40862f481629ee6a,1
1420
+ np.float64,0x7fe13d2895e27a50,0x40862edbbc411899,1
1421
+ np.float64,0x3fd54c4280aa9884,0x3fd4ec55a946c5d7,1
1422
+ np.float64,0xffd75b8e01aeb71c,0xc0862bbe42d76e5e,1
1423
+ np.float64,0x7f1d5376fe3ab,0x7f1d5376fe3ab,1
1424
+ np.float64,0x3fe6ec6c902dd8d9,0x3fe55004f35192bd,1
1425
+ np.float64,0x5634504aac68b,0x5634504aac68b,1
1426
+ np.float64,0x3feedb0d83bdb61b,0x3feb633467467ce6,1
1427
+ np.float64,0x3fddb1c0dcbb6380,0x3fdcb87a02daf1fa,1
1428
+ np.float64,0xbfa832da443065b0,0xbfa8308c70257209,1
1429
+ np.float64,0x87a9836b0f531,0x87a9836b0f531,1