uefi-firmware


Nameuefi-firmware JSON
Version 1.11 PyPI version JSON
download
home_pagehttps://github.com/theopolis/uefi-firmware-parser
SummaryVarious data structures and parsing tools for UEFI firmware.
upload_time2023-08-10 20:02:19
maintainer
docs_urlNone
authorTeddy Reed
requires_python
licenseBSD
keywords security uefi firmware parsing bios
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            UEFI Firmware Parser
====================

.. image:: https://travis-ci.org/theopolis/uefi-firmware-parser.svg?branch=master
    :target: https://travis-ci.org/theopolis/uefi-firmware-parser


The UEFI firmware parser is a simple module and set of scripts for parsing, extracting, 
and recreating UEFI firmware volumes.
This includes parsing modules for BIOS, OptionROM, Intel ME and other formats too. 
Please use the example scripts for parsing tutorials.

Installation
------------

This module is available through PyPi as `uefi_firmware <https://pypi.python.org/pypi/uefi_firmware>`_

::

  $ sudo pip install uefi_firmware

To install from Github, checkout this repo and use:

::

  $ sudo python ./setup.py install

**Requirements**

- Python development headers, usually found in the ``python-dev`` package.
- The compression/decompression features will use the python headers and ``gcc``.

Usage
-----

The simplest way to use the module to detect or parse firmware is through the ``AutoParser`` class.

::

  import uefi_firmware
  with open('/path/to/firmware.rom', 'r') as fh:
    file_content = fh.read()
  parser = uefi_firmware.AutoParser(file_content)
  if parser.type() != 'unknown':
    firmware = parser.parse()
    firmware.showinfo()

There are several classes within the **uefi**, **pfs**, **me**, and **flash** packages that
accept file contents in their constructor. In all cases there are abstract methods implemented:

- ``process()`` performs parsing work and returns a ``True`` or ``False``
- ``showinfo()`` print a hierarchy of information about the structure
- ``dump()`` walk the hierarchy and write each to a file

Scripts
-------

A Python script is installed ``uefi-firmware-parser``

::

  $ uefi-firmware-parser -h
  usage: uefi-firmware-parser [-h] [-b] [--superbrute] [-q] [-o OUTPUT] [-O]
                              [-c] [-e] [-g GENERATE] [--test]
                              file [file ...]

  Parse, and optionally output, details and data on UEFI-related firmware.

  positional arguments:
    file                  The file(s) to work on

  optional arguments:
    -h, --help            show this help message and exit
    -b, --brute           The input is a blob and may contain FV headers.
    --superbrute          The input is a blob and may contain any sort of
                          firmware object
    -q, --quiet           Do not show info.
    -o OUTPUT, --output OUTPUT
                          Dump firmware objects to this folder.
    -O, --outputfolder    Dump firmware objects to a folder based on filename
                          ${FILENAME}_output/
    -c, --echo            Echo the filename before parsing or extracting.
    -e, --extract         Extract all files/sections/volumes.
    -g GENERATE, --generate GENERATE
                          Generate a FDF, implies extraction (volumes only)
    --test                Test file parsing, output name/success.

To test a file or directory of files:

::

  $ uefi-firmware-parser --test ~/firmware/*
  ~/firmware/970E32_1.40: UEFIFirmwareVolume
  ~/firmware/CO5975P.BIO: EFICapsule
  ~/firmware/me-03.obj: IntelME
  ~/firmware/O990-A03.exe: None
  ~/firmware/O990-A03.exe.hdr: DellPFS

If you need to parse and extract a large number of firmware files check out the ``-O`` option to auto-generate an output folder per file. If parsing and searching for internals in a shell the ``--echo`` option will print the input filename before parsing.

The firmware-type checker will decide how to best parse the file. If the ``--test`` option fails to identify the type, or calls it ``unknown``, try to use the ``-b`` or ``--superbrute`` option. The later performs a byte-by-byte type checker.
::

  $ uefi-firmware-parser --test ~/firmware/970E32_1.40
  ~/firmware/970E32_1.40: unknown
  $ uefi-firmware-parser --superbrute ~/firmware/970E32_1.40
  [...]

**Features**

- UEFI Firmware Volumes, Capsules, FileSystems, Files, Sections parsing
- Intel PCH Flash Descriptors
- Intel ME modules parsing (ME, TXE, etc)
- Dell PFS (HDR) updates parsing
- Tiano/EFI, and native LZMA (7z) [de]compression

- Complete UEFI Firmware volume object hierarchy display
- Firmware descriptor [re]generation using the parsed input volumes
- Firmware File Section injection

**GUID Injection**

Injection or GUID replacement (no addition/subtraction yet) can be performed on sections within a UEFI firmware file, or on UEFI firmware files within a firmware filesystem.

:: 

  $ python ./scripts/fv_injector.py -h
  usage: fv_injector.py [-h] [-c] [-p] [-f] [--guid GUID] --injection INJECTION
                        [-o OUTPUT]
                        file

  Search a file for UEFI firmware volumes, parse and output.

  positional arguments:
    file                  The file to work on

  optional arguments:
    -h, --help            show this help message and exit
    -c, --capsule         The input file is a firmware capsule.
    -p, --pfs             The input file is a Dell PFS.
    -f, --ff              Inject payload into firmware file.
    --guid GUID           GUID to replace (inject).
    --injection INJECTION
                          Pre-generated EFI file to inject.
    -o OUTPUT, --output OUTPUT
                          Name of the output file.

Note: when injecting into a firmware file the user will be prompted for which section to replace. At the moment this is not-yet-scriptable. 

**IDA Python support**

There is an included script to generate additional GUID labels to import into IDA Python
using Snare's plugins. Using the ``-g LABEL`` the script will generate a Python dictionary-formatted output. This project will try to keep up-to-date with popular vendor GUIDs automatically.

::

  $ python ./scripts/uefi_guids.py -h
  usage: uefi_guids.py [-h] [-c] [-b] [-d] [-g GENERATE] [-u] file

  Output GUIDs for files, optionally write GUID structure file.

  positional arguments:
    file                  The file to work on

  optional arguments:
    -h, --help            show this help message and exit
    -c, --capsule         The input file is a firmware capsule, do not search.
    -b, --brute           The input file is a blob, search for firmware volume
                          headers.
    -d, --flash           The input file is a flash descriptor.
    -g GENERATE, --generate GENERATE
                          Generate a behemoth-style GUID output.
    -u, --unknowns        When generating also print unknowns.

**Supported Vendors**

This module has been tested on BIOS/UEFI/firmware updates from the following vendors.
Not every update for every product will parse, some may required a-priori decompression
or extraction from the distribution update mechanism (typically a PE). 

- ASRock
- Dell
- Gigabyte
- Intel
- Lenovo
- HP
- MSI
- VMware
- Apple
- Qualcomm

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/theopolis/uefi-firmware-parser",
    "name": "uefi-firmware",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "security uefi firmware parsing bios",
    "author": "Teddy Reed",
    "author_email": "teddy@prosauce.org",
    "download_url": "https://files.pythonhosted.org/packages/26/ca/139ef1b190af2280e3a149391ed43028c1d19283ad556aa090c49aab3f36/uefi_firmware-1.11.tar.gz",
    "platform": null,
    "description": "UEFI Firmware Parser\n====================\n\n.. image:: https://travis-ci.org/theopolis/uefi-firmware-parser.svg?branch=master\n    :target: https://travis-ci.org/theopolis/uefi-firmware-parser\n\n\nThe UEFI firmware parser is a simple module and set of scripts for parsing, extracting, \nand recreating UEFI firmware volumes.\nThis includes parsing modules for BIOS, OptionROM, Intel ME and other formats too. \nPlease use the example scripts for parsing tutorials.\n\nInstallation\n------------\n\nThis module is available through PyPi as `uefi_firmware <https://pypi.python.org/pypi/uefi_firmware>`_\n\n::\n\n  $ sudo pip install uefi_firmware\n\nTo install from Github, checkout this repo and use:\n\n::\n\n  $ sudo python ./setup.py install\n\n**Requirements**\n\n- Python development headers, usually found in the ``python-dev`` package.\n- The compression/decompression features will use the python headers and ``gcc``.\n\nUsage\n-----\n\nThe simplest way to use the module to detect or parse firmware is through the ``AutoParser`` class.\n\n::\n\n  import uefi_firmware\n  with open('/path/to/firmware.rom', 'r') as fh:\n    file_content = fh.read()\n  parser = uefi_firmware.AutoParser(file_content)\n  if parser.type() != 'unknown':\n    firmware = parser.parse()\n    firmware.showinfo()\n\nThere are several classes within the **uefi**, **pfs**, **me**, and **flash** packages that\naccept file contents in their constructor. In all cases there are abstract methods implemented:\n\n- ``process()`` performs parsing work and returns a ``True`` or ``False``\n- ``showinfo()`` print a hierarchy of information about the structure\n- ``dump()`` walk the hierarchy and write each to a file\n\nScripts\n-------\n\nA Python script is installed ``uefi-firmware-parser``\n\n::\n\n  $ uefi-firmware-parser -h\n  usage: uefi-firmware-parser [-h] [-b] [--superbrute] [-q] [-o OUTPUT] [-O]\n                              [-c] [-e] [-g GENERATE] [--test]\n                              file [file ...]\n\n  Parse, and optionally output, details and data on UEFI-related firmware.\n\n  positional arguments:\n    file                  The file(s) to work on\n\n  optional arguments:\n    -h, --help            show this help message and exit\n    -b, --brute           The input is a blob and may contain FV headers.\n    --superbrute          The input is a blob and may contain any sort of\n                          firmware object\n    -q, --quiet           Do not show info.\n    -o OUTPUT, --output OUTPUT\n                          Dump firmware objects to this folder.\n    -O, --outputfolder    Dump firmware objects to a folder based on filename\n                          ${FILENAME}_output/\n    -c, --echo            Echo the filename before parsing or extracting.\n    -e, --extract         Extract all files/sections/volumes.\n    -g GENERATE, --generate GENERATE\n                          Generate a FDF, implies extraction (volumes only)\n    --test                Test file parsing, output name/success.\n\nTo test a file or directory of files:\n\n::\n\n  $ uefi-firmware-parser --test ~/firmware/*\n  ~/firmware/970E32_1.40: UEFIFirmwareVolume\n  ~/firmware/CO5975P.BIO: EFICapsule\n  ~/firmware/me-03.obj: IntelME\n  ~/firmware/O990-A03.exe: None\n  ~/firmware/O990-A03.exe.hdr: DellPFS\n\nIf you need to parse and extract a large number of firmware files check out the ``-O`` option to auto-generate an output folder per file. If parsing and searching for internals in a shell the ``--echo`` option will print the input filename before parsing.\n\nThe firmware-type checker will decide how to best parse the file. If the ``--test`` option fails to identify the type, or calls it ``unknown``, try to use the ``-b`` or ``--superbrute`` option. The later performs a byte-by-byte type checker.\n::\n\n  $ uefi-firmware-parser --test ~/firmware/970E32_1.40\n  ~/firmware/970E32_1.40: unknown\n  $ uefi-firmware-parser --superbrute ~/firmware/970E32_1.40\n  [...]\n\n**Features**\n\n- UEFI Firmware Volumes, Capsules, FileSystems, Files, Sections parsing\n- Intel PCH Flash Descriptors\n- Intel ME modules parsing (ME, TXE, etc)\n- Dell PFS (HDR) updates parsing\n- Tiano/EFI, and native LZMA (7z) [de]compression\n\n- Complete UEFI Firmware volume object hierarchy display\n- Firmware descriptor [re]generation using the parsed input volumes\n- Firmware File Section injection\n\n**GUID Injection**\n\nInjection or GUID replacement (no addition/subtraction yet) can be performed on sections within a UEFI firmware file, or on UEFI firmware files within a firmware filesystem.\n\n:: \n\n  $ python ./scripts/fv_injector.py -h\n  usage: fv_injector.py [-h] [-c] [-p] [-f] [--guid GUID] --injection INJECTION\n                        [-o OUTPUT]\n                        file\n\n  Search a file for UEFI firmware volumes, parse and output.\n\n  positional arguments:\n    file                  The file to work on\n\n  optional arguments:\n    -h, --help            show this help message and exit\n    -c, --capsule         The input file is a firmware capsule.\n    -p, --pfs             The input file is a Dell PFS.\n    -f, --ff              Inject payload into firmware file.\n    --guid GUID           GUID to replace (inject).\n    --injection INJECTION\n                          Pre-generated EFI file to inject.\n    -o OUTPUT, --output OUTPUT\n                          Name of the output file.\n\nNote: when injecting into a firmware file the user will be prompted for which section to replace. At the moment this is not-yet-scriptable. \n\n**IDA Python support**\n\nThere is an included script to generate additional GUID labels to import into IDA Python\nusing Snare's plugins. Using the ``-g LABEL`` the script will generate a Python dictionary-formatted output. This project will try to keep up-to-date with popular vendor GUIDs automatically.\n\n::\n\n  $ python ./scripts/uefi_guids.py -h\n  usage: uefi_guids.py [-h] [-c] [-b] [-d] [-g GENERATE] [-u] file\n\n  Output GUIDs for files, optionally write GUID structure file.\n\n  positional arguments:\n    file                  The file to work on\n\n  optional arguments:\n    -h, --help            show this help message and exit\n    -c, --capsule         The input file is a firmware capsule, do not search.\n    -b, --brute           The input file is a blob, search for firmware volume\n                          headers.\n    -d, --flash           The input file is a flash descriptor.\n    -g GENERATE, --generate GENERATE\n                          Generate a behemoth-style GUID output.\n    -u, --unknowns        When generating also print unknowns.\n\n**Supported Vendors**\n\nThis module has been tested on BIOS/UEFI/firmware updates from the following vendors.\nNot every update for every product will parse, some may required a-priori decompression\nor extraction from the distribution update mechanism (typically a PE). \n\n- ASRock\n- Dell\n- Gigabyte\n- Intel\n- Lenovo\n- HP\n- MSI\n- VMware\n- Apple\n- Qualcomm\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Various data structures and parsing tools for UEFI firmware.",
    "version": "1.11",
    "project_urls": {
        "Homepage": "https://github.com/theopolis/uefi-firmware-parser"
    },
    "split_keywords": [
        "security",
        "uefi",
        "firmware",
        "parsing",
        "bios"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "117e2f15e1694b5136293691d60af94c4388ef5a691372069d9274f1289bc8ff",
                "md5": "bd656e5983a0f44f2c69b3a8c249b9bd",
                "sha256": "5220834069d127c604cae76a0c3e8e678052fb8700a6d39bcba7d5371e45403e"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "bd656e5983a0f44f2c69b3a8c249b9bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 274576,
            "upload_time": "2023-08-10T20:00:06",
            "upload_time_iso_8601": "2023-08-10T20:00:06.491270Z",
            "url": "https://files.pythonhosted.org/packages/11/7e/2f15e1694b5136293691d60af94c4388ef5a691372069d9274f1289bc8ff/uefi_firmware-1.11-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "586702bfcb56edce2ee5b10a32f2f82f6a80b06e8c5f270b0e2287192f7f9fb3",
                "md5": "202f14a6be06bd98d0431f3a1b05f6b3",
                "sha256": "72a93bfc0aeb4928e3a40b7af8820b1bb75a9668c01b5dc636e58e4449aaad5a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "202f14a6be06bd98d0431f3a1b05f6b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 217106,
            "upload_time": "2023-08-10T20:00:08",
            "upload_time_iso_8601": "2023-08-10T20:00:08.113557Z",
            "url": "https://files.pythonhosted.org/packages/58/67/02bfcb56edce2ee5b10a32f2f82f6a80b06e8c5f270b0e2287192f7f9fb3/uefi_firmware-1.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f13e489c4aeaba15b1b84d2037d1f6e3d4c0bc2e4013d06f833e9688923979b5",
                "md5": "01013076960d37db5a0202a63e787726",
                "sha256": "060b8c54d71b30cadef4e7707632a7ce225cbdfc27bd95689d4715cebaa86741"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "01013076960d37db5a0202a63e787726",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 211058,
            "upload_time": "2023-08-10T20:00:10",
            "upload_time_iso_8601": "2023-08-10T20:00:10.348504Z",
            "url": "https://files.pythonhosted.org/packages/f1/3e/489c4aeaba15b1b84d2037d1f6e3d4c0bc2e4013d06f833e9688923979b5/uefi_firmware-1.11-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeafc0e0b99718aa4edcf3a54ea21e3e192401ccf3df96d0cd2e2fdc7757a28f",
                "md5": "fe0112132fa6959d0f51c8f5198f2762",
                "sha256": "4012acac06841c217c8bd2f9f875250d45e5909278e97580e6ebf2478a7d45f8"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe0112132fa6959d0f51c8f5198f2762",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 340356,
            "upload_time": "2023-08-10T20:00:11",
            "upload_time_iso_8601": "2023-08-10T20:00:11.860548Z",
            "url": "https://files.pythonhosted.org/packages/ae/af/c0e0b99718aa4edcf3a54ea21e3e192401ccf3df96d0cd2e2fdc7757a28f/uefi_firmware-1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e499eedc9e773fb893f3681baf100dbd2cd878d48b17baf240cbeb893a672058",
                "md5": "8a74b3bdbb1001f19f300602d3b942f2",
                "sha256": "ee491e8c3e45ab8604a18e5b54965543af9297aedd0497a06434b888a99a35d3"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a74b3bdbb1001f19f300602d3b942f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 346251,
            "upload_time": "2023-08-10T20:00:13",
            "upload_time_iso_8601": "2023-08-10T20:00:13.504116Z",
            "url": "https://files.pythonhosted.org/packages/e4/99/eedc9e773fb893f3681baf100dbd2cd878d48b17baf240cbeb893a672058/uefi_firmware-1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74679a5d544b5905514a272432a4046ca35912e7fd461113188cec6fcb02a446",
                "md5": "4a81561d9a16d34c7a0daf4caa190cbd",
                "sha256": "738c4fcec0f43a2fc302f2dad50b6673a45e39b38856181a6ff06ee155f29754"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4a81561d9a16d34c7a0daf4caa190cbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 346078,
            "upload_time": "2023-08-10T20:00:15",
            "upload_time_iso_8601": "2023-08-10T20:00:15.183675Z",
            "url": "https://files.pythonhosted.org/packages/74/67/9a5d544b5905514a272432a4046ca35912e7fd461113188cec6fcb02a446/uefi_firmware-1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24727318d3f831127646519dcf919109ed387029609d653f6088b3894fb166ea",
                "md5": "438d732ed0243b95edf987a078068adb",
                "sha256": "8df54d40b457700bcf364c6d63baf4a31f497a6ce7a5881ccf1d42e8b8d6e981"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "438d732ed0243b95edf987a078068adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 357931,
            "upload_time": "2023-08-10T20:00:16",
            "upload_time_iso_8601": "2023-08-10T20:00:16.959421Z",
            "url": "https://files.pythonhosted.org/packages/24/72/7318d3f831127646519dcf919109ed387029609d653f6088b3894fb166ea/uefi_firmware-1.11-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c3c30679755ba8640144970040cc34dfb9b559054b56d4948793d695a54c401",
                "md5": "6e27a40c6cba3f757ec818610a68b2de",
                "sha256": "f13c02328b05526dd2d2f81f9dcbc06421a325fabb97e0604d3c24cf49f75a14"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6e27a40c6cba3f757ec818610a68b2de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 351968,
            "upload_time": "2023-08-10T20:00:18",
            "upload_time_iso_8601": "2023-08-10T20:00:18.138421Z",
            "url": "https://files.pythonhosted.org/packages/2c/3c/30679755ba8640144970040cc34dfb9b559054b56d4948793d695a54c401/uefi_firmware-1.11-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abb241a2e96636f147e83fbedf525d95c315fd5d03d826cbfd4019d5f9bd7840",
                "md5": "4897686a01e3abd4400498c2f6b22b06",
                "sha256": "c9f8f6cf543df3c56595c85f3dfd20f7575f7c3e8e5d7ad82c458e64da639b80"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4897686a01e3abd4400498c2f6b22b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 363021,
            "upload_time": "2023-08-10T20:00:19",
            "upload_time_iso_8601": "2023-08-10T20:00:19.812610Z",
            "url": "https://files.pythonhosted.org/packages/ab/b2/41a2e96636f147e83fbedf525d95c315fd5d03d826cbfd4019d5f9bd7840/uefi_firmware-1.11-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88ed54ca6491ec84128e5f92675fbd7a7f32b3135d72c5f82ce31844e1baeb73",
                "md5": "d50279551651a5215a9420dbb37e6e65",
                "sha256": "aebf834bfb680d0fe6f7c16c1cba6cc972765689762da8854614980ea01ff600"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d50279551651a5215a9420dbb37e6e65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 186870,
            "upload_time": "2023-08-10T20:00:21",
            "upload_time_iso_8601": "2023-08-10T20:00:21.464206Z",
            "url": "https://files.pythonhosted.org/packages/88/ed/54ca6491ec84128e5f92675fbd7a7f32b3135d72c5f82ce31844e1baeb73/uefi_firmware-1.11-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20a313ef6009a819c1b1b9cb8c3bc2cacbaa8418f0960b19c792578438727e59",
                "md5": "86a8c546c9323005da5442dd27e3a980",
                "sha256": "d3663fa9feb875b4ef69a25bb28790a00b47d66e73a5c1a07f9544bd1ab94a36"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "86a8c546c9323005da5442dd27e3a980",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 193420,
            "upload_time": "2023-08-10T20:00:23",
            "upload_time_iso_8601": "2023-08-10T20:00:23.056505Z",
            "url": "https://files.pythonhosted.org/packages/20/a3/13ef6009a819c1b1b9cb8c3bc2cacbaa8418f0960b19c792578438727e59/uefi_firmware-1.11-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df7806df8d9eb5a25f5ba16ecfed11fcdb6c9a36a03becfc56a67e5639c8d08b",
                "md5": "4b44de3d66570d53c2a8d34350e53809",
                "sha256": "fdb67e92f6ed023c20e59e060cba46641687fee0c645d7d56412d07ef49e1f20"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "4b44de3d66570d53c2a8d34350e53809",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 190855,
            "upload_time": "2023-08-10T20:00:24",
            "upload_time_iso_8601": "2023-08-10T20:00:24.624770Z",
            "url": "https://files.pythonhosted.org/packages/df/78/06df8d9eb5a25f5ba16ecfed11fcdb6c9a36a03becfc56a67e5639c8d08b/uefi_firmware-1.11-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c15979cccb609941a9ad474ef6ef1ce1a926ed4c23ebd57189ccfc5dee0fd1e",
                "md5": "2fd9ce1f8d083363bb3cf40f051f3056",
                "sha256": "43c4a03241b097d74d3340f982f089adf51fd6e518fb887f8ed49230adac56c0"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2fd9ce1f8d083363bb3cf40f051f3056",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 274579,
            "upload_time": "2023-08-10T20:00:25",
            "upload_time_iso_8601": "2023-08-10T20:00:25.735576Z",
            "url": "https://files.pythonhosted.org/packages/4c/15/979cccb609941a9ad474ef6ef1ce1a926ed4c23ebd57189ccfc5dee0fd1e/uefi_firmware-1.11-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39bc222e370bcb49521f16fcfafffb7f25a9577d39c1ee4d761696769057b2de",
                "md5": "b64720fc95a63e2db8b24d6b890f986a",
                "sha256": "7edfa97a27a5ed9e04cc5ee4bda08faaabb5b817f434618abfdf679ff9206f64"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b64720fc95a63e2db8b24d6b890f986a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 217110,
            "upload_time": "2023-08-10T20:00:26",
            "upload_time_iso_8601": "2023-08-10T20:00:26.987735Z",
            "url": "https://files.pythonhosted.org/packages/39/bc/222e370bcb49521f16fcfafffb7f25a9577d39c1ee4d761696769057b2de/uefi_firmware-1.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cfafe9970d41ff8550900b449dfdb213c0fd7f2b5696f20a536a8dfd51f617c",
                "md5": "fd6ff1b0ac56b8f917149ca5ae2de504",
                "sha256": "edc57a74f9f62b814a483656f653f7e1a21d1d7c601e93d1c5bf153acd9fd060"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fd6ff1b0ac56b8f917149ca5ae2de504",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 211059,
            "upload_time": "2023-08-10T20:00:28",
            "upload_time_iso_8601": "2023-08-10T20:00:28.739460Z",
            "url": "https://files.pythonhosted.org/packages/7c/fa/fe9970d41ff8550900b449dfdb213c0fd7f2b5696f20a536a8dfd51f617c/uefi_firmware-1.11-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd0c266d8dbc52bb601b4b4b52a0fa4e497a8cbd663ee431889a93b4e798b6d4",
                "md5": "2f06d6fa754c57096cb876182ac2c80b",
                "sha256": "534aa90b5bf064cd63bff8b897666c24687f7cd09f600d8f2c4324e62ba12947"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f06d6fa754c57096cb876182ac2c80b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 340324,
            "upload_time": "2023-08-10T20:00:30",
            "upload_time_iso_8601": "2023-08-10T20:00:30.385412Z",
            "url": "https://files.pythonhosted.org/packages/fd/0c/266d8dbc52bb601b4b4b52a0fa4e497a8cbd663ee431889a93b4e798b6d4/uefi_firmware-1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e29aa5d45796753fd2ba02f30e399d75d0c3f243ef3cd27c3979e178c06cd5d",
                "md5": "e5125910646e5025616193633dceb5d0",
                "sha256": "e67a46872d0c30e45ec301a61dc9bcc2056b396fa8ad09dc7f911fa97f5f2930"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5125910646e5025616193633dceb5d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 346228,
            "upload_time": "2023-08-10T20:00:31",
            "upload_time_iso_8601": "2023-08-10T20:00:31.760417Z",
            "url": "https://files.pythonhosted.org/packages/6e/29/aa5d45796753fd2ba02f30e399d75d0c3f243ef3cd27c3979e178c06cd5d/uefi_firmware-1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f04751a0d69176bad09a7ce5a9d3de56f2ce36c0b437a80d650828663a15b9aa",
                "md5": "8ce6509fd399ae479108676d788d0b90",
                "sha256": "6752f3fae8c7fdcab2b7aec157eef2f8692ad0c9684cb03830fbbbc2ae51e1a9"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8ce6509fd399ae479108676d788d0b90",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 346085,
            "upload_time": "2023-08-10T20:00:33",
            "upload_time_iso_8601": "2023-08-10T20:00:33.320893Z",
            "url": "https://files.pythonhosted.org/packages/f0/47/51a0d69176bad09a7ce5a9d3de56f2ce36c0b437a80d650828663a15b9aa/uefi_firmware-1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26ab20a81a97da7735e61f923504faaa3b9f141047b3a9301f683619338baa81",
                "md5": "b078b04245de4ff72f9358609f632323",
                "sha256": "669acc8941575950f721fab465f5b2503c47a16469054a6324f87f8432aaba2d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b078b04245de4ff72f9358609f632323",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 358813,
            "upload_time": "2023-08-10T20:00:34",
            "upload_time_iso_8601": "2023-08-10T20:00:34.329543Z",
            "url": "https://files.pythonhosted.org/packages/26/ab/20a81a97da7735e61f923504faaa3b9f141047b3a9301f683619338baa81/uefi_firmware-1.11-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b06847032c3e1e6b9e5ef1c00a64f27cdf07c2828403d979ad8522b63e40acde",
                "md5": "5884e9365e70d3d56bde257918d88f7d",
                "sha256": "7ec7c62c51557e71b24b2ce25f384191bb5689558b725f3d573b2b72061a1a0e"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5884e9365e70d3d56bde257918d88f7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 352841,
            "upload_time": "2023-08-10T20:00:36",
            "upload_time_iso_8601": "2023-08-10T20:00:36.172887Z",
            "url": "https://files.pythonhosted.org/packages/b0/68/47032c3e1e6b9e5ef1c00a64f27cdf07c2828403d979ad8522b63e40acde/uefi_firmware-1.11-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1858599182f72f45b6377934421b8a919a24cd00bd849d6945e897d525b11165",
                "md5": "28313a0a6863a3dafae7a807575e02fe",
                "sha256": "b6d4b635e0bdc41a9cafe80d7fd1eb87aa1b9106e014fc425eb7058d470d4098"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28313a0a6863a3dafae7a807575e02fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 363901,
            "upload_time": "2023-08-10T20:00:37",
            "upload_time_iso_8601": "2023-08-10T20:00:37.954365Z",
            "url": "https://files.pythonhosted.org/packages/18/58/599182f72f45b6377934421b8a919a24cd00bd849d6945e897d525b11165/uefi_firmware-1.11-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b993d8aa297e3e8fe58961ff1ebdb5bcabd5435a8c669c76e45593287757b0dd",
                "md5": "51aa0094087299796579b2e65af1f3d5",
                "sha256": "b6fa7ececd2fd47de2e10abef3e94fb11849adc651b00db621e689f2dead5f04"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "51aa0094087299796579b2e65af1f3d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 186877,
            "upload_time": "2023-08-10T20:00:39",
            "upload_time_iso_8601": "2023-08-10T20:00:39.648048Z",
            "url": "https://files.pythonhosted.org/packages/b9/93/d8aa297e3e8fe58961ff1ebdb5bcabd5435a8c669c76e45593287757b0dd/uefi_firmware-1.11-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c333b822e564ddc3cec758e204108d8e099b1a7a0531e6e03501c34f412fff1",
                "md5": "06a88e86f9b0cab86ea438a2d08ca45d",
                "sha256": "1450550ff624019a4344084189c2d305f850559a266bba3d448b4257d6566a39"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06a88e86f9b0cab86ea438a2d08ca45d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 193427,
            "upload_time": "2023-08-10T20:00:41",
            "upload_time_iso_8601": "2023-08-10T20:00:41.362164Z",
            "url": "https://files.pythonhosted.org/packages/6c/33/3b822e564ddc3cec758e204108d8e099b1a7a0531e6e03501c34f412fff1/uefi_firmware-1.11-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8b60854974cf2a64faef340b2f6ec3862d95d576e7e603ebec3c9dd0cd67196",
                "md5": "ec9112d3cabae21a409a50e3862c3941",
                "sha256": "5937ba548501b6ba731fbc24f66c02112c82aba3a1b06899c3a880a5ac8dffbb"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ec9112d3cabae21a409a50e3862c3941",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 190862,
            "upload_time": "2023-08-10T20:00:42",
            "upload_time_iso_8601": "2023-08-10T20:00:42.469611Z",
            "url": "https://files.pythonhosted.org/packages/e8/b6/0854974cf2a64faef340b2f6ec3862d95d576e7e603ebec3c9dd0cd67196/uefi_firmware-1.11-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea201f56471e7f882f92b6b5be80674ddded92a39da483b648120eb61bd2e362",
                "md5": "a9d3a397bdf223ed77d4882e4b78179a",
                "sha256": "c927563154ce2e6ff522bda07c99ff3b4feba7167bf59fb516f755565a7523e7"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a9d3a397bdf223ed77d4882e4b78179a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 274569,
            "upload_time": "2023-08-10T20:00:43",
            "upload_time_iso_8601": "2023-08-10T20:00:43.503009Z",
            "url": "https://files.pythonhosted.org/packages/ea/20/1f56471e7f882f92b6b5be80674ddded92a39da483b648120eb61bd2e362/uefi_firmware-1.11-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7228137c6163823bb6f02a384c0a9dc0963dc70b0a89b077e2f3a2ed2f9f1f48",
                "md5": "8a99246ff5752d40b06d68e580acdb3f",
                "sha256": "fe45376980d1533e8faf80af1a19e8dcd1b8170a447e1fa39934f4fa91ea0a35"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a99246ff5752d40b06d68e580acdb3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 217112,
            "upload_time": "2023-08-10T20:00:44",
            "upload_time_iso_8601": "2023-08-10T20:00:44.617739Z",
            "url": "https://files.pythonhosted.org/packages/72/28/137c6163823bb6f02a384c0a9dc0963dc70b0a89b077e2f3a2ed2f9f1f48/uefi_firmware-1.11-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "501ea5e52142e0d50979ae6cb148348fa4c1d66eb06932dacade4057025a7d7e",
                "md5": "c39f473672db032c490b228778d376c5",
                "sha256": "1cf627f257f14ed1bb63290c658e9adb772292927ad399ef70366801dc0cb9a5"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c39f473672db032c490b228778d376c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 211054,
            "upload_time": "2023-08-10T20:00:45",
            "upload_time_iso_8601": "2023-08-10T20:00:45.745092Z",
            "url": "https://files.pythonhosted.org/packages/50/1e/a5e52142e0d50979ae6cb148348fa4c1d66eb06932dacade4057025a7d7e/uefi_firmware-1.11-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f5837ba11ff39707b919b590dd7a8c0cae613bdc7171631963af16ef29b1f79",
                "md5": "a7f560e4cfc6978d9c1fe5925d7fb23d",
                "sha256": "e4253b57873fc6127a50ca92797741a74b774d1aa3c994011bd196b21033ddc1"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a7f560e4cfc6978d9c1fe5925d7fb23d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 340474,
            "upload_time": "2023-08-10T20:00:47",
            "upload_time_iso_8601": "2023-08-10T20:00:47.492057Z",
            "url": "https://files.pythonhosted.org/packages/4f/58/37ba11ff39707b919b590dd7a8c0cae613bdc7171631963af16ef29b1f79/uefi_firmware-1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9abb37ade211fc5ed704f685352fe0947cbeaf9165924fe2c0048120da4ccd4",
                "md5": "2e82810f213a539946636bd739e1e090",
                "sha256": "9e71095839db1733d77e0001f906104e3084c6bc433dcc5ff8240a65a58d2945"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e82810f213a539946636bd739e1e090",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 346344,
            "upload_time": "2023-08-10T20:00:48",
            "upload_time_iso_8601": "2023-08-10T20:00:48.771829Z",
            "url": "https://files.pythonhosted.org/packages/e9/ab/b37ade211fc5ed704f685352fe0947cbeaf9165924fe2c0048120da4ccd4/uefi_firmware-1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6a97ead995a7f5ffe77d21e3479e95ca857b7cc9c241271999cb780a2cfc950",
                "md5": "177a78f8391fd757c39c23a1d2d77fe8",
                "sha256": "da64a6cedea68934dab6186b13a48df55027429490f3be02bc910803d040d733"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "177a78f8391fd757c39c23a1d2d77fe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 346173,
            "upload_time": "2023-08-10T20:00:50",
            "upload_time_iso_8601": "2023-08-10T20:00:50.386479Z",
            "url": "https://files.pythonhosted.org/packages/e6/a9/7ead995a7f5ffe77d21e3479e95ca857b7cc9c241271999cb780a2cfc950/uefi_firmware-1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49e25d0c396fab59b6c16e41271b9c74820c0107163be967db0474226ffa31dd",
                "md5": "3198ed74298680eb5931fbf75b869bb4",
                "sha256": "07a891147c10a6112c6ae4d76efbd07e422ceb1b34e6aa1236d9beb21a6d48b6"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3198ed74298680eb5931fbf75b869bb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 358477,
            "upload_time": "2023-08-10T20:00:51",
            "upload_time_iso_8601": "2023-08-10T20:00:51.627542Z",
            "url": "https://files.pythonhosted.org/packages/49/e2/5d0c396fab59b6c16e41271b9c74820c0107163be967db0474226ffa31dd/uefi_firmware-1.11-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e78c32adad2dddd768ec0a44aa2174a44864e03e5eab68c59c047148b8e3b2d2",
                "md5": "565471a47afdd54a610f352223313447",
                "sha256": "75b2de62978767e2263f3299f3ed2d5daaee47cfeb77496769c531e35c2c3393"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "565471a47afdd54a610f352223313447",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 352574,
            "upload_time": "2023-08-10T20:00:52",
            "upload_time_iso_8601": "2023-08-10T20:00:52.811827Z",
            "url": "https://files.pythonhosted.org/packages/e7/8c/32adad2dddd768ec0a44aa2174a44864e03e5eab68c59c047148b8e3b2d2/uefi_firmware-1.11-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "599804155a6f6eded9d184692533ec55fd711d9a2e5ae4a5ed416689f48beb11",
                "md5": "468d9397e517a80c0e82f6a761a734b0",
                "sha256": "5a45d398edbb985952ee4dc1987f40aecf9af2b151a783eaa70ee0447e7a8052"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "468d9397e517a80c0e82f6a761a734b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 363547,
            "upload_time": "2023-08-10T20:00:54",
            "upload_time_iso_8601": "2023-08-10T20:00:54.550093Z",
            "url": "https://files.pythonhosted.org/packages/59/98/04155a6f6eded9d184692533ec55fd711d9a2e5ae4a5ed416689f48beb11/uefi_firmware-1.11-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20616e63948588d4bf75e94e45b57205113322972d3b87c3b1ea0062e8e26f0f",
                "md5": "4b26c746a35bce16f27557a98bdd3668",
                "sha256": "cda1eec452581e6a1fdca9b62c9e4fe9ab6284ef16334fab47b9f3426bbeb841"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4b26c746a35bce16f27557a98bdd3668",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 186877,
            "upload_time": "2023-08-10T20:00:55",
            "upload_time_iso_8601": "2023-08-10T20:00:55.693417Z",
            "url": "https://files.pythonhosted.org/packages/20/61/6e63948588d4bf75e94e45b57205113322972d3b87c3b1ea0062e8e26f0f/uefi_firmware-1.11-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ea8189bac9bf10dccc6690712aa5695bbd0b82bc5cd4f20defe5892912d364",
                "md5": "57f6b6dd3a71a46bce88aaff3819818b",
                "sha256": "0d544e25dab9cefa23a9c2f43226f94d50f85b3b625fe47ce3df12b530e1a1fa"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57f6b6dd3a71a46bce88aaff3819818b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 193424,
            "upload_time": "2023-08-10T20:00:57",
            "upload_time_iso_8601": "2023-08-10T20:00:57.007459Z",
            "url": "https://files.pythonhosted.org/packages/d6/ea/8189bac9bf10dccc6690712aa5695bbd0b82bc5cd4f20defe5892912d364/uefi_firmware-1.11-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "430e778e3e72005711e6e886caa3f2a6e33dba4073f679df46c4204740761cc8",
                "md5": "c44996757d2f77f9a7cbe65dbb0b2ea4",
                "sha256": "25ddff80fc4d95199ad48e304f32566447acf7a593d0cd4d293629f2e3eabd45"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c44996757d2f77f9a7cbe65dbb0b2ea4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 190861,
            "upload_time": "2023-08-10T20:00:58",
            "upload_time_iso_8601": "2023-08-10T20:00:58.120118Z",
            "url": "https://files.pythonhosted.org/packages/43/0e/778e3e72005711e6e886caa3f2a6e33dba4073f679df46c4204740761cc8/uefi_firmware-1.11-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c06645c9cf1c55365297d790b5ea4fc6f4140d9f09778f61fd67ffd7963f5ce",
                "md5": "f8bfd8956b6ea227ab1bbc0148d1b9d6",
                "sha256": "66e4c3eeecac0e9f3d570347dbd122845e915ad994d14f410f603095d2c606d1"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8bfd8956b6ea227ab1bbc0148d1b9d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 217229,
            "upload_time": "2023-08-10T20:00:59",
            "upload_time_iso_8601": "2023-08-10T20:00:59.311672Z",
            "url": "https://files.pythonhosted.org/packages/3c/06/645c9cf1c55365297d790b5ea4fc6f4140d9f09778f61fd67ffd7963f5ce/uefi_firmware-1.11-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "179231857ca3ad42cea55a21001d90e1db210300c56d21070b931677199c4a26",
                "md5": "e12f3885cf101ea937a5fe7076083976",
                "sha256": "3529c0ab9fe1bb3262832d5e6e7f797153ffc326315502b890ef734b3b0517fe"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e12f3885cf101ea937a5fe7076083976",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 340902,
            "upload_time": "2023-08-10T20:01:00",
            "upload_time_iso_8601": "2023-08-10T20:01:00.845951Z",
            "url": "https://files.pythonhosted.org/packages/17/92/31857ca3ad42cea55a21001d90e1db210300c56d21070b931677199c4a26/uefi_firmware-1.11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ba74d71d8e42f89dcb9daddfd589f0749748a9a31afa6ded3952d5fa24ce734",
                "md5": "0c187889006dd289704ad607f882195d",
                "sha256": "5c7f70e574c4e8692cd1e7cfeeeedc11432103f5b50398f2e96e54ab4a446e24"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c187889006dd289704ad607f882195d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 346712,
            "upload_time": "2023-08-10T20:01:01",
            "upload_time_iso_8601": "2023-08-10T20:01:01.936172Z",
            "url": "https://files.pythonhosted.org/packages/7b/a7/4d71d8e42f89dcb9daddfd589f0749748a9a31afa6ded3952d5fa24ce734/uefi_firmware-1.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00b8afcd2499884049ee43b11fa43cd22f669ad63efe1a9444470e8a5f50df28",
                "md5": "8861bca076167fd6c5f8259435334ac4",
                "sha256": "b916a817b042c8fd1e99e12e034cd0f0f94e6e7f8fd9d3ff7dade6064d385513"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8861bca076167fd6c5f8259435334ac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 346599,
            "upload_time": "2023-08-10T20:01:03",
            "upload_time_iso_8601": "2023-08-10T20:01:03.179465Z",
            "url": "https://files.pythonhosted.org/packages/00/b8/afcd2499884049ee43b11fa43cd22f669ad63efe1a9444470e8a5f50df28/uefi_firmware-1.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57b47540ff5a61f1e8890ae5f79953fe53fecc97bdd4789da779b6267e388ac1",
                "md5": "976da65d801c61715b22beefeafeb82e",
                "sha256": "3dd087a6b0273b8f216c367ff15bbdfc4738b217b8a96cfefc28c330aebebb5a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "976da65d801c61715b22beefeafeb82e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 358273,
            "upload_time": "2023-08-10T20:01:04",
            "upload_time_iso_8601": "2023-08-10T20:01:04.322396Z",
            "url": "https://files.pythonhosted.org/packages/57/b4/7540ff5a61f1e8890ae5f79953fe53fecc97bdd4789da779b6267e388ac1/uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bebbd46e90e24f72983610ce67b310314d9d8b18b4d3a1e909a7e4cd07c073f1",
                "md5": "ce1031d6c896679abcab987698612a7f",
                "sha256": "ef6ccbe62a6e330802d681ba95c3b7e660a44b1831c17fb96760714ee4225d3a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ce1031d6c896679abcab987698612a7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 352173,
            "upload_time": "2023-08-10T20:01:05",
            "upload_time_iso_8601": "2023-08-10T20:01:05.727467Z",
            "url": "https://files.pythonhosted.org/packages/be/bb/d46e90e24f72983610ce67b310314d9d8b18b4d3a1e909a7e4cd07c073f1/uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2308d029999143829357c459e065d0344af266ddfe9604da93bb314713e969f5",
                "md5": "59ff023973d6042260d154c170f36a72",
                "sha256": "1bffd95ac0bccafd5e1d06c4d8c6203d4d0a7a5bd3e1b744626eed24591a37b6"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59ff023973d6042260d154c170f36a72",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 363391,
            "upload_time": "2023-08-10T20:01:06",
            "upload_time_iso_8601": "2023-08-10T20:01:06.947547Z",
            "url": "https://files.pythonhosted.org/packages/23/08/d029999143829357c459e065d0344af266ddfe9604da93bb314713e969f5/uefi_firmware-1.11-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab023b38ca72adecec944f84bcdc9105e4a977e8606f6ef3db05314754485532",
                "md5": "cd21ecf3e0eca0bad9b0d713a44e41a5",
                "sha256": "c6df2511579aa81e5f06e62302ee1e9ffd846e8c322b7c8e65b00e61b62c976a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "cd21ecf3e0eca0bad9b0d713a44e41a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 191945,
            "upload_time": "2023-08-10T20:01:08",
            "upload_time_iso_8601": "2023-08-10T20:01:08.181416Z",
            "url": "https://files.pythonhosted.org/packages/ab/02/3b38ca72adecec944f84bcdc9105e4a977e8606f6ef3db05314754485532/uefi_firmware-1.11-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b4224d27cfe936e8145a18cbcce5ea064246af795ba5532ab1cd764d0662af",
                "md5": "6a465d0e568d3a1901db617b0fe4078d",
                "sha256": "d1c7a80281db8b0a605b2174c615d5f0524c1db05362038cc469ac1e620172cf"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a465d0e568d3a1901db617b0fe4078d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 201270,
            "upload_time": "2023-08-10T20:01:09",
            "upload_time_iso_8601": "2023-08-10T20:01:09.416243Z",
            "url": "https://files.pythonhosted.org/packages/30/b4/224d27cfe936e8145a18cbcce5ea064246af795ba5532ab1cd764d0662af/uefi_firmware-1.11-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37371bb18ab4e036763fcecd36dcca5ae37e241f89023141e016a2955aeaebd3",
                "md5": "625763b94617463c4acd7771c32bcc5e",
                "sha256": "4b5ca37dd88c10727f347e9a6fb3fb316a5e8f7b353e0f0842431d572e185629"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "625763b94617463c4acd7771c32bcc5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 217101,
            "upload_time": "2023-08-10T20:01:10",
            "upload_time_iso_8601": "2023-08-10T20:01:10.785967Z",
            "url": "https://files.pythonhosted.org/packages/37/37/1bb18ab4e036763fcecd36dcca5ae37e241f89023141e016a2955aeaebd3/uefi_firmware-1.11-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeda04fdffa5eb3f14e5c1b629df0c24b0a95eda19a5b39fd97daa47957a0f3e",
                "md5": "2a54dafa4e2d051d7b4900e7423701a5",
                "sha256": "e2d0fd421d67fc1a99c8c7322482303892e92b5ee13551f598a1c2c5c7e35349"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a54dafa4e2d051d7b4900e7423701a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 340739,
            "upload_time": "2023-08-10T20:01:11",
            "upload_time_iso_8601": "2023-08-10T20:01:11.954410Z",
            "url": "https://files.pythonhosted.org/packages/ae/da/04fdffa5eb3f14e5c1b629df0c24b0a95eda19a5b39fd97daa47957a0f3e/uefi_firmware-1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ee7ab1f26db6d43664022c56fb303f5ddabe6c85a9021d82b07228a6991a66a",
                "md5": "39e6c99d1b110422e3fb1e6529cd9185",
                "sha256": "6b3d364f662f368dc40432ab8cfef1d8ae62895b532ab4b92b5565fd1c03c9a7"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39e6c99d1b110422e3fb1e6529cd9185",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 346595,
            "upload_time": "2023-08-10T20:01:13",
            "upload_time_iso_8601": "2023-08-10T20:01:13.235297Z",
            "url": "https://files.pythonhosted.org/packages/7e/e7/ab1f26db6d43664022c56fb303f5ddabe6c85a9021d82b07228a6991a66a/uefi_firmware-1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e37e42b36ab469d3e3c092203429fcd4255c3592c3469091f80cc6afc353747",
                "md5": "024478fdf0ae9435d1bb5871ff1efe28",
                "sha256": "758e4ca81eae538a8baa0355cdd71bf39bd53f3b8f99c794ae6b555f604994d8"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "024478fdf0ae9435d1bb5871ff1efe28",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 346487,
            "upload_time": "2023-08-10T20:01:14",
            "upload_time_iso_8601": "2023-08-10T20:01:14.653651Z",
            "url": "https://files.pythonhosted.org/packages/9e/37/e42b36ab469d3e3c092203429fcd4255c3592c3469091f80cc6afc353747/uefi_firmware-1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "607929e379db480701bfbdaa12e1b0fb3382bd74ddfc7106df09ba51abfd1f85",
                "md5": "5141e56ccf1777003e27d8bce37e930e",
                "sha256": "fd24d4c5b478137662314dbc05efd3b559321d93e8c26ef65f20e9d74e2500a2"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5141e56ccf1777003e27d8bce37e930e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 359113,
            "upload_time": "2023-08-10T20:01:16",
            "upload_time_iso_8601": "2023-08-10T20:01:16.524869Z",
            "url": "https://files.pythonhosted.org/packages/60/79/29e379db480701bfbdaa12e1b0fb3382bd74ddfc7106df09ba51abfd1f85/uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c24b010141a1b3f0d8815b72479a894e701e750d1941d5e58b54c14fa46b789e",
                "md5": "b25f0cb7a139239b6c2fc3d4ed47d5ed",
                "sha256": "577766310d24a2d5644a01e832a73b1e40c1e879dd72d17a8167c89149c3ccd6"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b25f0cb7a139239b6c2fc3d4ed47d5ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 353044,
            "upload_time": "2023-08-10T20:01:18",
            "upload_time_iso_8601": "2023-08-10T20:01:18.290919Z",
            "url": "https://files.pythonhosted.org/packages/c2/4b/010141a1b3f0d8815b72479a894e701e750d1941d5e58b54c14fa46b789e/uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7090966fe8196c988ecb543b9e82c9618c1d8d9bb63949ade0665af94e4b64fd",
                "md5": "02ecf6bd0e5660fd17afbe1795a25178",
                "sha256": "8b6cd34a0225b16b5322a3852e127d00faa2ce97b8be32d35fe67de41f46e687"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02ecf6bd0e5660fd17afbe1795a25178",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 364140,
            "upload_time": "2023-08-10T20:01:19",
            "upload_time_iso_8601": "2023-08-10T20:01:19.767048Z",
            "url": "https://files.pythonhosted.org/packages/70/90/966fe8196c988ecb543b9e82c9618c1d8d9bb63949ade0665af94e4b64fd/uefi_firmware-1.11-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d05c72278a7841c2497b2b17ef79aa2ea6bf56c4414ee72757f1dcd079457712",
                "md5": "abc51500abf6b5d6e664ae004847dd96",
                "sha256": "113d4abb0dd8f7805e3fcd55324607248845dd2efd1ba81e1a8712a10f96276d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "abc51500abf6b5d6e664ae004847dd96",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 186874,
            "upload_time": "2023-08-10T20:01:20",
            "upload_time_iso_8601": "2023-08-10T20:01:20.921522Z",
            "url": "https://files.pythonhosted.org/packages/d0/5c/72278a7841c2497b2b17ef79aa2ea6bf56c4414ee72757f1dcd079457712/uefi_firmware-1.11-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "128f2bc740269e4b706b32f98566bce7af5033694682ea14683ba45592d4c61c",
                "md5": "667b4ba5c91b1ce6a9c30ceb51bdde4a",
                "sha256": "13f4562aaacbe9267a143b39b0a5fad32470a097c7463bf922e264fc9148d17d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "667b4ba5c91b1ce6a9c30ceb51bdde4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 193424,
            "upload_time": "2023-08-10T20:01:22",
            "upload_time_iso_8601": "2023-08-10T20:01:22.037645Z",
            "url": "https://files.pythonhosted.org/packages/12/8f/2bc740269e4b706b32f98566bce7af5033694682ea14683ba45592d4c61c/uefi_firmware-1.11-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943fd4185efec338f1d322296d20c78532a097c778f8dc59da3edacaea470c65",
                "md5": "aa74229c3e7adb711d368e2f73f72e8e",
                "sha256": "fe2e085b79054ae77d778237c3b4a18eb7f1112b00a7318bac104a11d59a90c7"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "aa74229c3e7adb711d368e2f73f72e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 274575,
            "upload_time": "2023-08-10T20:01:23",
            "upload_time_iso_8601": "2023-08-10T20:01:23.419461Z",
            "url": "https://files.pythonhosted.org/packages/94/3f/d4185efec338f1d322296d20c78532a097c778f8dc59da3edacaea470c65/uefi_firmware-1.11-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e869028b5330b1536a4742a24c4e22b2455730ab01af4a8403327c338e2c5fd4",
                "md5": "33c8719a5033288fa9f33f9407dfd2f2",
                "sha256": "340b68ec10691a07788c163dc5e5ad077de496aaa3822942352e0c08a465612a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33c8719a5033288fa9f33f9407dfd2f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 217094,
            "upload_time": "2023-08-10T20:01:24",
            "upload_time_iso_8601": "2023-08-10T20:01:24.726808Z",
            "url": "https://files.pythonhosted.org/packages/e8/69/028b5330b1536a4742a24c4e22b2455730ab01af4a8403327c338e2c5fd4/uefi_firmware-1.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0350b535fbdb891c9d1fd4773acbd750d1dbe43c70d888ada9431a00f9e263ab",
                "md5": "f722b2be30946d4975c6f2c5d970f628",
                "sha256": "ecb6ab805db83bd93d0cc78577a3cd79c2fd23007f61757efd890e643f83f101"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f722b2be30946d4975c6f2c5d970f628",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 211047,
            "upload_time": "2023-08-10T20:01:26",
            "upload_time_iso_8601": "2023-08-10T20:01:26.513744Z",
            "url": "https://files.pythonhosted.org/packages/03/50/b535fbdb891c9d1fd4773acbd750d1dbe43c70d888ada9431a00f9e263ab/uefi_firmware-1.11-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a13de433cf97a7d0384d008d16ee427f92abcb19c01c636e43ed1e436d30ed5",
                "md5": "6d86a28aab6174e2df3c2f39067f9b30",
                "sha256": "19197b232c3d40f96a58403c38edccadeb4dbca9e7c8d6cee6a293fb478e0d8d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d86a28aab6174e2df3c2f39067f9b30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 340771,
            "upload_time": "2023-08-10T20:01:27",
            "upload_time_iso_8601": "2023-08-10T20:01:27.618583Z",
            "url": "https://files.pythonhosted.org/packages/9a/13/de433cf97a7d0384d008d16ee427f92abcb19c01c636e43ed1e436d30ed5/uefi_firmware-1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081565246d02419cfb65b0b68667707a5cf9ce92cebed354d5c3f1e3a813d294",
                "md5": "a970e3f48d7ac796c99400cd19fe0339",
                "sha256": "f7ea68c9c7acf9fce23ccc15071d677612d43c3ae38cad3d0b7477018ae92181"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a970e3f48d7ac796c99400cd19fe0339",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 346587,
            "upload_time": "2023-08-10T20:01:29",
            "upload_time_iso_8601": "2023-08-10T20:01:29.168072Z",
            "url": "https://files.pythonhosted.org/packages/08/15/65246d02419cfb65b0b68667707a5cf9ce92cebed354d5c3f1e3a813d294/uefi_firmware-1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "092115b19b44f767d14390526b2e8298a243096e6325eb0257680832c4211a67",
                "md5": "d9b4010d8e3100f6a48b1c3b3d05123d",
                "sha256": "c72e20d56f3b8448d7f221833b1b398410a39052e22cfaa003a083b8afa50ba7"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d9b4010d8e3100f6a48b1c3b3d05123d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 346472,
            "upload_time": "2023-08-10T20:01:30",
            "upload_time_iso_8601": "2023-08-10T20:01:30.343385Z",
            "url": "https://files.pythonhosted.org/packages/09/21/15b19b44f767d14390526b2e8298a243096e6325eb0257680832c4211a67/uefi_firmware-1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "194fa4c0a0c4957d5b201fffcd66a396245b847ae289c781846106b8d3cac790",
                "md5": "143110931b44f25eb0d0eab959487a61",
                "sha256": "0417ac61beef6edf7d35cbe616bae3145e0a8a83fd3b8cde7a9fbc8966cb7556"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "143110931b44f25eb0d0eab959487a61",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 358010,
            "upload_time": "2023-08-10T20:01:32",
            "upload_time_iso_8601": "2023-08-10T20:01:32.007940Z",
            "url": "https://files.pythonhosted.org/packages/19/4f/a4c0a0c4957d5b201fffcd66a396245b847ae289c781846106b8d3cac790/uefi_firmware-1.11-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ed413f6df32a52fdbb9d92486d4c23db93f7c119128864c79b270c330c7546f",
                "md5": "34c9b2c7174a145f764b17098dbc0703",
                "sha256": "399df992d2d6f6fd15c93eded4ff10d5501b4022edd6dbcf22d899bd10d7d5e4"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "34c9b2c7174a145f764b17098dbc0703",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 352009,
            "upload_time": "2023-08-10T20:01:33",
            "upload_time_iso_8601": "2023-08-10T20:01:33.238692Z",
            "url": "https://files.pythonhosted.org/packages/0e/d4/13f6df32a52fdbb9d92486d4c23db93f7c119128864c79b270c330c7546f/uefi_firmware-1.11-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13f9b5065012afe0a82b97963f39e6436891907fa569aeebc7c7659d7b52131a",
                "md5": "e5cec06b1ff0d009791aef0c9ba48680",
                "sha256": "492700e3b3f5c5b4a7c535249e5974fb3549b4bbe1835982a94bfd5aa29143f2"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5cec06b1ff0d009791aef0c9ba48680",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 363096,
            "upload_time": "2023-08-10T20:01:34",
            "upload_time_iso_8601": "2023-08-10T20:01:34.410963Z",
            "url": "https://files.pythonhosted.org/packages/13/f9/b5065012afe0a82b97963f39e6436891907fa569aeebc7c7659d7b52131a/uefi_firmware-1.11-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0812e40f9ae9900401789225ffda1eb2376fb553de9aa9fdcde70a13b76a6102",
                "md5": "d130837f10c2ea51a2def74d885eba8d",
                "sha256": "c21bc972da779c9cff9f2e639cde8edde3bc999bf5e74c11903a2c8a04676093"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d130837f10c2ea51a2def74d885eba8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 186871,
            "upload_time": "2023-08-10T20:01:36",
            "upload_time_iso_8601": "2023-08-10T20:01:36.063148Z",
            "url": "https://files.pythonhosted.org/packages/08/12/e40f9ae9900401789225ffda1eb2376fb553de9aa9fdcde70a13b76a6102/uefi_firmware-1.11-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e911609b735a9fe1293c78fa388626a7c348f79c62b1955b8cb1b97709a59fa7",
                "md5": "6a184f3e90a1c585c05ed3678ccc94e0",
                "sha256": "112ed5d30d8330b7ed0deac25377baa14ad0db7bc35004bbd45a233e2bdac868"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a184f3e90a1c585c05ed3678ccc94e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 193418,
            "upload_time": "2023-08-10T20:01:37",
            "upload_time_iso_8601": "2023-08-10T20:01:37.127461Z",
            "url": "https://files.pythonhosted.org/packages/e9/11/609b735a9fe1293c78fa388626a7c348f79c62b1955b8cb1b97709a59fa7/uefi_firmware-1.11-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1146648589f1bf23a30cec802f711fc9124aae060d451a91b0f47bc0c42c1230",
                "md5": "1b42eca37fa7e1e2dd3467dae70d9c64",
                "sha256": "9434fe48edacab0811ab0008e5f95e3a4ccb4766ed277aeefa80051f8bffe7d0"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1b42eca37fa7e1e2dd3467dae70d9c64",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 274567,
            "upload_time": "2023-08-10T20:01:38",
            "upload_time_iso_8601": "2023-08-10T20:01:38.952023Z",
            "url": "https://files.pythonhosted.org/packages/11/46/648589f1bf23a30cec802f711fc9124aae060d451a91b0f47bc0c42c1230/uefi_firmware-1.11-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddd64f88a267755b9916f4a06846612d3e0c8a96fbb36677b217f4b8de32a1bb",
                "md5": "0ab0d7281694b30eb4a8594da942966c",
                "sha256": "155c12b8a3b8482a10cdf93f53c40ddee2269aafffd75e0160ada39fb2ad895e"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ab0d7281694b30eb4a8594da942966c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 217096,
            "upload_time": "2023-08-10T20:01:40",
            "upload_time_iso_8601": "2023-08-10T20:01:40.153445Z",
            "url": "https://files.pythonhosted.org/packages/dd/d6/4f88a267755b9916f4a06846612d3e0c8a96fbb36677b217f4b8de32a1bb/uefi_firmware-1.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ad8cd955f487b31b995e18d592d413b35091a32220b27bbf07cf78f278f78f",
                "md5": "b00845dd4cd968d6b9678230d01211c6",
                "sha256": "a317829416ec8a91c7ba3586b7d15c36d5b707d95d01c903898e84bf9ac363c2"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b00845dd4cd968d6b9678230d01211c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 211055,
            "upload_time": "2023-08-10T20:01:41",
            "upload_time_iso_8601": "2023-08-10T20:01:41.652139Z",
            "url": "https://files.pythonhosted.org/packages/d6/ad/8cd955f487b31b995e18d592d413b35091a32220b27bbf07cf78f278f78f/uefi_firmware-1.11-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e0787808f7fb10683fc0019a9084bcb20f1a27c7403b33579536bd4f05fc8ce",
                "md5": "dc1146360fb1029d627f1413a2d609a4",
                "sha256": "2233c5e385bf964bb4534fbc7fcd077bbc9878dbaf9edfee87d38b80c1644107"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc1146360fb1029d627f1413a2d609a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 340206,
            "upload_time": "2023-08-10T20:01:42",
            "upload_time_iso_8601": "2023-08-10T20:01:42.938586Z",
            "url": "https://files.pythonhosted.org/packages/2e/07/87808f7fb10683fc0019a9084bcb20f1a27c7403b33579536bd4f05fc8ce/uefi_firmware-1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8977067d8202cf4797cc8b2dae59b78f4324fe7d096f505320208017c030584",
                "md5": "da76200560635722a081c8696f6fa41f",
                "sha256": "6cec6113e04c676a81a694b69596dd6bf856e72598ace4dd5c899243eeaf68fc"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da76200560635722a081c8696f6fa41f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 346125,
            "upload_time": "2023-08-10T20:01:44",
            "upload_time_iso_8601": "2023-08-10T20:01:44.292261Z",
            "url": "https://files.pythonhosted.org/packages/a8/97/7067d8202cf4797cc8b2dae59b78f4324fe7d096f505320208017c030584/uefi_firmware-1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7440989e686adbf8ff8e9e53263af3136595f147dd9d344ed1096eb8e4d58db8",
                "md5": "e0d7c50dc5d90558c04385044012d42c",
                "sha256": "18ddd657c86443af440fa93405a19a376aa5b517eb40a6d88083158958894a1b"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e0d7c50dc5d90558c04385044012d42c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 345946,
            "upload_time": "2023-08-10T20:01:45",
            "upload_time_iso_8601": "2023-08-10T20:01:45.506410Z",
            "url": "https://files.pythonhosted.org/packages/74/40/989e686adbf8ff8e9e53263af3136595f147dd9d344ed1096eb8e4d58db8/uefi_firmware-1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73a39d63c3af84070a3577e5ecefe8a7fbdc3aa6d53e7c68265c4e03dbaf83e5",
                "md5": "36a9f043942de2da8a505e0d6d0e255d",
                "sha256": "de89a62e157fb5c6f59784bfe67ba3034a5892a662438520a065ef83795eb9c4"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36a9f043942de2da8a505e0d6d0e255d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 357765,
            "upload_time": "2023-08-10T20:01:46",
            "upload_time_iso_8601": "2023-08-10T20:01:46.688105Z",
            "url": "https://files.pythonhosted.org/packages/73/a3/9d63c3af84070a3577e5ecefe8a7fbdc3aa6d53e7c68265c4e03dbaf83e5/uefi_firmware-1.11-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e1daaeb748932fe4f4fcc37ee675f8c68dce266b7b33744b6dbddec49d8a051",
                "md5": "c6d6cad35da0e94d11f80d21832b90e3",
                "sha256": "e7f8d592c47608de467fb0e464147da1e08d7bce2932347348dc05260e068d10"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c6d6cad35da0e94d11f80d21832b90e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 351818,
            "upload_time": "2023-08-10T20:01:47",
            "upload_time_iso_8601": "2023-08-10T20:01:47.911459Z",
            "url": "https://files.pythonhosted.org/packages/2e/1d/aaeb748932fe4f4fcc37ee675f8c68dce266b7b33744b6dbddec49d8a051/uefi_firmware-1.11-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5508029bab0e7b0d53ad717e7328c175a3bf17f6a586241ff4ff4f04aac1f4f5",
                "md5": "61b52701420c2315297fbbb998347b4a",
                "sha256": "28e5d5b87be1083fc3eac69e6992d27e3efb677b44590fa9a1a07427d3e4f08d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61b52701420c2315297fbbb998347b4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 362858,
            "upload_time": "2023-08-10T20:01:49",
            "upload_time_iso_8601": "2023-08-10T20:01:49.290048Z",
            "url": "https://files.pythonhosted.org/packages/55/08/029bab0e7b0d53ad717e7328c175a3bf17f6a586241ff4ff4f04aac1f4f5/uefi_firmware-1.11-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1757f766e28b7548b31c8541379c913623fc6e9f037e076979add37a9fd0a7d4",
                "md5": "6c7adb1cebc4da6087fa59a1babbdbc6",
                "sha256": "fc09dedb083b44cdb463d7801fe7984d8153798087a23fc62c71f4633d54b787"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6c7adb1cebc4da6087fa59a1babbdbc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 186866,
            "upload_time": "2023-08-10T20:01:50",
            "upload_time_iso_8601": "2023-08-10T20:01:50.541193Z",
            "url": "https://files.pythonhosted.org/packages/17/57/f766e28b7548b31c8541379c913623fc6e9f037e076979add37a9fd0a7d4/uefi_firmware-1.11-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0db2bcc164fe11a6c38896a7a78c5d0b52ae6fd539debb8053a7cf8bc16a10db",
                "md5": "fe1ec891d04b3160664606624231f430",
                "sha256": "0a8aef68c71c61a55622f66f3cfd6dde4618de9499453b97edf1d38f719199be"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fe1ec891d04b3160664606624231f430",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 193417,
            "upload_time": "2023-08-10T20:01:52",
            "upload_time_iso_8601": "2023-08-10T20:01:52.159469Z",
            "url": "https://files.pythonhosted.org/packages/0d/b2/bcc164fe11a6c38896a7a78c5d0b52ae6fd539debb8053a7cf8bc16a10db/uefi_firmware-1.11-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1801dcdcf771b0928d828e582f6a20da202847a29cdeba8337eb53e4235eab4",
                "md5": "f90d0114f2ac0642bdb685039fdd44cd",
                "sha256": "d719e4b38b29ccc7805c128d576e3c624a631f71510fcf36c06f95db3433c91f"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f90d0114f2ac0642bdb685039fdd44cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 190856,
            "upload_time": "2023-08-10T20:01:53",
            "upload_time_iso_8601": "2023-08-10T20:01:53.351833Z",
            "url": "https://files.pythonhosted.org/packages/e1/80/1dcdcf771b0928d828e582f6a20da202847a29cdeba8337eb53e4235eab4/uefi_firmware-1.11-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "945df5512896b31fca6dd77643879801c2b8226a2b1c616c5d5e19810b70d711",
                "md5": "16d5a3ad78473a2db460c2e1eaca0a9f",
                "sha256": "e059bdf44307b2dc4f793276484293c8febfd976a1fbfb3f1a96fd9ba67b480c"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16d5a3ad78473a2db460c2e1eaca0a9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 208529,
            "upload_time": "2023-08-10T20:01:54",
            "upload_time_iso_8601": "2023-08-10T20:01:54.945149Z",
            "url": "https://files.pythonhosted.org/packages/94/5d/f5512896b31fca6dd77643879801c2b8226a2b1c616c5d5e19810b70d711/uefi_firmware-1.11-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f01e2a124e9e654003de86ea00d6fc7c5a91fbc6d61159e4e024be6e3fa6cbc7",
                "md5": "46f4ea783338ef8fcec13d5ccbd75d1e",
                "sha256": "4bc52df5cbcb2e04923b76b8c0b646c51efecb7571aef7030df242f5924190b6"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46f4ea783338ef8fcec13d5ccbd75d1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 198100,
            "upload_time": "2023-08-10T20:01:56",
            "upload_time_iso_8601": "2023-08-10T20:01:56.151157Z",
            "url": "https://files.pythonhosted.org/packages/f0/1e/2a124e9e654003de86ea00d6fc7c5a91fbc6d61159e4e024be6e3fa6cbc7/uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c790c4ddf6748e71eabeed19a733db6097290a929c76ba03fa73571b6efb44c1",
                "md5": "1a00378b309e6bf0b03f8de40be2ee50",
                "sha256": "6822f9b1ede67ada5fd86c619f29aeb624cdc24441d7125983e617dcb66d2aaa"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a00378b309e6bf0b03f8de40be2ee50",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 197599,
            "upload_time": "2023-08-10T20:01:57",
            "upload_time_iso_8601": "2023-08-10T20:01:57.308643Z",
            "url": "https://files.pythonhosted.org/packages/c7/90/c4ddf6748e71eabeed19a733db6097290a929c76ba03fa73571b6efb44c1/uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a8ad6a65699136fa9d1853f6a30518b26460efe1bf8305a753ccdeea0e2e88",
                "md5": "d65bf9a3c751e2c4ed91eed6aad158de",
                "sha256": "764a8cce61d8f9c6a0a8f04498780da8c51dfe33cf7e60b193dae6a3f5807e69"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d65bf9a3c751e2c4ed91eed6aad158de",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 199681,
            "upload_time": "2023-08-10T20:01:58",
            "upload_time_iso_8601": "2023-08-10T20:01:58.435944Z",
            "url": "https://files.pythonhosted.org/packages/e7/a8/ad6a65699136fa9d1853f6a30518b26460efe1bf8305a753ccdeea0e2e88/uefi_firmware-1.11-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c09b50ee41ab8d6c0cc866c80175a6618ad34ecdd9966787eb9c806952b3e7b",
                "md5": "2ace47f81812dd7f28ca37f9d8ddbf6c",
                "sha256": "7f224e345fa0b17b27e0f676660ab2e5089836cbabe4b6372393c35022ffc0bd"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ace47f81812dd7f28ca37f9d8ddbf6c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 193452,
            "upload_time": "2023-08-10T20:01:59",
            "upload_time_iso_8601": "2023-08-10T20:01:59.610477Z",
            "url": "https://files.pythonhosted.org/packages/7c/09/b50ee41ab8d6c0cc866c80175a6618ad34ecdd9966787eb9c806952b3e7b/uefi_firmware-1.11-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f2d98297d18f12bd8904856b27ee191cf741356797bb0df95705af02107bece",
                "md5": "9653743d5be9e5a3f08575c561b49936",
                "sha256": "cf0fedea8457343cec241648ebcbbb4b06330db857c5b5cadb4a9cfbb247c07a"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9653743d5be9e5a3f08575c561b49936",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 208519,
            "upload_time": "2023-08-10T20:02:00",
            "upload_time_iso_8601": "2023-08-10T20:02:00.890563Z",
            "url": "https://files.pythonhosted.org/packages/1f/2d/98297d18f12bd8904856b27ee191cf741356797bb0df95705af02107bece/uefi_firmware-1.11-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2694868ba582b80acd5cdb8cf257c5005591e6ae875e13704c59515ae6487eb3",
                "md5": "8b8fe66c7e553b9e9267e48b709f5ad6",
                "sha256": "ae8a83487154240451e0f4a3aca08ea4698ca9f56176c8e6c1722c8c53441759"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b8fe66c7e553b9e9267e48b709f5ad6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 198501,
            "upload_time": "2023-08-10T20:02:02",
            "upload_time_iso_8601": "2023-08-10T20:02:02.087724Z",
            "url": "https://files.pythonhosted.org/packages/26/94/868ba582b80acd5cdb8cf257c5005591e6ae875e13704c59515ae6487eb3/uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6b37b089202d2e1deb1dc51c476da21d87544d2e744ad31d77ebf8ecb3eaf27",
                "md5": "fc2a648efb577a2a4280c978e355a959",
                "sha256": "10c0f5ae692da1caf5f5ebdcdd962e267af75d17826524dba643adbf1babe763"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc2a648efb577a2a4280c978e355a959",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 198294,
            "upload_time": "2023-08-10T20:02:03",
            "upload_time_iso_8601": "2023-08-10T20:02:03.275466Z",
            "url": "https://files.pythonhosted.org/packages/a6/b3/7b089202d2e1deb1dc51c476da21d87544d2e744ad31d77ebf8ecb3eaf27/uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2884f816efe61edf7182d9f6883128fc09d7c1263c96863b1dc883c8d8fb4ec",
                "md5": "511a82bdcc52a62a4d7bd0de899aa444",
                "sha256": "0f91b55cd7f011aaf9065507cf4525a5153842c38b659ea2034c52cc75cc8f17"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "511a82bdcc52a62a4d7bd0de899aa444",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 200288,
            "upload_time": "2023-08-10T20:02:04",
            "upload_time_iso_8601": "2023-08-10T20:02:04.780276Z",
            "url": "https://files.pythonhosted.org/packages/f2/88/4f816efe61edf7182d9f6883128fc09d7c1263c96863b1dc883c8d8fb4ec/uefi_firmware-1.11-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b93793f0c1aaf5ba3f3f8efa721b2c9d0a1c47e64c0eb717e8be750f1cdc7aa2",
                "md5": "03c7cfe7c448bae8fbd4a52df4516eff",
                "sha256": "9ddc8376e3e9aa358ab0118e47c712d340a363c2b32aa8b7501c308bb626a91f"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "03c7cfe7c448bae8fbd4a52df4516eff",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 193449,
            "upload_time": "2023-08-10T20:02:05",
            "upload_time_iso_8601": "2023-08-10T20:02:05.967465Z",
            "url": "https://files.pythonhosted.org/packages/b9/37/93f0c1aaf5ba3f3f8efa721b2c9d0a1c47e64c0eb717e8be750f1cdc7aa2/uefi_firmware-1.11-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f15556e58b66af7715c24a7ef869c391547b071fd6a744b6dbdc372b3c8f2822",
                "md5": "f7d61aacfba95a2aa5380474d4b5357b",
                "sha256": "1722b645eb1a4bfc5ce4463d209178eb325d80bc32127f99d91e163186d98d94"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7d61aacfba95a2aa5380474d4b5357b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 208519,
            "upload_time": "2023-08-10T20:02:07",
            "upload_time_iso_8601": "2023-08-10T20:02:07.249543Z",
            "url": "https://files.pythonhosted.org/packages/f1/55/56e58b66af7715c24a7ef869c391547b071fd6a744b6dbdc372b3c8f2822/uefi_firmware-1.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4761778d865dfbd0ee03018d1f2d47693cbf6ceb9ff65154245d315fa848a4b9",
                "md5": "60dc2f46705591c12952e36fcb38dba8",
                "sha256": "338bc071586a9ac1593d7670c28c84df03f3364f29eb5fd2e77f20488eedb01d"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60dc2f46705591c12952e36fcb38dba8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 198094,
            "upload_time": "2023-08-10T20:02:08",
            "upload_time_iso_8601": "2023-08-10T20:02:08.486887Z",
            "url": "https://files.pythonhosted.org/packages/47/61/778d865dfbd0ee03018d1f2d47693cbf6ceb9ff65154245d315fa848a4b9/uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3521a1748cda18a85f22bb0d4e59ae552e9cd6c2092aa76d46753416aa291584",
                "md5": "91e8f54d1958f0e1bf304c9a1150fecb",
                "sha256": "bb5e0aaba40669581a4147da35a828d9833afa47190b8754636a0f4b8b12afd3"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91e8f54d1958f0e1bf304c9a1150fecb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 197595,
            "upload_time": "2023-08-10T20:02:09",
            "upload_time_iso_8601": "2023-08-10T20:02:09.700123Z",
            "url": "https://files.pythonhosted.org/packages/35/21/a1748cda18a85f22bb0d4e59ae552e9cd6c2092aa76d46753416aa291584/uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3af0014becfbe97e2d7915d5503c715f18698068c7fcd2f543b190222c01349a",
                "md5": "c364e93f8f39c4af178dc8a0df65542b",
                "sha256": "f6232d2b5a4a3681df85a4a1568a2ecbff272a58989078237cac6ac9f50bd21b"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c364e93f8f39c4af178dc8a0df65542b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 199675,
            "upload_time": "2023-08-10T20:02:11",
            "upload_time_iso_8601": "2023-08-10T20:02:11.371216Z",
            "url": "https://files.pythonhosted.org/packages/3a/f0/014becfbe97e2d7915d5503c715f18698068c7fcd2f543b190222c01349a/uefi_firmware-1.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6651ce9005dceb833bad7e197b865a618b7cbbda6f23088752a14518fe5241d5",
                "md5": "4060aaf89edadb78ea9a01c075ae5935",
                "sha256": "4b09db8eebc5f854f60ca9caa0943efa9afd771e01d3bce53537bc31f8d5bb90"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4060aaf89edadb78ea9a01c075ae5935",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 193449,
            "upload_time": "2023-08-10T20:02:12",
            "upload_time_iso_8601": "2023-08-10T20:02:12.600385Z",
            "url": "https://files.pythonhosted.org/packages/66/51/ce9005dceb833bad7e197b865a618b7cbbda6f23088752a14518fe5241d5/uefi_firmware-1.11-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "334b170c10ff9f68069c1668b75cede15e8a58fdab704895176809de4c0df977",
                "md5": "972534b8ab3875b9b1821ae210edcd98",
                "sha256": "d93c3986c36ab17e678db43a1edab8405606630287a506723de7b709d081f77f"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "972534b8ab3875b9b1821ae210edcd98",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 208518,
            "upload_time": "2023-08-10T20:02:13",
            "upload_time_iso_8601": "2023-08-10T20:02:13.829871Z",
            "url": "https://files.pythonhosted.org/packages/33/4b/170c10ff9f68069c1668b75cede15e8a58fdab704895176809de4c0df977/uefi_firmware-1.11-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baded8c82e6a53ca5bfff35828669e7c5887ffa49a3815296361c8f45345a638",
                "md5": "0897c7bace01a4176c435d379b40afcd",
                "sha256": "1f569cc98be331021e1dce511343de06484639ad12e2b0ae82ea91f7763ccd12"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0897c7bace01a4176c435d379b40afcd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 198093,
            "upload_time": "2023-08-10T20:02:14",
            "upload_time_iso_8601": "2023-08-10T20:02:14.944531Z",
            "url": "https://files.pythonhosted.org/packages/ba/de/d8c82e6a53ca5bfff35828669e7c5887ffa49a3815296361c8f45345a638/uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ebd09dfb665d1e957708fe91cb2322020564f313945e440eee80a1e79f00312",
                "md5": "b1f6d14cd35e3f83b51daf60ceee5299",
                "sha256": "b4a7442b466e37562f83ea440dd3100e8587fe2ce639444946a3584742b1afa2"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1f6d14cd35e3f83b51daf60ceee5299",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 197595,
            "upload_time": "2023-08-10T20:02:16",
            "upload_time_iso_8601": "2023-08-10T20:02:16.224584Z",
            "url": "https://files.pythonhosted.org/packages/3e/bd/09dfb665d1e957708fe91cb2322020564f313945e440eee80a1e79f00312/uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bf2ff3cc2f1fcee23a20946d19a540764866c5bc4c6b85d3f476ec0c362ff43",
                "md5": "7557b8f390ae6e8192a490c90cbcc581",
                "sha256": "597d2d0d480391556bf5835eef7f38aa075e92e9f45af9c11ac650ba46e6b7ac"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7557b8f390ae6e8192a490c90cbcc581",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 199675,
            "upload_time": "2023-08-10T20:02:17",
            "upload_time_iso_8601": "2023-08-10T20:02:17.353073Z",
            "url": "https://files.pythonhosted.org/packages/0b/f2/ff3cc2f1fcee23a20946d19a540764866c5bc4c6b85d3f476ec0c362ff43/uefi_firmware-1.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de5314cd421c2f42222eeed648c0b8e2a54f450f3009b71ca73947467efa39b0",
                "md5": "2eeeabca011d9b080c2ece15aa350325",
                "sha256": "780a69de26ae82a8bbdcfe80f07b6e6ef17f779c04538e0eaa242996569b50c3"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2eeeabca011d9b080c2ece15aa350325",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 193450,
            "upload_time": "2023-08-10T20:02:18",
            "upload_time_iso_8601": "2023-08-10T20:02:18.566799Z",
            "url": "https://files.pythonhosted.org/packages/de/53/14cd421c2f42222eeed648c0b8e2a54f450f3009b71ca73947467efa39b0/uefi_firmware-1.11-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26ca139ef1b190af2280e3a149391ed43028c1d19283ad556aa090c49aab3f36",
                "md5": "da36c5a7c2b9304462090cbfe327896d",
                "sha256": "30e2a9d138ac1608bdfc1783a936931eb6f4292723919f1db2c1509ec18a6041"
            },
            "downloads": -1,
            "filename": "uefi_firmware-1.11.tar.gz",
            "has_sig": false,
            "md5_digest": "da36c5a7c2b9304462090cbfe327896d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 183189,
            "upload_time": "2023-08-10T20:02:19",
            "upload_time_iso_8601": "2023-08-10T20:02:19.798985Z",
            "url": "https://files.pythonhosted.org/packages/26/ca/139ef1b190af2280e3a149391ed43028c1d19283ad556aa090c49aab3f36/uefi_firmware-1.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-10 20:02:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "theopolis",
    "github_project": "uefi-firmware-parser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "uefi-firmware"
}
        
Elapsed time: 0.10122s