Skip to main content

Enumerates low index subgroups of a finitely presented group

Project description

Low Index Subgroups

The low_index project provides a Python module which implements a variant of Charles Sims’ Low Index Subgroups algorithm for enumerating all of the conjugacy classes of subgroups of a finitely presented group with finite index less than a given bound.

The package is available on pypi, so the simplest way to install it for Python versions 3.6 - 3.11 is to use pip:

pip3 install low-index

Here is a sample computation:

>>> from low_index import *
>>>  # Conjugacy classes of subgroups of F_3 with index at most 4:
>>> reps = permutation_reps(rank = 3, short_relators = [], long_relators = [], max_degree = 4)
>>> len(reps)
653
>>> from snappy import *
>>> G = Manifold('K11n34').fundamental_group(); G
Generators:
   a,b,c
Relators:
   aaBcbbcAc
   aacAbCBBaCAAbbcBc
>>> # Degree at most 7 covers of the exterior of the Conway knot:
>>> reps = permutation_reps(G.num_generators(), G.relators()[:1], G.relators()[1:], 7)
>>> len(reps)
52
>>> reps[25]
[[1, 0, 3, 2, 5, 6, 4], [1, 4, 0, 6, 2, 5, 3], [3, 0, 2, 6, 4, 1, 5]]

Credits

Primarily developed by Marc Culler, Nathan Dunfield, and Matthias Goerner

License

Copyright 2022 by Marc Culler, Nathan Dunfield, Matthias Goerner and others.

This code is released under the GNU General Public License, version 2 or (at your option) any later version as published by the Free Software Foundation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

low_index-1.3.tar.gz (390.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

low_index-1.3-cp314-cp314-win_arm64.whl (200.6 kB view details)

Uploaded CPython 3.14Windows ARM64

low_index-1.3-cp314-cp314-win_amd64.whl (221.4 kB view details)

Uploaded CPython 3.14Windows x86-64

low_index-1.3-cp314-cp314-win32.whl (192.2 kB view details)

Uploaded CPython 3.14Windows x86

low_index-1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp314-cp314-macosx_11_0_arm64.whl (130.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

low_index-1.3-cp314-cp314-macosx_10_15_x86_64.whl (131.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

low_index-1.3-cp314-cp314-macosx_10_15_universal2.whl (257.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

low_index-1.3-cp313-cp313-win_arm64.whl (194.9 kB view details)

Uploaded CPython 3.13Windows ARM64

low_index-1.3-cp313-cp313-win_amd64.whl (215.2 kB view details)

Uploaded CPython 3.13Windows x86-64

low_index-1.3-cp313-cp313-win32.whl (186.7 kB view details)

Uploaded CPython 3.13Windows x86

low_index-1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp313-cp313-macosx_11_0_arm64.whl (131.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

low_index-1.3-cp313-cp313-macosx_10_13_x86_64.whl (131.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

low_index-1.3-cp313-cp313-macosx_10_13_universal2.whl (259.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

low_index-1.3-cp312-cp312-win_arm64.whl (194.9 kB view details)

Uploaded CPython 3.12Windows ARM64

low_index-1.3-cp312-cp312-win_amd64.whl (215.3 kB view details)

Uploaded CPython 3.12Windows x86-64

low_index-1.3-cp312-cp312-win32.whl (186.7 kB view details)

Uploaded CPython 3.12Windows x86

low_index-1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp312-cp312-macosx_11_0_arm64.whl (131.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

low_index-1.3-cp312-cp312-macosx_10_13_x86_64.whl (131.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

low_index-1.3-cp312-cp312-macosx_10_13_universal2.whl (259.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

low_index-1.3-cp311-cp311-win_arm64.whl (194.9 kB view details)

Uploaded CPython 3.11Windows ARM64

low_index-1.3-cp311-cp311-win_amd64.whl (214.4 kB view details)

Uploaded CPython 3.11Windows x86-64

low_index-1.3-cp311-cp311-win32.whl (186.2 kB view details)

Uploaded CPython 3.11Windows x86

low_index-1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (129.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp311-cp311-macosx_11_0_arm64.whl (129.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

low_index-1.3-cp311-cp311-macosx_10_9_x86_64.whl (130.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

low_index-1.3-cp311-cp311-macosx_10_9_universal2.whl (255.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

low_index-1.3-cp310-cp310-win_arm64.whl (194.9 kB view details)

Uploaded CPython 3.10Windows ARM64

low_index-1.3-cp310-cp310-win_amd64.whl (214.3 kB view details)

Uploaded CPython 3.10Windows x86-64

low_index-1.3-cp310-cp310-win32.whl (186.2 kB view details)

Uploaded CPython 3.10Windows x86

low_index-1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (129.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp310-cp310-macosx_11_0_arm64.whl (129.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

low_index-1.3-cp310-cp310-macosx_10_9_x86_64.whl (130.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

low_index-1.3-cp310-cp310-macosx_10_9_universal2.whl (255.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

low_index-1.3-cp39-cp39-win_arm64.whl (192.8 kB view details)

Uploaded CPython 3.9Windows ARM64

low_index-1.3-cp39-cp39-win_amd64.whl (214.6 kB view details)

Uploaded CPython 3.9Windows x86-64

low_index-1.3-cp39-cp39-win32.whl (186.1 kB view details)

Uploaded CPython 3.9Windows x86

low_index-1.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (129.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (119.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp39-cp39-macosx_11_0_arm64.whl (129.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

low_index-1.3-cp39-cp39-macosx_10_9_x86_64.whl (130.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

low_index-1.3-cp39-cp39-macosx_10_9_universal2.whl (255.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

low_index-1.3-cp38-cp38-win_amd64.whl (214.6 kB view details)

Uploaded CPython 3.8Windows x86-64

low_index-1.3-cp38-cp38-win32.whl (186.2 kB view details)

Uploaded CPython 3.8Windows x86

low_index-1.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (129.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

low_index-1.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (119.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

low_index-1.3-cp38-cp38-macosx_11_0_arm64.whl (129.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

low_index-1.3-cp38-cp38-macosx_10_9_x86_64.whl (129.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

low_index-1.3-cp38-cp38-macosx_10_9_universal2.whl (255.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file low_index-1.3.tar.gz.

File metadata

  • Download URL: low_index-1.3.tar.gz
  • Upload date:
  • Size: 390.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3.tar.gz
Algorithm Hash digest
SHA256 437f1f809e6301f758a77fa522946306155f13f2fd246fc75dc45231a5782992
MD5 ebe89e40923e318073b69b2a64f4eba5
BLAKE2b-256 b9d09e0dfc74d201d34d729098f990d5f80437515aedb21f885b30b2fd7e9c6b

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 200.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6700ac5d927eca00d7093ea8d5ea4a5a02878f81a663f31907932057e68fe019
MD5 b42ccd56d2e25878e1ecffbcb19ed379
BLAKE2b-256 0edb3a43b0b1efcdf8af9129bf26ca86e4fabc89a487ccb862f0beb98e971a6d

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 221.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f9f16e27e81488847593722f8b5ef1c99345f115b3a9842a4743f3fd4c621413
MD5 000ee6391346eaef46557a08cd1b2f88
BLAKE2b-256 f8b7973d3c92399449526fe8e4b3412b4e5ea8b1cc702b086e1a0b690ccf3517

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 192.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e106f43fc33294b6d66f117bd8bf9421e253ba32fad3f9b12efffe614d647b8b
MD5 b4e8f4ac9e8a8d9552b1b03071e712b8
BLAKE2b-256 798718e7c70fce2a8b2ea5b869efa7019c51f6a35be0cdcc2ff1463c773ab0ea

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0384269db47a0a32d6df6a467a2cd3d45125b46c917dec49c59a5711c0593cfb
MD5 2d19576a0e25cddc0a66402a6adfce33
BLAKE2b-256 ad16fc62ad9f2d98f472c4ca65a630221283d261e9a628cb443b1369111abc5e

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 623c27d58d566032b3c74678aa5d8919a0db19b9774c4da0eec44ec9b5522968
MD5 14d7a33e377cbf1c540b54ffead3a18e
BLAKE2b-256 19a08c5ecdc536d04125d3f4d11b593474f3c8dec7f0ba28766d86c0e3ef1126

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6118de3a87fc297fc23f8e76a5317df5bea61d5e44dc2af778991e5a8922f73d
MD5 052d44c248cab37b56a2d49c61733da5
BLAKE2b-256 b66a2703ffac0df7b492fae1e619de1cc5bb6f6172de762a10473c2cfd55f758

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f8855abf8b8df941925d3c72f87e521a9f7c87c66055fa478d807719894519f
MD5 c13f90e6c64350231f156c80ae65c05d
BLAKE2b-256 681df89e46dba7c84e1ab53dbb4a4c3cbdd82ba09b06cd09352423c22cd14dec

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 dd248d6ecc5932afa0e6f9a2b9c12cce1a88e78e393a7e102fd7cb8f8122f76a
MD5 803e980f499edb4a5e95cc8994b7bc5b
BLAKE2b-256 9abafe54db686c25ff98fa1e62e78533f11a3c4c5816d32307dbf06451c7ccdd

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 194.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bde408380c95034eafcae994bf43763625f33355ddc7c0d806328eba39c27f2b
MD5 673ad53ba2313e7a205aeddccd67bc2d
BLAKE2b-256 9fd85f986cde23eec8ba5ab038d27768d7ca0c40eb37fda4a6cee6a5f957b2cf

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 215.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1cfdf0f5c9ac9d0c800c219913f209755a36a990a1f787370658868d3ea1330e
MD5 074fad4ea658cddbed9bc80947fb7f7a
BLAKE2b-256 14b3806ae4e9bf8ebe49ba31e8aba31904478727649127be79873979cc1bbc12

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 186.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 329fd300d34f6536c927cce56178ff329faa121c050b00c2f7dd706316bc3725
MD5 7d5257489880040624920c4861b70f47
BLAKE2b-256 e298b4b1103149da9653bb782fa81981e81c7f952ede4641505e43ef71c09105

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfa9ac48a8947f7096921ce53e0193cac5fe9ee77b83a4ce23e0dd4d4ef33230
MD5 bd8ca246b722bd9d376cd3a01643eef6
BLAKE2b-256 f09654317784c84c7a35786f7b542b8180481545930b664e6a52d60758928115

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc11833c3191d31e82b4fbec8bb4c7599ec3b2d383fddad54059be5e9768404f
MD5 7b763a2ee696c976970dd7bde94f628b
BLAKE2b-256 5e7e905b3fd9bef2884e94141abd466d932f2af9f26c6a1498ededf41293e697

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06b00c15f4077c6dc45142e018a4afb0a7a8730af425f81ff3585cc958fcb35
MD5 d4fb37c818f2aad655c7224d6a989de9
BLAKE2b-256 7ea26737d6480e5964d96fd230eb6cddd6f3acc44282c0ed813f0de9e571ae7d

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a3020d86bdfa8a3679a3027d640491c26efe460958a543a3ad6b08d04cffab70
MD5 d46c8fe8e69dcb1fec83c07629013fe4
BLAKE2b-256 c2ac06e7419fe73090a558780e69f94af7ecad6b1658dae4c287c719d33849b0

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5d4b4eaacda25895bd551a1de95c58a5ebb420720ef3544d4945db40ac973cb4
MD5 e89242f420f2604806c6230c3a1a8071
BLAKE2b-256 e174ffd60db84a10bef71dd396d0032ab9a729bce2600deadd241b9258608f8a

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 194.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d996d256323dc58ed65e506a861ac1325a8f7d35cad91cea5e2cd51b284637a3
MD5 aecb3a742741b432b25fdd231f64b3c0
BLAKE2b-256 36eb0c19e3e4d459cd61e094d5e63d3e4f14387fb075577a88503dc62ed9edba

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 215.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 713cbd5cfbfb161f4e2a9148f1ff3af28508aa66625d4752e06eccf4478a7e83
MD5 5cf150467e0fd41b927ba81e33ad27bb
BLAKE2b-256 2474ab9ace04f6988b115524dd025f33ba338cd592e6b0c193cccd3e3384a2ac

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 186.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 55abc43b7802b13cd9a0a0498b9c6fe4f6318ad3f6aa2007f1718d22a574b1a4
MD5 7f73fea36c5b2c81ae52f60a6d301e54
BLAKE2b-256 0f1fa5cb9ff189b32e8ed653ff2f8858bb1da3bd0c31ee23280f85e8fc8a108f

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa6c832b812563310a76ed3e7dc1bb06848e73a629f36f740215fdd462ddfd03
MD5 7b9341a7afc74854c86f67a9c623e0d6
BLAKE2b-256 c95449c90aa769bb1fc57fbcf730c0994b2de7e5c5466a365cc76652c7368999

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e13573bfcfb3296d3d6391b46f468cf948f2a8f64d6895ff10019621f50517d
MD5 9dc718cbb817ea98b43d9a116a23e092
BLAKE2b-256 982f6452566b100736a0ebd40d3596b0a25a3aa1e3b9c6ebc2f1a7430d4b9500

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b22319378eb7ac83a1ae27dacd12ce3cf842d08fbd25ce8f6649c317f9e0d88e
MD5 6c052efe4848d811381713cfc2563293
BLAKE2b-256 eaa1457101f7570094f3a86b9f527e27544c33937ba34f5a06ae2e482b9252b4

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcd6aad676d6d1bef6cc10620be663a295d0c7edd0dfe20afd511194fd02de12
MD5 9ec99e2d577024676e7f1bd81d697521
BLAKE2b-256 799861f40a25cf6095866687e8c95a1a8ac3f18816e9d0279b4deedd45201b2a

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a6c5018a32a05cded4eaf06f2848aec1a0807347e7174937de0b806e08a262e4
MD5 0dedc14af927e642f34ae19f1774fbd7
BLAKE2b-256 7be18cff161b583f54b0a03869db26f70b8c8ea413a12ebe44dbadb0d1c4759d

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 194.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 743d83afa8a3692427a94350ae2f35301a9690718ff8617b7f385814762e27ed
MD5 b3eba4773a5bb5b7a1272417bd95d46a
BLAKE2b-256 7ef91580915ea772e3f4df192b22015373081c125d3e5a77db66140a1c8c0578

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 214.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 22e9fe890db3ace8eac817eddbecb2926344709be6c5417c89f544ce2d720f8f
MD5 9829c8618cc0256a3fa3f6f6139c6096
BLAKE2b-256 9b6e4d4a431d2cbad3bd53d1e4b0b18c263a0788776fb3c362a21243d28f5a38

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 186.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 271562adeaa4c14044b006a136f9b37a9c3340d1f04a34e2c6983286a76a8bd3
MD5 59b77ad2864a7dee1cf78134fa6444d7
BLAKE2b-256 f12193e0aa71ff56932bf3b4db2b9395d0e153218a7f99198cececb3c0f37b39

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d6d6ff8544ddbff10b5faa31c490255023d8497a42e3fc187c9ad5ca970d4f8
MD5 c18a4af98870a314d4ad6cd7575c0e66
BLAKE2b-256 0fc3046a5af10628eb5f7f37a9209de85dc6f0e958cb4617aea3cb020812d001

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c18c42d413e3aef89b1c69f1605a5ed3299db45c51be7d195fe85a465196ecb
MD5 569ccabfede7a2e525ceec6545e3c19a
BLAKE2b-256 a2030d1d344281392bedd8b58eb5ed1da63df14998153890ce49f4a791b60c23

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1a93ef29841a139f9213efecd6661640a4e1b0c14567aa6474d38610aab0fb4
MD5 c8ce2290d9ff5e684aef536b1ab3c78c
BLAKE2b-256 48565bee313749008d50c715892db2877768f90f1f65ddada32c881f4d777064

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5e5b1b7cc27660a2d3a6314cbe9ca48fdba76788f7b1eb3d6a87a12307b409f
MD5 0eec7ecd1f72cb7853da84fd18797f25
BLAKE2b-256 6dde28cb3f7f5d39dcb143de4ba5665f6eedd0bb7dcbe12dc5cc19b6b926a6b7

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 148abec6978d67f046bc55677ac8ccae9c4a16267aa7176edcf5aa440d0d77cd
MD5 7f0511b722bb49f3baf863a5ea26576c
BLAKE2b-256 86dafddc622d53e2793b82a31962c4278b2526d6bf1039b5d52777b132f8962e

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 194.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a04cb6cb8954a54d7e190981ce042d4ccbd379fe40c86812897b6c3ccab83aaa
MD5 0e2e342101a046f0ae8afa0e63638b5b
BLAKE2b-256 4bfdaf201dda5565e9b6cf399e62bc447113606e3e9dab40f5199b011569d074

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 214.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e6f03936701f306e557f9a9c93bc41b6bfa5d7370fee2ebdf23eb4af5a40147
MD5 7a6fdc1bdf27e1f42c7bbe917dfc3368
BLAKE2b-256 31781d13bfc23f098161f949ebf5b482a1552cc06214087b210f2656e36d0e32

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 186.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1678ae7e96246d56feac77dd67e8b739c2c8d03db0686c113c2aa83f8536986
MD5 d20e9bc36845a8cbeabe3b7327eed01b
BLAKE2b-256 c7f3033ddf2b3a155489ed325985e0aa03a087213b5608c89131c69a00a9f0ba

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edf218a1a58f56c0b5453a6060d30d4a7c4ae1fdf1777b01713e827d0945767c
MD5 9d861643e7a2ec0c5e2e08ba9bb2835c
BLAKE2b-256 bfc75d2ee20b2a4884c2a685f3f77c214073447a76271010a43f09338b65ca4c

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d1ab1801ac1388446f1a5bca45687415bcda0f3081d9bf0416f5813e8c916a9
MD5 9e3e3d17c0d6dd67a8511b1d525ba821
BLAKE2b-256 af93863afb49235ac442e8f8e6ed78466687db6fd89f2611451d147e60eae8a8

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4f9d5e168264edb5a1046b9a285013f929f91b61fb6648d8adb9c90256fcf3f
MD5 4b02b24571fb33a715bbcb86519e4d7c
BLAKE2b-256 13438836187f1002975421678b18c57f287d218f0a71cbf9c37a1ccc2b951f0f

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c16c54dc89127b82979e1a6b85955044db3c1c763dd5149e219cbebc52f0252
MD5 731a05410e356190404e327afae44ed3
BLAKE2b-256 54b19da383f4a13079e5c1aed4ec1ac4876d3b3195df6e0c15f14adab7a1d77f

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1ecc4d453e2913ad5bfd96d7614b91b26ca64b17e74cac94011826aaed8686f1
MD5 dd5bf19b5e7aad0f7b5783a096434e4c
BLAKE2b-256 8b550ff1fb54fbf4a129a3fad22087f9ede2ff51f2857675ff90b53aaf8c60b2

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: low_index-1.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 192.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1042bcc0c9ea0b4f3fd138dd062454d0d257b03d973d171ebcc7e77539790457
MD5 ff88164885c1201c4d2a212cdea91bcd
BLAKE2b-256 b78e18a738714747a34fe924cde196344601513306057a653eea291ea292d9d1

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 214.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3cffa2776f795cf42f34d5e3cd93b2dbb1636bb77008bffdf7a41c6106b87c21
MD5 a1afd6ac3f23a833a4cdd91808c0eaa9
BLAKE2b-256 53479d54e4c6c822219fdf0d0d3d5b7f50ac983c90fdd834bbf8522701f8d0a8

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 186.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 94cbd2edc9833c799821a4ee2b5b36b921fd260974189454db6699a70fe539c7
MD5 bb16715dbe0f0f7312cdc7a2018236c5
BLAKE2b-256 07457e3ffbe3896de7baaff3393d85a4270c0734de3e8838971f3f2429dcd3e5

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b0311465a8a28df3bbd1e0b3ef17c2814c6f27d28481d75157acc4294141d91
MD5 de21ed20bee78a6757087fc093b002b9
BLAKE2b-256 2d20bda08a050d8dcd63c49608001f87f5586ae37e3232e88acd81540e8dae81

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3da9e35cfdd476bfad5f8147ea66010bc4fb90987799de6ae9e3661a4c33bd0
MD5 22c8c575394819205d472720a8b53749
BLAKE2b-256 8708fa1a1fae315f2578d82ffb2e5ec16bf2c55def88869d64ff53e2c27daf93

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a5647a88af7707c28d99ffecada3beaf09e9ef202dcb084f6e399f40164facc
MD5 0d10e97a0ea72f176a41017d4724b659
BLAKE2b-256 4a4f3fd1974093272e3b08c6a250e325d1a057e4dacc2aab73728a46ddad70ed

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ae1098d963dc85e1b7db8570a684785cc8977be368f0475704013f45c720d24
MD5 79f6dd11c9943663abafc320e55c7b8a
BLAKE2b-256 6af32c5e276922da86fc94e92820810a80e3cc827d047cf440b0d501972d6f9b

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1ef474a47e85972caa3013a816212e418b6e6693276560b68ddfff776bc76a5b
MD5 73a877fde04e3104074aa2ebb11901aa
BLAKE2b-256 7b941f278c10a40ec4b243bfdfcee324255485e4dfbeb1e0a2b5843c917c76fd

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: low_index-1.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 214.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 492059e94237a3f8b032391928dd50e3c5d94b9e0ded341d31148db499dfeaf9
MD5 3f66ddb2fcbb839deb8b76d4652564ec
BLAKE2b-256 08e836d2beb3bd4a90a4380afad407262a5402f7dad90328d88c7d7e7cff31d4

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: low_index-1.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 186.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for low_index-1.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6f2533590a782e1c9b97ab4916104c62932152420f3dbb7540fe261cb488d7bb
MD5 b3d8fa68aa08a18f03170314bd88ddb4
BLAKE2b-256 5458b087bd2e9ac0b1d59340220f270436f82b1eb118e8323b8c4f31a3dc39aa

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8db08f89e2a1ab5ec9a46cf3777042c6b63b0401e2fa9cd634f18674e7557e08
MD5 5dc1f6668172c83bd65f371eddb64b0a
BLAKE2b-256 882784366d8defb80319632e282e81fbeae0e28397e343c23181e631c66d151e

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbaaa93b2c0ea806511d1a53c24c7f0bff4c9634f8dd9d259c9ba3e84aefc67b
MD5 d488a242bd1cec602a97d8d06f2444f1
BLAKE2b-256 d3e7644ebbed6f9800b263927964885badf91eb59d3c843264b53dab8a7858dc

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818fb08e7c936f56fe6c01689c3da1f37cc52f81d3b7958a3c971aab5afb393b
MD5 26c2611d3ccc6e6ddc6bc08e6921be59
BLAKE2b-256 803d7c4fb0ca3e7bbd88e5568c0ad824c851952ce6bee6dde789ffa61259695d

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42240259af35e67012a2ccff1eb3d0cc1b85daf4cf1b94aa71f0b461e7903e27
MD5 b6b92e3b4534b168f56f023ef390e7cb
BLAKE2b-256 5ba3d174563cd77db485be9a5c2da67e82c4a561ab321be1a19c66038c84e3f1

See more details on using hashes here.

File details

Details for the file low_index-1.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for low_index-1.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b9ac22d8967d6798febb5ad6c567e04732f1a029eee86f433b354d9294ad5dd0
MD5 9f04f21f8b61184cbfe29845805b64e4
BLAKE2b-256 20b8ea70e9e74a2a9ff11f82fe5391825007e3ce97e68ea2e62b6a4263bf2768

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page