diff --git a/.gitignore b/.gitignore index 8d51d66b..7f84e86f 100644 --- a/.gitignore +++ b/.gitignore @@ -33,13 +33,15 @@ MANIFEST .vscode/ # Environments -/.env -/.venv +.env +.venv /env/ /venv/ /ENV/ /env.bak/ /venv.bak/ +.github_token + # Misc. .DS_Store diff --git a/Cargo.lock b/Cargo.lock index 7def1bf5..32e5b1c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -386,6 +386,13 @@ dependencies = [ "toml_edit", ] +[[package]] +name = "huak_python_manager" +version = "0.0.0" +dependencies = [ + "huak_home", +] + [[package]] name = "human-panic" version = "1.1.5" diff --git a/crates/huak_python_manager/Cargo.toml b/crates/huak_python_manager/Cargo.toml new file mode 100644 index 00000000..a69dcbdd --- /dev/null +++ b/crates/huak_python_manager/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "huak_python_manager" +description = "An application for managing Python installations." +version = "0.0.0" +edition.workspace = true +rust-version.workspace = true +authors.workspace = true +license.workspace = true + +[dependencies] +huak_home = { version = "0.0.0", path = "../huak_home" } + +[lints] +workspace = true diff --git a/crates/huak_python_manager/README.md b/crates/huak_python_manager/README.md new file mode 100644 index 00000000..ad63e9b0 --- /dev/null +++ b/crates/huak_python_manager/README.md @@ -0,0 +1,18 @@ +# Python Manager + +A Python interpreter management system for Huak. + +## Usage + +``` +huak_python_manager install 3.11 +``` + +## How it works + +### Installing a Python interpreter + +1. Fetch the interpreter from https://github.com/indygreg/python-build-standalone using GitHub API. +1. Validate the checksum of the interpreter. +1. Extract the interpreter using `tar`. +1. Place the interpreter in Huak's home directory (~/.huak/bin/). diff --git a/crates/huak_python_manager/requirements-dev.txt b/crates/huak_python_manager/requirements-dev.txt new file mode 100644 index 00000000..1249fdb0 --- /dev/null +++ b/crates/huak_python_manager/requirements-dev.txt @@ -0,0 +1,2 @@ +polars==0.19.8 +requests==2.31.0 diff --git a/crates/huak_python_manager/scripts/generate_python_releases.py b/crates/huak_python_manager/scripts/generate_python_releases.py new file mode 100644 index 00000000..0533af15 --- /dev/null +++ b/crates/huak_python_manager/scripts/generate_python_releases.py @@ -0,0 +1,184 @@ +"""This module generates releases.rs for the huak_python_manager crate.""" +import re +import subprocess +from typing import NamedTuple +import requests +from pathlib import Path +from urllib.parse import unquote +import polars as pl + + +FILE = Path(__file__) +ROOT = Path( + subprocess.check_output(["git", "rev-parse", "--show-toplevel"], text=True).strip() +) +CRATE = "huak_python_manager" +TOKEN = (FILE.parent / ".github_token").read_text().strip() + +RELEASE_URL = "https://api.github.com/repos/indygreg/python-build-standalone/releases" +HEADERS = headers = { + "Accept": "application/vnd.github+json", + "Authorization": f"Bearer {TOKEN}", +} + +VERSION_PATTERN = re.compile(r"cpython-(\d+\.\d+\.\d+)") +OS_PATTERN = re.compile(r"-(windows|apple|linux)-") +ARCHITECTURE_PATTERN = re.compile( + r"-(aarch64|i686|x86_64|x86_64_v2|x86_64_v3|x86_64_v4|ppc64le|s390x)-" +) +# TODO(cnpryer): Can we prioritize fastest builds? +# BUILD_PATTERN = re.compile("-(pgo\+lto|pgo|lto|noopt|debug|install_only)-") +BUILD_PATTERN = re.compile(r"-(pgo\+lto|pgo)-") + + +class Release(NamedTuple): + kind: str + version: str + os: str + architecture: str + build_configuration: str + checksum: str + url_suffix: str + + def to_rust_string(self) -> str: + (major, minor, patch) = self.version.split(".") + version = f"Version::new({major}, {minor}, {patch})" + return f"""\ +Release::new("{self.kind}", {version}, "{self.os}", "{self.architecture}", "{self.build_configuration}", "{self.checksum}", "{self.url_suffix}")\ +""" # noqa + + +session = requests.Session() +release_json = session.get(RELEASE_URL).json() + + +def is_checksum_url(url: str) -> bool: + return url.endswith(".sha256") or url.endswith("SHA256SUMS") + + +def get_checksum(url: str) -> str | None: + res = session.get(url) + res.raise_for_status() + return res.text.strip() + + +generated = pl.read_parquet(FILE.parent / "generated_python_releases.parquet") +new_releases = {"url": [], "string": []} + +# Identify releases with checksums published. +has_checksum = set() +for release in release_json: + for asset in release["assets"]: + if asset["browser_download_url"].endswith(".sha256"): + has_checksum.add(asset["browser_download_url"].removesuffix(".sha256")) + + +module = f"""\ +//! This file was generated by `{FILE.name}`. + +const DOWNLOAD_URL: &str = "https://github.com/indygreg/python-build-standalone/releases/download/"; + +#[rustfmt::skip] +pub const RELEASES: &[Release] = &[\ +""" # noqa +for release in release_json: + for asset in release["assets"]: + # Avoid making requests for releases we've already generated. + matching = generated.filter(pl.col("url").eq(asset["browser_download_url"])) + if not matching.is_empty(): + string = matching.select(pl.col("string")).to_series()[0] + module += "\n\t" + string + "," + continue + + # Skip any releases that don't have checksums + if asset["browser_download_url"] not in has_checksum: + print(f"no checksum for {asset['name']}") + continue + + url = unquote(asset["browser_download_url"]) + + # Skip builds not included in the pattern + build_matches = re.search(BUILD_PATTERN, url) + if not build_matches: + continue + build_str = build_matches.group(1) + + checksum_str = get_checksum(asset["browser_download_url"] + ".sha256") + version_str = re.search(VERSION_PATTERN, url).group(1) + os_str = re.search(OS_PATTERN, url).group(1) + arch_str = re.search(ARCHITECTURE_PATTERN, url).group(1) + release = Release( + "cpython", + version_str, + os_str, + arch_str, + build_str, + checksum_str, + asset["browser_download_url"].removeprefix( + "https://github.com/indygreg/python-build-standalone/releases/download/" + ), + ) + new_releases["url"].append(asset["browser_download_url"]) + new_releases["string"].append(release.to_rust_string()) + module += "\n\t" + release.to_rust_string() + "," +module += """\n]; + +pub struct Release<'a> { + pub kind: &'a str, + pub version: Version, + pub os: &'a str, + pub architecture: &'a str, + pub build_configuration: &'a str, + pub checksum: &'a str, + url_suffix: &'a str, +} + +impl Release<'static> { + const fn new( + kind: &'static str, + version: Version, + os: &'static str, + architecture: &'static str, + build_configuration: &'static str, + checksum: &'static str, + url_suffix: &'static str, + ) -> Self { + Self { + kind, + version, + os, + architecture, + build_configuration, + checksum, + url_suffix, + } + } + + pub fn url(&self) -> String { + format!("{}{}", DOWNLOAD_URL, self.url_suffix) + } +} + +pub struct Version { + pub major: u8, + pub minor: u8, + pub patch: u8, +} + +impl Version { + const fn new(major: u8, minor: u8, patch: u8) -> Self { + Self { + major, + minor, + patch, + } + } +} +""" + +path = ROOT / "crates" / CRATE / "src" / "releases.rs" +path.write_text(module) + +new_releases = pl.DataFrame(new_releases, schema={"url": pl.Utf8, "string": pl.Utf8}) +path = FILE.parent / "generated_python_releases.parquet" +pl.concat((generated, new_releases)).write_parquet(path) diff --git a/crates/huak_python_manager/scripts/generated_python_releases.parquet b/crates/huak_python_manager/scripts/generated_python_releases.parquet new file mode 100644 index 00000000..e229dfb3 Binary files /dev/null and b/crates/huak_python_manager/scripts/generated_python_releases.parquet differ diff --git a/crates/huak_python_manager/src/main.rs b/crates/huak_python_manager/src/main.rs new file mode 100644 index 00000000..8815ab8d --- /dev/null +++ b/crates/huak_python_manager/src/main.rs @@ -0,0 +1,7 @@ +use huak_home::huak_home_dir; +mod releases; + +fn main() { + println!("{:?}", huak_home_dir()); + println!("{:?}", releases::RELEASES[0].url()); +} diff --git a/crates/huak_python_manager/src/releases.rs b/crates/huak_python_manager/src/releases.rs new file mode 100644 index 00000000..add09433 --- /dev/null +++ b/crates/huak_python_manager/src/releases.rs @@ -0,0 +1,665 @@ +//! This file was generated by `generate_python_releases.py`. + +const DOWNLOAD_URL: &str = "https://github.com/indygreg/python-build-standalone/releases/download/"; + +#[rustfmt::skip] +pub const RELEASES: &[Release] = &[ + Release::new("cpython", Version::new(3, 10, 13), "apple", "aarch64", "pgo+lto", "a2635841454295c5bc2c18740346fd8308f2a8adcce2407b87c9faf261fed29c", "20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "aarch64", "pgo", "67b64174b8d33aa1b2e3bb3a4a3e475ff96d511c540f46e3c0774f8b77be4d91", "20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "windows", "i686", "pgo", "1c015e64732d3a18951fcea30d364c80fb83322363fec1a2c85c70840fb75a92", "20231002/cpython-3.10.13%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "x86_64", "pgo+lto", "e7db06af69f8a51b05f9f82032957d08c07cf75a06a3db6973aa0d4a05d2a95c", "20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "x86_64", "pgo", "ced8c4c842dc58b64c3498d83ef792396d4d58c05de89c8213a879b88f6adaf0", "20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "windows", "x86_64", "pgo", "f1960211258ba78abc1b7bf7cd7cfcf2c656f4de22cf197e485c64e722248169", "20231002/cpython-3.10.13%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64", "pgo+lto", "a28cc6d21373a41256cd176bd2f77a3190eb12f132602d344afc3dba6fa454c9", "20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64", "pgo", "29b0f9872472afdc9f8fbd04903c9d14fe4cbcff4e0885480626b16b007d327d", "20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v2", "pgo+lto", "2349336f27c18e487b88a621d6f62e0524b0dd94fd2747e63ce1df0a0739922d", "20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v2", "pgo", "f1121cc0fccb1c5e867923f39e3e7d6413720554ec079eac022f5fc69e7ee83a", "20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v3", "pgo+lto", "30ed0544f38f646541afccddf767fbb4454bb9378f7e2362f560f55be07c6618", "20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v3", "pgo", "05ba91f9f247c1b225fa9f0ddeeff7c8616dfeeb0df572b0aad9406502e895c9", "20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "apple", "aarch64", "pgo+lto", "6e9007bcbbf51203e89c34a87ed42561630a35bc4eb04a565c92ba7159fe5826", "20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "apple", "aarch64", "pgo", "7576730607c285335b44b5cf00059674471d37e3cb60b1689c9c7d5deb45ab3a", "20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "windows", "i686", "pgo", "2670731428191d4476bf260c8144ccf06f9e5f8ac6f2de1dc444ca96ab627082", "20231002/cpython-3.11.6%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "apple", "x86_64", "pgo+lto", "3685156e4139e89484c071ba1a1b85be0b4e302a786de5a170d3b0713863c2e8", "20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "apple", "x86_64", "pgo", "1c0d563ffc534fb58c46c2af679ccf2bfeaa1cc587930a11a6e640eee4a50267", "20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "windows", "x86_64", "pgo", "38d2c2fa2f9effbf486207bef7141d1b5c385ad30729ab0c976e6a852a2a9401", "20231002/cpython-3.11.6%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64", "pgo+lto", "6da291720c9fe2f63c5c55f7acc8b6094a05488453a84cfcc012e92305099ee7", "20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64", "pgo", "bd5eca6931ad06af10473dbae07b206a1c60202b7cb3b83953397fa607c576ab", "20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64_v2", "pgo+lto", "029f2bcb4a87956e8d62ebd89e31079d659a877fd2814ce7ef6ae32a230d1bb0", "20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64_v2", "pgo", "28e7cf5f4708a4f5cae638df2c78f20d0156e91e9142622f17c7e75d39d326cb", "20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64_v3", "pgo+lto", "d11a21ee082536a800c32394b076d6b72a840b0d2e70b8e076c7831a4a1d5ed4", "20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 6), "linux", "x86_64_v3", "pgo", "d21d98d97dc9716f76fa16483c5a9c9204529c62b341b2c3e3f25cdc64b76253", "20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "apple", "aarch64", "pgo+lto", "25fc8cd41e975d18d13bcc8f8beffa096ff8a0b86c4a737e1c6617900092c966", "20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "apple", "aarch64", "pgo", "4ac56c56194c7eb6f4ed8461b1b9b2150caf56e330086ad9031ea96ceab7e541", "20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "windows", "i686", "pgo", "465e91b6e6d0d1c40c8a4bce3642c4adcb9b75cf03fbd5fd5a33a36358249289", "20231002/cpython-3.12.0%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "apple", "x86_64", "pgo+lto", "3b4781e7fd4efabe574ba0954e54c35c7d5ac4dc5b2990b40796c1c6aec67d79", "20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "apple", "x86_64", "pgo", "e19bb3022a8bf103a27972c1bca743e257000d48f58912e0d5095271b30d4519", "20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "windows", "x86_64", "pgo", "5bdff7ed56550d96f9b26a27a8c25f0cc58a03bff19e5f52bba84366183cab8b", "20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64", "pgo+lto", "5ce861907a2751a3a7395b1aaada830c2b072acc03f3dd0bcbaaa2b7a9166fc0", "20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64", "pgo", "5d2955319e64abf7c3b95e2d80bd52ed9348234ec1f0875b606cdaede4c1b798", "20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64_v2", "pgo+lto", "d0dce9731a9de1d9cc2528e9dd6389d4cbb6ca954a637593d2952e0849d50f07", "20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64_v2", "pgo", "bb7b57e4a5dc8d903dcb551eba0f5c0e35de29ebd576723a61fd4e794808af82", "20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64_v3", "pgo+lto", "e9623e1e4cc852f67d35cf79890a2f01e7380c9f0df2fa15663ed317ac2d4e69", "20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 12, 0), "linux", "x86_64_v3", "pgo", "95ee9be9d35c0c4acd1d57c0536538c282147aac77dfb74127b643f022f11acd", "20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "apple", "aarch64", "pgo+lto", "10abf67384ea0728fff82782408f8e398bc17ef55985d6ebef2aaae319a7df31", "20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "apple", "aarch64", "pgo", "ac28957c99af72c249ed580362453522be2cac8185b2fc76c270114ae08307d1", "20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "windows", "i686", "pgo", "6ca00494d1e169b736d09b43d1b700b48d8ecdb9fabfcff8e1c6748f6446ee3c", "20231002/cpython-3.8.18%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "apple", "x86_64", "pgo+lto", "b89799abf243739a4ef5b71e7373e45e56e097aec0853b813aa31d1dcb68799e", "20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "apple", "x86_64", "pgo", "b84f96efcb0cd2164438d18cca73355c47285bc1c14bbc6a4caab92aa962b009", "20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "windows", "x86_64", "pgo", "1ccf8abb4f8ba2d8fe8c172d66901ea339d7b6b825fc6094603764954a68071b", "20231002/cpython-3.8.18%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "linux", "x86_64", "pgo+lto", "286910aea21d8c7a5b0ecda6214eec6c197122b7b738fdfd6ed59f7c0ba9f65f", "20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 18), "linux", "x86_64", "pgo", "3209542fbcaf7c3ef5658b344ea357c4aabf5fe7cbf1b5dea4a0b78b64835fc0", "20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "aarch64", "pgo+lto", "bdf883f6a6ba9ea1bd72029670737232bfbd9a07708d85dd2bf6a3deb2aa3a5d", "20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "aarch64", "pgo", "7deef8fa6cdb458ea2e2750121fafbb6c894ff24ce1d0934c62125e8d3171345", "20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "windows", "i686", "pgo", "014361988b6f0eb91f87bdb6712e633cadfbf26d5cd12f2d188b865ca6f0e1b3", "20231002/cpython-3.9.18%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "x86_64", "pgo+lto", "0ee342ed3d6051a41e7702bec98db463c5ffe4dcb634e10cae464e42adb2fb3e", "20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "x86_64", "pgo", "244657f5c88c3cfdeb72530772c3324c288106b8953333987db72d249dedc78e", "20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "windows", "x86_64", "pgo", "4303f69c1fbec2c933ff7ac6f2195fc66844223f66341c819fee69a12cb816f7", "20231002/cpython-3.9.18%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64", "pgo+lto", "02f5c6bf29f173fe1653965409b891691ab413e579766d3e5bccdc74634b9bde", "20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64", "pgo", "e71731c172a1350a80bff6e3b33ee2f847938e7241df824157686142b4055d2e", "20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v2", "pgo+lto", "928adaab23d22ff171210b1028de2c2f25ab9859c9f02fae35b8585f97e3b122", "20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v2", "pgo", "37daa5390a03d9bd68972edd73049cb0e55ace3d4889daa7bbc8a1f95ae36add", "20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v3", "pgo+lto", "9b49ad6c722a84082b82a69ce9efe02d9f7730182d525fbed8d2600f22a7d41a", "20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v3", "pgo", "1f26d31dc08daa29a5ad7ef0ee4e9921c92964ec60d9106a644625e0bc8127e3", "20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "aarch64", "pgo+lto", "1e1afee7561ac92a00f06d5531b6bdca8e5f886f24a94dc0dd923cd067ef7dc0", "20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "aarch64", "pgo", "bdfb4f4c1d8a5140a6d4a9050a083d4f5a5e9ca2558bf79f1cdfcb1357e1f3f5", "20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "windows", "i686", "pgo", "7a0cd41f7e0f462a184cd0a10357650a890b683d582687252adb52f415b9e21b", "20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "i686", "pgo+lto", "cc5625a16fbec682d4ce40c0d185318164bd181efaa7eaf945ca63015db9fea3", "20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "i686", "pgo", "e24389b92b9046957ca91bebe08d0d89aa2aef075b196a73dfeacd23fdd88560", "20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "x86_64", "pgo+lto", "4ac32857e8b04b235b0be6e70ddb1e61b1d24712e1641f2db16a1507c7d7e4eb", "20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "apple", "x86_64", "pgo", "b80b466a3b8677b55228549cef48a45241514cda36ff9dd8b1d94ff51671a9df", "20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "windows", "x86_64", "pgo", "01d120d6b49ee0a3fa05a1cf0ef172d07d9e8dac118647d7c3de8d33938c11c2", "20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64", "pgo+lto", "da67df5bb26e4097f4747d486a35051f05264a6ab721775e6dfe7e456f6af52a", "20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64", "pgo", "e4f1f6905b6d2e32c64dd9acc8983b7b7ba71235957059a260b6f0b6f25b297d", "20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v2", "pgo+lto", "6d56b36d948aa8c0a368dc1cbfc8d1c4c9bbd8c7329ae72244f978754a0a9946", "20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v2", "pgo", "4a1cd890a22c52549c834c0b03696199d4f90a2f5b568ecf735bcd6757e885ba", "20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v3", "pgo+lto", "246721cc190c4b8c46713d9a793f34a659e0f595dcee6aa9be6603ac93fdb336", "20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 13), "linux", "x86_64_v3", "pgo", "1abf2272e08e323bf9a2810ea10c3cc6571e83690ae7f144a61bf70ed374b8b0", "20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "apple", "aarch64", "pgo+lto", "7bee180b764722a73c2599fbe2c3a6121cf6bbcb08cb3082851e93c43fe130e7", "20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "apple", "aarch64", "pgo", "4d7183fdc3274cb73b3fe8cacaee75becb8d9d2c53ab0df0433fe11323043171", "20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "windows", "i686", "pgo", "c9ffe9c2c88685ce3064f734cbdfede0a07de7d826fada58f8045f3bd8f81a9d", "20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "i686", "pgo+lto", "e156b972b72ae2703c13da3335b16ce5db9f1f33bac27cb0c444a59d04d918fc", "20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "i686", "pgo", "e979d8d5c092256acc41c44917b6d16431b2e22f8355fd2cc2006bbcab917aa4", "20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "apple", "x86_64", "pgo+lto", "e43d70a49919641ca2939a5a9107b13d5fef8c13af0f511a33a94bb6af2044f0", "20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "apple", "x86_64", "pgo", "901500827292bf3dc8e1ff9f6988f4bf9b7658fb90c55f5b8b6fc01ce3f15469", "20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "windows", "x86_64", "pgo", "6e4d20e6d498f9edeb3c28cb9541ad20f675f16da350b078e40a9dcfd93cdc3d", "20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64", "pgo+lto", "556d7d46c2af6f9744da03cac5304975f60de1cd5846a109814dd5c396fe9042", "20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64", "pgo", "33a9fae7458ddb09b0c1fd481ad033a4cacc332217d06ec57a76ac082e01a1e0", "20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64_v2", "pgo+lto", "8b684dcc304f056ad642257fc4987e6a943d0e54b01c3876f838dcc543a321e4", "20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64_v2", "pgo", "a0cd8282dd99f73e211990e7254f48091ac0f51090ad554572bf7e8d493beb8e", "20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64_v3", "pgo+lto", "856706fdb16151ac31127151e5c9aefc82061605812b009002141fe2cf137440", "20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 5), "linux", "x86_64_v3", "pgo", "0453266c1d068a0d0df66c35639bec7d4572f7ee896a8a1ac0484aa10f66ad41", "20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "apple", "aarch64", "pgo+lto", "d08a542bed35fc74ac6e8f6884c8aa29a77ff2f4ed04a06dcf91578dea622f9a", "20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "apple", "aarch64", "pgo", "ce2aaf863896e617ee36bb91b7424fc2b7a2e3c8e8fdeb496d887159b5bd0e77", "20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "windows", "i686", "pgo", "0931d8ca0e060c6ac1dfcf6bb9b6dea0ac3a9d95daf7906a88128045f4464bf8", "20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "linux", "i686", "pgo+lto", "aaf4b15bdc35674dbe25d4538c9e75e243796a0cc8841fd31d7bbbee6703342a", "20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "linux", "i686", "pgo", "fd5b23e7047e41e76c572ead6bf4a667591e0e314c342d8ea5b33d4667db6d30", "20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "apple", "x86_64", "pgo+lto", "2c4925f5cf37d498e0d8cfe7b10591cc5f0cd80d2582f566b12006e6f96958b1", "20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "apple", "x86_64", "pgo", "b36a0f71105e7f4dee11ebf8a1f774ccbc2918adc9e95ff3b22b5830d339e4fe", "20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "windows", "x86_64", "pgo", "68c7d03de5283c4812f2706c797b2139999a28cec647bc662d1459a922059318", "20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "linux", "x86_64", "pgo+lto", "4bfe1055dee03d4357b3dca5b334df3076b8aab066cdd84596199b9712ee3632", "20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 17), "linux", "x86_64", "pgo", "2814c8a2bd478e6919ffbd49e853e2b41ba43caff39a41bc6e51eedb9566f782", "20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "aarch64", "pgo+lto", "a1d1bdc69abcb05850ef7e3af8721b768a3eb88cd7d0e02fc47c1a319b26cc5a", "20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "aarch64", "pgo", "c704d0155fb7844de75b8e28c529b092fb94befe72378c5678c95069dc4f166e", "20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "windows", "i686", "pgo", "333ace34d9695ebc87efb0525a5216e6f4990487046d958b06032f2ba97b5065", "20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "i686", "pgo+lto", "9e40a541b4eb6eb0a5e2f35724a18332aea91c61e18dec77ca40da5cf2496839", "20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "i686", "pgo", "e380e73673667bd9c69aca8d42a092a4c79957c2565cdc92a9cd293aec438f01", "20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "x86_64", "pgo+lto", "8ba6bfc1d97a6e86ae30b075e083544fd3569046197b15b8299fdeb44758d3e7", "20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "apple", "x86_64", "pgo", "d8d4648f1bfd7c5a97e5996641f32e4a7ea3ac0e04ac0f2999fb0c01532b7ecd", "20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "windows", "x86_64", "pgo", "33930b7d0db71e229b61cfa0d25ea89ce426b37a7410a47a318aeaf4fd7e260d", "20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64", "pgo+lto", "d8e75f7c4ca2b08f1b24852b628d167ae1529d96762cde1526193af6f9b050c5", "20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64", "pgo", "3ea19fc015bde5352f910de100e7a41245dd6182ceb98066e182c917038a15e8", "20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v2", "pgo+lto", "fea8e89c4e32a36ef280ced10c63acc6b6b0f0219b272bda7068337f5b73e36d", "20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v2", "pgo", "6e5a6ee8795b9bd7f8c03dbd95e0a5344cf4e6cd560c15154b06929c8d517cfd", "20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v3", "pgo+lto", "3ee54522c53031be3f5f454cc00a37ba290d2fc441e6c328497bc5a8dcaf5a9a", "20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 18), "linux", "x86_64_v3", "pgo", "2766e313787ef5fea5362e3375f67080e4552239ce904bf1f639bbd6277b3a0a", "20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "apple", "aarch64", "pgo+lto", "a7d0cadbe867cc53dd47d7327244154157a7cca02edb88cf3bb760a4f91d4e44", "20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "apple", "aarch64", "pgo", "537196399f5aedcd10d863fc63acb595c33f290ff8c31bdc28c2f6703a372c7a", "20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "windows", "i686", "pgo", "0743b9976f20b06d9cf12de9d1b2dfe06b13f76978275e9dac73a275624bde2c", "20230726/cpython-3.10.12%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "i686", "pgo+lto", "159124ac71c86d8617eae17db6ed9b98f01078cc9bd76073261901826f2d940d", "20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "i686", "pgo", "ac3a5556b1cccf787705978fe47f08f2d7a9511a655ec7126153b2d8a90cae63", "20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "apple", "x86_64", "pgo+lto", "f1fa448384dd48033825e56ee6b5afc76c5dd67dcf2b73b61d2b252ae2e87bca", "20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "apple", "x86_64", "pgo", "026fb6dd2954074c214b5c06ead9b7ea707693137dba345d911c94e2cfa836bf", "20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "windows", "x86_64", "pgo", "cb6e7c84d9e369a0ee76c9ea73d415a113ba9982db58f44e6bab5414838d35f3", "20230726/cpython-3.10.12%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64", "pgo+lto", "79fe684338fa26e1af64de583cca77a3fd501d899420de398177952d5182d202", "20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64", "pgo", "b5a16b62577e7ecd14b69850a11800628dbac30642388a2efa80f752f79c633c", "20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64_v2", "pgo+lto", "1f3d033b9202a50a376cc1cad51bf8d57cf126ef8b8a137fb39d621bd237bde7", "20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64_v2", "pgo", "4dd9183364624e1a339a1b5877f0b0ce3602c8c4918f1052c4639b144aa89f1d", "20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64_v3", "pgo+lto", "5de8b010ce9916504ee483541cab7ffcf394af4801f6a3a159103ae753fec5e7", "20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 12), "linux", "x86_64_v3", "pgo", "2254907dc8eaa587638edd9de2c861f5062db49547e89a2924cf29e9ed13c3bb", "20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "apple", "aarch64", "pgo+lto", "988d476c806f71a3233ff4266eda166a5d28cf83ba306ac88b4220554fc83e8c", "20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "apple", "aarch64", "pgo", "7bbdbdadb92c01a86a2a300e55af3a43fda9b5d2ead5b5382ce442c4a950ce43", "20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "windows", "i686", "pgo", "0d22f43c5bb3f27ff2f9e8c60b0d7abd391bb2cac1790b0960970ff5580f6e9a", "20230726/cpython-3.11.4%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "i686", "pgo+lto", "1bf5ba6806abbe70770e8e00b2902cbbb75dd4ff0c6e992de85e6752a9998e1a", "20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "i686", "pgo", "257115e345a36b6004d18cb25536fa302cddc80880a7c5d605e0ea99e865d5f7", "20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "apple", "x86_64", "pgo+lto", "6d9765785316c7f1c07def71b413c92c84302f798b30ee09e2e0b5da28353a51", "20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "apple", "x86_64", "pgo", "228c91b936a470fe59d80de8065b3fa5f1b735a657cf4a8edfd12b70a972c2f3", "20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "windows", "x86_64", "pgo", "1692d795d6199b2261161ae54250009ffad0317929302903f6f2c773befd4d76", "20230726/cpython-3.11.4%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64", "pgo+lto", "b48061173c763971a28669585b47fa26cde98497eee6ebd8057849547b7282ee", "20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64", "pgo", "f12341e0b996a4b3d66b0d7c3b1c454ad851318f1abe80b9fbab0d282850d315", "20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64_v2", "pgo+lto", "6626870973c017de0ab6aa89004398b993634c9bf08e8d85f0800d7506a8bef9", "20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64_v2", "pgo", "a7ad59338981837d55ac5763c481f0ec68685e43496b19fe0859be1e8fd02cfc", "20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64_v3", "pgo+lto", "a7d43d3b3620c7a14a99c087abe6ef43bc961799919e35c23faea676bcc40b98", "20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 4), "linux", "x86_64_v3", "pgo", "d790c45d238bf55f7e974e0a855af9e28850be61f1b3c071132579429eacbc2a", "20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo+lto", "bfc91d0a1d6d6dfaa5a31c925aa6adae82bd1ae5eb17813a9f0a50bf9d3e6305", "20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo", "d2c3454972e9cc87e5b0bb12976e9e8911ed18281342036198db6f1afca2c882", "20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "i686", "pgo", "5de953621402c11cc7db65ba15d45779e838d7ce78e7aa8d43c7d78fff177f13", "20230726/cpython-3.8.16%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo+lto", "e8d832f16548e199e7c622eec9e06f746ba9dbbdf562dac8810c4e64e1f5115a", "20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo", "b38c1884528b19a54921bc529880c80cc50b986a278f90e479497fdc89ff82d2", "20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo+lto", "21c0f4a0fa6ee518b9f2f1901c9667e3baf45d9f84235408b7ca50499d19f56d", "20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo", "7126e20b052cbb1794812c43da591cac314bf0aa5d7961ff8a58af719ddd0bf4", "20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "x86_64", "pgo", "6316713c2dcb30127b38ced249fa9608830a33459580b71275a935aaa8cd5d5f", "20230726/cpython-3.8.16%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo+lto", "446a1f600698167a3e70448787f61dd8b1e6fb8f50f50558c901a0f4d3c7a6d6", "20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo", "7d35b6ea512aba8f88c852674bbad8dcb2f68c3d674b62844eece40312c00f37", "20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "apple", "aarch64", "pgo+lto", "2902e2a0add6d584999fa27896b721a359f7308404e936e80b01b07aa06e8f5e", "20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "apple", "aarch64", "pgo", "e0730d210d50261de264298e50fecf524b4da8ddc3e6623fa80cd71e802c5a0b", "20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "windows", "i686", "pgo", "ffac27bfb8bdf615d0fc6cbbe0becaa65b6ae73feec417919601497fce2be0ab", "20230726/cpython-3.9.17%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "i686", "pgo+lto", "9984f59284048608f6734b032ff76e6bc3cb208e2235fdb511b0e478158fdb2b", "20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "i686", "pgo", "0f4633bf2bf6b4c6a0fc1c4d1f7a4c949b1ac2c84223c40154a26b888d1948d8", "20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "apple", "x86_64", "pgo+lto", "ba04f9813b78b61d60a27857949403a1b1dd8ac053e1f1aff72fe2689c238d3c", "20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "apple", "x86_64", "pgo", "a5e74cd1cfc99edd058983e21fdacfd848e304694002bdd338d31796cfc92aa5", "20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "windows", "x86_64", "pgo", "209983b8227e4755197dfed4f6887e45b6a133f61e7eb913c0a934b0d0c3e00f", "20230726/cpython-3.9.17%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64", "pgo+lto", "cec2385699c047e77d32b93442417ab7d49c3e78c946cf586380dfe0b12a36dd", "20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64", "pgo", "ee3e366a8d919ae0b66a033de3066f949fbf8485d72f1fb99c54b05d1f350549", "20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64_v2", "pgo+lto", "f50a158e8731f3d4f371c8c2bc660dea0dc7701e6d43335e6fcbf6ad90518346", "20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64_v2", "pgo", "3333531908ba46f5c7d07ff423d9230c8b01bbc84cc4293b5b396fa7d19c5057", "20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64_v3", "pgo+lto", "f939b8bf843e6969b90f96d46c3a8460fb910745264dbc0e3d680c671cdfd543", "20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 17), "linux", "x86_64_v3", "pgo", "07aebdecc24381800ebddec0ba8c0972f82348f5824a04b3a7c1b87589a3c0fd", "20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "apple", "aarch64", "pgo+lto", "da9c8a3cd04485fd397387ea2fa56f3cac71827aafb51d8438b2868f86eb345b", "20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "apple", "aarch64", "pgo", "94f299421d368e95386ceccfa6a67ebf8f484bf474b2e5688b190efacb139526", "20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "windows", "i686", "pgo", "60e76e136ab23b891ed1212e58bd11a73a19cd9fd884ec1c5653ca1c159d674e", "20230507/cpython-3.10.11%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "i686", "pgo+lto", "f55942f89c54c90af53dba603a86f90956eec87c7fb91f5dc2ae543373224ccd", "20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "i686", "pgo", "30572f72909a80d99d445b2dc0d69d9e6e4af684b4fe4299d895f38b5825b348", "20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "apple", "x86_64", "pgo+lto", "e84c12aa0285235eed365971ceedf040f4d8014f5342d371e138a4da9e4e9b7c", "20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "apple", "x86_64", "pgo", "a33068b2ddf83d0beaf459de3065b0789ed863a37e7b7b392785a8668f0f8e1b", "20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "windows", "x86_64", "pgo", "9b4dc4a335b6122ce783bc80f5015b683e3ab1a56054751c5df494db0521da67", "20230507/cpython-3.10.11%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64", "pgo+lto", "38931a156ed020f5c579af37b771871b99f31e74c34fa7e093e97eb1b2d4f978", "20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64", "pgo", "9c84facd5ca2a506a345795af54256d25ae128946d0667f8e8eeb0bfa2541074", "20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64_v2", "pgo+lto", "071f282d9b013ff9c4ed7aefa742d8ad58f9ce025a1dae86c1b05f693e6b8b5f", "20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64_v2", "pgo", "a9a47ed7cef541940e64822239126f1805b82e93c4c5fb9b3f34a55d5e3c6104", "20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64_v3", "pgo+lto", "f1c08f668fecd54603f3616386db60eacac931a6ccde4f1d9af71e4351d49dbd", "20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 11), "linux", "x86_64_v3", "pgo", "eb88215e60c09771774eccbd49c59a9aab060189bb9f99acda488c1c627745b5", "20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "apple", "aarch64", "pgo+lto", "cd296d628ceebf55a78c7f6a7aed379eba9dbd72045d002e1c2c85af0d6f5049", "20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "apple", "aarch64", "pgo", "f6f92125e123e32ba1a529f858ddc75d43bf47e14ef474a17f0f49988f556960", "20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "windows", "i686", "pgo", "877c90ef778a526aa25ab417034f5e70728ac14e5eb1fa5cfd741f531203a3fc", "20230507/cpython-3.11.3%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "i686", "pgo+lto", "58734b66ee8d2762911f32c6bf59f36928990dc637e494f9ac8ebdd589d64547", "20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "i686", "pgo", "c7a8f5da763e74566c0bb1d4443a63fd253ceb93db2c8fa6d01cfcb9ec681356", "20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "apple", "x86_64", "pgo+lto", "2fbb31a8bc6663e2d31d3054319b51a29b1915c03222a94b9d563233e11d1bef", "20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "apple", "x86_64", "pgo", "27d2d92aa011b5583b741d2aeb032124c4093c8bf2affc55b50b776f67897bb0", "20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "windows", "x86_64", "pgo", "9d27e607fb1cb2d766e17f27853013d8c0f0b09ac53127aaff03ec89ab13370d", "20230507/cpython-3.11.3%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64", "pgo+lto", "b9e2e889a5797b181f086c175a03a0e011277a708199b2b20270bacfca72fb91", "20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64", "pgo", "07ecc5baf2631aa6fcd767c42e7d513ce2158b53c2f257c17ab0e4d2ec313234", "20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64_v2", "pgo+lto", "c44c216e1ca81df945136a77e470137397b7c5d7f092c1954d534b7818422e1a", "20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64_v2", "pgo", "109fc66e303d15015b1722f0d3d469f28db5b824e29812fd047bded8c4f0d533", "20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64_v3", "pgo+lto", "0c1f4ef6f20d8a8443f3d24b8d744ce91188450a6e5f7832d4c01725f933fdb3", "20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 3), "linux", "x86_64_v3", "pgo", "f49a08efd1d1cb1f8ba2fcff68ad8bb518c6f5b89f4db4b0f601d95c529782cb", "20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo+lto", "d2b0c70e9926b208ad49aa6835d199f9365a162c4e61f985bb56057501a50cf5", "20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo", "d0f4fb81c1ee0ba95f40e0a1dabbd84aa94d8e7f90a1a755f5f811250a497038", "20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "i686", "pgo", "6f523738cbe27ebd747c214a53c93ad0adf89989a97441102967061d799892b2", "20230507/cpython-3.8.16%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo+lto", "2b157b213756b1e71a4160c088be79f6670a0881b28ef36d589a128b2edcb860", "20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo", "b5c8717b5ea8a38c3e33a805a560bcc719705d774803184cfcef8d4b237b7cd5", "20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo+lto", "67952743c67deedb873361597482f61494d4c895eec9c763c5cff45ac4302f4c", "20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo", "b6f43be03324effa1e2b64d45838f56bdbb6bca39aaf86132466437d8aa4e17e", "20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "x86_64", "pgo", "13f9c568e3c75161a00284acd1ddb829f9487e6f674c52d7adb77b1a300c1585", "20230507/cpython-3.8.16%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo+lto", "1e260dd0f37cc661b06df64109ac31c587c01cac0bb8dfd922060dce9a6b82a5", "20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo", "2cea4718061d3092f82db9e302aeba01d6f0e29ccd2082f8649ebeeaa9a5904e", "20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo+lto", "c86ed2bf3ff290af10f96183c53e2b29e954abb520806fbe01d3ef2f9d809a75", "20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo", "669211a212a3a874056d575dfb0f01fbb703724122e54ab8efa8e5416d098595", "20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "i686", "pgo", "d7994b5febb375bb131d028f98f4902ba308913c77095457ccd159b521e20c52", "20230507/cpython-3.9.16%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo+lto", "4df4cae277ba3ff8de7a16ef3b38f7214c2b0e4cc992f09505b859b0c94f2fd8", "20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo", "0000368be133d2af6c3d29cac61d2f971e995d63e13a8ca20296600b44fa3354", "20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo+lto", "5809626ca7907c8ea397341f3d5eafb280ed5b19cc5622e57b14d9b4362eba50", "20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo", "f10f928f009f2f47468c03847571c5ae5c27016dca5e596733266c7c61ba2723", "20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "x86_64", "pgo", "199c821505e287c004c3796ba9ac4bd129d7793e1d833e9a7672ed03bdb397d4", "20230507/cpython-3.9.16%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo+lto", "9fc89e1f3e1c03b4f5cd3c289f52e53a7c5fc8779113c2af5a10b19b2e8a2c2f", "20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo", "7960ea524572b95bf7454e1dafa98a6177b1720359ed17121ad4fe360bf6df19", "20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo+lto", "3ce0c3901a12abe123469839855b57f89d910bc4094b818b18860cdf3248bcda", "20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo", "c4a1f2d7510c9f3a49b9a30797168571b8abdb833b4694c64453f46471cf5a1d", "20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo+lto", "dc1c5190c8fb33bf315aad4c4af6342a95976610dadfe4e1218810e63a611431", "20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo", "9f75349d9ca9c50bf889bd465b4a3bd81373dac6ca1955a879349a1c0908fb62", "20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "aarch64", "pgo+lto", "2508b8d4b725bb45c3e03d2ddd2b8441f1a74677cb6bd6076e692c0923135ded", "20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "aarch64", "pgo", "4f31ebcddf48b995d026745a52ba36978dd6f0b8cff84f86c2f6c1cb26fe047b", "20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "windows", "i686", "pgo", "3d79cfd229ec12b678bbfd79c30fb4cbad9950d6bfb29741d2315b11839998b4", "20230116/cpython-3.10.9%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "i686", "pgo+lto", "ae0745620168e65df44ae60b21622d488c9dd6ca83566083c565765256315283", "20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "i686", "pgo", "23a96e913921cc0bbc9d872c546173153e2b6bdb859799e431749e6f03dd757f", "20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "x86_64", "pgo+lto", "1153b4d3b03cf1e1d8ec93c098160586f665fcc2d162c0812140a716a688df58", "20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "x86_64", "pgo", "a72141afb39d4fee61dd5d5511c3129b423d1e33459df3788f92340a37be9f35", "20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "windows", "x86_64", "pgo", "4cfa6299a78a3959102c461d126e4869616f0a49c60b44220c000fc9aecddd78", "20230116/cpython-3.10.9%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64", "pgo+lto", "c5f7ad956c8870573763ed58b59d7f145830a93378234b815c068c893c0d5c1e", "20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64", "pgo", "12554e3127369e440c7d99d5a7f4b7cec2f7989946f05f3db6091fd0b1519bdd", "20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v2", "pgo+lto", "49f4a8c02efff2debbb258973b1f6efbd568e4be2e5dca07c7dcd754a7bff9cf", "20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v2", "pgo", "15709b1e2e35c6822f0d900646dd3a4554a66589a6c9b62d896ac6016f2fd416", "20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v3", "pgo+lto", "366bdd71ae4a8cdd86060a8e44ccd7f30d5f72864c88204bf3acf5aecfe748ef", "20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v3", "pgo", "ac7b28b616a0591ebb1ca6fc293e4424a6959139d53a95bff0247a639a797a34", "20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "apple", "aarch64", "pgo+lto", "da187194cc351d827232b1d2d85b2855d7e25a4ada3e47bc34b4f87b1d989be5", "20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "apple", "aarch64", "pgo", "5b254177b74a5e97671c20de4980ddf22217eb6f88640bc45d2daab5f1c3dfbc", "20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "windows", "i686", "pgo", "b062ac2c72a85510fb9300675bd5c716baede21e9482ef6335247b4aa006584c", "20230116/cpython-3.11.1%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "i686", "pgo+lto", "cce57c5fbd3ff10b91d86978b7ad15b9e02f57447d4f429c0bd4e00aa676d389", "20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "i686", "pgo", "07b34a6ccef1600e2413594daafa5bf6cac9c578baae90092cc6ee038e90a6ba", "20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "apple", "x86_64", "pgo+lto", "0eb61be53ee13cf75a30b8a164ef513a2c7995b25b118a3a503245d46231b13a", "20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "apple", "x86_64", "pgo", "afb78c8f7ffb1694fd9098f15654e513e348600d39252a8563662840bcaa577e", "20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "windows", "x86_64", "pgo", "f5c46fffda7d7894b975af728f739b02d1cec50fd4a3ea49f69de9ceaae74b17", "20230116/cpython-3.11.1%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64", "pgo+lto", "02332441cb610b1e1aa2d2972e261e2910cc6a950b7973cac22c0759a93c5fcd", "20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64", "pgo", "0a08ce1e39f8e75c58c989d7f42d9f93a3ce2bcf3fa40183d4b867682e1a1843", "20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64_v2", "pgo+lto", "988315feb234a8c630ac4f73f47d16e172e3766166f3a7213a65f8cf7a75a713", "20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64_v2", "pgo", "c645ce9ab13119bf6fa1413a14a32760b719c63acd417c072d40990373bc14f3", "20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64_v3", "pgo+lto", "8e279b25388e47124a422f300db710cdc98c64cf24bf6903f6f6e8ddbc52d743", "20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 11, 1), "linux", "x86_64_v3", "pgo", "713e99808b170627da7dbec639c4070b90bb48971400b4b41b4a5b1be05723c8", "20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo+lto", "13c873cbb6bdbbca718298bda816b85399306f1c43e86275991d00ba19e970a8", "20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo", "a656ec589300093423f35de415831f472f677eba7775e15843d1b29b7f69f3bc", "20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "i686", "pgo", "c6e68fe79e495c1fded07e4760c3f9010e4ebb00038417088c3ab06a35a2652a", "20230116/cpython-3.8.16%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo+lto", "7993e75dc8485f6d07e8d28b6f2c30af98fd407a094b074cefced13b685ab14e", "20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo", "635ea94fbcde8db689efcdf1d63984e8e88b488b0b004e3f2b74de2aa0f5a1ad", "20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo+lto", "fcb8fac852c23bca13ed782797af0661908a1f4eba0bcee5ea9ea8137c9f7e0c", "20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo", "31eeb910c51c25325b397a0d2dda55175f463ff5d20a75bdc447b979e4c3758c", "20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "x86_64", "pgo", "548e7555a966b8c5d758207739dc8c6d1609a0586643d4d97374dda4f1ce8f3b", "20230116/cpython-3.8.16%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo+lto", "d50a4879109d433e981ec321a951ac99f09ef950a0cc8d1bd2657c0381b44e8f", "20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo", "0c6fa8c1de154fa98e61cb640539ff20a1b7c3051482d40788b59adc9c5089a3", "20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo+lto", "0961625b74a258a5737cc9e534db01a79941b64129c4973b222bf747702b8d73", "20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo", "8a64d029952bd686b6a0009cb46e2ae2d86cc92ef42bd1f4c96c8d82fb2c2334", "20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "i686", "pgo", "0d1e30812fcf3f67a37a9ee586eae0f549ad0dc1f6f4aaa3cb4bbc8caa0d8e0c", "20230116/cpython-3.9.16%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo+lto", "45ae96981f46064b1f5c954fdd4c79765c0c0e43093f5699b04066987797fed0", "20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo", "bee1a26ccd679db53f46a34479419d45144ab390d6c8c41bc8592ad3c8e2f922", "20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo+lto", "d5c296282af78d24547c7cd67c730f33ca333b470db9a37dfb7c87868610adc5", "20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo", "df6b4f6ecfdaae4fab4b38a7d5b13907769196a3c37d5f77c0c3a8e8b17d5da8", "20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "x86_64", "pgo", "86efb2e5674336f2bd3a222730277c5de11ff13cc2140f97e387cd8120954967", "20230116/cpython-3.9.16%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo+lto", "6658e7ccee3bdec98b9bc1d9d4b77a9cb6c3a453971acaf88b2d6d1a09120195", "20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo", "de6a77e25ab86a3f82822d609629beb9071202a2c7761857609320d49e3b740d", "20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo+lto", "522023fc50e4f147aefefd50c3865cf43b289659714049f8d4d1c3b9a2fca221", "20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo", "c7eb05a4e1d172b75916eed7656da08682bb626312d0bc844faaae70c243297c", "20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo+lto", "a8d70913fdd06fad10f6f80481f7d1d9b7ccab82c6bd78f9f2c51412566d1c3e", "20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo", "d8891362060af703dc83b8d7dcbb21c451ab4ffd3697cc20048544e2f9070301", "20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "aarch64", "pgo+lto", "54fd97ab5b13733b7d38db9a085deef99d875bd75f601cd72b85ba439b914e2a", "20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "aarch64", "pgo", "5a4a1128f6aa53a2cf6f748d0632da938cca4656c21688fbc564755ec4cd3519", "20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "windows", "i686", "pgo", "bb0cd9ef4f873f8fba51641702560ed707d117fbe978e08563926036c402cd18", "20221220/cpython-3.10.9%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "i686", "pgo+lto", "79dc8ce20e3025db0ecf9c65756badc69ccf047327f3dfbbfe82b272ee4d8d51", "20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "i686", "pgo", "5f36b2b7526476fcd9cd146f25fb198a7989c1c8231c7fb47d96e1b0abc51eb5", "20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "x86_64", "pgo+lto", "c51cc52e74f2461c79b1da0b4c36a45dfbd2cbd257cc9f1388b9612cfd520f28", "20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "apple", "x86_64", "pgo", "5c6d2b375f3944dc156c55544a13afa3ba0dc4bbc492135a3b7004a71f612cfd", "20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "windows", "x86_64", "pgo", "9902a5cb5c3b8eb13fb49e8804d16929161c38aa6d64f004d2317ca7c37a06cb", "20221220/cpython-3.10.9%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64", "pgo+lto", "30d76a0fb941d7f34a0eb9a92a9913614a49d8a6eb51533042107c96ebec2fda", "20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64", "pgo", "ddf27f962f0a13a4ff94d9dd51b55a33e82b97320fddfe42ce4ca74a6af1e70a", "20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v2", "pgo+lto", "79bf1d8af273c74b32e538465acdd3a2f4559544c9049e9cc50537036b2e75bb", "20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v2", "pgo", "5c826ddcc266b9df4435c359250c2fafc62cd38bf17d5e1ff45dd432f1462f38", "20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v3", "pgo+lto", "d216fd6cc8d553618c36bdcf07d0ac0c475c7e5138166d4c8d73b57f65e81a21", "20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 9), "linux", "x86_64_v3", "pgo", "a019f6daac0bb2b16d984760aa059d9ded4567254492f402f28671d0e0b8b28e", "20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo+lto", "1060612bc99459762b592447ca9a28b9caebfb6a2e9be8984df185469cf79f47", "20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "aarch64", "pgo", "844a817f620c5e41bc5f98480565500e801225a3c54fa08f6bce94d1deadf488", "20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "i686", "pgo", "e77b9bd187348d1afaddc56938fa3a208472899d87c28df218647be32402687a", "20221220/cpython-3.8.16%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo+lto", "2d28fca956664aab5036abd16b76b2c48b764c22db13f3f02cb5967bc55aa48b", "20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "i686", "pgo", "25cd0ef549a46f5c4c1a273c725c90e8c4cc36c5a7278364ef355070c8cdc8f3", "20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo+lto", "503b520ef765cd8be312bba3a1dffd025acb7081b906c0dcc7d8e2766c79c888", "20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "apple", "x86_64", "pgo", "47a11a91d1cb6754b2eea1a22adf293b24a106a00fe62c550b01164c1693dbc8", "20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "windows", "x86_64", "pgo", "4b24386dfd9f2e885932886c6faf417f5156f829d68add8282dd484e7d0e4ed7", "20221220/cpython-3.8.16%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo+lto", "9b2700ab1712e270a538e7ba5e406bf557c8e5295436fa087e6604c6f5c3ae66", "20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 16), "linux", "x86_64", "pgo", "4e62766abe8a1afefe0b001e476b5e4c6c7457df9e39fefc99dad0bf9bb6648e", "20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo+lto", "bebe75c74448b41eefe692acb8d187110632fb28d82349b6650dd75b92e71024", "20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "aarch64", "pgo", "a83812be1383194760c5afcf85c51c553ab5e97ff2047688ced7f99aa15edda1", "20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "i686", "pgo", "ce10ab19ff0540aeebc0c04eeecf467dc8f41f9efaebc794c5f2f33f8c05c406", "20221220/cpython-3.9.16%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo+lto", "94185e11d93f47e7a5b9333437d73a7a35207f148ea33a0f3b037ee194f1cce5", "20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "i686", "pgo", "5264ee5ec0b7cddb233d0bd61e43c7fbccdd5fcb1886ebece938ed8836280aeb", "20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo+lto", "1aca8f5ec886473d62716b8cff344e0c43d916ae075629cd8360457e7a2a9c5b", "20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "apple", "x86_64", "pgo", "9bfcbe66e0984239341cd89985c117395fa9c604419b8ec706534f7760689631", "20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "windows", "x86_64", "pgo", "d37203112d9f268ff2fcdbe84f3ad30f83f2d207fc121954f7146906d59b80f0", "20221220/cpython-3.9.16%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo+lto", "a6db741646ef78324c6190a9d45e60070d8b29397468482104321d44e6fd09c4", "20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64", "pgo", "81321225784f6f301afc62171826486bef718566e2dde0150a0e2c963f249999", "20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo+lto", "7836f6bb18a9478fdf8e48a4a3a0b11cfd42436a84663c45c5c2f1f4ce1c9d05", "20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v2", "pgo", "f22597d932c442657624d8f0934fd8a035ac661dcc17aaec7fdbb6deb7c716b5", "20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo+lto", "8bb0362f3d60ae68586e1521e292f6af34dc4e0b07fcdce9d404bd8b21ebda46", "20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 16), "linux", "x86_64_v3", "pgo", "432d34cd56b7fbf3a3559e6136d5ce3b35694efad55a8feb38712b2f2aba9e76", "20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "apple", "aarch64", "pgo+lto", "f8ba5f87153a17717e900ff7bba20e2eefe8a53a5bd3c78f9f6922d6d910912d", "20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "apple", "aarch64", "pgo", "b905bdb0103b3a58f567719f544fb3a566f1587e724960c053da33367b3bbe21", "20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "windows", "i686", "pgo", "7547ea172f7fa3d7619855f28780da9feb615b6cb52c5c64d34f65b542799fee", "20221106/cpython-3.10.8%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "i686", "pgo+lto", "0ab3156bbdc87db8a9b938662a76bb405522b408b1f94d8eb20759f277f96cd8", "20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "i686", "pgo", "229132c4708e236fe96fdc7db6abb230d3d454bd7cdbf198c546694b05dc75f3", "20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "apple", "x86_64", "pgo+lto", "a18f81ecc7da0779be960ad35c561a834866c0e6d1310a4f742fddfd6163753f", "20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "apple", "x86_64", "pgo", "c56a4728bdf498e3a4351906474811eafe0da29d811d0f5097d1f01e1fa7017c", "20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "windows", "x86_64", "pgo", "ab40f9584be896c697c5fca351ab82d7b55f01b8eb0494f0a15a67562e49161a", "20221106/cpython-3.10.8%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64", "pgo+lto", "59630be21c77f87b4378f0cf887cbeb6bec64c988c93f3dc795afee782a3322e", "20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64", "pgo", "c75e0db9988cf3bd7b07a1172aea099354ae3b2bc5ded3eb97458286716d3175", "20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64_v2", "pgo+lto", "9e15b5a26c076a8f157e7077f4179d31c1eb6a5c58385b1a0ed9314f267c6acc", "20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64_v2", "pgo", "ecdc83e0e410254a779b4d53381ed1ea4574ff8debb6476721d8b880c2b3d0f5", "20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64_v3", "pgo+lto", "74a4623b1d90e1ca661384442488fbed2cbb59cba9a891ff2f2fc2cdfeb423a9", "20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 8), "linux", "x86_64_v3", "pgo", "a852c326fe8a84ec3ee059de1788b43927ed422f862a8bd25362351c7aa95646", "20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "apple", "aarch64", "pgo+lto", "fc0f944e6f01ed649f79c873af1c317db61d2136b82081b4d7cbb7755f878035", "20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "apple", "aarch64", "pgo", "7e38bf819fd82e773069b1da68afc6909754688e434d3fc3cb26991a917f4e22", "20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "windows", "i686", "pgo", "98bb2315c3567316c30b060d613c8d6067b368b64f08ef8fe6196341637c1d78", "20221106/cpython-3.8.15%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "linux", "i686", "pgo+lto", "f76c0d13f600e819696035851ec47cf5a233cf053d2de85fbd8e5e12a8146f5f", "20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "linux", "i686", "pgo", "95172926c26bce7f47cf62379c6bc9b60b1b65c98a9fcdfe12c832f58456b31a", "20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "apple", "x86_64", "pgo+lto", "e4fd2fa2255295fbdcfadb8b48014fa80810305eccb246d355880aabb45cbe93", "20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "apple", "x86_64", "pgo", "2d955f766dfb6c2c7301d31af55d75b332df1b8d5bc32c33f40ed07036a1c67c", "20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "windows", "x86_64", "pgo", "59beac5610e6da0848ebaccd72f91f6aaaeed65ef59606d006af909e9e79beba", "20221106/cpython-3.8.15%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "linux", "x86_64", "pgo+lto", "1fd71062d9b7d632af202972c4488fa9c2255d2ef072b80766ab059b37473ea5", "20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 15), "linux", "x86_64", "pgo", "b5d99fac0f7ba00f94462da8e623b54fbc142e6aa607512f8ff206155c4acafc", "20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "apple", "aarch64", "pgo+lto", "1799b97619572ad595cd6d309bbcc57606138a57f4e90af04e04ee31d187e22f", "20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "apple", "aarch64", "pgo", "03630a0e710f18398b79ae4c75a3b334494e3eb460961dfbfec1fac6ebc548ae", "20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "windows", "i686", "pgo", "a5ad2a6ace97d458ad7b2857fba519c5c332362442d88e2b23ed818f243b8a78", "20221106/cpython-3.9.15%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "i686", "pgo+lto", "7c5d8e6a4255115e96c4b987b76c203ae9c7e6655b2d52c880680f13d2f1af36", "20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "i686", "pgo", "82684dfa41889461a41fbd9644d18bc1f2ae4ba7bada4a5756ca0ae716f891f1", "20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "apple", "x86_64", "pgo+lto", "50fd795eac55c4485e2fefbb8e7b365461817733c45becb50a7480a243e6000e", "20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "apple", "x86_64", "pgo", "cad52518b3df57a6220bba8dca4c0872b0d2d2803f6f83fa496c323fdc48eff8", "20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "windows", "x86_64", "pgo", "d0f3ce1748a51779eedf155aea617c39426e3f7bfd93b4876cb172576b6e8bda", "20221106/cpython-3.9.15%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64", "pgo+lto", "b6860b9872f361af78021dd2e1fe7edfe821963deab91b9a813d12d706288d3d", "20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64", "pgo", "128878e5e4fe57dd0cbf4e599ed0850581d9c5a3ac4cbd3cbc03d6321c1551fd", "20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64_v2", "pgo+lto", "f8a7eed2e7c63398f3ea7a714127c32bbdd9ca473af29cc10a39cb0c2340b419", "20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64_v2", "pgo", "a71b7e3415767bd74c17c53683aff88161be7eba00d281e8e3884ae87d6ea80b", "20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64_v3", "pgo+lto", "03d7368bb700a9f246806931f9fae5013dc66674a19ba544e71eda4a553ec32a", "20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 15), "linux", "x86_64_v3", "pgo", "3cbb09e67680fbd51b88ca533c07af897ea83c7e5b132b926b838101245a78d8", "20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "apple", "aarch64", "pgo+lto", "9f44cf63441a90f4ec99a032a2bda43971ae7964822daa0ee730a9cba15d50da", "20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "apple", "aarch64", "pgo", "411816d51e330277d63d6b09e7eddce1614f57d985766bdc8d459f4787e78d87", "20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "windows", "i686", "pgo", "323532701cb468199d6f14031b991f945d4bbf986ca818185e17e132d3763bdf", "20221002/cpython-3.10.7%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "i686", "pgo+lto", "c379f2ef58c8d83f1607357ad75e860770d748232a4eec4263564cbfa6a3efbb", "20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "i686", "pgo", "484dedd1d55f6172fe4cdeb08f56223cacc455f722df5c2887c51e9db648a539", "20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "apple", "x86_64", "pgo+lto", "e03e28dc9fe55ea5ca06fece8f2f2a16646b217d28c0cd09ebcd512f444fdc90", "20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "apple", "x86_64", "pgo", "699285b78d9448046c3e999584ee08006049d40313f4f9fcadfbbf942656986c", "20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "windows", "x86_64", "pgo", "5363974e6ee6c91dbd6bc3533e38b02a26abc2ff1c9a095912f237b916be22d3", "20221002/cpython-3.10.7%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64", "pgo+lto", "22e59fa43657dc3487392a44a33a815d507cdd244b6609b6ad08f2661c34169c", "20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64", "pgo", "6a85b76bbd50f2bc1ec9d3d90514068f4c597f80794b6c86c30553dd96dfdbec", "20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64_v2", "pgo+lto", "c64eee679f3bd2b3f952020a516fa17d5cb42a645784762a3fdd623ad89791c9", "20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64_v2", "pgo", "83afa20eb96b92cc09dda9cbe130d6972d96e9000b934164eafde057ea0b412b", "20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64_v3", "pgo+lto", "c54217b3df5f398e52e26e16683f642b245e36232d190ee9fec45a04923de9ca", "20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 7), "linux", "x86_64_v3", "pgo", "43a338f150cd68081760074b638ff224c625b9ccb68b6885db46b2c34bda277e", "20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "apple", "aarch64", "pgo+lto", "d17a3fcc161345efa2ec0b4ab9c9ed6c139d29128f2e34bb636338a484aa7b72", "20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "apple", "aarch64", "pgo", "f2178529346022a6f4b7ee3b113934791e3c0c54055fbd664391651928bf9648", "20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "windows", "i686", "pgo", "e43f7a5044eac91e95df59fd08bf96f13245898876fc2afd90a081cfcd847e35", "20221002/cpython-3.8.14%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "linux", "i686", "pgo+lto", "adb5a08f8dd700bc2d8260226354137349939e9bc5ccfdb8c16493e97b593a19", "20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "linux", "i686", "pgo", "fb2f14148ea49400472fde60ccdb76016a5c5fac79d35c4aa6f5058c1c078bc5", "20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "apple", "x86_64", "pgo+lto", "62edfea77b42e87ca2d85c482319211cd2dd68d55ba85c99f1834f7b64a60133", "20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "apple", "x86_64", "pgo", "2c4a0ca67a0365494a54c55f089a78f0ddd6ce369f053878f309c7e62fe10daa", "20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "windows", "x86_64", "pgo", "6986b3e6edf7b37f96ea940b7ccba7b767ed3ea9b3faec2a2a60e5b2c4443314", "20221002/cpython-3.8.14%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "linux", "x86_64", "pgo+lto", "5ca1c591ffb019fad3978018f68d69d4b6c73ce629fb7e42bc2c594cd8344d4f", "20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 14), "linux", "x86_64", "pgo", "977af6caa24242a76171b3244348a6815a3aa14018088c0d934f88e4f65009d2", "20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "apple", "aarch64", "pgo+lto", "6b9d2ff724aff88a4d0790c86f2e5d17037736f35a796e71732624191ddd6e38", "20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "apple", "aarch64", "pgo", "f73b4c5b33e57f76fa3ed9f549f466924c83dfd2cd02cdf7ec43a8e131087f2b", "20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "windows", "i686", "pgo", "fae990eb312314102408cb0c0453dae670f0eb468f4cbf3e72327ceaa1276b46", "20221002/cpython-3.9.14%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "i686", "pgo+lto", "612031ffd5b6dee7f4fe205afeee62a996bbd8df338ae7d0f3731a825aee04fb", "20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "i686", "pgo", "2227ec3fa1bb5b965bb0c9105200c0a60e6ee3ee4b182ef1d6e26fa951f02cdb", "20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "apple", "x86_64", "pgo+lto", "186155e19b63da3248347415f888fbcf982c7587f6f927922ca243ae3f23ed2f", "20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "apple", "x86_64", "pgo", "728417797ac74280fccadb27a0b7777cff9e0f10773501e3ceaa8d4206126365", "20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "windows", "x86_64", "pgo", "49f27a3a18b4c2d765b0656c6529378a20b3e37fdb0aca9490576ff7a67243a9", "20221002/cpython-3.9.14%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64", "pgo+lto", "7f88ff09b2b57c19f4262026b0919aca59558971838093c63b68dfce7834e84d", "20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64", "pgo", "d0627f9238e61637b751f7c2346de12cd33709ef19b834b412cf1d81b8f8d936", "20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64_v2", "pgo+lto", "47e654a6dd5ad3bfd2a77341482a06c3bf25598f8ac76cfb95d2aa124f03f0c2", "20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64_v2", "pgo", "68d47ba7215015e66aa3fe643de557f0d1c1a03136710cca14fad42c43e72fe4", "20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64_v3", "pgo+lto", "fcb08f826412496a672512d07f8ab19b0a6d201f31514989b63502f50ac633e1", "20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 14), "linux", "x86_64_v3", "pgo", "e0942a5378b37e2623b410f045138b793d68eec52204600342ba8b2ab5851a84", "20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "apple", "aarch64", "pgo+lto", "159230851a69cf5cab80318bce48674244d7c6304de81f44c22ff0abdf895cfa", "20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "apple", "aarch64", "pgo", "9652815c070b12c1dc375203175631904198ca5c91552515223e98e3c548414a", "20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "windows", "i686", "pgo", "8d9a259e15d5a1be48ef13cd5627d7f6c15eadf41a3539e99ed1deee668c075e", "20220802/cpython-3.10.6%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "i686", "pgo+lto", "213374fd9845df5c1d3f1d2f5ac2610fe70ddba094aee0cbc2e91fd2dc808de2", "20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "i686", "pgo", "fade7b13333ce1e9462466e5e1d103bb250bc51630ea5ede323e02509576f306", "20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "apple", "x86_64", "pgo+lto", "9405499573a7aa8b67d070d096ded4f3e571f18c2b34762606ecc8025290b122", "20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "apple", "x86_64", "pgo", "e8edc37b7a9da5a48d44e9458ad2302460599f2c62b211524c1fc5cf401b30c0", "20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "windows", "x86_64", "pgo", "01dc349721594b1bb5b582651f81479a24352f718fdf6279101caa0f377b160a", "20220802/cpython-3.10.6%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64", "pgo+lto", "8072f01279e05bad7c8d1076715db243489d1c2598f7b7d0457d0cac44fcb8b2", "20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64", "pgo", "c6f00c3710e0e25d929d0fa495be4672135b445a76c47562fe8f4d293dcf55b4", "20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64_v2", "pgo+lto", "948c79667c6af3f4f859feca539cad9f940d484792edac6b30e4e1d6b022fa96", "20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64_v2", "pgo", "ccf30e29860a085866b852e16864f15b2e575fb5586e11e9ca5b759283fcc4fd", "20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64_v3", "pgo+lto", "17f6cf57a42eb8fa4619e268cac77ca1e4aef96a294efa0bdf91ab067c055d8e", "20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 6), "linux", "x86_64_v3", "pgo", "3a22729a8f479102edd262bf370651aed54e253dfcbda22d8919d524a49c203e", "20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo+lto", "a204e5f9e1566bdc170b163300a29fc9580d5c65cd6e896caf6500cd64471373", "20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo", "ec255411164c7cfcd02698fb3d400ed8130471efa8af9d8dfa556d451192dec0", "20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "i686", "pgo", "5630739d1c6fcfbf90311d236c5e46314fc4b439364429bee12d0ffc95e134fb", "20220802/cpython-3.8.13%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo+lto", "9191ac9858eddfc727fa5ebadc654a57a719ac96b9dee4e1e48e6498a27499f4", "20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo", "e4b0bfdfb30afd8de72d6dbd0ed8dac0752f919f05a079dc88c42e9a4561405e", "20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo+lto", "f706a62de8582bf84b8b693c993314cd786f3e78639892cfd9a7283a526696f9", "20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo", "079635fa2eb9d27f6e281c377c655b1c3ec86ab8f1388fae07f2431f4d2ffeea", "20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "x86_64", "pgo", "c36b703b8b806a047ba71e5e85734ac78d204d3a2b7ebc2efcdc7d4af6f6c263", "20220802/cpython-3.8.13%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo+lto", "31c98d8329746c19739558f164e6374a2cd9c5c93c9e213d2548c993566a593c", "20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo", "c63d0de9fc65239f0778b3605bb8c36c5fdfe183341a7c2d1e1d103dc1a0f788", "20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo+lto", "8612e9328663c0747d1eae36b218d11c2fbc53c39ec7512c7ad6b1b57374a5dc", "20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo", "87bcd4c8e4d28b7467b1e432be1dbdf09c846cc0ff39118326c0cafc769fe369", "20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "i686", "pgo", "3860abee418825c6a33f76fe88773fb05eb4bc724d246f1af063106d9ea3f999", "20220802/cpython-3.9.13%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo+lto", "066d4722bcc75fb16000afd745b11fb5c02847471695c67db633918969e3936b", "20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo", "440e18384371813fc1ef19b9d10298006f913b948ed605e18bfad73928d9989e", "20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo+lto", "16d21a6e62c19c574a4a225961e80966449095a8eb2c4150905e30d4e807cf86", "20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo", "edbb640682e7dc36c24c704e842c445c3cb2d7602d2e0277f2bfd364b7cf3c8c", "20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "x86_64", "pgo", "6ef2b164cae483c61da30fb6d245762b8d6d91346d66cb421989d6d1462e5a48", "20220802/cpython-3.9.13%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo+lto", "e586b6fef3943adff4e74fbc3fe276dfbca12e9d883e273ed0c8d781b24d7d6e", "20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo", "1550c4b7a9187f17b25c41e68a6805e5b458c7ba9fcf7356a9aad6225d0bc71e", "20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo+lto", "d226227c7fb70ec46c4f29d108a7024e093b2639368ab1117d7e460beebdb36a", "20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo", "5482b4a9e0156be3fda5fdf7235bdd9f3a99ae77f7c1c278122a1ff105e92397", "20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo+lto", "57685a2f1c96a7b5156276f499e70a7eaa8a8fa17a1475c9d3b9cc1035e6e3f3", "20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo", "19320932850fc9741f0aa070334adb509cbaf320ee23f63f1d851292f753c394", "20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "apple", "aarch64", "pgo+lto", "f68d25dbe9daa96187fa9e05dd8969f46685547fecf1861a99af898f96a5379e", "20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "apple", "aarch64", "pgo", "d2d52097064cbcb8f20b87ad2db7a6ba75b97b034226bd3f7a17ae8c3cb08d79", "20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "windows", "i686", "pgo", "e201192f0aa73904bc5a5f43d1ce4c9fb243dfe02138e690676713fe02c7d662", "20220630/cpython-3.10.5%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "i686", "pgo+lto", "dea116554852261e4a9e79c8926a0e4ac483f9e624084ded73b30705e221b62d", "20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "i686", "pgo", "b8117ce3382b22282594be580bd68dccbdae9bcba3eab02268543915932b155e", "20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "apple", "x86_64", "pgo+lto", "5e372e6738a733532aa985730d9a47ee4c77b7c706e91ef61d37aacbb2e54845", "20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "apple", "x86_64", "pgo", "82b4ee6e7b3538c0e959982e2c749ab3e08afdcbeff503d7e384bd535477e773", "20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "windows", "x86_64", "pgo", "cff35feefe423d4282e9a3e1bb756d0acbb2f776b1ada82c44c71ac3e1491448", "20220630/cpython-3.10.5%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64", "pgo+lto", "2a71e32ef8e1bbffbbfcd1825620d6a8944f97e76851bf1a14dc4fa48b626db8", "20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64", "pgo", "d48ab0fe00c312ca54d2b9f4c77d96c6e969604e5f7c123335fa3c240e0ef875", "20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64_v2", "pgo+lto", "ede8d575d06ec7256756220fd7195cd7c6026e1f563e07062238e692e6f1f1c5", "20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64_v2", "pgo", "51a93382892cc6ce21fcca174b688053b1e9ecf8ea19dc252e08ab98e6d34a40", "20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64_v3", "pgo+lto", "2b1374df2117b3fe774d3ee8a4ca73878ea19328d8b190e12adbe5d185aef5ea", "20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 5), "linux", "x86_64_v3", "pgo", "b9f99a9548605b7455f95b408821345d5da523945f7a6de5c89684d2b29efb10", "20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo+lto", "669cbc8a0f3c1b82ec8a565f4fda88461b718208d6c1be4c89b8a26c56c46fda", "20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo", "b3ec2f6bacf808a720af43232c42f4ae39ee0575f55b0e9e6f0f58db144d966b", "20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "i686", "pgo", "6cad3ddcfffa209f61a320f33e1b588c030ec9df3cfcb9f371f009fc8df3bcff", "20220630/cpython-3.8.13%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo+lto", "6552f6253a9087aa50a4efb89ea02cda8ddd6db9edc64ed7641002e1ec28f770", "20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo", "f650956b6126918fdfcc17d9a3c31bae69c4fa14f5150d8c4a2a4aec119d3c49", "20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo+lto", "a0141818a625e5d012a7be4a4c11733a988ccc0387f862a336165df808d6738a", "20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo", "2976fd22be03a7b3aa8ea3b498d21f010343ec9aad82fa915bc351c90c10e6a1", "20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "x86_64", "pgo", "35019a2eba7bc4cf0293e4753b715b04e8d8a188023c1bca836f0321ef1b4528", "20220630/cpython-3.8.13%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo+lto", "215aa6df7f85c2c4fec96988a4a0f97b956e9d93122700ac21ef2fdccfad4a9d", "20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo", "8d7842ef0df82f1a40eb21ef24d81af1a4345335fe7710a9c9403e7eabb2d19c", "20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo+lto", "f7961c50469af2f141361ed11c21015755f233600f352723c836f0f1c879f70a", "20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo", "cff4f33f998e13a2fcc57d1f710e1f360c5253d5749d225fd9baaf6770d0dbb4", "20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "i686", "pgo", "832a9ca41448503dde4f32c171ee2eb7199df3dacfaa1acf6cfc4157e696cf13", "20220630/cpython-3.9.13%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo+lto", "48b562eb7e666374e5d88383ee89d223e8009798143d097d44f81aafb292e5c1", "20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo", "b72e61c603e54bdde75807f982b0a00778cd073cfe3da8af3a7c21fb860b8edf", "20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo+lto", "abc23910d47f984b63320820993d1889df80449316b57556b8384ab082d911fe", "20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo", "1a518fb7d0e6d3e0d37e5e9889790244516aa532d739d5e8107581dc7a8bac26", "20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "x86_64", "pgo", "0c00c9a10d17bfddb5b82382e4896a6e06726aa470afd47803307e6515dbd69d", "20220630/cpython-3.9.13%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo+lto", "c9de3c0cdcd8be71b668b667acbb2df116ccefc3d9cb3dd62d993ffc50423719", "20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo", "969b496840149f1a1c2ca4ee7d9dde73e16ed7a11c5f9923ca5ecb0e2832e13b", "20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo+lto", "f622b76ff6f80afe525537019079a1c4474c64b3b5aac5cb4fa42e27f480e6d2", "20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo", "d9bc0fb4f54960ac68b3d886a2c7bcf18eead59e2b9a94ffc7af76a525d7b308", "20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo+lto", "e22e461f0a1673dd24d149e399b140c8c473c3dc40384a5d2a431e49bd71e5d5", "20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo", "e5497143231b8e68acd8da0dc76a2bdbb3d457ece728b732b2afeb93b15295da", "20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "aarch64", "pgo+lto", "c404f226195d79933b1e0a3ec88f0b79d35c873de592e223e11008f3a37f83d6", "20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "aarch64", "pgo", "31978bf0f6911eb5873eba4fec5b8452e5df2ad6c78de2b71dfbe73cbce44182", "20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "windows", "i686", "pgo", "c37a47e46de93473916f700a790cb43515f00745fba6790004e2731ec934f4d3", "20220528/cpython-3.10.4%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "i686", "pgo+lto", "b28224a798dea965cb090f831d31aa531c6b9a14028344be6df53ab426497bb4", "20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "i686", "pgo", "d59e6b7b6d27384e703bf706a968f397e2623faadc87caf9916fa31e4c5b8832", "20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "x86_64", "pgo+lto", "e447f00fe53168d18cbfe110645dbf33982a17580b9e4424a411f9245d99cd21", "20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "x86_64", "pgo", "823a456d3d6ebbf8d81604dd875a8091f57550be18959cb2a97fc8b25e2f2d87", "20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "windows", "x86_64", "pgo", "d636dc1bcca74dd9c6e3b26f7c081b3e229336e8378fe554bf8ba65fe780a2ac", "20220528/cpython-3.10.4%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64", "pgo+lto", "15f961b087c6145f326fee30041db4af3ce0a8d24bbdefbd8d24973825728a0e", "20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64", "pgo", "ab27c27d034da39e999efce6bfa416be645918f27c13e89be9794dea0ef2f116", "20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v2", "pgo+lto", "7f93c009038a195e9e5c22dfb42d6c8bb62438438d5c5cfb3d64bb3f0066d88f", "20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v2", "pgo", "aed944cc36eb408720f6a44d46fa9ceb7b751108c4ac43837945409f1fa32b30", "20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v3", "pgo+lto", "afd3e5ca794e3297807391610ce4011e459bafad5296b87156cc8b316a23d1c1", "20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v3", "pgo", "7c4ab97b7ed08722b11c8da73a64dba30a0feb68491a19e4d133fe9b908028d2", "20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo+lto", "3b64c059926e7efc46f92f60dec86d76c69e1c979250622793534efaf2b66db4", "20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo", "ec4de5c16c073a167056824f5230e052c4cd252edd0558762d18b9fff585a042", "20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "i686", "pgo", "3150f37050bca4a2152f0ed7444b8331cf9ed1b75d179b1769f0a29d493f5cc0", "20220528/cpython-3.8.13%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo+lto", "32d3b0817a0ea1c05d7841a1ab7092a8c61e40b7dc362dc3c5977e2c7f59923c", "20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo", "fe953d3358667c7ff2b1e4c06119acdc7e22d3c960c73326ea9caf5fda2e2ea9", "20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo+lto", "60f4db7bbbc72077dc194f57482d03d7c47b0cb4893d2e47195ac9e1eca2769d", "20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo", "9c8b59e680857358c9f69d739c4d7564ed5b7b414ad40fb0313b8be8d91f9591", "20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "x86_64", "pgo", "202d011d0104c5c8c66dfdb64b894b5c8066a5bc10848d277bad84b5226639e2", "20220528/cpython-3.8.13%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo+lto", "112ed576946b9304eb8fa1e0ba4ddcfaa5dc6638054457e4998f33658c2d97cd", "20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo", "a8ee63e1407d64e0eb9c54ad0c2aade48b9c838fda040f0c12a035a66dc38a94", "20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo+lto", "12923c5aa18f07b8f5fb1939a5badc7e47d9c8a69c296596927f24c1ba8dafed", "20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "aarch64", "pgo", "e7af87da22c420bee12119be5d0eab95dfc593e047a30be32687d5cde808becf", "20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "i686", "pgo", "394b883763a083de309774b352917bc20a491dcb1f008ea12cd5f57620686892", "20220528/cpython-3.9.13%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo+lto", "3d94ede8db838285e280a4ff50bcb69f3052d0c56ce60a4a9c51c0bc7ddde7ec", "20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "i686", "pgo", "1af8d20d781167f338729a2a40e5e36c8eebbcf55966bd6b774adf9d0db65e3b", "20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo+lto", "69ca410c355fa9f0628c429f40a26d647b72ee07d8631cade6e826fdf582564f", "20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "apple", "x86_64", "pgo", "d247aa9154a7548eea2a979bbf82ff199e0679fe9e9d0a7edb3f81e2bc8eaed4", "20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "windows", "x86_64", "pgo", "83eedc80e3bc023bc786bb57fcac05ee71772533829a217e931f1244907ff6a5", "20220528/cpython-3.9.13%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo+lto", "4ea39ce2912cbb4973b76d3b8a0299c90e80b20548280f19588467bca0392118", "20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64", "pgo", "f83976f1d9890d8022252638133f1bb156a202e46e73ab83e2a25339871b3ed5", "20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo+lto", "5c859935f5d9f18ba17acebafb35f645d1ae46dc5b6c6660633e3dd100af80fd", "20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v2", "pgo", "9b87c448ca8c91449120fccd8db1ab48706ccbbfa4f311869e0b55e7d02946de", "20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo+lto", "14ec4b897cd31323418c883fbe4afa82cbeb5db7ce9856ec3a6c356efcc318bc", "20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 13), "linux", "x86_64_v3", "pgo", "9f86a2122efa495808c8bcdaef413e7f1394c30791cdff9112b874ff1ef366ec", "20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "aarch64", "pgo+lto", "9b6fb39c082b38c663ecd86d92adb4707b328b63fbf6237530b224599cd8724b", "20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "aarch64", "pgo", "748ddb0f28992837b5951a23e83ae81bc724fd9e750859f3aa0b2355fb030ea5", "20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "windows", "i686", "pgo", "6ef65c0e7aa91234acf86a423324d63a70c5b4c694cbd2947d358714497233c2", "20220502/cpython-3.10.4%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "i686", "pgo+lto", "d75088aba2f6ac4a9203e3f5bf81045ab2648a389c1893eff0fd8020f5fe57c9", "20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "i686", "pgo", "87c0d89574d41bc364a5471cf7889fbf5c12e9943ca84429ca1988def5b5acd2", "20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "x86_64", "pgo+lto", "90e1fc807888957715b97287ce580c834abfcd0e227d21ee3e6d84d312b6d90b", "20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "apple", "x86_64", "pgo", "b8468c6f9ff21acfafaf8068f08705e0f529db6f92c455bccd3612957bdc525e", "20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "windows", "x86_64", "pgo", "37764a9a1683eb80d16de36e7fa9dd0e17d9d415dbc046893eb92d13bd03b1db", "20220502/cpython-3.10.4%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64", "pgo+lto", "4506e6c10a01f84b266f21ef3819ece530a43513247f82933007892f5034c29b", "20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64", "pgo", "1822b690f971c4c9ccf3bc3b5393c4454c22fcb70403c8ae07cddff56cc32afd", "20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v2", "pgo+lto", "fb05cf5f2351b90ce2de5c5b86bfddf95c5a99d897d6ef4474c79140fcd86623", "20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v2", "pgo", "ee5a0c4175a7df68b3c440f2c257b8b20aee569299b031d00ed1eda0a1df8d64", "20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v3", "pgo+lto", "4dcdc2b3eaf23af94ca421213b1d5c4ea96523af4d679615ae2b5fff23127ae8", "20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 4), "linux", "x86_64_v3", "pgo", "cab3662b701c62a33553445670b459a3745bfe6f9152989750c9ce3dbc52fea1", "20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo+lto", "7171ccfdaf3cd4fdca12e5fe5806ed48a535087db80c3536432c68a897efdd76", "20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo", "d225a73a2f74a27cc267ebeaecb99e15295801afd6c3b17c7450d210068636c0", "20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "i686", "pgo", "3427a67585bd9f8ea88d27d5488ddb478a945ff7b5d75ba0d9a15d0c1fe195bf", "20220502/cpython-3.8.13%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo+lto", "6e9c496ec51202e862c9c8932cb06bc9e8ea519311ee9b38c0518c6179e096d9", "20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo", "2659c00d535d9fd2c017e3f310a497bbaa804f5541e406e964076b64a60c82be", "20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo+lto", "080b9cf17031a1a8d965b76d470eb43a1887b718d167f06ad081d70dbf8c3445", "20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo", "c9b7dc0003906589b4db96bde1c18ae6c12257b11b60026f1e8227f5f8bdb231", "20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "x86_64", "pgo", "0048e0681ac83c9e57c4f5e457c1e06677edce3c2c9dd478353e5483bed983a4", "20220502/cpython-3.8.13%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo+lto", "3f00c8e6dcd4d6573b51af656566bd36b264bb3c5026d433bfbd8d6a6425fad5", "20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo", "ea71695a7c8c08064388c9eb8c612187c6b76748f1ab2c42f65ea946be275d98", "20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "apple", "aarch64", "pgo+lto", "b3d09b3c12295e893ee8f2cb60e8af94d8a21fc5c65016282925220f5270b85b", "20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "apple", "aarch64", "pgo", "5b20ea35650fc67b00e59871b114e831af3faa03a000187f3ac9e8e38456351a", "20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "windows", "i686", "pgo", "361b8fa66d6b5d5623fd5e64af29cf220a693ba86d031bf7ce2b61e1ea50f568", "20220502/cpython-3.9.12%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "i686", "pgo+lto", "4a32d5f827e9c1fbed68e51974d78f090ccdd8c83f777a2c9f80644a96d53c3f", "20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "i686", "pgo", "70f2fb0b7bfeb1abf2048169e8c5c3ea6c3607f194559d095897fbf72d53df0c", "20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "apple", "x86_64", "pgo+lto", "825970ae30ae7a30a5b039aa25f1b965e2d1fe046e196e61fa2a3af8fef8c5d9", "20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "apple", "x86_64", "pgo", "ef2865504cf53e2fae7f8a708cf4bea8ecef2e0964777cc1ea6c276bbc76ade3", "20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "windows", "x86_64", "pgo", "c49f8b07e9c4dcfd7a5b55c131e882a4ebdf9f37fef1c7820c3ce9eb23bab8ab", "20220502/cpython-3.9.12%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64", "pgo+lto", "9af4ad8e87d1d24352163d519df44f652efefe018b8c7b48ca57604054950abe", "20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64", "pgo", "1d88b590599aa1d1589f226b23dab3f4491754fbc6ef5697e0a46d27be11ba1f", "20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64_v2", "pgo+lto", "ce232a6ab127d5310101d1279adb8e1aaf1486b646d8d16a24c5317204e7655d", "20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64_v2", "pgo", "4e234820eb31079b2b5a0b729088fa0dce5310a544b732e565035661cea77b06", "20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64_v3", "pgo+lto", "8a0817588c787ea08dfa0c2bcc29dfb85020762d199ae0450b7ccaaa03dea177", "20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 12), "linux", "x86_64_v3", "pgo", "7bfdd65b6c672d733e85ed70e6af61778504efb595ad70cb066d38af7c30188d", "20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "apple", "aarch64", "pgo+lto", "b1abefd0fc66922cf9749e4d5ceb97df4d3cfad0cd9cdc4bd04262a68d565698", "20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "apple", "aarch64", "pgo", "c76839849146a699cbd5c3714d04b7c664ed0268011556509ec3ebde94e779f4", "20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "windows", "i686", "pgo", "fbc0924a138937fe435fcdb20b0c6241290558e07f158e5578bd91cc8acef469", "20220318/cpython-3.10.3%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "i686", "pgo+lto", "ea82b0b12e03fdc461c2337e59cb901ecc763194588db5a97372d26f242f4951", "20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "i686", "pgo", "fce4741ddb20c363e50528f22a8d6a8a279c06e4bbd084d7dc313b9f68761ea3", "20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "apple", "x86_64", "pgo+lto", "bc5d6f284b506104ff6b4e36cec84cbdb4602dfed4c6fe19971a808eb8c439ec", "20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "apple", "x86_64", "pgo", "fef0f3c5171d3a1dcb05afebff4e8fc17b3b35ad7fa593afc65e1a4e012309d3", "20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "windows", "x86_64", "pgo", "72b91d26f54321ba90a86a3bbc711fa1ac31e0704fec352b36e70b0251ffb13c", "20220318/cpython-3.10.3%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64", "pgo+lto", "ee2251d5e59045c6fa1d4431c8a5cd0ed18923a785e7e0f47aa9d32ae0ca344e", "20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64", "pgo", "65716e4ff95c5598609df6e938ab538fc30241e76df0a03af1946626e20169ca", "20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64_v2", "pgo+lto", "aac77225a0530ec6d8c5d1c6ed04d44e0a3f2173bddc3d871c595d2b82912178", "20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64_v2", "pgo", "6a006f48efb2a140c9477144863f6ea8a49fc40b343a93af49c755b70c99752f", "20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64_v3", "pgo+lto", "e2ba74badcc2651e65ea6adbd12699e8aced8250b5723408756266558b9bc000", "20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 3), "linux", "x86_64_v3", "pgo", "4678880e7485d58b25c325a5b3d2a8673d598e4021dc936cb75da4ba5b8ed316", "20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo+lto", "0bcbcc9860093075cb4a139506f0799e06d7274484a331ef53050f6391ff9692", "20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "aarch64", "pgo", "0b400aa7a637ce1bff44d6c32ee68746420db28d906c38e2374e0fae5f3f4cd8", "20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "i686", "pgo", "177920875eb384f41bcb37cd22d4b956c9a55ca02367e50e37cbc203700f9f21", "20220318/cpython-3.8.13%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo+lto", "6dd410352583168b58c5261e5b9291329501553dbdae0f385958e921544835f9", "20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "i686", "pgo", "ad2f717f1bdc5a714325699b13ef329108d03eae688b5a579a588282a97e503d", "20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo+lto", "4df037ffce92bbc697488df521a5f47d4924cbbbbbd2c87021e55ab49d89901f", "20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "apple", "x86_64", "pgo", "65ef0806ffaea827a674a11fa98c82fd9111076f11400db7b6e3fa43304badb0", "20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "windows", "x86_64", "pgo", "b11f26fd2ebe7678c97db8896f04a92f4aac354a886087f7aae2395a6dd4a0b4", "20220318/cpython-3.8.13%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo+lto", "da97632e5e5657f46a3b9d23af56e8810b3948475e39207dca2811efa023e505", "20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 13), "linux", "x86_64", "pgo", "9512fcfd1c57b15e60ebebc7425935be778b116b62e716806073f27e72a67d75", "20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "apple", "aarch64", "pgo+lto", "6d9f20607a20e2cc5ad1428f7366832dc68403fc15f2e4f195817187e7b6dbbf", "20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "apple", "aarch64", "pgo", "07d64d3dda7e1e99523ac1fd425780cb3f5e4bfb56d67aa27824fc5e46f9ab46", "20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "windows", "i686", "pgo", "f06338422e7e3ad25d0cd61864bdb36d565d46440dd363cbb98821d388ed377a", "20220318/cpython-3.9.11%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "i686", "pgo+lto", "aeb50fcc54214780244dd64c0d66bf5dec30db075c999cf2c5a58134f8d21c33", "20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "i686", "pgo", "fd3f0b6bc8ce02f0f4199c2ea643de0fd2c45d17179152b6d1eac09a5b50e00d", "20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "apple", "x86_64", "pgo+lto", "35e649618e7e602778e72b91c9c50c97d01a0c3509d16225a1f41dd0fd6575f0", "20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "apple", "x86_64", "pgo", "979a6954f84a804b121a231092872fa8e2472f69fd0523d7580e3d861ac26911", "20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "windows", "x86_64", "pgo", "1fe3c519d43737dc7743aec43f72735e1429c79e06e3901b21bad67b642f1a10", "20220318/cpython-3.9.11%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64", "pgo+lto", "49dfa5cb99d4f71657dc651ad68d0fce7cc011beb59499141138ef062bd62b49", "20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64", "pgo", "90f78a741ce04147212219b5e7b1a2359750eee1c16d82f95dbd092dfd98aff5", "20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64_v2", "pgo+lto", "039a1cd370a0865945abec8bec2db81067497cfeeb9be8fe7a0dcdd0c9a92361", "20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64_v2", "pgo", "59336abc783c5315c78ba7b26c17db2f7de801ea47d02e677d3bc1d5ad93e877", "20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64_v3", "pgo+lto", "19d87980827f146e7eb6f276ec2fb5d99c26cc0a5e11120a533fbcda75498c98", "20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 11), "linux", "x86_64_v3", "pgo", "5f376efc50dcc73115f8577da511ac0c48fd33129b61eef3ab6e406e807d04ee", "20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "apple", "aarch64", "pgo+lto", "1ef939fd471a9d346a7bc43d2c16fb483ddc4f98af6dad7f08a009e299977a1a", "20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "apple", "aarch64", "pgo", "edf7c4b2e2cfcc7437df93fa6cceb65dcdbf976cdab7718344f0e14351479c5b", "20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "windows", "i686", "pgo", "698b09b1b8321a4dc43d62f6230b62adcd0df018b2bcf5f1b4a7ce53dcf23bcc", "20220227/cpython-3.10.2%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "i686", "pgo+lto", "817cc2720c9c67cf87e5c0e41e44111098ceb6372d8140c8adbdd2f0397f1e02", "20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "i686", "pgo", "4d7655d9fde426f3d3c0168e91fd34976ba620bf0e70fc5a09e6e2a4f9dfd936", "20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "apple", "x86_64", "pgo+lto", "bacf720c13ab67685a384f1417e9c2420972d88f29c8b7c26e72874177f2d120", "20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "apple", "x86_64", "pgo", "fa40bc33801d6833dac3816fade3420bd5572bbca822c647751f7455931e0663", "20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "windows", "x86_64", "pgo", "7397e78a4fbe429144adc1f33af942bdd5175184e082ac88f3023b3a740dd1a0", "20220227/cpython-3.10.2%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64", "pgo+lto", "65d2a31c3181ab15342e60a2ef92d6a0df6945200191115d0303d6e77428521c", "20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64", "pgo", "28ded83c1742870fe0633619ec43f9b3a693078bf7da1e2afb81a543517e032d", "20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64_v2", "pgo+lto", "73854deefa02896c3c30dfd8ebbff384561fe28c5b0d8d0a60f5c3543ea16ed0", "20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64_v2", "pgo", "8fec24e349ea0cac99e7c3a25616040601a278d85bc5f38cbf5f0ad4b3cef40c", "20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64_v3", "pgo+lto", "f6a8c8fd758006fcdf91f81c4b753bcaaddb436d44c6a38df04a9f6d48b6bb38", "20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 10, 2), "linux", "x86_64_v3", "pgo", "39e894485840df5c8468771414751d534059b2c2e4c7f81a46e7c8af858e297e", "20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "apple", "aarch64", "pgo+lto", "386f667f8d49b6c34aee1910cdc0b5b41883f9406f98e7d59a3753990b1cdbac", "20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "apple", "aarch64", "pgo", "ed6c148e6ab1fbee8f2552b635f9724b9044f6dd8e69a8e1b9e10d69cd58cfbc", "20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "windows", "i686", "pgo", "3e2e6c7de78b1924aad37904fed7bfbac6efa2bef05348e9be92180b2f2b1ae1", "20220227/cpython-3.8.12%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "linux", "i686", "pgo+lto", "61024acdfe5aef07ba4246ea07dba9962770ec1f3d137c54835c0e5b6e040149", "20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "linux", "i686", "pgo", "a34c180cf8ba4a4df6b667002761402d7280e40ff746c7f51b5a1efa023fabc7", "20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "apple", "x86_64", "pgo+lto", "cf614d96e2001d526061b3ce0569c79057fd0074ace472ff4f5f601262e08cdb", "20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "apple", "x86_64", "pgo", "ccee80383243b899028960417a61b6dc1087c5b8c78ef1678a8b82666d49ac0a", "20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "windows", "x86_64", "pgo", "33f278416ba8074f2ca6d7f8c17b311b60537c9e6431fd47948784c2a78ea227", "20220227/cpython-3.8.12%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "linux", "x86_64", "pgo+lto", "a014cf132a642a5d585f37da0c56f7e6672699811726af18e8905d652b261a3f", "20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 8, 12), "linux", "x86_64", "pgo", "f0ec0e5855a18394d6eaf534ddb07afc22976924b53c30ad0681ffb25f4d1fd4", "20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "apple", "aarch64", "pgo+lto", "ba1b63600ed8d9f3b8d739657bd8e7f5ca167de29a1a58d04b2cd9940b289464", "20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "apple", "aarch64", "pgo", "9f887882f4f741f60e09c3ba8dd23ada9c1338886a84978b2e021777d51cfc6e", "20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "windows", "i686", "pgo", "7f3ca15f89775f76a32e6ea9b2c9778ebf0cde753c5973d4493959e75dd92488", "20220227/cpython-3.9.10%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "i686", "pgo+lto", "218a79ef09d599d95a04819311ee27ab0fd34dd80d3722347003fec0139dca7b", "20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "i686", "pgo", "27ac3915e2e5d49119c9915fcdb368cb42083ff8ff20d2a08d46751cebd6b70a", "20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "apple", "x86_64", "pgo+lto", "ef2f090ff920708b4b9aa5d6adf0dc930c09a4bf638d71e6883091f9e629193d", "20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "apple", "x86_64", "pgo", "a8c5e64256faa625347a417c6f5f1766dce6f1c0a7ae1cb5c7cf07ecc7223170", "20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "windows", "x86_64", "pgo", "56b2738599131d03b39b914ea0597862fd9096e5e64816bf19466bf026e74f0c", "20220227/cpython-3.9.10%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64", "pgo+lto", "de0a1b11f56cd6acdbc4b369a023377fd830946726f3abbbce8fc11dcb56cac0", "20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64", "pgo", "d23017bc20b640615af8f5eab0f1bf0c9264526bcb8c2a326f4a13b21725cff1", "20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64_v2", "pgo+lto", "b06b7ca295b5a838a4fbc2bf67c43e28b761a0548b8b6181ddfa61bc1deaf0b9", "20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64_v2", "pgo", "7125392d62a32146ba30c0b09e8900481ce7066230946c54cf8ff704cfa6a0ba", "20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64_v3", "pgo+lto", "7a912ec0220da389b6d3b9a2373aee2a9fb9f24e975c358292c266ab6e775150", "20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", Version::new(3, 9, 10), "linux", "x86_64_v3", "pgo", "39e3eddef8449b30d5f99c646a79454a2484d6060b8f3102a3def16330e2d2dc", "20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), +]; + +pub struct Release<'a> { + pub kind: &'a str, + pub version: Version, + pub os: &'a str, + pub architecture: &'a str, + pub build_configuration: &'a str, + pub checksum: &'a str, + url_suffix: &'a str, +} + +impl Release<'static> { + const fn new( + kind: &'static str, + version: Version, + os: &'static str, + architecture: &'static str, + build_configuration: &'static str, + checksum: &'static str, + url_suffix: &'static str, + ) -> Self { + Self { + kind, + version, + os, + architecture, + build_configuration, + checksum, + url_suffix, + } + } + + pub fn url(&self) -> String { + format!("{}{}", DOWNLOAD_URL, self.url_suffix) + } +} + +pub struct Version { + pub major: u8, + pub minor: u8, + pub patch: u8, +} + +impl Version { + const fn new(major: u8, minor: u8, patch: u8) -> Self { + Self { + major, + minor, + patch, + } + } +}