From 5d759d3b182000df694ec6e27c9854bc2339640b Mon Sep 17 00:00:00 2001 From: aviczhl2 Date: Sun, 3 Sep 2023 23:01:28 +0800 Subject: [PATCH] Add 4 autoref from main page and 31 from lineage-proposals --- automated-issue-ref.ipynb | 2180 ++++--------------------------------- autoref/milestone.txt | 85 +- autoref/missing_refs.txt | 39 +- lineage_notes.txt | 70 +- 4 files changed, 304 insertions(+), 2070 deletions(-) diff --git a/automated-issue-ref.ipynb b/automated-issue-ref.ipynb index 1c522151..7f39f3f1 100755 --- a/automated-issue-ref.ipynb +++ b/automated-issue-ref.ipynb @@ -2,14 +2,121 @@ "cells": [ { "cell_type": "code", - "execution_count": 11, + "execution_count": 6, "id": "f64573a2", - "metadata": {}, - "outputs": [], + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "processed 10 milestones\n", + "processed 20 milestones\n", + "processed 30 milestones\n", + "processed 40 milestones\n", + "processed 50 milestones\n", + "processed 60 milestones\n", + "processed 70 milestones\n", + "processed 80 milestones\n", + "processed 90 milestones\n", + "processed 100 milestones\n", + "processed 110 milestones\n", + "processed 120 milestones\n", + "processed 130 milestones\n", + "processed 140 milestones\n", + "processed 150 milestones\n", + "processed 160 milestones\n", + "processed 170 milestones\n", + "processed 180 milestones\n", + "processed 190 milestones\n", + "processed 200 milestones\n", + "processed 210 milestones\n", + "processed 220 milestones\n", + "processed 230 milestones\n", + "processed 240 milestones\n", + "processed 250 milestones\n", + "processed 260 milestones\n", + "processed 270 milestones\n", + "processed 280 milestones\n", + "processed 290 milestones\n", + "processed 300 milestones\n", + "processed 310 milestones\n", + "processed 320 milestones\n", + "processed 330 milestones\n", + "processed 340 milestones\n", + "processed 350 milestones\n", + "processed 360 milestones\n", + "processed 370 milestones\n", + "processed 380 milestones\n", + "processed 390 milestones\n", + "processed 400 milestones\n", + "processed 410 milestones\n", + "processed 420 milestones\n", + "processed 430 milestones\n", + "processed 440 milestones\n", + "processed 450 milestones\n", + "processed 460 milestones\n", + "processed 470 milestones\n", + "processed 480 milestones\n", + "processed 490 milestones\n", + "processed 500 milestones\n", + "processed 510 milestones\n", + "processed 520 milestones\n", + "processed 530 milestones\n", + "processed 540 milestones\n", + "processed 550 milestones\n", + "processed 560 milestones\n", + "processed 570 milestones\n", + "processed 580 milestones\n", + "processed 590 milestones\n", + "processed 600 milestones\n", + "processed 610 milestones\n", + "processed 620 milestones\n", + "processed 630 milestones\n", + "processed 640 milestones\n", + "processed 650 milestones\n", + "processed 660 milestones\n", + "processed 670 milestones\n", + "processed 680 milestones\n", + "processed 690 milestones\n", + "processed 700 milestones\n", + "processed 710 milestones\n", + "processed 720 milestones\n", + "processed 730 milestones\n", + "processed 740 milestones\n", + "processed 750 milestones\n", + "processed 760 milestones\n", + "processed 770 milestones\n", + "processed 780 milestones\n", + "processed 790 milestones\n", + "processed 800 milestones\n", + "processed 810 milestones\n", + "processed 820 milestones\n", + "processed 830 milestones\n", + "processed 840 milestones\n", + "processed 850 milestones\n", + "processed 860 milestones\n", + "processed 870 milestones\n", + "processed 880 milestones\n", + "processed 890 milestones\n", + "processed 900 milestones\n", + "processed 910 milestones\n", + "processed 920 milestones\n", + "processed 930 milestones\n", + "processed 940 milestones\n", + "processed 950 milestones\n", + "processed 960 milestones\n", + "processed 970 milestones\n", + "processed 980 milestones\n" + ] + } + ], "source": [ "# automated ref adding for lineage-note.txt, written by Xu Zou\n", "\n", - "# old code, do not use!\n", + "\n", "import bs4\n", "from bs4 import BeautifulSoup\n", "from urllib import request\n", @@ -22,22 +129,28 @@ "milestone_already=[]\n", "milestone_title_dict={}\n", "listd=os.listdir()\n", + "\n", + "reassign_milestone=True\n", "if not(\"autoref\" in listd):\n", " os.mkdir(\"autoref\")\n", "lista=os.listdir(\"autoref\")\n", - "if (\"milestone.txt\" in lista):\n", - " w=open(\"autoref/milestone.txt\",'r')\n", - " milestones=w.readlines()\n", - " for line in milestones:\n", - " linsp=line.split()\n", - " if len(linsp)>2:\n", - " issue=linsp[0]\n", - " name=linsp[1]\n", - " milestone_list.append([linsp[0],linsp[1],linsp[2]])\n", - " if linsp[1]!='withdrawn':\n", - " milestone_title_dict[linsp[1]]=[linsp[2],linsp[0]]\n", - " milestone_already.append(issue)\n", - " w.close()\n", + "\n", + "if not(reassign_milestone):\n", + " if (\"milestone.txt\" in lista):\n", + " w=open(\"autoref/milestone.txt\",'r')\n", + " milestones=w.readlines()\n", + " for line in milestones:\n", + " linsp=line.split()\n", + " if len(linsp)>2:\n", + " issue=linsp[0]\n", + " name=linsp[1]\n", + " milestone_list.append([linsp[0],linsp[1],linsp[2]])\n", + " if linsp[1]!='withdrawn':\n", + " milestone_title_dict[linsp[1]]=[linsp[2],linsp[0]]\n", + " milestone_already.append(issue)\n", + " w.close()\n", + "\n", + "# refresh token\n", "\n", "w=open(\"autoref/milestone.txt\",'w')\n", "for item in milestone_list:\n", @@ -58,11 +171,15 @@ " if len(res_list) == 0:\n", " break\n", " # Each element of this page's result list includes the milestone number and title. Parse out lineage names from title.\n", + " \n", " for milestone_info in res_list:\n", " #print(milestone_info)\n", + " \n", " milestone = milestone_info['number']\n", " milestone=prefix+str(milestone)\n", - " if milestone not in milestone_already:\n", + " num_issues=milestone_info['open_issues']+milestone_info['closed_issues']\n", + " if (milestone not in milestone_already) and (num_issues>0):\n", + " \n", " try:\n", " title = milestone_info['title']\n", " title_words = title.replace('. ','.').replace(',', ' ').split()\n", @@ -71,7 +188,12 @@ " for item in title_words:\n", " milestone_list.append([milestone, item, title])\n", " if linsp[1]!='withdrawn':\n", - " milestone_title_dict[item]=[title,milestone]\n", + " # only add milestones to those without already assigned\n", + " if not(item in milestone_title_dict):\n", + " milestone_title_dict[item]=[title,milestone]\n", + " # update sars-cov-2 to main branch\n", + " if (\"sars\" in milestone_title_dict[item][1] and not('sars' in milestone)):\n", + " milestone_title_dict[item]=[title,milestone]\n", " item_count+=1\n", " print(milestone, item,title,file=w)\n", " if item_count%10==0:\n", @@ -84,32 +206,7 @@ }, { "cell_type": "code", - "execution_count": 2, - "id": "769f2d32", - "metadata": { - "scrolled": false - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "801 HTTP Error 404: Not Found\n", - "10 HTTP Error 404: Not Found\n", - "59 HTTP Error 404: Not Found\n", - "Reading Milestone in sars-cov-2-variants 60\n" - ] - } - ], - "source": [ - "\n", - "\n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": 16, + "execution_count": 7, "id": "88a367db", "metadata": {}, "outputs": [], @@ -146,7 +243,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 3, "id": "f5b15585", "metadata": {}, "outputs": [], @@ -169,7 +266,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 8, "id": "a56544a8", "metadata": {}, "outputs": [ @@ -177,15 +274,41 @@ "name": "stdout", "output_type": "stream", "text": [ - "CM.5.1 list index out of range\n", - "['BN.1.3.13', 'sars-cov-2-variants/lineage-proposals#218']\n", - "B.1.575 list index out of range\n", - "XBB.1.5 list index out of range\n", - "['HQ.1', 'sars-cov-2-variants/lineage-proposals#170']\n", - "XBB.1.5.99 list index out of range\n", - "FL.1.3 list index out of range\n", - "['FP.2.1', '#2012']\n", - "['FY.4.2', 'sars-cov-2-variants/lineage-proposals#487']\n" + "['HC.2', 'sars-cov-2-variants/lineage-proposals#433']\n", + "['JB.2', 'sars-cov-2-variants/lineage-proposals#209']\n", + "['JB.2.1', 'sars-cov-2-variants/lineage-proposals#209']\n", + "['GK.1.4', 'sars-cov-2-variants/lineage-proposals#504']\n", + "['GK.2.2', 'sars-cov-2-variants/lineage-proposals#470']\n", + "['JD.1.1', '#2174']\n", + "['XBB.1.5.103', '#2192']\n", + "['FL.1.5.2', 'sars-cov-2-variants/lineage-proposals#614']\n", + "['EG.2.2', 'sars-cov-2-variants/lineage-proposals#517']\n", + "['EG.2.3', 'sars-cov-2-variants/lineage-proposals#587']\n", + "['EG.2.4', 'sars-cov-2-variants/lineage-proposals#586']\n", + "['EG.2.5', 'sars-cov-2-variants/lineage-proposals#445']\n", + "['HK.3.1', 'sars-cov-2-variants/lineage-proposals#580']\n", + "['HK.8', '#2230']\n", + "['HK.9', 'sars-cov-2-variants/lineage-proposals#564']\n", + "['HK.10', 'sars-cov-2-variants/lineage-proposals#537']\n", + "['JG.1', 'sars-cov-2-variants/lineage-proposals#519']\n", + "['JJ.1', '#2208']\n", + "['JF.1', 'sars-cov-2-variants/lineage-proposals#531']\n", + "['JF.2', 'sars-cov-2-variants/lineage-proposals#457']\n", + "['HF.1.1', 'sars-cov-2-variants/lineage-proposals#521']\n", + "['XBB.1.16.23', 'sars-cov-2-variants/lineage-proposals#517']\n", + "['GA.4.1', 'sars-cov-2-variants/lineage-proposals#661']\n", + "['GW.1.1', 'sars-cov-2-variants/lineage-proposals#355']\n", + "['XBB.1.41.2', 'sars-cov-2-variants/lineage-proposals#389']\n", + "['JE.1', 'sars-cov-2-variants/lineage-proposals#597']\n", + "['GM.3.1', 'sars-cov-2-variants/lineage-proposals#450']\n", + "['HG.2', 'sars-cov-2-variants/lineage-proposals#652']\n", + "['GE.1.1', 'sars-cov-2-variants/lineage-proposals#367']\n", + "['GE.1.2', 'sars-cov-2-variants/lineage-proposals#200']\n", + "['GE.1.3', 'sars-cov-2-variants/lineage-proposals#102']\n", + "['GS.2', 'sars-cov-2-variants/lineage-proposals#93']\n", + "['GS.3', 'sars-cov-2-variants/lineage-proposals#669']\n", + "['GS.4', 'sars-cov-2-variants/lineage-proposals#668']\n", + "['GS.4.1', 'sars-cov-2-variants/lineage-proposals#668']\n" ] } ], @@ -234,7 +357,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 9, "id": "1c9369e1", "metadata": {}, "outputs": [ @@ -242,8 +365,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "Add 1 references from cov-lineages/pango-designation.\n", - "Add 3 references from sars-cov-2-variants/lineage-proposals.\n" + "Add 4 references from cov-lineages/pango-designation.\n", + "Add 31 references from sars-cov-2-variants/lineage-proposals.\n" ] } ], @@ -299,1945 +422,6 @@ "w.close()\n" ] }, - { - "cell_type": "code", - "execution_count": 6, - "id": "0b3798f0", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/1', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/1', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/1/labels', 'id': 6428650, 'node_id': 'MDk6TWlsZXN0b25lNjQyODY1MA==', 'number': 1, 'title': 'C.1', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-13T08:32:15Z', 'updated_at': '2021-02-13T08:32:15Z', 'due_on': None, 'closed_at': None}\n", - "1 C.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/2', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/2', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/2/labels', 'id': 6428653, 'node_id': 'MDk6TWlsZXN0b25lNjQyODY1Mw==', 'number': 2, 'title': 'B.1.429', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-13T08:32:52Z', 'updated_at': '2021-02-13T08:32:52Z', 'due_on': None, 'closed_at': None}\n", - "2 B.1.429\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/3', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/3', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/3/labels', 'id': 6428655, 'node_id': 'MDk6TWlsZXN0b25lNjQyODY1NQ==', 'number': 3, 'title': 'B.1.525', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-13T08:36:10Z', 'updated_at': '2021-02-13T08:36:10Z', 'due_on': None, 'closed_at': None}\n", - "3 B.1.525\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/4', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/4', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/4/labels', 'id': 6428656, 'node_id': 'MDk6TWlsZXN0b25lNjQyODY1Ng==', 'number': 4, 'title': 'B.1.526', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-02-13T08:37:01Z', 'updated_at': '2021-06-14T15:45:57Z', 'due_on': None, 'closed_at': None}\n", - "4 B.1.526\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/5', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/5', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/5/labels', 'id': 6438339, 'node_id': 'MDk6TWlsZXN0b25lNjQzODMzOQ==', 'number': 5, 'title': 'B.1.1.316', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-16T11:41:55Z', 'updated_at': '2021-02-16T11:41:55Z', 'due_on': None, 'closed_at': None}\n", - "5 B.1.1.316\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/6', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/6', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/6/labels', 'id': 6450314, 'node_id': 'MDk6TWlsZXN0b25lNjQ1MDMxNA==', 'number': 6, 'title': 'A.27', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-18T19:59:11Z', 'updated_at': '2021-02-18T19:59:11Z', 'due_on': None, 'closed_at': None}\n", - "6 A.27\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/7', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/7', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/7/labels', 'id': 6456527, 'node_id': 'MDk6TWlsZXN0b25lNjQ1NjUyNw==', 'number': 7, 'title': 'R.1', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-21T02:35:13Z', 'updated_at': '2021-02-21T18:26:48Z', 'due_on': None, 'closed_at': None}\n", - "7 R.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/8', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/8', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/8/labels', 'id': 6456530, 'node_id': 'MDk6TWlsZXN0b25lNjQ1NjUzMA==', 'number': 8, 'title': 'R.2', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-21T02:43:51Z', 'updated_at': '2021-02-21T18:25:45Z', 'due_on': None, 'closed_at': None}\n", - "8 R.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/9', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/9', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/9/labels', 'id': 6457367, 'node_id': 'MDk6TWlsZXN0b25lNjQ1NzM2Nw==', 'number': 9, 'title': 'B.1.1.318', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-21T18:27:46Z', 'updated_at': '2021-02-21T18:27:46Z', 'due_on': None, 'closed_at': None}\n", - "9 B.1.1.318\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/10', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/10', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/10/labels', 'id': 6457755, 'node_id': 'MDk6TWlsZXN0b25lNjQ1Nzc1NQ==', 'number': 10, 'title': 'A.28', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-02-21T22:33:45Z', 'updated_at': '2021-02-21T22:33:45Z', 'due_on': None, 'closed_at': None}\n", - "10 A.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/11', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/11', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/11/labels', 'id': 6497257, 'node_id': 'MDk6TWlsZXN0b25lNjQ5NzI1Nw==', 'number': 11, 'title': 'B.1.214.2', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-02T13:22:38Z', 'updated_at': '2021-04-06T08:16:08Z', 'due_on': None, 'closed_at': None}\n", - "11 B.1.214.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/12', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/12', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/12/labels', 'id': 6497258, 'node_id': 'MDk6TWlsZXN0b25lNjQ5NzI1OA==', 'number': 12, 'title': 'B.1.214.1', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-02T13:22:57Z', 'updated_at': '2021-03-02T14:05:02Z', 'due_on': None, 'closed_at': None}\n", - "12 B.1.214.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/13', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/13', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/13/labels', 'id': 6503739, 'node_id': 'MDk6TWlsZXN0b25lNjUwMzczOQ==', 'number': 13, 'title': 'B.1.324.1', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-03-03T16:58:41Z', 'updated_at': '2021-05-13T12:20:38Z', 'due_on': None, 'closed_at': None}\n", - "13 B.1.324.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/14', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/14', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/14/labels', 'id': 6529944, 'node_id': 'MDk6TWlsZXN0b25lNjUyOTk0NA==', 'number': 14, 'title': 'P.3', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-10T09:11:08Z', 'updated_at': '2021-03-10T09:11:08Z', 'due_on': None, 'closed_at': None}\n", - "14 P.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/15', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/15', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/15/labels', 'id': 6552353, 'node_id': 'MDk6TWlsZXN0b25lNjU1MjM1Mw==', 'number': 15, 'title': 'B.1.466.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-16T15:30:07Z', 'updated_at': '2021-03-16T15:31:52Z', 'due_on': None, 'closed_at': None}\n", - "15 B.1.466.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/16', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/16', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/16/labels', 'id': 6552739, 'node_id': 'MDk6TWlsZXN0b25lNjU1MjczOQ==', 'number': 16, 'title': 'N.9', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-16T17:00:49Z', 'updated_at': '2021-03-16T17:00:49Z', 'due_on': None, 'closed_at': None}\n", - "16 N.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/17', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/17', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/17/labels', 'id': 6590985, 'node_id': 'MDk6TWlsZXN0b25lNjU5MDk4NQ==', 'number': 17, 'title': 'B.1.616', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-25T15:15:48Z', 'updated_at': '2021-03-25T15:30:52Z', 'due_on': None, 'closed_at': None}\n", - "17 B.1.616\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/18', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/18', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/18/labels', 'id': 6591036, 'node_id': 'MDk6TWlsZXN0b25lNjU5MTAzNg==', 'number': 18, 'title': 'C.2.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-25T15:32:08Z', 'updated_at': '2021-03-25T17:20:34Z', 'due_on': None, 'closed_at': None}\n", - "18 C.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/19', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/19', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/19/labels', 'id': 6603370, 'node_id': 'MDk6TWlsZXN0b25lNjYwMzM3MA==', 'number': 19, 'title': 'B.1.243.1', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-03-29T11:13:21Z', 'updated_at': '2021-03-29T11:13:26Z', 'due_on': None, 'closed_at': None}\n", - "19 B.1.243.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/20', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/20', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/20/labels', 'id': 6615749, 'node_id': 'MDk6TWlsZXN0b25lNjYxNTc0OQ==', 'number': 20, 'title': 'B.1.617', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-04-01T09:34:24Z', 'updated_at': '2021-05-19T08:33:10Z', 'due_on': None, 'closed_at': None}\n", - "20 B.1.617\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/21', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/21', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/21/labels', 'id': 6619745, 'node_id': 'MDk6TWlsZXN0b25lNjYxOTc0NQ==', 'number': 21, 'title': 'P.1.1', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-02T10:22:25Z', 'updated_at': '2021-04-08T13:25:35Z', 'due_on': None, 'closed_at': None}\n", - "21 P.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/22', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/22', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/22/labels', 'id': 6628989, 'node_id': 'MDk6TWlsZXN0b25lNjYyODk4OQ==', 'number': 22, 'title': 'B.1.214.3', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-04-06T08:15:49Z', 'updated_at': '2021-04-06T08:16:08Z', 'due_on': None, 'closed_at': None}\n", - "22 B.1.214.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/23', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/23', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/23/labels', 'id': 6628999, 'node_id': 'MDk6TWlsZXN0b25lNjYyODk5OQ==', 'number': 23, 'title': 'B.1.214.4', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-06T08:18:44Z', 'updated_at': '2021-04-06T08:18:48Z', 'due_on': None, 'closed_at': None}\n", - "23 B.1.214.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/24', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/24', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/24/labels', 'id': 6635869, 'node_id': 'MDk6TWlsZXN0b25lNjYzNTg2OQ==', 'number': 24, 'title': 'B.1.429.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-07T14:13:07Z', 'updated_at': '2021-04-07T14:13:25Z', 'due_on': None, 'closed_at': None}\n", - "24 B.1.429.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/25', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/25', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/25/labels', 'id': 6636197, 'node_id': 'MDk6TWlsZXN0b25lNjYzNjE5Nw==', 'number': 25, 'title': 'A.2.5.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-07T15:29:55Z', 'updated_at': '2021-04-07T15:30:14Z', 'due_on': None, 'closed_at': None}\n", - "25 A.2.5.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/26', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/26', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/26/labels', 'id': 6639137, 'node_id': 'MDk6TWlsZXN0b25lNjYzOTEzNw==', 'number': 26, 'title': 'N.10', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-08T09:58:59Z', 'updated_at': '2021-04-08T09:59:16Z', 'due_on': None, 'closed_at': None}\n", - "26 N.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/27', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/27', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/27/labels', 'id': 6640174, 'node_id': 'MDk6TWlsZXN0b25lNjY0MDE3NA==', 'number': 27, 'title': 'B.1.177.88', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-08T15:00:05Z', 'updated_at': '2021-04-08T15:00:27Z', 'due_on': None, 'closed_at': None}\n", - "27 B.1.177.88\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/28', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/28', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/28/labels', 'id': 6655668, 'node_id': 'MDk6TWlsZXN0b25lNjY1NTY2OA==', 'number': 28, 'title': 'B.1.618', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-13T10:00:38Z', 'updated_at': '2021-04-13T10:00:51Z', 'due_on': None, 'closed_at': None}\n", - "28 B.1.618\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/29', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/29', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/29/labels', 'id': 6660081, 'node_id': 'MDk6TWlsZXN0b25lNjY2MDA4MQ==', 'number': 29, 'title': 'B.1.1.29', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-14T11:17:34Z', 'updated_at': '2021-04-14T11:17:42Z', 'due_on': None, 'closed_at': None}\n", - "29 B.1.1.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/30', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/30', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/30/labels', 'id': 6674847, 'node_id': 'MDk6TWlsZXN0b25lNjY3NDg0Nw==', 'number': 30, 'title': 'AT.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-04-19T11:41:20Z', 'updated_at': '2021-07-22T14:36:29Z', 'due_on': None, 'closed_at': None}\n", - "30 AT.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/31', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/31', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/31/labels', 'id': 6680021, 'node_id': 'MDk6TWlsZXN0b25lNjY4MDAyMQ==', 'number': 31, 'title': 'B.1.619', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-04-20T14:24:40Z', 'updated_at': '2021-07-27T12:31:29Z', 'due_on': None, 'closed_at': None}\n", - "31 B.1.619\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/32', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/32', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/32/labels', 'id': 6680022, 'node_id': 'MDk6TWlsZXN0b25lNjY4MDAyMg==', 'number': 32, 'title': 'B.1.620', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-20T14:24:47Z', 'updated_at': '2021-04-20T14:25:23Z', 'due_on': None, 'closed_at': None}\n", - "32 B.1.620\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/33', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/33', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/33/labels', 'id': 6683371, 'node_id': 'MDk6TWlsZXN0b25lNjY4MzM3MQ==', 'number': 33, 'title': 'B.1.438', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-21T09:54:31Z', 'updated_at': '2021-04-21T09:54:46Z', 'due_on': None, 'closed_at': None}\n", - "33 B.1.438\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/34', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/34', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/34/labels', 'id': 6692505, 'node_id': 'MDk6TWlsZXN0b25lNjY5MjUwNQ==', 'number': 34, 'title': 'C.37', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-23T16:10:08Z', 'updated_at': '2021-04-23T16:10:24Z', 'due_on': None, 'closed_at': None}\n", - "34 C.37\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/35', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/35', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/35/labels', 'id': 6692506, 'node_id': 'MDk6TWlsZXN0b25lNjY5MjUwNg==', 'number': 35, 'title': 'B.1.621', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-23T16:12:26Z', 'updated_at': '2021-04-23T16:12:40Z', 'due_on': None, 'closed_at': None}\n", - "35 B.1.621\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/36', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/36', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/36/labels', 'id': 6703454, 'node_id': 'MDk6TWlsZXN0b25lNjcwMzQ1NA==', 'number': 36, 'title': 'B.1.622', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-27T11:29:23Z', 'updated_at': '2021-04-27T11:29:37Z', 'due_on': None, 'closed_at': None}\n", - "36 B.1.622\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/37', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/37', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/37/labels', 'id': 6703463, 'node_id': 'MDk6TWlsZXN0b25lNjcwMzQ2Mw==', 'number': 37, 'title': 'P.1.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-27T11:31:23Z', 'updated_at': '2021-04-27T11:31:37Z', 'due_on': None, 'closed_at': None}\n", - "37 P.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/38', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/38', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/38/labels', 'id': 6704436, 'node_id': 'MDk6TWlsZXN0b25lNjcwNDQzNg==', 'number': 38, 'title': 'XA', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-27T16:17:22Z', 'updated_at': '2021-05-05T13:42:12Z', 'due_on': None, 'closed_at': None}\n", - "38 XA\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/39', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/39', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/39/labels', 'id': 6706439, 'node_id': 'MDk6TWlsZXN0b25lNjcwNjQzOQ==', 'number': 39, 'title': 'B.1.575', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-04-28T07:48:17Z', 'updated_at': '2021-04-28T07:48:26Z', 'due_on': None, 'closed_at': None}\n", - "39 B.1.575\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/40', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/40', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/40/labels', 'id': 6706440, 'node_id': 'MDk6TWlsZXN0b25lNjcwNjQ0MA==', 'number': 40, 'title': 'B.1.575.1', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-04-28T07:48:26Z', 'updated_at': '2021-04-28T07:50:46Z', 'due_on': None, 'closed_at': None}\n", - "40 B.1.575.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/41', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/41', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/41/labels', 'id': 6729269, 'node_id': 'MDk6TWlsZXN0b25lNjcyOTI2OQ==', 'number': 41, 'title': 'B.1.351.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-05T10:49:36Z', 'updated_at': '2021-05-05T10:49:53Z', 'due_on': None, 'closed_at': None}\n", - "41 B.1.351.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/42', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/42', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/42/labels', 'id': 6743299, 'node_id': 'MDk6TWlsZXN0b25lNjc0MzI5OQ==', 'number': 42, 'title': 'AV.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-10T12:03:13Z', 'updated_at': '2021-05-10T12:03:29Z', 'due_on': None, 'closed_at': None}\n", - "42 AV.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/43', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/43', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/43/labels', 'id': 6755745, 'node_id': 'MDk6TWlsZXN0b25lNjc1NTc0NQ==', 'number': 43, 'title': 'B.1.623', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-13T12:20:19Z', 'updated_at': '2021-05-13T12:20:38Z', 'due_on': None, 'closed_at': None}\n", - "43 B.1.623\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/44', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/44', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/44/labels', 'id': 6758549, 'node_id': 'MDk6TWlsZXN0b25lNjc1ODU0OQ==', 'number': 44, 'title': 'B.1.553 withdrawn', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-14T07:16:49Z', 'updated_at': '2021-05-14T07:19:19Z', 'due_on': None, 'closed_at': None}\n", - "44 B.1.553\n", - "44 withdrawn\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/45', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/45', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/45/labels', 'id': 6758550, 'node_id': 'MDk6TWlsZXN0b25lNjc1ODU1MA==', 'number': 45, 'title': 'B.1.608 withdrawn', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-14T07:17:13Z', 'updated_at': '2021-05-14T07:19:01Z', 'due_on': None, 'closed_at': None}\n", - "45 B.1.608\n", - "45 withdrawn\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/46', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/46', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/46/labels', 'id': 6762415, 'node_id': 'MDk6TWlsZXN0b25lNjc2MjQxNQ==', 'number': 46, 'title': 'B.1.1.523', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-16T09:16:19Z', 'updated_at': '2021-05-16T09:16:35Z', 'due_on': None, 'closed_at': None}\n", - "46 B.1.1.523\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/47', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/47', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/47/labels', 'id': 6770404, 'node_id': 'MDk6TWlsZXN0b25lNjc3MDQwNA==', 'number': 47, 'title': 'P.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-18T16:10:23Z', 'updated_at': '2021-05-18T16:10:41Z', 'due_on': None, 'closed_at': None}\n", - "47 P.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/48', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/48', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/48/labels', 'id': 6781728, 'node_id': 'MDk6TWlsZXN0b25lNjc4MTcyOA==', 'number': 48, 'title': 'A.29', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-21T16:05:50Z', 'updated_at': '2021-05-21T16:06:28Z', 'due_on': None, 'closed_at': None}\n", - "48 A.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/49', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/49', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/49/labels', 'id': 6789904, 'node_id': 'MDk6TWlsZXN0b25lNjc4OTkwNA==', 'number': 49, 'title': 'P.4', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-25T09:12:39Z', 'updated_at': '2021-05-25T09:12:54Z', 'due_on': None, 'closed_at': None}\n", - "49 P.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/50', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/50', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/50/labels', 'id': 6794944, 'node_id': 'MDk6TWlsZXN0b25lNjc5NDk0NA==', 'number': 50, 'title': 'C.36.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-05-26T17:10:52Z', 'updated_at': '2021-05-26T17:11:09Z', 'due_on': None, 'closed_at': None}\n", - "50 C.36.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/51', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/51', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/51/labels', 'id': 6824419, 'node_id': 'MDk6TWlsZXN0b25lNjgyNDQxOQ==', 'number': 51, 'title': 'AW.1', 'description': None, 'creator': {'login': 'aineniamh', 'id': 11678307, 'node_id': 'MDQ6VXNlcjExNjc4MzA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/11678307?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aineniamh', 'html_url': 'https://github.com/aineniamh', 'followers_url': 'https://api.github.com/users/aineniamh/followers', 'following_url': 'https://api.github.com/users/aineniamh/following{/other_user}', 'gists_url': 'https://api.github.com/users/aineniamh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aineniamh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aineniamh/subscriptions', 'organizations_url': 'https://api.github.com/users/aineniamh/orgs', 'repos_url': 'https://api.github.com/users/aineniamh/repos', 'events_url': 'https://api.github.com/users/aineniamh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aineniamh/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-04T09:15:45Z', 'updated_at': '2021-06-04T09:15:45Z', 'due_on': None, 'closed_at': None}\n", - "51 AW.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/52', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/52', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/52/labels', 'id': 6825099, 'node_id': 'MDk6TWlsZXN0b25lNjgyNTA5OQ==', 'number': 52, 'title': 'B.1.617.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-04T13:29:53Z', 'updated_at': '2021-06-04T13:30:24Z', 'due_on': None, 'closed_at': None}\n", - "52 B.1.617.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/53', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/53', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/53/labels', 'id': 6825863, 'node_id': 'MDk6TWlsZXN0b25lNjgyNTg2Mw==', 'number': 53, 'title': 'AY.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-04T18:30:50Z', 'updated_at': '2021-06-04T18:31:06Z', 'due_on': None, 'closed_at': None}\n", - "53 AY.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/54', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/54', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/54/labels', 'id': 6860128, 'node_id': 'MDk6TWlsZXN0b25lNjg2MDEyOA==', 'number': 54, 'title': 'AY.2', 'description': None, 'creator': {'login': 'rambaut', 'id': 686405, 'node_id': 'MDQ6VXNlcjY4NjQwNQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/686405?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rambaut', 'html_url': 'https://github.com/rambaut', 'followers_url': 'https://api.github.com/users/rambaut/followers', 'following_url': 'https://api.github.com/users/rambaut/following{/other_user}', 'gists_url': 'https://api.github.com/users/rambaut/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rambaut/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rambaut/subscriptions', 'organizations_url': 'https://api.github.com/users/rambaut/orgs', 'repos_url': 'https://api.github.com/users/rambaut/repos', 'events_url': 'https://api.github.com/users/rambaut/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rambaut/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-16T15:03:43Z', 'updated_at': '2021-06-16T15:03:43Z', 'due_on': None, 'closed_at': None}\n", - "54 AY.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/55', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/55', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/55/labels', 'id': 6869066, 'node_id': 'MDk6TWlsZXN0b25lNjg2OTA2Ng==', 'number': 55, 'title': 'B.1.1.524 B.1.1.525', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-18T16:44:37Z', 'updated_at': '2021-06-18T16:44:58Z', 'due_on': None, 'closed_at': None}\n", - "55 B.1.1.524\n", - "55 B.1.1.525\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/56', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/56', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/56/labels', 'id': 6870425, 'node_id': 'MDk6TWlsZXN0b25lNjg3MDQyNQ==', 'number': 56, 'title': 'P.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-19T14:31:28Z', 'updated_at': '2021-06-19T14:31:48Z', 'due_on': None, 'closed_at': None}\n", - "56 P.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/57', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/57', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/57/labels', 'id': 6870454, 'node_id': 'MDk6TWlsZXN0b25lNjg3MDQ1NA==', 'number': 57, 'title': 'B.1.624', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-19T15:06:34Z', 'updated_at': '2021-06-19T15:06:51Z', 'due_on': None, 'closed_at': None}\n", - "57 B.1.624\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/58', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/58', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/58/labels', 'id': 6870483, 'node_id': 'MDk6TWlsZXN0b25lNjg3MDQ4Mw==', 'number': 58, 'title': 'B.1.625', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-19T15:39:40Z', 'updated_at': '2021-06-19T15:40:01Z', 'due_on': None, 'closed_at': None}\n", - "58 B.1.625\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/59', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/59', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/59/labels', 'id': 6882193, 'node_id': 'MDk6TWlsZXN0b25lNjg4MjE5Mw==', 'number': 59, 'title': 'B.1.400.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-23T15:29:10Z', 'updated_at': '2021-06-23T15:29:26Z', 'due_on': None, 'closed_at': None}\n", - "59 B.1.400.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/60', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/60', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/60/labels', 'id': 6882339, 'node_id': 'MDk6TWlsZXN0b25lNjg4MjMzOQ==', 'number': 60, 'title': 'B.1.575.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-23T16:15:56Z', 'updated_at': '2021-06-23T16:16:11Z', 'due_on': None, 'closed_at': None}\n", - "60 B.1.575.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/61', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/61', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/61/labels', 'id': 6889004, 'node_id': 'MDk6TWlsZXN0b25lNjg4OTAwNA==', 'number': 61, 'title': 'B.1.626', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-06-25T15:22:24Z', 'updated_at': '2021-07-08T11:39:52Z', 'due_on': None, 'closed_at': None}\n", - "61 B.1.626\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/62', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/62', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/62/labels', 'id': 6895974, 'node_id': 'MDk6TWlsZXN0b25lNjg5NTk3NA==', 'number': 62, 'title': 'B.1.617.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-06-28T16:17:21Z', 'updated_at': '2021-07-06T12:15:15Z', 'due_on': None, 'closed_at': None}\n", - "62 B.1.617.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/63', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/63', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/63/labels', 'id': 6902641, 'node_id': 'MDk6TWlsZXN0b25lNjkwMjY0MQ==', 'number': 63, 'title': 'AY.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-06-30T09:46:50Z', 'updated_at': '2021-06-30T09:47:01Z', 'due_on': None, 'closed_at': None}\n", - "63 AY.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/65', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/65', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/65/labels', 'id': 6908083, 'node_id': 'MDk6TWlsZXN0b25lNjkwODA4Mw==', 'number': 65, 'title': 'B.1.627 B.1.628', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-01T14:33:20Z', 'updated_at': '2021-07-01T14:33:37Z', 'due_on': None, 'closed_at': None}\n", - "65 B.1.627\n", - "65 B.1.628\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/66', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/66', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/66/labels', 'id': 6908171, 'node_id': 'MDk6TWlsZXN0b25lNjkwODE3MQ==', 'number': 66, 'title': 'B.1.629', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-01T15:04:00Z', 'updated_at': '2021-07-01T15:04:14Z', 'due_on': None, 'closed_at': None}\n", - "66 B.1.629\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/67', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/67', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/67/labels', 'id': 6908336, 'node_id': 'MDk6TWlsZXN0b25lNjkwODMzNg==', 'number': 67, 'title': 'B.1.1.519', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-01T15:31:00Z', 'updated_at': '2021-07-01T15:31:17Z', 'due_on': None, 'closed_at': None}\n", - "67 B.1.1.519\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/68', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/68', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/68/labels', 'id': 6932077, 'node_id': 'MDk6TWlsZXN0b25lNjkzMjA3Nw==', 'number': 68, 'title': 'B.1.351.4', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-09T10:50:41Z', 'updated_at': '2021-07-15T08:40:50Z', 'due_on': None, 'closed_at': None}\n", - "68 B.1.351.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/69', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/69', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/69/labels', 'id': 6932080, 'node_id': 'MDk6TWlsZXN0b25lNjkzMjA4MA==', 'number': 69, 'title': 'A.30', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-09T10:52:12Z', 'updated_at': '2021-07-09T10:52:27Z', 'due_on': None, 'closed_at': None}\n", - "69 A.30\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/70', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/70', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/70/labels', 'id': 6942602, 'node_id': 'MDk6TWlsZXN0b25lNjk0MjYwMg==', 'number': 70, 'title': 'B.1.630', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-13T16:07:04Z', 'updated_at': '2021-07-13T16:07:29Z', 'due_on': None, 'closed_at': None}\n", - "70 B.1.630\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/71', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/71', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/71/labels', 'id': 6996428, 'node_id': 'MI_kwDOEGMSVc4AasHM', 'number': 71, 'title': 'C.1.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-22T14:22:03Z', 'updated_at': '2021-07-22T14:22:23Z', 'due_on': None, 'closed_at': None}\n", - "71 C.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/72', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/72', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/72/labels', 'id': 6996782, 'node_id': 'MI_kwDOEGMSVc4AasMu', 'number': 72, 'title': 'P.1.3 P.1.4 P.1.5 P.1.6 P.1.7', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-22T16:36:15Z', 'updated_at': '2021-07-22T16:36:28Z', 'due_on': None, 'closed_at': None}\n", - "72 P.1.3\n", - "72 P.1.4\n", - "72 P.1.5\n", - "72 P.1.6\n", - "72 P.1.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/73', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/73', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/73/labels', 'id': 6999605, 'node_id': 'MI_kwDOEGMSVc4Aas41', 'number': 73, 'title': 'AY.3.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-23T16:34:55Z', 'updated_at': '2021-07-23T16:35:10Z', 'due_on': None, 'closed_at': None}\n", - "73 AY.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/74', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/74', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/74/labels', 'id': 7003555, 'node_id': 'MI_kwDOEGMSVc4Aat2j', 'number': 74, 'title': 'B.1.631', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-26T08:51:57Z', 'updated_at': '2021-07-26T08:52:14Z', 'due_on': None, 'closed_at': None}\n", - "74 B.1.631\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/75', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/75', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/75/labels', 'id': 7008016, 'node_id': 'MI_kwDOEGMSVc4Aau8Q', 'number': 75, 'title': 'P.6', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-27T12:20:42Z', 'updated_at': '2021-07-27T12:20:57Z', 'due_on': None, 'closed_at': None}\n", - "75 P.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/76', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/76', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/76/labels', 'id': 7008038, 'node_id': 'MI_kwDOEGMSVc4Aau8m', 'number': 76, 'title': 'B.1.619.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-27T12:32:35Z', 'updated_at': '2021-07-27T12:32:48Z', 'due_on': None, 'closed_at': None}\n", - "76 B.1.619.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/77', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/77', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/77/labels', 'id': 7011042, 'node_id': 'MI_kwDOEGMSVc4Aavri', 'number': 77, 'title': 'B.1.628', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-28T10:20:25Z', 'updated_at': '2021-07-28T10:20:43Z', 'due_on': None, 'closed_at': None}\n", - "77 B.1.628\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/78', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/78', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/78/labels', 'id': 7011098, 'node_id': 'MI_kwDOEGMSVc4Aavsa', 'number': 78, 'title': 'C.38', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-28T10:43:12Z', 'updated_at': '2021-07-28T10:43:31Z', 'due_on': None, 'closed_at': None}\n", - "78 C.38\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/79', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/79', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/79/labels', 'id': 7011593, 'node_id': 'MI_kwDOEGMSVc4Aav0J', 'number': 79, 'title': 'B.1.632', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-28T14:12:25Z', 'updated_at': '2021-07-28T14:12:41Z', 'due_on': None, 'closed_at': None}\n", - "79 B.1.632\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/80', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/80', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/80/labels', 'id': 7018157, 'node_id': 'MI_kwDOEGMSVc4Aaxat', 'number': 80, 'title': 'B.1.633', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T09:56:42Z', 'updated_at': '2021-07-30T09:56:59Z', 'due_on': None, 'closed_at': None}\n", - "80 B.1.633\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/81', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/81', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/81/labels', 'id': 7018184, 'node_id': 'MI_kwDOEGMSVc4AaxbI', 'number': 81, 'title': 'B.1.415.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T10:02:15Z', 'updated_at': '2021-07-30T10:02:30Z', 'due_on': None, 'closed_at': None}\n", - "81 B.1.415.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/82', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/82', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/82/labels', 'id': 7018398, 'node_id': 'MI_kwDOEGMSVc4Aaxee', 'number': 82, 'title': 'C.37.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T12:04:21Z', 'updated_at': '2021-07-30T12:04:34Z', 'due_on': None, 'closed_at': None}\n", - "82 C.37.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/83', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/83', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/83/labels', 'id': 7018406, 'node_id': 'MI_kwDOEGMSVc4Aaxem', 'number': 83, 'title': 'B.1.634 B.1.635', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T12:06:14Z', 'updated_at': '2021-07-30T12:06:30Z', 'due_on': None, 'closed_at': None}\n", - "83 B.1.634\n", - "83 B.1.635\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/84', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/84', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/84/labels', 'id': 7019098, 'node_id': 'MI_kwDOEGMSVc4Aaxpa', 'number': 84, 'title': 'P.7', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T16:27:58Z', 'updated_at': '2021-07-30T16:28:15Z', 'due_on': None, 'closed_at': None}\n", - "84 P.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/85', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/85', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/85/labels', 'id': 7019126, 'node_id': 'MI_kwDOEGMSVc4Aaxp2', 'number': 85, 'title': 'B.1.1.317', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-07-30T16:45:43Z', 'updated_at': '2021-07-30T16:46:02Z', 'due_on': None, 'closed_at': None}\n", - "85 B.1.1.317\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/86', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/86', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/86/labels', 'id': 7023956, 'node_id': 'MI_kwDOEGMSVc4Aay1U', 'number': 86, 'title': 'Q.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-02T12:47:00Z', 'updated_at': '2021-08-02T12:47:27Z', 'due_on': None, 'closed_at': None}\n", - "86 Q.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/87', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/87', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/87/labels', 'id': 7023964, 'node_id': 'MI_kwDOEGMSVc4Aay1c', 'number': 87, 'title': 'Q.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-02T12:49:27Z', 'updated_at': '2021-08-02T12:49:48Z', 'due_on': None, 'closed_at': None}\n", - "87 Q.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/88', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/88', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/88/labels', 'id': 7027289, 'node_id': 'MI_kwDOEGMSVc4AazpZ', 'number': 88, 'title': 'Q.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-03T10:39:44Z', 'updated_at': '2021-08-03T10:40:04Z', 'due_on': None, 'closed_at': None}\n", - "88 Q.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/89', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/89', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/89/labels', 'id': 7031371, 'node_id': 'MI_kwDOEGMSVc4Aa0pL', 'number': 89, 'title': 'A.2.5.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-04T12:52:30Z', 'updated_at': '2021-08-04T12:52:43Z', 'due_on': None, 'closed_at': None}\n", - "89 A.2.5.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/90', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/90', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/90/labels', 'id': 7040903, 'node_id': 'MI_kwDOEGMSVc4Aa2-H', 'number': 90, 'title': 'AZ.1 AZ.2 AZ.2.1 AZ.3 AZ.4 AZ.5 AZ.6', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-07T12:52:36Z', 'updated_at': '2021-08-07T12:52:47Z', 'due_on': None, 'closed_at': None}\n", - "90 AZ.1\n", - "90 AZ.2\n", - "90 AZ.2.1\n", - "90 AZ.3\n", - "90 AZ.4\n", - "90 AZ.5\n", - "90 AZ.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/91', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/91', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/91/labels', 'id': 7044804, 'node_id': 'MI_kwDOEGMSVc4Aa37E', 'number': 91, 'title': 'AY.11', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-09T16:06:35Z', 'updated_at': '2021-08-09T16:06:50Z', 'due_on': None, 'closed_at': None}\n", - "91 AY.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/92', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/92', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/92/labels', 'id': 7044808, 'node_id': 'MI_kwDOEGMSVc4Aa37I', 'number': 92, 'title': 'AY.12', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-09T16:08:23Z', 'updated_at': '2021-08-09T16:08:42Z', 'due_on': None, 'closed_at': None}\n", - "92 AY.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/93', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/93', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/93/labels', 'id': 7047986, 'node_id': 'MI_kwDOEGMSVc4Aa4sy', 'number': 93, 'title': 'Q.4', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-10T14:12:25Z', 'updated_at': '2021-08-10T14:12:38Z', 'due_on': None, 'closed_at': None}\n", - "93 Q.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/94', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/94', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/94/labels', 'id': 7048302, 'node_id': 'MI_kwDOEGMSVc4Aa4xu', 'number': 94, 'title': 'B.1.636', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-10T16:31:27Z', 'updated_at': '2021-08-10T16:31:40Z', 'due_on': None, 'closed_at': None}\n", - "94 B.1.636\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/95', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/95', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/95/labels', 'id': 7048309, 'node_id': 'MI_kwDOEGMSVc4Aa4x1', 'number': 95, 'title': 'P.1.9', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-10T16:32:31Z', 'updated_at': '2021-08-10T16:32:43Z', 'due_on': None, 'closed_at': None}\n", - "95 P.1.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/96', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/96', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/96/labels', 'id': 7053734, 'node_id': 'MI_kwDOEGMSVc4Aa6Gm', 'number': 96, 'title': 'P.1.10', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-12T12:22:02Z', 'updated_at': '2021-08-12T12:22:15Z', 'due_on': None, 'closed_at': None}\n", - "96 P.1.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/97', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/97', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/97/labels', 'id': 7054222, 'node_id': 'MI_kwDOEGMSVc4Aa6OO', 'number': 97, 'title': 'AY.4 AY.5 AY.6 AY.7 AY.8 AY.9 AY.10', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-12T14:38:13Z', 'updated_at': '2021-08-12T14:38:36Z', 'due_on': None, 'closed_at': None}\n", - "97 AY.4\n", - "97 AY.5\n", - "97 AY.6\n", - "97 AY.7\n", - "97 AY.8\n", - "97 AY.9\n", - "97 AY.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/98', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/98', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/98/labels', 'id': 7066824, 'node_id': 'MI_kwDOEGMSVc4Aa9TI', 'number': 98, 'title': 'AY.23 AY.24', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-17T16:47:54Z', 'updated_at': '2021-08-17T16:48:18Z', 'due_on': None, 'closed_at': None}\n", - "98 AY.23\n", - "98 AY.24\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/99', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/99', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/99/labels', 'id': 7070305, 'node_id': 'MI_kwDOEGMSVc4Aa-Jh', 'number': 99, 'title': 'P.1.8 P.1.11', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-18T16:43:50Z', 'updated_at': '2021-08-18T16:44:08Z', 'due_on': None, 'closed_at': None}\n", - "99 P.1.8\n", - "99 P.1.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/100', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/100', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/100/labels', 'id': 7070308, 'node_id': 'MI_kwDOEGMSVc4Aa-Jk', 'number': 100, 'title': 'C.39', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-18T16:45:10Z', 'updated_at': '2021-08-18T16:45:23Z', 'due_on': None, 'closed_at': None}\n", - "100 C.39\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/101', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/101', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/101/labels', 'id': 7070324, 'node_id': 'MI_kwDOEGMSVc4Aa-J0', 'number': 101, 'title': 'AY.25', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-18T16:51:24Z', 'updated_at': '2021-08-18T16:51:36Z', 'due_on': None, 'closed_at': None}\n", - "101 AY.25\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/102', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/102', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/102/labels', 'id': 7072623, 'node_id': 'MI_kwDOEGMSVc4Aa-tv', 'number': 102, 'title': 'B.1.637', 'description': None, 'creator': {'login': 'AngieHinrichs', 'id': 186983, 'node_id': 'MDQ6VXNlcjE4Njk4Mw==', 'avatar_url': 'https://avatars.githubusercontent.com/u/186983?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/AngieHinrichs', 'html_url': 'https://github.com/AngieHinrichs', 'followers_url': 'https://api.github.com/users/AngieHinrichs/followers', 'following_url': 'https://api.github.com/users/AngieHinrichs/following{/other_user}', 'gists_url': 'https://api.github.com/users/AngieHinrichs/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/AngieHinrichs/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/AngieHinrichs/subscriptions', 'organizations_url': 'https://api.github.com/users/AngieHinrichs/orgs', 'repos_url': 'https://api.github.com/users/AngieHinrichs/repos', 'events_url': 'https://api.github.com/users/AngieHinrichs/events{/privacy}', 'received_events_url': 'https://api.github.com/users/AngieHinrichs/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-08-19T05:17:31Z', 'updated_at': '2021-08-19T12:04:21Z', 'due_on': None, 'closed_at': None}\n", - "102 B.1.637\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/103', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/103', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/103/labels', 'id': 7074428, 'node_id': 'MI_kwDOEGMSVc4Aa_J8', 'number': 103, 'title': 'Q.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-19T16:22:51Z', 'updated_at': '2021-08-19T16:23:06Z', 'due_on': None, 'closed_at': None}\n", - "103 Q.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/104', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/104', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/104/labels', 'id': 7074434, 'node_id': 'MI_kwDOEGMSVc4Aa_KC', 'number': 104, 'title': 'B.1.1.528', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-19T16:28:55Z', 'updated_at': '2021-08-19T16:29:19Z', 'due_on': None, 'closed_at': None}\n", - "104 B.1.1.528\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/105', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/105', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/105/labels', 'id': 7079721, 'node_id': 'MI_kwDOEGMSVc4AbAcp', 'number': 105, 'title': 'Q.8', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-22T11:54:08Z', 'updated_at': '2021-08-22T11:54:37Z', 'due_on': None, 'closed_at': None}\n", - "105 Q.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/106', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/106', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/106/labels', 'id': 7079734, 'node_id': 'MI_kwDOEGMSVc4AbAc2', 'number': 106, 'title': 'Q.6 Q.7', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-22T12:07:20Z', 'updated_at': '2021-08-22T12:07:34Z', 'due_on': None, 'closed_at': None}\n", - "106 Q.6\n", - "106 Q.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/107', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/107', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/107/labels', 'id': 7079819, 'node_id': 'MI_kwDOEGMSVc4AbAeL', 'number': 107, 'title': 'AY.13 AY.14 AY.15 AY.16 AY.17 AY.18 AY.19 AY.20 AY.21 AY.22', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-22T13:35:50Z', 'updated_at': '2021-08-22T13:36:12Z', 'due_on': None, 'closed_at': None}\n", - "107 AY.13\n", - "107 AY.14\n", - "107 AY.15\n", - "107 AY.16\n", - "107 AY.17\n", - "107 AY.18\n", - "107 AY.19\n", - "107 AY.20\n", - "107 AY.21\n", - "107 AY.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/108', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/108', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/108/labels', 'id': 7086773, 'node_id': 'MI_kwDOEGMSVc4AbCK1', 'number': 108, 'title': 'B.1.243.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-24T16:26:32Z', 'updated_at': '2021-08-24T16:26:59Z', 'due_on': None, 'closed_at': None}\n", - "108 B.1.243.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/109', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/109', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/109/labels', 'id': 7089247, 'node_id': 'MI_kwDOEGMSVc4AbCxf', 'number': 109, 'title': 'AY.26', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-25T11:31:55Z', 'updated_at': '2021-08-25T11:32:19Z', 'due_on': None, 'closed_at': None}\n", - "109 AY.26\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/110', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/110', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/110/labels', 'id': 7089263, 'node_id': 'MI_kwDOEGMSVc4AbCxv', 'number': 110, 'title': 'AY.27', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-25T11:41:23Z', 'updated_at': '2021-08-25T11:41:35Z', 'due_on': None, 'closed_at': None}\n", - "110 AY.27\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/111', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/111', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/111/labels', 'id': 7089266, 'node_id': 'MI_kwDOEGMSVc4AbCxy', 'number': 111, 'title': 'AY.28', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-25T11:44:02Z', 'updated_at': '2021-08-25T11:44:15Z', 'due_on': None, 'closed_at': None}\n", - "111 AY.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/112', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/112', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/112/labels', 'id': 7090163, 'node_id': 'MI_kwDOEGMSVc4AbC_z', 'number': 112, 'title': 'B.59', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-25T16:17:43Z', 'updated_at': '2021-08-25T16:17:57Z', 'due_on': None, 'closed_at': None}\n", - "112 B.59\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/113', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/113', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/113/labels', 'id': 7097188, 'node_id': 'MI_kwDOEGMSVc4AbEtk', 'number': 113, 'title': 'C.40', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-27T14:20:19Z', 'updated_at': '2021-08-27T14:20:37Z', 'due_on': None, 'closed_at': None}\n", - "113 C.40\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/114', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/114', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/114/labels', 'id': 7108548, 'node_id': 'MI_kwDOEGMSVc4AbHfE', 'number': 114, 'title': 'B.1.638', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-08-31T14:44:01Z', 'updated_at': '2021-08-31T14:44:24Z', 'due_on': None, 'closed_at': None}\n", - "114 B.1.638\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/115', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/115', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/115/labels', 'id': 7115927, 'node_id': 'MI_kwDOEGMSVc4AbJSX', 'number': 115, 'title': 'AY.29', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-02T09:21:39Z', 'updated_at': '2021-09-02T09:21:57Z', 'due_on': None, 'closed_at': None}\n", - "115 AY.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/116', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/116', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/116/labels', 'id': 7116256, 'node_id': 'MI_kwDOEGMSVc4AbJXg', 'number': 116, 'title': 'AY.30', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-02T11:53:10Z', 'updated_at': '2021-09-02T11:53:31Z', 'due_on': None, 'closed_at': None}\n", - "116 AY.30\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/117', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/117', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/117/labels', 'id': 7116338, 'node_id': 'MI_kwDOEGMSVc4AbJYy', 'number': 117, 'title': 'AY.31', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-02T12:20:47Z', 'updated_at': '2021-09-02T12:21:08Z', 'due_on': None, 'closed_at': None}\n", - "117 AY.31\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/118', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/118', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/118/labels', 'id': 7120390, 'node_id': 'MI_kwDOEGMSVc4AbKYG', 'number': 118, 'title': 'AY.32', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-03T15:57:31Z', 'updated_at': '2021-09-03T15:57:55Z', 'due_on': None, 'closed_at': None}\n", - "118 AY.32\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/119', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/119', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/119/labels', 'id': 7147568, 'node_id': 'MI_kwDOEGMSVc4AbRAw', 'number': 119, 'title': 'AY.33', 'description': '', 'creator': {'login': 'rmcolq', 'id': 9866043, 'node_id': 'MDQ6VXNlcjk4NjYwNDM=', 'avatar_url': 'https://avatars.githubusercontent.com/u/9866043?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rmcolq', 'html_url': 'https://github.com/rmcolq', 'followers_url': 'https://api.github.com/users/rmcolq/followers', 'following_url': 'https://api.github.com/users/rmcolq/following{/other_user}', 'gists_url': 'https://api.github.com/users/rmcolq/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rmcolq/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rmcolq/subscriptions', 'organizations_url': 'https://api.github.com/users/rmcolq/orgs', 'repos_url': 'https://api.github.com/users/rmcolq/repos', 'events_url': 'https://api.github.com/users/rmcolq/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rmcolq/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2021-09-13T14:36:08Z', 'updated_at': '2021-09-27T10:13:41Z', 'due_on': None, 'closed_at': None}\n", - "119 AY.33\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/120', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/120', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/120/labels', 'id': 7183020, 'node_id': 'MI_kwDOEGMSVc4AbZqs', 'number': 120, 'title': 'B.1.351.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-23T15:48:07Z', 'updated_at': '2021-09-23T15:48:19Z', 'due_on': None, 'closed_at': None}\n", - "120 B.1.351.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/121', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/121', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/121/labels', 'id': 7183044, 'node_id': 'MI_kwDOEGMSVc4AbZrE', 'number': 121, 'title': 'P.1.12', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-23T15:55:31Z', 'updated_at': '2021-09-23T15:55:45Z', 'due_on': None, 'closed_at': None}\n", - "121 P.1.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/122', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/122', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/122/labels', 'id': 7185891, 'node_id': 'MI_kwDOEGMSVc4AbaXj', 'number': 122, 'title': 'AY.4.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-24T10:34:34Z', 'updated_at': '2021-09-24T10:34:59Z', 'due_on': None, 'closed_at': None}\n", - "122 AY.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/123', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/123', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/123/labels', 'id': 7185897, 'node_id': 'MI_kwDOEGMSVc4AbaXp', 'number': 123, 'title': 'AY.34 AY.35', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-24T10:36:29Z', 'updated_at': '2021-09-24T10:36:45Z', 'due_on': None, 'closed_at': None}\n", - "123 AY.34\n", - "123 AY.35\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/124', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/124', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/124/labels', 'id': 7192845, 'node_id': 'MI_kwDOEGMSVc4AbcEN', 'number': 124, 'title': 'AY.36', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-27T10:43:48Z', 'updated_at': '2021-09-27T10:44:11Z', 'due_on': None, 'closed_at': None}\n", - "124 AY.36\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/125', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/125', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/125/labels', 'id': 7192883, 'node_id': 'MI_kwDOEGMSVc4AbcEz', 'number': 125, 'title': 'AY.37', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-27T10:52:33Z', 'updated_at': '2021-09-27T10:52:48Z', 'due_on': None, 'closed_at': None}\n", - "125 AY.37\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/126', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/126', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/126/labels', 'id': 7192891, 'node_id': 'MI_kwDOEGMSVc4AbcE7', 'number': 126, 'title': 'AY.38', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-09-27T10:55:45Z', 'updated_at': '2021-09-27T10:56:00Z', 'due_on': None, 'closed_at': None}\n", - "126 AY.38\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/127', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/127', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/127/labels', 'id': 7218125, 'node_id': 'MI_kwDOEGMSVc4AbiPN', 'number': 127, 'title': 'AY.4.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-04T16:05:21Z', 'updated_at': '2021-10-04T16:06:00Z', 'due_on': None, 'closed_at': None}\n", - "127 AY.4.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/128', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/128', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/128/labels', 'id': 7235006, 'node_id': 'MI_kwDOEGMSVc4AbmW-', 'number': 128, 'title': 'AY.4.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-08T16:36:29Z', 'updated_at': '2021-10-08T16:36:48Z', 'due_on': None, 'closed_at': None}\n", - "128 AY.4.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/129', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/129', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/129/labels', 'id': 7241264, 'node_id': 'MI_kwDOEGMSVc4Abn4w', 'number': 129, 'title': 'AY.29.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-11T16:36:58Z', 'updated_at': '2021-10-11T16:37:12Z', 'due_on': None, 'closed_at': None}\n", - "129 AY.29.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/130', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/130', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/130/labels', 'id': 7241279, 'node_id': 'MI_kwDOEGMSVc4Abn4_', 'number': 130, 'title': 'AY.39 AY.39.1 AY.39.1.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-11T16:45:18Z', 'updated_at': '2021-10-11T16:45:30Z', 'due_on': None, 'closed_at': None}\n", - "130 AY.39\n", - "130 AY.39.1\n", - "130 AY.39.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/131', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/131', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/131/labels', 'id': 7244399, 'node_id': 'MI_kwDOEGMSVc4Abopv', 'number': 131, 'title': 'P.1.13 P.1.14 P.1.15 P.1.16 P.1.17 P.1.17.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-12T13:40:21Z', 'updated_at': '2021-10-12T13:40:33Z', 'due_on': None, 'closed_at': None}\n", - "131 P.1.13\n", - "131 P.1.14\n", - "131 P.1.15\n", - "131 P.1.16\n", - "131 P.1.17\n", - "131 P.1.17.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/132', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/132', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/132/labels', 'id': 7245051, 'node_id': 'MI_kwDOEGMSVc4Aboz7', 'number': 132, 'title': 'AY.4.4 AY.23.1 AY.40 AY.41', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-12T16:33:19Z', 'updated_at': '2021-10-12T16:33:32Z', 'due_on': None, 'closed_at': None}\n", - "132 AY.4.4\n", - "132 AY.23.1\n", - "132 AY.40\n", - "132 AY.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/133', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/133', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/133/labels', 'id': 7245064, 'node_id': 'MI_kwDOEGMSVc4Abo0I', 'number': 133, 'title': 'AY.4.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-12T16:39:24Z', 'updated_at': '2021-10-12T16:39:37Z', 'due_on': None, 'closed_at': None}\n", - "133 AY.4.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/134', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/134', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/134/labels', 'id': 7263198, 'node_id': 'MI_kwDOEGMSVc4AbtPe', 'number': 134, 'title': 'AY.42', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T12:33:25Z', 'updated_at': '2021-10-18T12:33:39Z', 'due_on': None, 'closed_at': None}\n", - "134 AY.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/135', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/135', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/135/labels', 'id': 7263206, 'node_id': 'MI_kwDOEGMSVc4AbtPm', 'number': 135, 'title': 'AY.43', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T12:35:56Z', 'updated_at': '2021-10-18T12:36:11Z', 'due_on': None, 'closed_at': None}\n", - "135 AY.43\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/136', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/136', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/136/labels', 'id': 7263219, 'node_id': 'MI_kwDOEGMSVc4AbtPz', 'number': 136, 'title': 'AY.44', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T12:39:26Z', 'updated_at': '2021-10-18T12:39:39Z', 'due_on': None, 'closed_at': None}\n", - "136 AY.44\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/137', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/137', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/137/labels', 'id': 7263235, 'node_id': 'MI_kwDOEGMSVc4AbtQD', 'number': 137, 'title': 'AY.45', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T12:43:20Z', 'updated_at': '2021-10-18T12:43:34Z', 'due_on': None, 'closed_at': None}\n", - "137 AY.45\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/138', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/138', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/138/labels', 'id': 7264381, 'node_id': 'MI_kwDOEGMSVc4Abth9', 'number': 138, 'title': 'AY.46 AY.46.1 AY.46.2 AY.46.3 AY.46.4 AY.46.5 AY.46.6', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T16:47:12Z', 'updated_at': '2021-10-18T16:47:23Z', 'due_on': None, 'closed_at': None}\n", - "138 AY.46\n", - "138 AY.46.1\n", - "138 AY.46.2\n", - "138 AY.46.3\n", - "138 AY.46.4\n", - "138 AY.46.5\n", - "138 AY.46.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/139', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/139', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/139/labels', 'id': 7264384, 'node_id': 'MI_kwDOEGMSVc4AbtiA', 'number': 139, 'title': 'AY.47', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-18T16:49:03Z', 'updated_at': '2021-10-18T16:49:15Z', 'due_on': None, 'closed_at': None}\n", - "139 AY.47\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/140', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/140', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/140/labels', 'id': 7295103, 'node_id': 'MI_kwDOEGMSVc4Ab1B_', 'number': 140, 'title': 'AY.102', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-27T16:44:15Z', 'updated_at': '2021-10-27T16:44:35Z', 'due_on': None, 'closed_at': None}\n", - "140 AY.102\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/141', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/141', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/141/labels', 'id': 7301103, 'node_id': 'MI_kwDOEGMSVc4Ab2fv', 'number': 141, 'title': 'AY.39.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-10-28T13:59:33Z', 'updated_at': '2021-10-28T14:38:44Z', 'due_on': None, 'closed_at': None}\n", - "141 AY.39.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/142', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/142', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/142/labels', 'id': 7313692, 'node_id': 'MI_kwDOEGMSVc4Ab5kc', 'number': 142, 'title': 'AY.66', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-01T20:07:02Z', 'updated_at': '2021-11-01T20:07:02Z', 'due_on': None, 'closed_at': None}\n", - "142 AY.66\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/143', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/143', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/143/labels', 'id': 7313724, 'node_id': 'MI_kwDOEGMSVc4Ab5k8', 'number': 143, 'title': 'AY.69', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-01T20:14:25Z', 'updated_at': '2021-11-20T10:13:50Z', 'due_on': None, 'closed_at': None}\n", - "143 AY.69\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/144', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/144', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/144/labels', 'id': 7313726, 'node_id': 'MI_kwDOEGMSVc4Ab5k-', 'number': 144, 'title': 'AY.63 AY.58', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-01T20:15:12Z', 'updated_at': '2021-11-20T10:15:23Z', 'due_on': None, 'closed_at': None}\n", - "144 AY.63\n", - "144 AY.58\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/145', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/145', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/145/labels', 'id': 7313727, 'node_id': 'MI_kwDOEGMSVc4Ab5k_', 'number': 145, 'title': 'AY.104', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-01T20:15:30Z', 'updated_at': '2021-11-01T20:15:30Z', 'due_on': None, 'closed_at': None}\n", - "145 AY.104\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/146', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/146', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/146/labels', 'id': 7322027, 'node_id': 'MI_kwDOEGMSVc4Ab7mr', 'number': 146, 'title': 'AY.99', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-11-03T17:56:20Z', 'updated_at': '2021-11-22T00:19:50Z', 'due_on': None, 'closed_at': None}\n", - "146 AY.99\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/147', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/147', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/147/labels', 'id': 7322031, 'node_id': 'MI_kwDOEGMSVc4Ab7mv', 'number': 147, 'title': 'AY.106', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-03T17:57:03Z', 'updated_at': '2021-11-20T10:14:50Z', 'due_on': None, 'closed_at': None}\n", - "147 AY.106\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/148', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/148', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/148/labels', 'id': 7330823, 'node_id': 'MI_kwDOEGMSVc4Ab9wH', 'number': 148, 'title': 'B.1.639', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-05T13:52:14Z', 'updated_at': '2021-11-05T13:52:42Z', 'due_on': None, 'closed_at': None}\n", - "148 B.1.639\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/149', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/149', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/149/labels', 'id': 7330836, 'node_id': 'MI_kwDOEGMSVc4Ab9wU', 'number': 149, 'title': 'AY.4.2.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-05T13:54:01Z', 'updated_at': '2021-11-05T13:54:21Z', 'due_on': None, 'closed_at': None}\n", - "149 AY.4.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/150', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/150', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/150/labels', 'id': 7330844, 'node_id': 'MI_kwDOEGMSVc4Ab9wc', 'number': 150, 'title': 'AY.121', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-05T13:56:03Z', 'updated_at': '2021-11-05T13:56:31Z', 'due_on': None, 'closed_at': None}\n", - "150 AY.121\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/151', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/151', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/151/labels', 'id': 7346969, 'node_id': 'MI_kwDOEGMSVc4AcBsZ', 'number': 151, 'title': 'B.1.640', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-10T17:55:29Z', 'updated_at': '2021-11-10T17:55:43Z', 'due_on': None, 'closed_at': None}\n", - "151 B.1.640\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/152', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/152', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/152/labels', 'id': 7403842, 'node_id': 'MI_kwDOEGMSVc4AcPlC', 'number': 152, 'title': 'AY.122 AY.122.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-17T12:38:59Z', 'updated_at': '2021-11-17T12:39:13Z', 'due_on': None, 'closed_at': None}\n", - "152 AY.122\n", - "152 AY.122.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/153', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/153', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/153/labels', 'id': 7404954, 'node_id': 'MI_kwDOEGMSVc4AcP2a', 'number': 153, 'title': 'AY.20.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-17T17:53:13Z', 'updated_at': '2021-11-17T17:53:29Z', 'due_on': None, 'closed_at': None}\n", - "153 AY.20.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/154', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/154', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/154/labels', 'id': 7404978, 'node_id': 'MI_kwDOEGMSVc4AcP2y', 'number': 154, 'title': 'AY.43.1 AY.43.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-17T18:01:26Z', 'updated_at': '2021-11-17T18:01:40Z', 'due_on': None, 'closed_at': None}\n", - "154 AY.43.1\n", - "154 AY.43.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/155', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/155', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/155/labels', 'id': 7416548, 'node_id': 'MI_kwDOEGMSVc4AcSrk', 'number': 155, 'title': 'AY.99.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-11-22T00:19:50Z', 'updated_at': '2021-11-22T00:19:55Z', 'due_on': None, 'closed_at': None}\n", - "155 AY.99.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/156', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/156', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/156/labels', 'id': 7416549, 'node_id': 'MI_kwDOEGMSVc4AcSrl', 'number': 156, 'title': 'AY.99.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2021-11-22T00:19:55Z', 'updated_at': '2021-11-22T00:20:08Z', 'due_on': None, 'closed_at': None}\n", - "156 AY.99.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/157', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/157', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/157/labels', 'id': 7416550, 'node_id': 'MI_kwDOEGMSVc4AcSrm', 'number': 157, 'title': 'AY.99 AY.99.1 AY.99.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-22T00:20:07Z', 'updated_at': '2021-11-22T00:20:20Z', 'due_on': None, 'closed_at': None}\n", - "157 AY.99\n", - "157 AY.99.1\n", - "157 AY.99.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/158', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/158', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/158/labels', 'id': 7418330, 'node_id': 'MI_kwDOEGMSVc4AcTHa', 'number': 158, 'title': 'XB', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-22T11:39:23Z', 'updated_at': '2021-11-22T11:39:55Z', 'due_on': None, 'closed_at': None}\n", - "158 XB\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/159', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/159', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/159/labels', 'id': 7423238, 'node_id': 'MI_kwDOEGMSVc4AcUUG', 'number': 159, 'title': 'AY.123', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-23T16:43:17Z', 'updated_at': '2021-11-23T16:43:36Z', 'due_on': None, 'closed_at': None}\n", - "159 AY.123\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/160', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/160', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/160/labels', 'id': 7423276, 'node_id': 'MI_kwDOEGMSVc4AcUUs', 'number': 160, 'title': 'AY.124', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-23T16:58:08Z', 'updated_at': '2021-11-23T16:58:23Z', 'due_on': None, 'closed_at': None}\n", - "160 AY.124\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/161', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/161', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/161/labels', 'id': 7425685, 'node_id': 'MI_kwDOEGMSVc4AcU6V', 'number': 161, 'title': 'B.1.1.529', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-24T09:44:50Z', 'updated_at': '2021-11-24T09:45:04Z', 'due_on': None, 'closed_at': None}\n", - "161 B.1.1.529\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/162', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/162', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/162/labels', 'id': 7427374, 'node_id': 'MI_kwDOEGMSVc4AcVUu', 'number': 162, 'title': 'AY.43.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-24T17:46:03Z', 'updated_at': '2021-11-24T17:46:15Z', 'due_on': None, 'closed_at': None}\n", - "162 AY.43.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/163', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/163', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/163/labels', 'id': 7427376, 'node_id': 'MI_kwDOEGMSVc4AcVUw', 'number': 163, 'title': 'AY.125', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-24T17:47:05Z', 'updated_at': '2021-11-24T17:47:18Z', 'due_on': None, 'closed_at': None}\n", - "163 AY.125\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/164', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/164', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/164/labels', 'id': 7427378, 'node_id': 'MI_kwDOEGMSVc4AcVUy', 'number': 164, 'title': 'AY.43.4', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-24T17:47:58Z', 'updated_at': '2021-11-24T17:48:25Z', 'due_on': None, 'closed_at': None}\n", - "164 AY.43.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/165', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/165', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/165/labels', 'id': 7430690, 'node_id': 'MI_kwDOEGMSVc4AcWIi', 'number': 165, 'title': 'AY.121 AY.121.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-25T17:32:05Z', 'updated_at': '2021-11-25T17:32:18Z', 'due_on': None, 'closed_at': None}\n", - "165 AY.121\n", - "165 AY.121.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/166', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/166', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/166/labels', 'id': 7439621, 'node_id': 'MI_kwDOEGMSVc4AcYUF', 'number': 166, 'title': 'AY.4.2.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:02:20Z', 'updated_at': '2021-11-29T17:03:05Z', 'due_on': None, 'closed_at': None}\n", - "166 AY.4.2.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/167', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/167', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/167/labels', 'id': 7439723, 'node_id': 'MI_kwDOEGMSVc4AcYVr', 'number': 167, 'title': 'AY.126', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:04:38Z', 'updated_at': '2021-11-29T17:05:01Z', 'due_on': None, 'closed_at': None}\n", - "167 AY.126\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/168', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/168', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/168/labels', 'id': 7439743, 'node_id': 'MI_kwDOEGMSVc4AcYV_', 'number': 168, 'title': 'AY.34.1 AY.34.1.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:10:42Z', 'updated_at': '2021-11-29T17:11:02Z', 'due_on': None, 'closed_at': None}\n", - "168 AY.34.1\n", - "168 AY.34.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/169', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/169', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/169/labels', 'id': 7439755, 'node_id': 'MI_kwDOEGMSVc4AcYWL', 'number': 169, 'title': 'XC', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:12:57Z', 'updated_at': '2021-11-29T17:13:13Z', 'due_on': None, 'closed_at': None}\n", - "169 XC\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/170', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/170', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/170/labels', 'id': 7439765, 'node_id': 'MI_kwDOEGMSVc4AcYWV', 'number': 170, 'title': 'AY.4.6', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:14:52Z', 'updated_at': '2021-11-29T17:16:22Z', 'due_on': None, 'closed_at': None}\n", - "170 AY.4.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/171', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/171', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/171/labels', 'id': 7439782, 'node_id': 'MI_kwDOEGMSVc4AcYWm', 'number': 171, 'title': 'AY.23.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:17:53Z', 'updated_at': '2021-11-29T17:23:58Z', 'due_on': None, 'closed_at': None}\n", - "171 AY.23.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/172', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/172', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/172/labels', 'id': 7439809, 'node_id': 'MI_kwDOEGMSVc4AcYXB', 'number': 172, 'title': 'AY.34.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-11-29T17:25:02Z', 'updated_at': '2021-11-29T17:25:31Z', 'due_on': None, 'closed_at': None}\n", - "172 AY.34.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/173', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/173', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/173/labels', 'id': 7455802, 'node_id': 'MI_kwDOEGMSVc4AccQ6', 'number': 173, 'title': 'AY.4.2.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-03T18:03:02Z', 'updated_at': '2021-12-03T18:03:19Z', 'due_on': None, 'closed_at': None}\n", - "173 AY.4.2.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/174', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/174', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/174/labels', 'id': 7455803, 'node_id': 'MI_kwDOEGMSVc4AccQ7', 'number': 174, 'title': 'AY.25.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-03T18:04:08Z', 'updated_at': '2021-12-13T13:51:15Z', 'due_on': None, 'closed_at': None}\n", - "174 AY.25.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/175', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/175', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/175/labels', 'id': 7455806, 'node_id': 'MI_kwDOEGMSVc4AccQ-', 'number': 175, 'title': 'AY.127', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-03T18:04:54Z', 'updated_at': '2021-12-03T18:05:11Z', 'due_on': None, 'closed_at': None}\n", - "175 AY.127\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/176', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/176', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/176/labels', 'id': 7455807, 'node_id': 'MI_kwDOEGMSVc4AccQ_', 'number': 176, 'title': 'AY.119.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-03T18:05:55Z', 'updated_at': '2021-12-03T18:07:49Z', 'due_on': None, 'closed_at': None}\n", - "176 AY.119.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/177', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/177', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/177/labels', 'id': 7455815, 'node_id': 'MI_kwDOEGMSVc4AccRH', 'number': 177, 'title': 'AY.43.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-03T18:08:56Z', 'updated_at': '2021-12-03T18:09:10Z', 'due_on': None, 'closed_at': None}\n", - "177 AY.43.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/178', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/178', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/178/labels', 'id': 7465216, 'node_id': 'MI_kwDOEGMSVc4AcekA', 'number': 178, 'title': 'BA.1 BA.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-07T10:41:20Z', 'updated_at': '2021-12-07T10:41:31Z', 'due_on': None, 'closed_at': None}\n", - "178 BA.1\n", - "178 BA.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/179', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/179', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/179/labels', 'id': 7469761, 'node_id': 'MI_kwDOEGMSVc4AcfrB', 'number': 179, 'title': 'B.1.640.1 B.1.640.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-08T16:08:14Z', 'updated_at': '2021-12-08T16:08:27Z', 'due_on': None, 'closed_at': None}\n", - "179 B.1.640.1\n", - "179 B.1.640.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/180', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/180', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/180/labels', 'id': 7469764, 'node_id': 'MI_kwDOEGMSVc4AcfrE', 'number': 180, 'title': 'B.1.637.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-08T16:09:28Z', 'updated_at': '2021-12-08T16:09:43Z', 'due_on': None, 'closed_at': None}\n", - "180 B.1.637.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/181', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/181', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/181/labels', 'id': 7469769, 'node_id': 'MI_kwDOEGMSVc4AcfrJ', 'number': 181, 'title': 'AY.124.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-08T16:10:49Z', 'updated_at': '2021-12-08T16:11:31Z', 'due_on': None, 'closed_at': None}\n", - "181 AY.124.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/182', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/182', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/182/labels', 'id': 7469776, 'node_id': 'MI_kwDOEGMSVc4AcfrQ', 'number': 182, 'title': 'AY.5.5', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-08T16:13:56Z', 'updated_at': '2021-12-08T16:14:10Z', 'due_on': None, 'closed_at': None}\n", - "182 AY.5.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/183', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/183', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/183/labels', 'id': 7476110, 'node_id': 'MI_kwDOEGMSVc4AchOO', 'number': 183, 'title': 'AY.26.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T13:38:08Z', 'updated_at': '2021-12-10T13:38:38Z', 'due_on': None, 'closed_at': None}\n", - "183 AY.26.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/184', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/184', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/184/labels', 'id': 7476115, 'node_id': 'MI_kwDOEGMSVc4AchOT', 'number': 184, 'title': 'AY.122.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T13:39:28Z', 'updated_at': '2021-12-10T13:39:49Z', 'due_on': None, 'closed_at': None}\n", - "184 AY.122.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/185', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/185', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/185/labels', 'id': 7476127, 'node_id': 'MI_kwDOEGMSVc4AchOf', 'number': 185, 'title': 'AY.112 AY.112.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T13:43:29Z', 'updated_at': '2021-12-10T13:43:50Z', 'due_on': None, 'closed_at': None}\n", - "185 AY.112\n", - "185 AY.112.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/186', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/186', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/186/labels', 'id': 7476736, 'node_id': 'MI_kwDOEGMSVc4AchYA', 'number': 186, 'title': 'AY.9.2.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T17:12:49Z', 'updated_at': '2021-12-10T17:13:08Z', 'due_on': None, 'closed_at': None}\n", - "186 AY.9.2.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/187', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/187', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/187/labels', 'id': 7476741, 'node_id': 'MI_kwDOEGMSVc4AchYF', 'number': 187, 'title': 'AY.119.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T17:14:47Z', 'updated_at': '2021-12-10T17:15:00Z', 'due_on': None, 'closed_at': None}\n", - "187 AY.119.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/188', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/188', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/188/labels', 'id': 7476743, 'node_id': 'MI_kwDOEGMSVc4AchYH', 'number': 188, 'title': 'AY.4.7', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T17:16:15Z', 'updated_at': '2021-12-10T17:16:27Z', 'due_on': None, 'closed_at': None}\n", - "188 AY.4.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/189', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/189', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/189/labels', 'id': 7476753, 'node_id': 'MI_kwDOEGMSVc4AchYR', 'number': 189, 'title': 'AY.4.8', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T17:19:39Z', 'updated_at': '2021-12-10T17:19:47Z', 'due_on': None, 'closed_at': None}\n", - "189 AY.4.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/190', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/190', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/190/labels', 'id': 7476759, 'node_id': 'MI_kwDOEGMSVc4AchYX', 'number': 190, 'title': 'AY.39.1.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-10T17:22:22Z', 'updated_at': '2021-12-10T17:22:39Z', 'due_on': None, 'closed_at': None}\n", - "190 AY.39.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/191', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/191', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/191/labels', 'id': 7482291, 'node_id': 'MI_kwDOEGMSVc4Aciuz', 'number': 191, 'title': 'AY.128', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:47:57Z', 'updated_at': '2021-12-13T13:48:04Z', 'due_on': None, 'closed_at': None}\n", - "191 AY.128\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/192', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/192', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/192/labels', 'id': 7482296, 'node_id': 'MI_kwDOEGMSVc4Aciu4', 'number': 192, 'title': 'AY.3.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:49:16Z', 'updated_at': '2021-12-13T13:49:26Z', 'due_on': None, 'closed_at': None}\n", - "192 AY.3.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/193', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/193', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/193/labels', 'id': 7482307, 'node_id': 'MI_kwDOEGMSVc4AcivD', 'number': 193, 'title': 'AY.25.1.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:51:09Z', 'updated_at': '2021-12-13T13:51:20Z', 'due_on': None, 'closed_at': None}\n", - "193 AY.25.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/194', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/194', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/194/labels', 'id': 7482308, 'node_id': 'MI_kwDOEGMSVc4AcivE', 'number': 194, 'title': 'AY.43.6', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:51:49Z', 'updated_at': '2021-12-13T13:51:57Z', 'due_on': None, 'closed_at': None}\n", - "194 AY.43.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/195', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/195', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/195/labels', 'id': 7482312, 'node_id': 'MI_kwDOEGMSVc4AcivI', 'number': 195, 'title': 'AY.102.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:52:42Z', 'updated_at': '2021-12-13T13:52:50Z', 'due_on': None, 'closed_at': None}\n", - "195 AY.102.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/196', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/196', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/196/labels', 'id': 7482321, 'node_id': 'MI_kwDOEGMSVc4AcivR', 'number': 196, 'title': 'P.1.7.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:53:44Z', 'updated_at': '2021-12-13T13:53:52Z', 'due_on': None, 'closed_at': None}\n", - "196 P.1.7.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/197', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/197', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/197/labels', 'id': 7482325, 'node_id': 'MI_kwDOEGMSVc4AcivV', 'number': 197, 'title': 'AY.129', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-13T13:54:21Z', 'updated_at': '2021-12-13T13:54:28Z', 'due_on': None, 'closed_at': None}\n", - "197 AY.129\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/198', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/198', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/198/labels', 'id': 7485948, 'node_id': 'MI_kwDOEGMSVc4Acjn8', 'number': 198, 'title': 'BA.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-14T09:57:12Z', 'updated_at': '2021-12-14T09:57:21Z', 'due_on': None, 'closed_at': None}\n", - "198 BA.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/199', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/199', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/199/labels', 'id': 7497590, 'node_id': 'MI_kwDOEGMSVc4Acmd2', 'number': 199, 'title': 'BB.1 BB.2', 'description': '', 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T12:03:43Z', 'updated_at': '2021-12-17T16:11:22Z', 'due_on': None, 'closed_at': None}\n", - "199 BB.1\n", - "199 BB.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/200', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/200', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/200/labels', 'id': 7497688, 'node_id': 'MI_kwDOEGMSVc4AcmfY', 'number': 200, 'title': 'AY.102.2', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T12:56:08Z', 'updated_at': '2021-12-17T12:56:14Z', 'due_on': None, 'closed_at': None}\n", - "200 AY.102.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/201', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/201', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/201/labels', 'id': 7497693, 'node_id': 'MI_kwDOEGMSVc4Acmfd', 'number': 201, 'title': 'AY.42.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T12:56:36Z', 'updated_at': '2021-12-17T12:56:47Z', 'due_on': None, 'closed_at': None}\n", - "201 AY.42.1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/202', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/202', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/202/labels', 'id': 7497695, 'node_id': 'MI_kwDOEGMSVc4Acmff', 'number': 202, 'title': 'AY.39.1.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T12:57:24Z', 'updated_at': '2021-12-17T12:57:30Z', 'due_on': None, 'closed_at': None}\n", - "202 AY.39.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/203', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/203', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/203/labels', 'id': 7497697, 'node_id': 'MI_kwDOEGMSVc4Acmfh', 'number': 203, 'title': 'AY.130', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T12:57:47Z', 'updated_at': '2021-12-17T12:59:14Z', 'due_on': None, 'closed_at': None}\n", - "203 AY.130\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/204', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/204', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/204/labels', 'id': 7498230, 'node_id': 'MI_kwDOEGMSVc4Acmn2', 'number': 204, 'title': 'AY.127.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:10:51Z', 'updated_at': '2021-12-17T16:10:57Z', 'due_on': None, 'closed_at': None}\n", - "204 AY.127.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/205', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/205', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/205/labels', 'id': 7498232, 'node_id': 'MI_kwDOEGMSVc4Acmn4', 'number': 205, 'title': 'AY.123.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:11:53Z', 'updated_at': '2021-12-17T16:12:02Z', 'due_on': None, 'closed_at': None}\n", - "205 AY.123.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/206', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/206', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/206/labels', 'id': 7498233, 'node_id': 'MI_kwDOEGMSVc4Acmn5', 'number': 206, 'title': 'AY.3.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:12:38Z', 'updated_at': '2021-12-17T16:12:46Z', 'due_on': None, 'closed_at': None}\n", - "206 AY.3.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/207', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/207', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/207/labels', 'id': 7498234, 'node_id': 'MI_kwDOEGMSVc4Acmn6', 'number': 207, 'title': 'AY.46.6.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:13:07Z', 'updated_at': '2021-12-17T16:13:16Z', 'due_on': None, 'closed_at': None}\n", - "207 AY.46.6.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/208', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/208', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/208/labels', 'id': 7498236, 'node_id': 'MI_kwDOEGMSVc4Acmn8', 'number': 208, 'title': 'AY.33.1', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:13:36Z', 'updated_at': '2021-12-17T16:13:45Z', 'due_on': None, 'closed_at': None}\n", - "208 AY.33.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/209', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/209', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/209/labels', 'id': 7498237, 'node_id': 'MI_kwDOEGMSVc4Acmn9', 'number': 209, 'title': 'AY.122.3', 'description': '', 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-17T16:14:08Z', 'updated_at': '2021-12-17T16:14:15Z', 'due_on': None, 'closed_at': None}\n", - "209 AY.122.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/210', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/210', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/210/labels', 'id': 7500843, 'node_id': 'MI_kwDOEGMSVc4AcnQr', 'number': 210, 'title': 'P.1.12.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-19T12:31:20Z', 'updated_at': '2021-12-19T12:44:43Z', 'due_on': None, 'closed_at': None}\n", - "210 P.1.12.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/211', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/211', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/211/labels', 'id': 7508849, 'node_id': 'MI_kwDOEGMSVc4AcpNx', 'number': 211, 'title': 'AY.131', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-21T16:16:49Z', 'updated_at': '2021-12-21T16:17:05Z', 'due_on': None, 'closed_at': None}\n", - "211 AY.131\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/212', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/212', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/212/labels', 'id': 7511130, 'node_id': 'MI_kwDOEGMSVc4Acpxa', 'number': 212, 'title': 'AY.4.9 AY.4.10', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-22T10:52:41Z', 'updated_at': '2021-12-22T10:52:41Z', 'due_on': None, 'closed_at': None}\n", - "212 AY.4.9\n", - "212 AY.4.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/213', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/213', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/213/labels', 'id': 7519937, 'node_id': 'MI_kwDOEGMSVc4Acr7B', 'number': 213, 'title': 'AY.43.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-26T21:01:21Z', 'updated_at': '2021-12-26T21:01:49Z', 'due_on': None, 'closed_at': None}\n", - "213 AY.43.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/214', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/214', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/214/labels', 'id': 7523312, 'node_id': 'MI_kwDOEGMSVc4Acsvw', 'number': 214, 'title': 'AY.132', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2021-12-28T11:32:49Z', 'updated_at': '2021-12-28T11:32:59Z', 'due_on': None, 'closed_at': None}\n", - "214 AY.132\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/215', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/215', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/215/labels', 'id': 7530403, 'node_id': 'MI_kwDOEGMSVc4Acuej', 'number': 215, 'title': 'AY.133', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-01-01T11:46:03Z', 'updated_at': '2022-01-01T11:46:23Z', 'due_on': None, 'closed_at': None}\n", - "215 AY.133\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/216', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/216', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/216/labels', 'id': 7552018, 'node_id': 'MI_kwDOEGMSVc4AczwS', 'number': 216, 'title': 'BA.1.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-01-07T17:17:04Z', 'updated_at': '2022-01-07T17:17:04Z', 'due_on': None, 'closed_at': None}\n", - "216 BA.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/217', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/217', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/217/labels', 'id': 7714221, 'node_id': 'MI_kwDOEGMSVc4AdbWt', 'number': 217, 'title': 'AY.36.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-02-25T16:03:12Z', 'updated_at': '2022-02-25T16:03:12Z', 'due_on': None, 'closed_at': None}\n", - "217 AY.36.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/218', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/218', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/218/labels', 'id': 7741941, 'node_id': 'MI_kwDOEGMSVc4AdiH1', 'number': 218, 'title': 'BA.2.2', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-07T09:02:58Z', 'updated_at': '2022-03-07T09:02:58Z', 'due_on': None, 'closed_at': None}\n", - "218 BA.2.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/219', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/219', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/219/labels', 'id': 7775193, 'node_id': 'MI_kwDOEGMSVc4AdqPZ', 'number': 219, 'title': 'XD', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-16T17:53:50Z', 'updated_at': '2022-03-16T17:53:50Z', 'due_on': None, 'closed_at': None}\n", - "219 XD\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/220', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/220', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/220/labels', 'id': 7775198, 'node_id': 'MI_kwDOEGMSVc4AdqPe', 'number': 220, 'title': 'XE', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-16T17:55:23Z', 'updated_at': '2022-03-16T17:55:23Z', 'due_on': None, 'closed_at': None}\n", - "220 XE\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/221', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/221', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/221/labels', 'id': 7775201, 'node_id': 'MI_kwDOEGMSVc4AdqPh', 'number': 221, 'title': 'XF', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-16T17:56:12Z', 'updated_at': '2022-03-16T17:56:12Z', 'due_on': None, 'closed_at': None}\n", - "221 XF\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/222', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/222', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/222/labels', 'id': 7795677, 'node_id': 'MI_kwDOEGMSVc4AdvPd', 'number': 222, 'title': 'AY.29.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-23T12:10:19Z', 'updated_at': '2022-03-23T12:10:32Z', 'due_on': None, 'closed_at': None}\n", - "222 AY.29.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/223', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/223', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/223/labels', 'id': 7804679, 'node_id': 'MI_kwDOEGMSVc4AdxcH', 'number': 223, 'title': 'XG', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-25T16:40:24Z', 'updated_at': '2022-03-25T16:40:24Z', 'due_on': None, 'closed_at': None}\n", - "223 XG\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/224', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/224', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/224/labels', 'id': 7804680, 'node_id': 'MI_kwDOEGMSVc4AdxcI', 'number': 224, 'title': 'XH', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-25T16:40:56Z', 'updated_at': '2022-03-25T16:40:56Z', 'due_on': None, 'closed_at': None}\n", - "224 XH\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/225', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/225', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/225/labels', 'id': 7804684, 'node_id': 'MI_kwDOEGMSVc4AdxcM', 'number': 225, 'title': 'XJ', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-25T16:42:56Z', 'updated_at': '2022-03-25T16:42:56Z', 'due_on': None, 'closed_at': None}\n", - "225 XJ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/226', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/226', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/226/labels', 'id': 7804686, 'node_id': 'MI_kwDOEGMSVc4AdxcO', 'number': 226, 'title': 'XK', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-25T16:43:32Z', 'updated_at': '2022-03-25T16:43:32Z', 'due_on': None, 'closed_at': None}\n", - "226 XK\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/227', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/227', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/227/labels', 'id': 7804688, 'node_id': 'MI_kwDOEGMSVc4AdxcQ', 'number': 227, 'title': 'XL', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-25T16:44:14Z', 'updated_at': '2022-03-25T16:44:14Z', 'due_on': None, 'closed_at': None}\n", - "227 XL\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/228', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/228', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/228/labels', 'id': 7812003, 'node_id': 'MI_kwDOEGMSVc4AdzOj', 'number': 228, 'title': 'BA.2.8', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-28T16:54:33Z', 'updated_at': '2022-03-28T16:54:33Z', 'due_on': None, 'closed_at': None}\n", - "228 BA.2.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/229', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/229', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/229/labels', 'id': 7816104, 'node_id': 'MI_kwDOEGMSVc4Ad0Oo', 'number': 229, 'title': 'BA.1.18', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-29T16:45:01Z', 'updated_at': '2022-03-29T16:45:01Z', 'due_on': None, 'closed_at': None}\n", - "229 BA.1.18\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/230', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/230', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/230/labels', 'id': 7816106, 'node_id': 'MI_kwDOEGMSVc4Ad0Oq', 'number': 230, 'title': 'BA.1.19', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-29T16:45:35Z', 'updated_at': '2022-03-29T16:45:35Z', 'due_on': None, 'closed_at': None}\n", - "230 BA.1.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/231', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/231', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/231/labels', 'id': 7819319, 'node_id': 'MI_kwDOEGMSVc4Ad1A3', 'number': 231, 'title': 'AY.112.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-30T12:10:34Z', 'updated_at': '2022-03-30T12:11:01Z', 'due_on': None, 'closed_at': None}\n", - "231 AY.112.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/232', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/232', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/232/labels', 'id': 7825187, 'node_id': 'MI_kwDOEGMSVc4Ad2cj', 'number': 232, 'title': 'B.1.641', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-31T16:37:10Z', 'updated_at': '2022-03-31T16:37:10Z', 'due_on': None, 'closed_at': None}\n", - "232 B.1.641\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/233', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/233', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/233/labels', 'id': 7825190, 'node_id': 'MI_kwDOEGMSVc4Ad2cm', 'number': 233, 'title': 'XM', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-03-31T16:37:49Z', 'updated_at': '2022-03-31T16:37:49Z', 'due_on': None, 'closed_at': None}\n", - "233 XM\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/234', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/234', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/234/labels', 'id': 7828689, 'node_id': 'MI_kwDOEGMSVc4Ad3TR', 'number': 234, 'title': 'AY.5.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T13:27:55Z', 'updated_at': '2022-04-01T13:28:06Z', 'due_on': None, 'closed_at': None}\n", - "234 AY.5.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/235', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/235', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/235/labels', 'id': 7829474, 'node_id': 'MI_kwDOEGMSVc4Ad3fi', 'number': 235, 'title': 'BA.1.17.2', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:28:50Z', 'updated_at': '2022-04-01T16:28:50Z', 'due_on': None, 'closed_at': None}\n", - "235 BA.1.17.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/236', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/236', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/236/labels', 'id': 7829475, 'node_id': 'MI_kwDOEGMSVc4Ad3fj', 'number': 236, 'title': 'BA.2.9', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:29:13Z', 'updated_at': '2022-04-01T16:29:13Z', 'due_on': None, 'closed_at': None}\n", - "236 BA.2.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/237', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/237', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/237/labels', 'id': 7829476, 'node_id': 'MI_kwDOEGMSVc4Ad3fk', 'number': 237, 'title': 'XN', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:29:38Z', 'updated_at': '2022-04-01T16:29:38Z', 'due_on': None, 'closed_at': None}\n", - "237 XN\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/238', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/238', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/238/labels', 'id': 7829478, 'node_id': 'MI_kwDOEGMSVc4Ad3fm', 'number': 238, 'title': 'BA.2.3.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:30:05Z', 'updated_at': '2022-04-01T16:30:05Z', 'due_on': None, 'closed_at': None}\n", - "238 BA.2.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/239', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/239', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/239/labels', 'id': 7829480, 'node_id': 'MI_kwDOEGMSVc4Ad3fo', 'number': 239, 'title': 'BA.2.10', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:30:35Z', 'updated_at': '2022-04-01T16:30:35Z', 'due_on': None, 'closed_at': None}\n", - "239 BA.2.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/240', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/240', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/240/labels', 'id': 7829481, 'node_id': 'MI_kwDOEGMSVc4Ad3fp', 'number': 240, 'title': 'XP', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:31:10Z', 'updated_at': '2022-04-01T16:31:10Z', 'due_on': None, 'closed_at': None}\n", - "240 XP\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/241', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/241', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/241/labels', 'id': 7829482, 'node_id': 'MI_kwDOEGMSVc4Ad3fq', 'number': 241, 'title': 'XQ', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:31:32Z', 'updated_at': '2022-04-01T16:31:33Z', 'due_on': None, 'closed_at': None}\n", - "241 XQ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/242', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/242', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/242/labels', 'id': 7829484, 'node_id': 'MI_kwDOEGMSVc4Ad3fs', 'number': 242, 'title': 'XR', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:31:55Z', 'updated_at': '2022-04-01T16:31:55Z', 'due_on': None, 'closed_at': None}\n", - "242 XR\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/243', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/243', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/243/labels', 'id': 7829486, 'node_id': 'MI_kwDOEGMSVc4Ad3fu', 'number': 243, 'title': 'XS', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-01T16:32:17Z', 'updated_at': '2022-04-01T16:32:17Z', 'due_on': None, 'closed_at': None}\n", - "243 XS\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/244', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/244', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/244/labels', 'id': 7840379, 'node_id': 'MI_kwDOEGMSVc4Ad6J7', 'number': 244, 'title': 'AY.112.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-05T10:21:06Z', 'updated_at': '2022-04-05T10:23:00Z', 'due_on': None, 'closed_at': None}\n", - "244 AY.112.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/245', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/245', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/245/labels', 'id': 7846205, 'node_id': 'MI_kwDOEGMSVc4Ad7k9', 'number': 245, 'title': 'AY.122.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-06T16:05:03Z', 'updated_at': '2022-04-06T16:05:13Z', 'due_on': None, 'closed_at': None}\n", - "245 AY.122.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/246', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/246', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/246/labels', 'id': 7854566, 'node_id': 'MI_kwDOEGMSVc4Ad9nm', 'number': 246, 'title': 'BA.2.11', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-07T15:43:39Z', 'updated_at': '2022-04-07T15:43:39Z', 'due_on': None, 'closed_at': None}\n", - "246 BA.2.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/247', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/247', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/247/labels', 'id': 7854720, 'node_id': 'MI_kwDOEGMSVc4Ad9qA', 'number': 247, 'title': 'AY.127.3', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-07T16:24:08Z', 'updated_at': '2022-04-07T16:24:08Z', 'due_on': None, 'closed_at': None}\n", - "247 AY.127.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/248', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/248', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/248/labels', 'id': 7855320, 'node_id': 'MI_kwDOEGMSVc4Ad9zY', 'number': 248, 'title': 'BA.4 BA.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-07T19:48:25Z', 'updated_at': '2022-04-07T19:48:53Z', 'due_on': None, 'closed_at': None}\n", - "248 BA.4\n", - "248 BA.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/249', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/249', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/249/labels', 'id': 7855322, 'node_id': 'MI_kwDOEGMSVc4Ad9za', 'number': 249, 'title': 'BA.2.12 BA.2.12.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-07T19:50:28Z', 'updated_at': '2022-04-07T19:50:54Z', 'due_on': None, 'closed_at': None}\n", - "249 BA.2.12\n", - "249 BA.2.12.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/250', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/250', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/250/labels', 'id': 7858711, 'node_id': 'MI_kwDOEGMSVc4Ad-oX', 'number': 250, 'title': 'BA.2.9.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:33:15Z', 'updated_at': '2022-04-08T16:33:16Z', 'due_on': None, 'closed_at': None}\n", - "250 BA.2.9.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/251', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/251', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/251/labels', 'id': 7858714, 'node_id': 'MI_kwDOEGMSVc4Ad-oa', 'number': 251, 'title': 'BA.2.13', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:33:44Z', 'updated_at': '2022-04-08T16:33:44Z', 'due_on': None, 'closed_at': None}\n", - "251 BA.2.13\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/252', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/252', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/252/labels', 'id': 7858715, 'node_id': 'MI_kwDOEGMSVc4Ad-ob', 'number': 252, 'title': 'BA.1.20', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:34:09Z', 'updated_at': '2022-04-08T16:34:09Z', 'due_on': None, 'closed_at': None}\n", - "252 BA.1.20\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/253', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/253', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/253/labels', 'id': 7858717, 'node_id': 'MI_kwDOEGMSVc4Ad-od', 'number': 253, 'title': 'BA.1.21', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:34:45Z', 'updated_at': '2022-04-08T16:34:45Z', 'due_on': None, 'closed_at': None}\n", - "253 BA.1.21\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/254', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/254', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/254/labels', 'id': 7858724, 'node_id': 'MI_kwDOEGMSVc4Ad-ok', 'number': 254, 'title': 'BA.1.21.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:35:29Z', 'updated_at': '2022-04-08T16:35:29Z', 'due_on': None, 'closed_at': None}\n", - "254 BA.1.21.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/255', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/255', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/255/labels', 'id': 7858725, 'node_id': 'MI_kwDOEGMSVc4Ad-ol', 'number': 255, 'title': 'BA.1.14.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:36:01Z', 'updated_at': '2022-04-08T16:36:01Z', 'due_on': None, 'closed_at': None}\n", - "255 BA.1.14.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/256', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/256', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/256/labels', 'id': 7858726, 'node_id': 'MI_kwDOEGMSVc4Ad-om', 'number': 256, 'title': 'BA.1.15.2', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-08T16:36:24Z', 'updated_at': '2022-04-08T16:36:24Z', 'due_on': None, 'closed_at': None}\n", - "256 BA.1.15.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/257', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/257', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/257/labels', 'id': 7870201, 'node_id': 'MI_kwDOEGMSVc4AeBb5', 'number': 257, 'title': 'AY.33.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-12T13:24:40Z', 'updated_at': '2022-04-12T13:25:12Z', 'due_on': None, 'closed_at': None}\n", - "257 AY.33.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/258', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/258', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/258/labels', 'id': 7874657, 'node_id': 'MI_kwDOEGMSVc4AeChh', 'number': 258, 'title': 'AY.39.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-13T11:54:10Z', 'updated_at': '2022-04-14T19:02:47Z', 'due_on': None, 'closed_at': None}\n", - "258 AY.39.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/259', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/259', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/259/labels', 'id': 7877877, 'node_id': 'MI_kwDOEGMSVc4AeDT1', 'number': 259, 'title': 'BA.1.1.17', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T08:38:38Z', 'updated_at': '2022-04-14T08:38:38Z', 'due_on': None, 'closed_at': None}\n", - "259 BA.1.1.17\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/260', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/260', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/260/labels', 'id': 7878240, 'node_id': 'MI_kwDOEGMSVc4AeDZg', 'number': 260, 'title': 'XT', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T10:20:04Z', 'updated_at': '2022-04-14T10:20:05Z', 'due_on': None, 'closed_at': None}\n", - "260 XT\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/261', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/261', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/261/labels', 'id': 7878810, 'node_id': 'MI_kwDOEGMSVc4AeDia', 'number': 261, 'title': 'AY.4.2.5', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T13:16:52Z', 'updated_at': '2022-04-14T13:16:52Z', 'due_on': None, 'closed_at': None}\n", - "261 AY.4.2.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/262', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/262', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/262/labels', 'id': 7879280, 'node_id': 'MI_kwDOEGMSVc4AeDpw', 'number': 262, 'title': 'BA.2.14', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T16:18:24Z', 'updated_at': '2022-04-14T16:18:24Z', 'due_on': None, 'closed_at': None}\n", - "262 BA.2.14\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/263', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/263', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/263/labels', 'id': 7879283, 'node_id': 'MI_kwDOEGMSVc4AeDpz', 'number': 263, 'title': 'BA.2.15', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T16:19:25Z', 'updated_at': '2022-04-14T16:19:25Z', 'due_on': None, 'closed_at': None}\n", - "263 BA.2.15\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/264', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/264', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/264/labels', 'id': 7879315, 'node_id': 'MI_kwDOEGMSVc4AeDqT', 'number': 264, 'title': 'BA.2.16', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-14T16:31:54Z', 'updated_at': '2022-04-14T16:31:54Z', 'due_on': None, 'closed_at': None}\n", - "264 BA.2.16\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/265', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/265', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/265/labels', 'id': 7885451, 'node_id': 'MI_kwDOEGMSVc4AeFKL', 'number': 265, 'title': 'AY.39.1.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-17T19:35:45Z', 'updated_at': '2022-04-17T19:36:02Z', 'due_on': None, 'closed_at': None}\n", - "265 AY.39.1.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/266', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/266', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/266/labels', 'id': 7890454, 'node_id': 'MI_kwDOEGMSVc4AeGYW', 'number': 266, 'title': 'BA.2.17', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T09:20:11Z', 'updated_at': '2022-04-19T09:20:11Z', 'due_on': None, 'closed_at': None}\n", - "266 BA.2.17\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/267', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/267', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/267/labels', 'id': 7890511, 'node_id': 'MI_kwDOEGMSVc4AeGZP', 'number': 267, 'title': 'XU', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T09:31:45Z', 'updated_at': '2022-04-19T09:31:45Z', 'due_on': None, 'closed_at': None}\n", - "267 XU\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/268', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/268', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/268/labels', 'id': 7890661, 'node_id': 'MI_kwDOEGMSVc4AeGbl', 'number': 268, 'title': 'BA.2.18', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T10:17:44Z', 'updated_at': '2022-04-19T10:17:44Z', 'due_on': None, 'closed_at': None}\n", - "268 BA.2.18\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/269', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/269', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/269/labels', 'id': 7890709, 'node_id': 'MI_kwDOEGMSVc4AeGcV', 'number': 269, 'title': 'BA.1.22', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T10:26:23Z', 'updated_at': '2022-04-19T10:26:23Z', 'due_on': None, 'closed_at': None}\n", - "269 BA.1.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/270', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/270', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/270/labels', 'id': 7890958, 'node_id': 'MI_kwDOEGMSVc4AeGgO', 'number': 270, 'title': 'BA.2.19', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T11:20:05Z', 'updated_at': '2022-04-19T11:20:06Z', 'due_on': None, 'closed_at': None}\n", - "270 BA.2.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/271', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/271', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/271/labels', 'id': 7891437, 'node_id': 'MI_kwDOEGMSVc4AeGnt', 'number': 271, 'title': 'BA.2.20', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T13:45:05Z', 'updated_at': '2022-04-19T13:45:05Z', 'due_on': None, 'closed_at': None}\n", - "271 BA.2.20\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/272', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/272', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/272/labels', 'id': 7891470, 'node_id': 'MI_kwDOEGMSVc4AeGoO', 'number': 272, 'title': 'BA.2.21', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T13:56:43Z', 'updated_at': '2022-04-19T13:56:44Z', 'due_on': None, 'closed_at': None}\n", - "272 BA.2.21\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/273', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/273', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/273/labels', 'id': 7891739, 'node_id': 'MI_kwDOEGMSVc4AeGsb', 'number': 273, 'title': 'BA.2.22', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T15:18:25Z', 'updated_at': '2022-04-19T15:18:26Z', 'due_on': None, 'closed_at': None}\n", - "273 BA.2.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/274', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/274', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/274/labels', 'id': 7891853, 'node_id': 'MI_kwDOEGMSVc4AeGuN', 'number': 274, 'title': 'BA.2.23', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-19T15:57:05Z', 'updated_at': '2022-04-19T15:57:05Z', 'due_on': None, 'closed_at': None}\n", - "274 BA.2.23\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/275', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/275', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/275/labels', 'id': 7894790, 'node_id': 'MI_kwDOEGMSVc4AeHcG', 'number': 275, 'title': 'BA.2.3.3', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-04-20T09:26:16Z', 'updated_at': '2022-06-14T09:15:28Z', 'due_on': None, 'closed_at': None}\n", - "275 BA.2.3.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/276', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/276', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/276/labels', 'id': 7900741, 'node_id': 'MI_kwDOEGMSVc4AeI5F', 'number': 276, 'title': 'BA.3.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-21T19:16:57Z', 'updated_at': '2022-04-21T19:17:19Z', 'due_on': None, 'closed_at': None}\n", - "276 BA.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/277', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/277', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/277/labels', 'id': 7927939, 'node_id': 'MI_kwDOEGMSVc4AePiD', 'number': 277, 'title': 'BA.2.35', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-04-29T15:04:22Z', 'updated_at': '2022-04-29T15:04:51Z', 'due_on': None, 'closed_at': None}\n", - "277 BA.2.35\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/278', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/278', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/278/labels', 'id': 7932328, 'node_id': 'MI_kwDOEGMSVc4AeQmo', 'number': 278, 'title': 'BA.2.36', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-01T19:53:48Z', 'updated_at': '2022-05-01T19:54:27Z', 'due_on': None, 'closed_at': None}\n", - "278 BA.2.36\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/279', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/279', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/279/labels', 'id': 7936337, 'node_id': 'MI_kwDOEGMSVc4AeRlR', 'number': 279, 'title': 'BA.2.24', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-02T20:33:23Z', 'updated_at': '2022-05-02T20:33:23Z', 'due_on': None, 'closed_at': None}\n", - "279 BA.2.24\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/280', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/280', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/280/labels', 'id': 7939080, 'node_id': 'MI_kwDOEGMSVc4AeSQI', 'number': 280, 'title': 'BA.2.37', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-03T14:25:37Z', 'updated_at': '2022-05-03T14:26:23Z', 'due_on': None, 'closed_at': None}\n", - "280 BA.2.37\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/281', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/281', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/281/labels', 'id': 7955766, 'node_id': 'MI_kwDOEGMSVc4AeWU2', 'number': 281, 'title': 'BA.2.39', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-08T18:57:30Z', 'updated_at': '2022-05-08T18:58:08Z', 'due_on': None, 'closed_at': None}\n", - "281 BA.2.39\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/282', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/282', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/282/labels', 'id': 7955796, 'node_id': 'MI_kwDOEGMSVc4AeWVU', 'number': 282, 'title': 'BA.2.38', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 3, 'state': 'open', 'created_at': '2022-05-08T19:25:05Z', 'updated_at': '2022-05-08T19:26:15Z', 'due_on': None, 'closed_at': None}\n", - "282 BA.2.38\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/283', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/283', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/283/labels', 'id': 7959855, 'node_id': 'MI_kwDOEGMSVc4AeXUv', 'number': 283, 'title': 'BA.2.23.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-09T16:14:09Z', 'updated_at': '2022-05-09T16:14:32Z', 'due_on': None, 'closed_at': None}\n", - "283 BA.2.23.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/284', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/284', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/284/labels', 'id': 7963890, 'node_id': 'MI_kwDOEGMSVc4AeYTy', 'number': 284, 'title': 'BA.2.40', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-05-10T12:56:48Z', 'updated_at': '2022-05-10T14:12:36Z', 'due_on': None, 'closed_at': None}\n", - "284 BA.2.40\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/285', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/285', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/285/labels', 'id': 7964181, 'node_id': 'MI_kwDOEGMSVc4AeYYV', 'number': 285, 'title': 'BA.2.40.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-10T14:12:36Z', 'updated_at': '2022-05-10T14:13:00Z', 'due_on': None, 'closed_at': None}\n", - "285 BA.2.40.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/286', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/286', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/286/labels', 'id': 7964667, 'node_id': 'MI_kwDOEGMSVc4AeYf7', 'number': 286, 'title': 'BA.2.10.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-10T16:23:20Z', 'updated_at': '2022-05-10T16:24:00Z', 'due_on': None, 'closed_at': None}\n", - "286 BA.2.10.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/287', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/287', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/287/labels', 'id': 7967872, 'node_id': 'MI_kwDOEGMSVc4AeZSA', 'number': 287, 'title': 'BA.2.41', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-11T11:39:08Z', 'updated_at': '2022-05-11T11:40:17Z', 'due_on': None, 'closed_at': None}\n", - "287 BA.2.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/288', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/288', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/288/labels', 'id': 7968709, 'node_id': 'MI_kwDOEGMSVc4AeZfF', 'number': 288, 'title': 'XV', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-11T15:08:36Z', 'updated_at': '2022-05-11T15:08:36Z', 'due_on': None, 'closed_at': None}\n", - "288 XV\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/289', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/289', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/289/labels', 'id': 7973836, 'node_id': 'MI_kwDOEGMSVc4AeavM', 'number': 289, 'title': 'XW', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-12T16:29:06Z', 'updated_at': '2022-05-12T16:29:15Z', 'due_on': None, 'closed_at': None}\n", - "289 XW\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/290', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/290', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/290/labels', 'id': 7980002, 'node_id': 'MI_kwDOEGMSVc4AecPi', 'number': 290, 'title': 'AY.98.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-14T10:40:03Z', 'updated_at': '2022-05-14T10:42:30Z', 'due_on': None, 'closed_at': None}\n", - "290 AY.98.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/291', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/291', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/291/labels', 'id': 7980182, 'node_id': 'MI_kwDOEGMSVc4AecSW', 'number': 291, 'title': 'BA.2.10.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-14T13:43:02Z', 'updated_at': '2022-05-14T13:44:49Z', 'due_on': None, 'closed_at': None}\n", - "291 BA.2.10.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/292', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/292', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/292/labels', 'id': 7992236, 'node_id': 'MI_kwDOEGMSVc4AefOs', 'number': 292, 'title': 'XY', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-18T09:47:49Z', 'updated_at': '2022-05-18T09:47:55Z', 'due_on': None, 'closed_at': None}\n", - "292 XY\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/293', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/293', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/293/labels', 'id': 7993539, 'node_id': 'MI_kwDOEGMSVc4AefjD', 'number': 293, 'title': 'BA.2.42', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-18T16:07:38Z', 'updated_at': '2022-05-18T16:08:36Z', 'due_on': None, 'closed_at': None}\n", - "293 BA.2.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/294', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/294', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/294/labels', 'id': 7999280, 'node_id': 'MI_kwDOEGMSVc4Aeg8w', 'number': 294, 'title': 'BA.2.43', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-19T14:23:40Z', 'updated_at': '2022-05-19T14:23:50Z', 'due_on': None, 'closed_at': None}\n", - "294 BA.2.43\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/295', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/295', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/295/labels', 'id': 8005912, 'node_id': 'MI_kwDOEGMSVc4AeikY', 'number': 295, 'title': 'BA.2.44', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-21T15:59:20Z', 'updated_at': '2022-05-21T16:00:32Z', 'due_on': None, 'closed_at': None}\n", - "295 BA.2.44\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/296', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/296', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/296/labels', 'id': 8006983, 'node_id': 'MI_kwDOEGMSVc4Aei1H', 'number': 296, 'title': 'BA.4.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-22T13:03:06Z', 'updated_at': '2022-05-22T13:03:16Z', 'due_on': None, 'closed_at': None}\n", - "296 BA.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/297', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/297', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/297/labels', 'id': 8010819, 'node_id': 'MI_kwDOEGMSVc4AejxD', 'number': 297, 'title': 'BA.2.45', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-23T15:30:14Z', 'updated_at': '2022-05-23T15:31:04Z', 'due_on': None, 'closed_at': None}\n", - "297 BA.2.45\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/298', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/298', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/298/labels', 'id': 8018964, 'node_id': 'MI_kwDOEGMSVc4AelwU', 'number': 298, 'title': 'BA.5.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-25T14:50:15Z', 'updated_at': '2022-05-25T14:50:24Z', 'due_on': None, 'closed_at': None}\n", - "298 BA.5.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/299', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/299', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/299/labels', 'id': 8028471, 'node_id': 'MI_kwDOEGMSVc4AeoE3', 'number': 299, 'title': 'BA.5.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-29T20:14:34Z', 'updated_at': '2022-05-29T20:14:56Z', 'due_on': None, 'closed_at': None}\n", - "299 BA.5.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/300', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/300', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/300/labels', 'id': 8030879, 'node_id': 'MI_kwDOEGMSVc4Aeoqf', 'number': 300, 'title': 'BA.2.46', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-30T14:19:39Z', 'updated_at': '2022-05-30T14:23:11Z', 'due_on': None, 'closed_at': None}\n", - "300 BA.2.46\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/301', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/301', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/301/labels', 'id': 8031175, 'node_id': 'MI_kwDOEGMSVc4AeovH', 'number': 301, 'title': 'BA.2.3.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-30T16:29:33Z', 'updated_at': '2022-05-30T16:32:10Z', 'due_on': None, 'closed_at': None}\n", - "301 BA.2.3.5\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/302', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/302', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/302/labels', 'id': 8031434, 'node_id': 'MI_kwDOEGMSVc4AeozK', 'number': 302, 'title': 'BA.5.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-05-30T18:39:07Z', 'updated_at': '2022-06-02T18:25:01Z', 'due_on': None, 'closed_at': None}\n", - "302 BA.5.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/303', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/303', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/303/labels', 'id': 8034014, 'node_id': 'MI_kwDOEGMSVc4Aepbe', 'number': 303, 'title': 'BE.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-31T14:04:59Z', 'updated_at': '2022-05-31T14:05:10Z', 'due_on': None, 'closed_at': None}\n", - "303 BE.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/304', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/304', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/304/labels', 'id': 8034373, 'node_id': 'MI_kwDOEGMSVc4AephF', 'number': 304, 'title': 'BA.2.9.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-31T15:36:58Z', 'updated_at': '2022-05-31T15:37:07Z', 'due_on': None, 'closed_at': None}\n", - "304 BA.2.9.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/305', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/305', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/305/labels', 'id': 8034725, 'node_id': 'MI_kwDOEGMSVc4Aepml', 'number': 305, 'title': 'BA.2.47', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-31T17:36:18Z', 'updated_at': '2022-05-31T17:36:22Z', 'due_on': None, 'closed_at': None}\n", - "305 BA.2.47\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/306', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/306', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/306/labels', 'id': 8035316, 'node_id': 'MI_kwDOEGMSVc4Aepv0', 'number': 306, 'title': 'BA.2.3.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-05-31T19:26:25Z', 'updated_at': '2022-05-31T19:26:33Z', 'due_on': None, 'closed_at': None}\n", - "306 BA.2.3.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/307', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/307', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/307/labels', 'id': 8038182, 'node_id': 'MI_kwDOEGMSVc4Aeqcm', 'number': 307, 'title': 'BA.2.48', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-01T14:04:32Z', 'updated_at': '2022-06-01T14:04:41Z', 'due_on': None, 'closed_at': None}\n", - "307 BA.2.48\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/308', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/308', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/308/labels', 'id': 8042548, 'node_id': 'MI_kwDOEGMSVc4Aerg0', 'number': 308, 'title': 'BA.5.2.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-02T17:24:13Z', 'updated_at': '2022-06-02T17:24:26Z', 'due_on': None, 'closed_at': None}\n", - "308 BA.5.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/309', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/309', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/309/labels', 'id': 8042802, 'node_id': 'MI_kwDOEGMSVc4Aerky', 'number': 309, 'title': 'BF.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-02T18:25:08Z', 'updated_at': '2022-06-05T10:55:10Z', 'due_on': None, 'closed_at': None}\n", - "309 BF.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/310', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/310', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/310/labels', 'id': 8043383, 'node_id': 'MI_kwDOEGMSVc4Aert3', 'number': 310, 'title': 'BA.2.9.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-02T21:29:39Z', 'updated_at': '2022-06-02T21:29:48Z', 'due_on': None, 'closed_at': None}\n", - "310 BA.2.9.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/311', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/311', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/311/labels', 'id': 8046440, 'node_id': 'MI_kwDOEGMSVc4Aesdo', 'number': 311, 'title': 'XZ', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-03T13:14:06Z', 'updated_at': '2022-06-03T13:14:28Z', 'due_on': None, 'closed_at': None}\n", - "311 XZ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/312', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/312', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/312/labels', 'id': 8046762, 'node_id': 'MI_kwDOEGMSVc4Aesiq', 'number': 312, 'title': 'BA.2.49', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-03T14:50:58Z', 'updated_at': '2022-06-03T14:51:05Z', 'due_on': None, 'closed_at': None}\n", - "312 BA.2.49\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/313', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/313', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/313/labels', 'id': 8049356, 'node_id': 'MI_kwDOEGMSVc4AetLM', 'number': 313, 'title': 'BA.2.3.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-04T14:14:38Z', 'updated_at': '2022-06-04T14:14:51Z', 'due_on': None, 'closed_at': None}\n", - "313 BA.2.3.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/314', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/314', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/314/labels', 'id': 8049639, 'node_id': 'MI_kwDOEGMSVc4AetPn', 'number': 314, 'title': 'BA.2.50', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-04T17:34:47Z', 'updated_at': '2022-06-04T17:34:56Z', 'due_on': None, 'closed_at': None}\n", - "314 BA.2.50\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/315', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/315', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/315/labels', 'id': 8049745, 'node_id': 'MI_kwDOEGMSVc4AetRR', 'number': 315, 'title': 'BA.2.51', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-04T18:57:10Z', 'updated_at': '2022-06-04T18:57:19Z', 'due_on': None, 'closed_at': None}\n", - "315 BA.2.51\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/316', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/316', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/316/labels', 'id': 8051066, 'node_id': 'MI_kwDOEGMSVc4Aetl6', 'number': 316, 'title': 'BA.2.52', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-05T15:19:16Z', 'updated_at': '2022-06-05T15:19:34Z', 'due_on': None, 'closed_at': None}\n", - "316 BA.2.52\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/317', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/317', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/317/labels', 'id': 8051148, 'node_id': 'MI_kwDOEGMSVc4AetnM', 'number': 317, 'title': 'BA.2.53', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-05T16:08:42Z', 'updated_at': '2022-06-05T16:09:04Z', 'due_on': None, 'closed_at': None}\n", - "317 BA.2.53\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/318', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/318', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/318/labels', 'id': 8053282, 'node_id': 'MI_kwDOEGMSVc4AeuIi', 'number': 318, 'title': 'BA.5.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-06T10:51:00Z', 'updated_at': '2022-06-06T10:51:54Z', 'due_on': None, 'closed_at': None}\n", - "318 BA.5.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/319', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/319', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/319/labels', 'id': 8053863, 'node_id': 'MI_kwDOEGMSVc4AeuRn', 'number': 319, 'title': 'BA.2.54', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-06T13:59:05Z', 'updated_at': '2022-06-06T13:59:16Z', 'due_on': None, 'closed_at': None}\n", - "319 BA.2.54\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/320', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/320', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/320/labels', 'id': 8054031, 'node_id': 'MI_kwDOEGMSVc4AeuUP', 'number': 320, 'title': 'BA.2.55', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-06T14:46:51Z', 'updated_at': '2022-06-06T14:47:07Z', 'due_on': None, 'closed_at': None}\n", - "320 BA.2.55\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/321', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/321', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/321/labels', 'id': 8058310, 'node_id': 'MI_kwDOEGMSVc4AevXG', 'number': 321, 'title': 'BA.1.23', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-07T13:42:59Z', 'updated_at': '2022-06-07T13:43:12Z', 'due_on': None, 'closed_at': None}\n", - "321 BA.1.23\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/322', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/322', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/322/labels', 'id': 8058807, 'node_id': 'MI_kwDOEGMSVc4Aeve3', 'number': 322, 'title': 'XAA', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-07T15:03:15Z', 'updated_at': '2022-06-07T15:03:21Z', 'due_on': None, 'closed_at': None}\n", - "322 XAA\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/323', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/323', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/323/labels', 'id': 8058884, 'node_id': 'MI_kwDOEGMSVc4AevgE', 'number': 323, 'title': 'XAB', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-07T15:31:43Z', 'updated_at': '2022-06-07T15:31:54Z', 'due_on': None, 'closed_at': None}\n", - "323 XAB\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/324', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/324', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/324/labels', 'id': 8062791, 'node_id': 'MI_kwDOEGMSVc4AewdH', 'number': 324, 'title': 'BA.1.24', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-08T14:32:40Z', 'updated_at': '2022-06-08T14:32:53Z', 'due_on': None, 'closed_at': None}\n", - "324 BA.1.24\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/325', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/325', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/325/labels', 'id': 8062970, 'node_id': 'MI_kwDOEGMSVc4Aewf6', 'number': 325, 'title': 'BA.4.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-08T15:17:48Z', 'updated_at': '2022-06-08T15:17:58Z', 'due_on': None, 'closed_at': None}\n", - "325 BA.4.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/326', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/326', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/326/labels', 'id': 8063172, 'node_id': 'MI_kwDOEGMSVc4AewjE', 'number': 326, 'title': 'BA.2.56', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-08T16:16:37Z', 'updated_at': '2022-06-08T16:16:53Z', 'due_on': None, 'closed_at': None}\n", - "326 BA.2.56\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/327', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/327', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/327/labels', 'id': 8067727, 'node_id': 'MI_kwDOEGMSVc4AexqP', 'number': 327, 'title': 'BA.2.59', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-09T19:46:11Z', 'updated_at': '2022-06-09T19:46:53Z', 'due_on': None, 'closed_at': None}\n", - "327 BA.2.59\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/328', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/328', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/328/labels', 'id': 8071178, 'node_id': 'MI_kwDOEGMSVc4AeygK', 'number': 328, 'title': 'XAC', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-10T18:37:52Z', 'updated_at': '2022-06-10T18:39:23Z', 'due_on': None, 'closed_at': None}\n", - "328 XAC\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/329', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/329', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/329/labels', 'id': 8072534, 'node_id': 'MI_kwDOEGMSVc4Aey1W', 'number': 329, 'title': 'BA.2.12.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-11T17:03:11Z', 'updated_at': '2022-06-11T17:05:30Z', 'due_on': None, 'closed_at': None}\n", - "329 BA.2.12.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/330', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/330', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/330/labels', 'id': 8073550, 'node_id': 'MI_kwDOEGMSVc4AezFO', 'number': 330, 'title': 'BA.2.71', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-12T13:42:54Z', 'updated_at': '2022-06-12T13:43:02Z', 'due_on': None, 'closed_at': None}\n", - "330 BA.2.71\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/331', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/331', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/331/labels', 'id': 8073746, 'node_id': 'MI_kwDOEGMSVc4AezIS', 'number': 331, 'title': 'BA.2.72', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-12T16:26:30Z', 'updated_at': '2022-06-12T16:27:14Z', 'due_on': None, 'closed_at': None}\n", - "331 BA.2.72\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/332', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/332', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/332/labels', 'id': 8073989, 'node_id': 'MI_kwDOEGMSVc4AezMF', 'number': 332, 'title': 'BA.2.60', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-12T21:19:27Z', 'updated_at': '2022-06-12T21:23:10Z', 'due_on': None, 'closed_at': None}\n", - "332 BA.2.60\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/333', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/333', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/333/labels', 'id': 8075977, 'node_id': 'MI_kwDOEGMSVc4AezrJ', 'number': 333, 'title': 'BD.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T11:48:57Z', 'updated_at': '2022-06-13T11:48:57Z', 'due_on': None, 'closed_at': None}\n", - "333 BD.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/334', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/334', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/334/labels', 'id': 8076474, 'node_id': 'MI_kwDOEGMSVc4Aezy6', 'number': 334, 'title': 'BA.2.3.11', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T13:55:36Z', 'updated_at': '2022-06-13T13:55:36Z', 'due_on': None, 'closed_at': None}\n", - "334 BA.2.3.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/335', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/335', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/335/labels', 'id': 8076671, 'node_id': 'MI_kwDOEGMSVc4Aez1_', 'number': 335, 'title': 'BC.2', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T14:59:18Z', 'updated_at': '2022-06-13T14:59:18Z', 'due_on': None, 'closed_at': None}\n", - "335 BC.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/336', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/336', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/336/labels', 'id': 8076687, 'node_id': 'MI_kwDOEGMSVc4Aez2P', 'number': 336, 'title': 'BA.1.15.3', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:03:43Z', 'updated_at': '2022-06-13T15:03:43Z', 'due_on': None, 'closed_at': None}\n", - "336 BA.1.15.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/337', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/337', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/337/labels', 'id': 8076703, 'node_id': 'MI_kwDOEGMSVc4Aez2f', 'number': 337, 'title': 'XAD', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:11:03Z', 'updated_at': '2022-06-13T15:11:03Z', 'due_on': None, 'closed_at': None}\n", - "337 XAD\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/338', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/338', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/338/labels', 'id': 8076743, 'node_id': 'MI_kwDOEGMSVc4Aez3H', 'number': 338, 'title': 'BA.4.1.2', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:23:42Z', 'updated_at': '2022-06-13T15:23:42Z', 'due_on': None, 'closed_at': None}\n", - "338 BA.4.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/339', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/339', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/339/labels', 'id': 8076759, 'node_id': 'MI_kwDOEGMSVc4Aez3X', 'number': 339, 'title': 'BA.5.3.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:27:42Z', 'updated_at': '2022-06-13T15:28:13Z', 'due_on': None, 'closed_at': None}\n", - "339 BA.5.3.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/340', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/340', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/340/labels', 'id': 8076779, 'node_id': 'MI_kwDOEGMSVc4Aez3r', 'number': 340, 'title': 'BA.2.73', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:31:00Z', 'updated_at': '2022-06-13T15:31:00Z', 'due_on': None, 'closed_at': None}\n", - "340 BA.2.73\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/341', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/341', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/341/labels', 'id': 8076837, 'node_id': 'MI_kwDOEGMSVc4Aez4l', 'number': 341, 'title': 'XAE', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T15:45:36Z', 'updated_at': '2022-06-13T15:45:37Z', 'due_on': None, 'closed_at': None}\n", - "341 XAE\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/342', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/342', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/342/labels', 'id': 8076895, 'node_id': 'MI_kwDOEGMSVc4Aez5f', 'number': 342, 'title': 'BA.2.2.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T16:05:05Z', 'updated_at': '2022-06-13T16:05:05Z', 'due_on': None, 'closed_at': None}\n", - "342 BA.2.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/343', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/343', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/343/labels', 'id': 8076927, 'node_id': 'MI_kwDOEGMSVc4Aez5_', 'number': 343, 'title': 'XAF', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T16:12:58Z', 'updated_at': '2022-06-13T16:12:58Z', 'due_on': None, 'closed_at': None}\n", - "343 XAF\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/344', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/344', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/344/labels', 'id': 8077816, 'node_id': 'MI_kwDOEGMSVc4Ae0H4', 'number': 344, 'title': 'BA.2.56.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-13T21:03:34Z', 'updated_at': '2022-06-13T21:03:43Z', 'due_on': None, 'closed_at': None}\n", - "344 BA.2.56.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/345', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/345', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/345/labels', 'id': 8079343, 'node_id': 'MI_kwDOEGMSVc4Ae0fv', 'number': 345, 'title': 'XAG', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T09:00:37Z', 'updated_at': '2022-06-14T09:00:37Z', 'due_on': None, 'closed_at': None}\n", - "345 XAG\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/346', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/346', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/346/labels', 'id': 8079386, 'node_id': 'MI_kwDOEGMSVc4Ae0ga', 'number': 346, 'title': 'BA.2.3.16', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T09:15:33Z', 'updated_at': '2022-06-14T09:15:33Z', 'due_on': None, 'closed_at': None}\n", - "346 BA.2.3.16\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/347', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/347', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/347/labels', 'id': 8079422, 'node_id': 'MI_kwDOEGMSVc4Ae0g-', 'number': 347, 'title': 'BA.2.3.17', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T09:27:46Z', 'updated_at': '2022-06-14T09:27:46Z', 'due_on': None, 'closed_at': None}\n", - "347 BA.2.3.17\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/348', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/348', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/348/labels', 'id': 8079509, 'node_id': 'MI_kwDOEGMSVc4Ae0iV', 'number': 348, 'title': 'BG.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T09:41:20Z', 'updated_at': '2022-06-14T09:41:20Z', 'due_on': None, 'closed_at': None}\n", - "348 BG.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/349', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/349', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/349/labels', 'id': 8079549, 'node_id': 'MI_kwDOEGMSVc4Ae0i9', 'number': 349, 'title': 'BA.2.3.18', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T10:02:25Z', 'updated_at': '2022-06-14T10:02:25Z', 'due_on': None, 'closed_at': None}\n", - "349 BA.2.3.18\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/350', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/350', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/350/labels', 'id': 8080166, 'node_id': 'MI_kwDOEGMSVc4Ae0sm', 'number': 350, 'title': 'XAH', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-14T13:35:31Z', 'updated_at': '2022-06-14T13:35:31Z', 'due_on': None, 'closed_at': None}\n", - "350 XAH\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/351', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/351', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/351/labels', 'id': 8094111, 'node_id': 'MI_kwDOEGMSVc4Ae4Gf', 'number': 351, 'title': 'BG.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-18T13:02:11Z', 'updated_at': '2022-06-18T13:02:31Z', 'due_on': None, 'closed_at': None}\n", - "351 BG.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/352', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/352', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/352/labels', 'id': 8121819, 'node_id': 'MI_kwDOEGMSVc4Ae-3b', 'number': 352, 'title': 'BA.2.74', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-23T14:46:20Z', 'updated_at': '2022-06-23T14:46:34Z', 'due_on': None, 'closed_at': None}\n", - "352 BA.2.74\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/353', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/353', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/353/labels', 'id': 8125645, 'node_id': 'MI_kwDOEGMSVc4Ae_zN', 'number': 353, 'title': 'BA.2.75', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-24T14:04:37Z', 'updated_at': '2022-06-24T14:05:00Z', 'due_on': None, 'closed_at': None}\n", - "353 BA.2.75\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/354', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/354', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/354/labels', 'id': 8126439, 'node_id': 'MI_kwDOEGMSVc4Ae__n', 'number': 354, 'title': 'BG.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-24T18:58:06Z', 'updated_at': '2022-06-24T18:58:32Z', 'due_on': None, 'closed_at': None}\n", - "354 BG.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/355', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/355', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/355/labels', 'id': 8128418, 'node_id': 'MI_kwDOEGMSVc4AfAei', 'number': 355, 'title': 'BF.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-25T15:16:23Z', 'updated_at': '2022-06-25T15:16:42Z', 'due_on': None, 'closed_at': None}\n", - "355 BF.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/356', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/356', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/356/labels', 'id': 8128582, 'node_id': 'MI_kwDOEGMSVc4AfAhG', 'number': 356, 'title': 'BA.5.1.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-25T16:18:52Z', 'updated_at': '2022-06-25T16:19:13Z', 'due_on': None, 'closed_at': None}\n", - "356 BA.5.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/357', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/357', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/357/labels', 'id': 8129471, 'node_id': 'MI_kwDOEGMSVc4AfAu_', 'number': 357, 'title': 'BA.5.1.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-06-26T12:26:15Z', 'updated_at': '2022-06-26T12:26:29Z', 'due_on': None, 'closed_at': None}\n", - "357 BA.5.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/358', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/358', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/358/labels', 'id': 8155499, 'node_id': 'MI_kwDOEGMSVc4AfHFr', 'number': 358, 'title': 'BA.2.76', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-02T11:11:12Z', 'updated_at': '2022-07-02T11:11:20Z', 'due_on': None, 'closed_at': None}\n", - "358 BA.2.76\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/359', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/359', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/359/labels', 'id': 8155757, 'node_id': 'MI_kwDOEGMSVc4AfHJt', 'number': 359, 'title': 'BE.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-02T16:42:34Z', 'updated_at': '2022-07-02T16:43:19Z', 'due_on': None, 'closed_at': None}\n", - "359 BE.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/360', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/360', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/360/labels', 'id': 8156602, 'node_id': 'MI_kwDOEGMSVc4AfHW6', 'number': 360, 'title': 'BA.2.77', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-03T11:32:58Z', 'updated_at': '2022-07-03T11:33:13Z', 'due_on': None, 'closed_at': None}\n", - "360 BA.2.77\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/361', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/361', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/361/labels', 'id': 8156742, 'node_id': 'MI_kwDOEGMSVc4AfHZG', 'number': 361, 'title': 'BA.4.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-03T14:06:34Z', 'updated_at': '2022-07-03T14:06:58Z', 'due_on': None, 'closed_at': None}\n", - "361 BA.4.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/362', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/362', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/362/labels', 'id': 8156872, 'node_id': 'MI_kwDOEGMSVc4AfHbI', 'number': 362, 'title': 'BA.5.1.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-03T16:57:48Z', 'updated_at': '2022-07-03T16:58:06Z', 'due_on': None, 'closed_at': None}\n", - "362 BA.5.1.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/363', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/363', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/363/labels', 'id': 8175473, 'node_id': 'MI_kwDOEGMSVc4AfL9x', 'number': 363, 'title': 'BA.2.38.1', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-07T13:52:23Z', 'updated_at': '2022-07-07T13:52:23Z', 'due_on': None, 'closed_at': None}\n", - "363 BA.2.38.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/364', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/364', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/364/labels', 'id': 8175493, 'node_id': 'MI_kwDOEGMSVc4AfL-F', 'number': 364, 'title': 'BA.2.79', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-07T13:56:20Z', 'updated_at': '2022-07-07T13:56:21Z', 'due_on': None, 'closed_at': None}\n", - "364 BA.2.79\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/365', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/365', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/365/labels', 'id': 8179080, 'node_id': 'MI_kwDOEGMSVc4AfM2I', 'number': 365, 'title': 'BA.2.80', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-08T14:19:49Z', 'updated_at': '2022-07-08T14:20:04Z', 'due_on': None, 'closed_at': None}\n", - "365 BA.2.80\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/366', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/366', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/366/labels', 'id': 8180671, 'node_id': 'MI_kwDOEGMSVc4AfNO_', 'number': 366, 'title': 'BA.4.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-09T13:49:02Z', 'updated_at': '2022-07-09T13:49:45Z', 'due_on': None, 'closed_at': None}\n", - "366 BA.4.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/367', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/367', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/367/labels', 'id': 8187476, 'node_id': 'MI_kwDOEGMSVc4AfO5U', 'number': 367, 'title': 'BA.2.13.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-12T11:02:53Z', 'updated_at': '2022-07-12T11:03:11Z', 'due_on': None, 'closed_at': None}\n", - "367 BA.2.13.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/368', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/368', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/368/labels', 'id': 8194836, 'node_id': 'MI_kwDOEGMSVc4AfQsU', 'number': 368, 'title': 'BF.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-14T13:14:38Z', 'updated_at': '2022-07-14T13:14:54Z', 'due_on': None, 'closed_at': None}\n", - "368 BF.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/369', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/369', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/369/labels', 'id': 8197880, 'node_id': 'MI_kwDOEGMSVc4AfRb4', 'number': 369, 'title': 'BA.2.3.19', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-15T10:47:42Z', 'updated_at': '2022-07-15T10:47:51Z', 'due_on': None, 'closed_at': None}\n", - "369 BA.2.3.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/370', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/370', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/370/labels', 'id': 8204893, 'node_id': 'MI_kwDOEGMSVc4AfTJd', 'number': 370, 'title': 'BF.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-16T13:51:42Z', 'updated_at': '2022-07-16T13:51:57Z', 'due_on': None, 'closed_at': None}\n", - "370 BF.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/371', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/371', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/371/labels', 'id': 8220878, 'node_id': 'MI_kwDOEGMSVc4AfXDO', 'number': 371, 'title': 'BA.5.1.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-20T14:17:48Z', 'updated_at': '2022-07-20T14:18:04Z', 'due_on': None, 'closed_at': None}\n", - "371 BA.5.1.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/372', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/372', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/372/labels', 'id': 8225708, 'node_id': 'MI_kwDOEGMSVc4AfYOs', 'number': 372, 'title': 'XAJ', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-21T19:56:17Z', 'updated_at': '2022-07-21T19:56:41Z', 'due_on': None, 'closed_at': None}\n", - "372 XAJ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/373', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/373', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/373/labels', 'id': 8227978, 'node_id': 'MI_kwDOEGMSVc4AfYyK', 'number': 373, 'title': 'XAK', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-22T14:12:12Z', 'updated_at': '2022-07-22T14:12:28Z', 'due_on': None, 'closed_at': None}\n", - "373 XAK\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/374', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/374', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/374/labels', 'id': 8231439, 'node_id': 'MI_kwDOEGMSVc4AfZoP', 'number': 374, 'title': 'BA.2.38.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-24T18:05:03Z', 'updated_at': '2022-07-24T18:05:16Z', 'due_on': None, 'closed_at': None}\n", - "374 BA.2.38.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/375', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/375', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/375/labels', 'id': 8231461, 'node_id': 'MI_kwDOEGMSVc4AfZol', 'number': 375, 'title': 'BA.5.8', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-24T18:54:23Z', 'updated_at': '2022-07-24T18:55:52Z', 'due_on': None, 'closed_at': None}\n", - "375 BA.5.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/376', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/376', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/376/labels', 'id': 8231521, 'node_id': 'MI_kwDOEGMSVc4AfZph', 'number': 376, 'title': 'BA.5.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-24T20:28:16Z', 'updated_at': '2022-07-24T20:28:31Z', 'due_on': None, 'closed_at': None}\n", - "376 BA.5.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/377', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/377', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/377/labels', 'id': 8233295, 'node_id': 'MI_kwDOEGMSVc4AfaFP', 'number': 377, 'title': 'BF.11', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-25T10:42:56Z', 'updated_at': '2022-07-25T10:44:57Z', 'due_on': None, 'closed_at': None}\n", - "377 BF.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/378', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/378', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/378/labels', 'id': 8242767, 'node_id': 'MI_kwDOEGMSVc4AfcZP', 'number': 378, 'title': 'BA.2.36.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-27T18:00:15Z', 'updated_at': '2022-08-12T16:43:59Z', 'due_on': None, 'closed_at': None}\n", - "378 BA.2.36.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/379', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/379', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/379/labels', 'id': 8243032, 'node_id': 'MI_kwDOEGMSVc4AfcdY', 'number': 379, 'title': 'BF.3.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-27T19:06:06Z', 'updated_at': '2022-07-27T19:06:18Z', 'due_on': None, 'closed_at': None}\n", - "379 BF.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/380', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/380', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/380/labels', 'id': 8243137, 'node_id': 'MI_kwDOEGMSVc4AfcfB', 'number': 380, 'title': 'BF.12', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-27T20:01:28Z', 'updated_at': '2022-07-27T20:01:49Z', 'due_on': None, 'closed_at': None}\n", - "380 BF.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/381', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/381', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/381/labels', 'id': 8247993, 'node_id': 'MI_kwDOEGMSVc4Afdq5', 'number': 381, 'title': 'BG.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-28T19:54:52Z', 'updated_at': '2022-07-28T19:55:12Z', 'due_on': None, 'closed_at': None}\n", - "381 BG.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/382', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/382', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/382/labels', 'id': 8250257, 'node_id': 'MI_kwDOEGMSVc4AfeOR', 'number': 382, 'title': 'BA.4.1.8', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-29T10:36:16Z', 'updated_at': '2022-07-29T10:36:31Z', 'due_on': None, 'closed_at': None}\n", - "382 BA.4.1.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/383', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/383', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/383/labels', 'id': 8251238, 'node_id': 'MI_kwDOEGMSVc4Afedm', 'number': 383, 'title': 'XAL', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-29T15:55:15Z', 'updated_at': '2022-07-29T15:55:35Z', 'due_on': None, 'closed_at': None}\n", - "383 XAL\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/384', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/384', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/384/labels', 'id': 8251369, 'node_id': 'MI_kwDOEGMSVc4Afefp', 'number': 384, 'title': 'XAM', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-29T16:55:41Z', 'updated_at': '2022-07-29T16:56:14Z', 'due_on': None, 'closed_at': None}\n", - "384 XAM\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/385', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/385', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/385/labels', 'id': 8251824, 'node_id': 'MI_kwDOEGMSVc4Afemw', 'number': 385, 'title': 'XAN', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-29T19:43:25Z', 'updated_at': '2022-07-29T19:43:38Z', 'due_on': None, 'closed_at': None}\n", - "385 XAN\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/386', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/386', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/386/labels', 'id': 8252657, 'node_id': 'MI_kwDOEGMSVc4Afezx', 'number': 386, 'title': 'XAP', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-07-30T10:30:35Z', 'updated_at': '2022-07-30T10:31:49Z', 'due_on': None, 'closed_at': None}\n", - "386 XAP\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/387', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/387', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/387/labels', 'id': 8257961, 'node_id': 'MI_kwDOEGMSVc4AfgGp', 'number': 387, 'title': 'BG.6', 'description': None, 'creator': {'login': 'chrisruis', 'id': 47785131, 'node_id': 'MDQ6VXNlcjQ3Nzg1MTMx', 'avatar_url': 'https://avatars.githubusercontent.com/u/47785131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/chrisruis', 'html_url': 'https://github.com/chrisruis', 'followers_url': 'https://api.github.com/users/chrisruis/followers', 'following_url': 'https://api.github.com/users/chrisruis/following{/other_user}', 'gists_url': 'https://api.github.com/users/chrisruis/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/chrisruis/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/chrisruis/subscriptions', 'organizations_url': 'https://api.github.com/users/chrisruis/orgs', 'repos_url': 'https://api.github.com/users/chrisruis/repos', 'events_url': 'https://api.github.com/users/chrisruis/events{/privacy}', 'received_events_url': 'https://api.github.com/users/chrisruis/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-01T14:59:38Z', 'updated_at': '2022-08-01T14:59:38Z', 'due_on': None, 'closed_at': None}\n", - "387 BG.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/388', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/388', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/388/labels', 'id': 8265192, 'node_id': 'MI_kwDOEGMSVc4Afh3o', 'number': 388, 'title': 'XAQ', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-03T12:40:26Z', 'updated_at': '2022-08-03T12:41:25Z', 'due_on': None, 'closed_at': None}\n", - "388 XAQ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/389', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/389', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/389/labels', 'id': 8266282, 'node_id': 'MI_kwDOEGMSVc4AfiIq', 'number': 389, 'title': 'BA.5.1.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-03T18:08:58Z', 'updated_at': '2022-08-03T18:10:23Z', 'due_on': None, 'closed_at': None}\n", - "389 BA.5.1.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/390', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/390', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/390/labels', 'id': 8266606, 'node_id': 'MI_kwDOEGMSVc4AfiNu', 'number': 390, 'title': 'BA.2.75.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-03T20:19:14Z', 'updated_at': '2022-08-03T20:19:27Z', 'due_on': None, 'closed_at': None}\n", - "390 BA.2.75.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/391', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/391', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/391/labels', 'id': 8274960, 'node_id': 'MI_kwDOEGMSVc4AfkQQ', 'number': 391, 'title': 'BA.2.38.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-06T15:20:21Z', 'updated_at': '2022-08-06T15:21:29Z', 'due_on': None, 'closed_at': None}\n", - "391 BA.2.38.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/392', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/392', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/392/labels', 'id': 8279628, 'node_id': 'MI_kwDOEGMSVc4AflZM', 'number': 392, 'title': 'BH.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-08T16:39:05Z', 'updated_at': '2022-08-08T16:40:21Z', 'due_on': None, 'closed_at': None}\n", - "392 BH.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/393', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/393', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/393/labels', 'id': 8280710, 'node_id': 'MI_kwDOEGMSVc4AflqG', 'number': 393, 'title': 'BA.2.9.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-08T19:52:57Z', 'updated_at': '2022-08-08T19:53:14Z', 'due_on': None, 'closed_at': None}\n", - "393 BA.2.9.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/394', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/394', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/394/labels', 'id': 8288232, 'node_id': 'MI_kwDOEGMSVc4Afnfo', 'number': 394, 'title': 'BJ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-10T19:31:18Z', 'updated_at': '2022-08-10T19:31:18Z', 'due_on': None, 'closed_at': None}\n", - "394 BJ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/395', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/395', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/395/labels', 'id': 8288666, 'node_id': 'MI_kwDOEGMSVc4Afnma', 'number': 395, 'title': 'BE.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-10T22:08:23Z', 'updated_at': '2022-08-10T22:08:23Z', 'due_on': None, 'closed_at': None}\n", - "395 BE.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/396', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/396', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/396/labels', 'id': 8288667, 'node_id': 'MI_kwDOEGMSVc4Afnmb', 'number': 396, 'title': 'BA.2.10.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-10T22:08:45Z', 'updated_at': '2022-08-10T22:08:45Z', 'due_on': None, 'closed_at': None}\n", - "396 BA.2.10.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/397', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/397', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/397/labels', 'id': 8288668, 'node_id': 'MI_kwDOEGMSVc4Afnmc', 'number': 397, 'title': 'BA.2.76.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-10T22:09:06Z', 'updated_at': '2022-08-10T22:09:07Z', 'due_on': None, 'closed_at': None}\n", - "397 BA.2.76.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/398', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/398', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/398/labels', 'id': 8308427, 'node_id': 'MI_kwDOEGMSVc4AfsbL', 'number': 398, 'title': 'BF.13', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-15T19:19:41Z', 'updated_at': '2022-08-15T19:20:08Z', 'due_on': None, 'closed_at': None}\n", - "398 BF.13\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/399', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/399', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/399/labels', 'id': 8308518, 'node_id': 'MI_kwDOEGMSVc4Afscm', 'number': 399, 'title': 'BA.5.6.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-15T19:51:43Z', 'updated_at': '2022-08-15T19:52:05Z', 'due_on': None, 'closed_at': None}\n", - "399 BA.5.6.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/400', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/400', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/400/labels', 'id': 8311772, 'node_id': 'MI_kwDOEGMSVc4AftPc', 'number': 400, 'title': 'BF.14', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-16T12:06:09Z', 'updated_at': '2022-08-16T15:06:50Z', 'due_on': None, 'closed_at': None}\n", - "400 BF.14\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/401', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/401', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/401/labels', 'id': 8312141, 'node_id': 'MI_kwDOEGMSVc4AftVN', 'number': 401, 'title': 'BA.5.5.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-16T13:35:30Z', 'updated_at': '2022-08-16T13:35:45Z', 'due_on': None, 'closed_at': None}\n", - "401 BA.5.5.1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/402', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/402', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/402/labels', 'id': 8312582, 'node_id': 'MI_kwDOEGMSVc4AftcG', 'number': 402, 'title': 'BK.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-16T15:32:02Z', 'updated_at': '2022-08-16T15:32:24Z', 'due_on': None, 'closed_at': None}\n", - "402 BK.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/403', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/403', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/403/labels', 'id': 8321718, 'node_id': 'MI_kwDOEGMSVc4Afvq2', 'number': 403, 'title': 'BA.5.10', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-18T14:33:44Z', 'updated_at': '2022-08-18T14:33:54Z', 'due_on': None, 'closed_at': None}\n", - "403 BA.5.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/404', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/404', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/404/labels', 'id': 8321888, 'node_id': 'MI_kwDOEGMSVc4Afvtg', 'number': 404, 'title': 'BA.5.1.11', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-18T15:35:22Z', 'updated_at': '2022-08-18T15:35:23Z', 'due_on': None, 'closed_at': None}\n", - "404 BA.5.1.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/405', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/405', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/405/labels', 'id': 8322513, 'node_id': 'MI_kwDOEGMSVc4Afv3R', 'number': 405, 'title': 'XAR', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-18T19:40:52Z', 'updated_at': '2022-08-18T19:41:02Z', 'due_on': None, 'closed_at': None}\n", - "405 XAR\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/406', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/406', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/406/labels', 'id': 8324423, 'node_id': 'MI_kwDOEGMSVc4AfwVH', 'number': 406, 'title': 'BA.2.75.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-19T09:53:59Z', 'updated_at': '2022-08-19T09:53:59Z', 'due_on': None, 'closed_at': None}\n", - "406 BA.2.75.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/407', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/407', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/407/labels', 'id': 8325196, 'node_id': 'MI_kwDOEGMSVc4AfwhM', 'number': 407, 'title': 'BA.2.76.2', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-19T15:09:28Z', 'updated_at': '2022-08-19T15:09:28Z', 'due_on': None, 'closed_at': None}\n", - "407 BA.2.76.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/408', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/408', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/408/labels', 'id': 8328573, 'node_id': 'MI_kwDOEGMSVc4AfxV9', 'number': 408, 'title': 'BA.5.2.6', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T16:21:29Z', 'updated_at': '2022-08-21T16:21:29Z', 'due_on': None, 'closed_at': None}\n", - "408 BA.5.2.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/409', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/409', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/409/labels', 'id': 8328592, 'node_id': 'MI_kwDOEGMSVc4AfxWQ', 'number': 409, 'title': 'BA.2.75.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T16:46:56Z', 'updated_at': '2022-08-21T17:04:16Z', 'due_on': None, 'closed_at': None}\n", - "409 BA.2.75.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/410', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/410', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/410/labels', 'id': 8328625, 'node_id': 'MI_kwDOEGMSVc4AfxWx', 'number': 410, 'title': 'BA.5.2.7', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T17:09:07Z', 'updated_at': '2022-08-21T17:11:26Z', 'due_on': None, 'closed_at': None}\n", - "410 BA.5.2.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/411', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/411', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/411/labels', 'id': 8328685, 'node_id': 'MI_kwDOEGMSVc4AfxXt', 'number': 411, 'title': 'BF.15', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T17:39:08Z', 'updated_at': '2022-08-21T17:39:08Z', 'due_on': None, 'closed_at': None}\n", - "411 BF.15\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/412', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/412', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/412/labels', 'id': 8328731, 'node_id': 'MI_kwDOEGMSVc4AfxYb', 'number': 412, 'title': 'BA.4.8', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T18:06:24Z', 'updated_at': '2022-08-21T18:06:24Z', 'due_on': None, 'closed_at': None}\n", - "412 BA.4.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/413', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/413', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/413/labels', 'id': 8328863, 'node_id': 'MI_kwDOEGMSVc4Afxaf', 'number': 413, 'title': 'BL.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-21T20:34:11Z', 'updated_at': '2022-08-21T20:34:11Z', 'due_on': None, 'closed_at': None}\n", - "413 BL.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/414', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/414', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/414/labels', 'id': 8331877, 'node_id': 'MI_kwDOEGMSVc4AfyJl', 'number': 414, 'title': 'XAS', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-22T13:16:10Z', 'updated_at': '2022-08-22T13:16:37Z', 'due_on': None, 'closed_at': None}\n", - "414 XAS\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/415', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/415', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/415/labels', 'id': 8331997, 'node_id': 'MI_kwDOEGMSVc4AfyLd', 'number': 415, 'title': 'BA.5.1.13', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-22T13:46:18Z', 'updated_at': '2022-08-22T13:46:18Z', 'due_on': None, 'closed_at': None}\n", - "415 BA.5.1.13\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/416', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/416', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/416/labels', 'id': 8332103, 'node_id': 'MI_kwDOEGMSVc4AfyNH', 'number': 416, 'title': 'XAT', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-22T14:10:17Z', 'updated_at': '2022-08-22T14:10:27Z', 'due_on': None, 'closed_at': None}\n", - "416 XAT\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/417', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/417', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/417/labels', 'id': 8336111, 'node_id': 'MI_kwDOEGMSVc4AfzLv', 'number': 417, 'title': 'XAU', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-23T11:10:13Z', 'updated_at': '2022-08-23T11:10:25Z', 'due_on': None, 'closed_at': None}\n", - "417 XAU\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/418', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/418', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/418/labels', 'id': 8336915, 'node_id': 'MI_kwDOEGMSVc4AfzYT', 'number': 418, 'title': 'XAV', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-23T13:20:36Z', 'updated_at': '2022-08-23T13:21:12Z', 'due_on': None, 'closed_at': None}\n", - "418 XAV\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/419', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/419', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/419/labels', 'id': 8338430, 'node_id': 'MI_kwDOEGMSVc4Afzv-', 'number': 419, 'title': 'BF.16', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-23T16:33:16Z', 'updated_at': '2022-08-23T16:33:37Z', 'due_on': None, 'closed_at': None}\n", - "419 BF.16\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/420', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/420', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/420/labels', 'id': 8341793, 'node_id': 'MI_kwDOEGMSVc4Af0kh', 'number': 420, 'title': 'BA.5.1.12', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-23T18:23:14Z', 'updated_at': '2022-08-23T18:23:14Z', 'due_on': None, 'closed_at': None}\n", - "420 BA.5.1.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/421', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/421', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/421/labels', 'id': 8345033, 'node_id': 'MI_kwDOEGMSVc4Af1XJ', 'number': 421, 'title': 'BE.1.1.1', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-24T11:54:33Z', 'updated_at': '2022-08-24T11:54:43Z', 'due_on': None, 'closed_at': None}\n", - "421 BE.1.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/422', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/422', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/422/labels', 'id': 8349651, 'node_id': 'MI_kwDOEGMSVc4Af2fT', 'number': 422, 'title': 'XAW', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-25T14:13:54Z', 'updated_at': '2022-08-25T14:14:08Z', 'due_on': None, 'closed_at': None}\n", - "422 XAW\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/423', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/423', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/423/labels', 'id': 8350354, 'node_id': 'MI_kwDOEGMSVc4Af2qS', 'number': 423, 'title': 'XAY', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-08-25T16:55:10Z', 'updated_at': '2022-09-14T15:43:01Z', 'due_on': None, 'closed_at': None}\n", - "423 XAY\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/424', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/424', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/424/labels', 'id': 8355708, 'node_id': 'MI_kwDOEGMSVc4Af398', 'number': 424, 'title': 'XAZ', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-27T12:23:38Z', 'updated_at': '2022-08-27T12:25:27Z', 'due_on': None, 'closed_at': None}\n", - "424 XAZ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/425', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/425', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/425/labels', 'id': 8355939, 'node_id': 'MI_kwDOEGMSVc4Af4Bj', 'number': 425, 'title': 'BA.5.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-27T15:11:50Z', 'updated_at': '2022-08-27T15:11:50Z', 'due_on': None, 'closed_at': None}\n", - "425 BA.5.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/426', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/426', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/426/labels', 'id': 8356009, 'node_id': 'MI_kwDOEGMSVc4Af4Cp', 'number': 426, 'title': 'BA.4.1.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-27T16:22:26Z', 'updated_at': '2022-08-27T16:22:46Z', 'due_on': None, 'closed_at': None}\n", - "426 BA.4.1.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/427', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/427', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/427/labels', 'id': 8357172, 'node_id': 'MI_kwDOEGMSVc4Af4U0', 'number': 427, 'title': 'BA.5.1.18', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-28T11:11:24Z', 'updated_at': '2022-08-28T11:11:50Z', 'due_on': None, 'closed_at': None}\n", - "427 BA.5.1.18\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/428', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/428', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/428/labels', 'id': 8362190, 'node_id': 'MI_kwDOEGMSVc4Af5jO', 'number': 428, 'title': 'BA.5.5.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-29T19:55:32Z', 'updated_at': '2022-08-29T19:55:47Z', 'due_on': None, 'closed_at': None}\n", - "428 BA.5.5.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/429', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/429', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/429/labels', 'id': 8369376, 'node_id': 'MI_kwDOEGMSVc4Af7Tg', 'number': 429, 'title': 'BF.22', 'description': None, 'creator': {'login': 'aq-sun', 'id': 86776350, 'node_id': 'MDQ6VXNlcjg2Nzc2MzUw', 'avatar_url': 'https://avatars.githubusercontent.com/u/86776350?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aq-sun', 'html_url': 'https://github.com/aq-sun', 'followers_url': 'https://api.github.com/users/aq-sun/followers', 'following_url': 'https://api.github.com/users/aq-sun/following{/other_user}', 'gists_url': 'https://api.github.com/users/aq-sun/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aq-sun/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aq-sun/subscriptions', 'organizations_url': 'https://api.github.com/users/aq-sun/orgs', 'repos_url': 'https://api.github.com/users/aq-sun/repos', 'events_url': 'https://api.github.com/users/aq-sun/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aq-sun/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-08-31T14:42:49Z', 'updated_at': '2022-08-31T14:44:57Z', 'due_on': None, 'closed_at': None}\n", - "429 BF.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/430', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/430', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/430/labels', 'id': 8376401, 'node_id': 'MI_kwDOEGMSVc4Af9BR', 'number': 430, 'title': 'BA.2.3.20', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-02T12:33:21Z', 'updated_at': '2022-09-02T12:33:21Z', 'due_on': None, 'closed_at': None}\n", - "430 BA.2.3.20\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/431', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/431', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/431/labels', 'id': 8376845, 'node_id': 'MI_kwDOEGMSVc4Af9IN', 'number': 431, 'title': 'BN.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-02T15:11:47Z', 'updated_at': '2022-09-02T15:11:47Z', 'due_on': None, 'closed_at': None}\n", - "431 BN.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/432', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/432', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/432/labels', 'id': 8376978, 'node_id': 'MI_kwDOEGMSVc4Af9KS', 'number': 432, 'title': 'BP.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-02T15:47:03Z', 'updated_at': '2022-09-02T15:52:52Z', 'due_on': None, 'closed_at': None}\n", - "432 BP.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/433', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/433', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/433/labels', 'id': 8377072, 'node_id': 'MI_kwDOEGMSVc4Af9Lw', 'number': 433, 'title': 'BA.5.5.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-02T16:13:34Z', 'updated_at': '2022-09-02T16:13:35Z', 'due_on': None, 'closed_at': None}\n", - "433 BA.5.5.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/434', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/434', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/434/labels', 'id': 8377286, 'node_id': 'MI_kwDOEGMSVc4Af9PG', 'number': 434, 'title': 'BQ.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-02T17:50:17Z', 'updated_at': '2022-09-09T18:59:16Z', 'due_on': None, 'closed_at': None}\n", - "434 BQ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/435', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/435', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/435/labels', 'id': 8378540, 'node_id': 'MI_kwDOEGMSVc4Af9is', 'number': 435, 'title': 'BN.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-03T10:38:37Z', 'updated_at': '2022-09-03T10:38:37Z', 'due_on': None, 'closed_at': None}\n", - "435 BN.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/436', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/436', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/436/labels', 'id': 8380142, 'node_id': 'MI_kwDOEGMSVc4Af97u', 'number': 436, 'title': 'BA.5.1.19', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-04T15:25:45Z', 'updated_at': '2022-09-04T15:26:09Z', 'due_on': None, 'closed_at': None}\n", - "436 BA.5.1.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/437', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/437', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/437/labels', 'id': 8382909, 'node_id': 'MI_kwDOEGMSVc4Af-m9', 'number': 437, 'title': 'BA.4.6.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-05T10:45:50Z', 'updated_at': '2022-09-05T10:46:04Z', 'due_on': None, 'closed_at': None}\n", - "437 BA.4.6.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/438', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/438', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/438/labels', 'id': 8387459, 'node_id': 'MI_kwDOEGMSVc4Af_uD', 'number': 438, 'title': 'BA.5.2.13', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-06T16:46:49Z', 'updated_at': '2022-09-06T16:51:37Z', 'due_on': None, 'closed_at': None}\n", - "438 BA.5.2.13\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/439', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/439', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/439/labels', 'id': 8391418, 'node_id': 'MI_kwDOEGMSVc4AgAr6', 'number': 439, 'title': 'BM.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-07T15:41:59Z', 'updated_at': '2022-09-07T16:48:56Z', 'due_on': None, 'closed_at': None}\n", - "439 BM.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/440', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/440', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/440/labels', 'id': 8391624, 'node_id': 'MI_kwDOEGMSVc4AgAvI', 'number': 440, 'title': 'BM4.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-07T16:48:56Z', 'updated_at': '2022-09-07T16:49:00Z', 'due_on': None, 'closed_at': None}\n", - "440 BM4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/441', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/441', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/441/labels', 'id': 8391626, 'node_id': 'MI_kwDOEGMSVc4AgAvK', 'number': 441, 'title': 'BM.4 BM.4.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-07T16:49:08Z', 'updated_at': '2022-09-07T16:49:08Z', 'due_on': None, 'closed_at': None}\n", - "441 BM.4\n", - "441 BM.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/442', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/442', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/442/labels', 'id': 8391660, 'node_id': 'MI_kwDOEGMSVc4AgAvs', 'number': 442, 'title': 'BA.5.1.20', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-07T16:59:21Z', 'updated_at': '2022-09-07T16:59:42Z', 'due_on': None, 'closed_at': None}\n", - "442 BA.5.1.20\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/443', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/443', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/443/labels', 'id': 8406456, 'node_id': 'MI_kwDOEGMSVc4AgEW4', 'number': 443, 'title': 'BA.5.2.14', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-09T11:12:48Z', 'updated_at': '2022-09-09T11:13:02Z', 'due_on': None, 'closed_at': None}\n", - "443 BA.5.2.14\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/444', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/444', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/444/labels', 'id': 8407997, 'node_id': 'MI_kwDOEGMSVc4AgEu9', 'number': 444, 'title': 'BQ.1 BQ.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-09T18:59:23Z', 'updated_at': '2022-09-09T18:59:23Z', 'due_on': None, 'closed_at': None}\n", - "444 BQ.1\n", - "444 BQ.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/445', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/445', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/445/labels', 'id': 8412847, 'node_id': 'MI_kwDOEGMSVc4AgF6v', 'number': 445, 'title': 'BS.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-12T12:42:21Z', 'updated_at': '2022-09-12T12:42:21Z', 'due_on': None, 'closed_at': None}\n", - "445 BS.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/446', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/446', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/446/labels', 'id': 8414547, 'node_id': 'MI_kwDOEGMSVc4AgGVT', 'number': 446, 'title': 'BA.5.2.15', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-12T16:17:48Z', 'updated_at': '2022-09-12T16:18:03Z', 'due_on': None, 'closed_at': None}\n", - "446 BA.5.2.15\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/447', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/447', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/447/labels', 'id': 8421246, 'node_id': 'MI_kwDOEGMSVc4AgH9-', 'number': 447, 'title': 'BA.5.1.21', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-14T10:38:38Z', 'updated_at': '2022-09-14T14:13:33Z', 'due_on': None, 'closed_at': None}\n", - "447 BA.5.1.21\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/448', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/448', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/448/labels', 'id': 8422566, 'node_id': 'MI_kwDOEGMSVc4AgISm', 'number': 448, 'title': 'XAY XBA', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-14T15:43:01Z', 'updated_at': '2022-09-14T15:43:14Z', 'due_on': None, 'closed_at': None}\n", - "448 XAY\n", - "448 XBA\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/449', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/449', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/449/labels', 'id': 8427135, 'node_id': 'MI_kwDOEGMSVc4AgJZ_', 'number': 449, 'title': 'BA.5.2.17', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-15T15:16:35Z', 'updated_at': '2022-09-15T15:17:03Z', 'due_on': None, 'closed_at': None}\n", - "449 BA.5.2.17\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/450', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/450', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/450/labels', 'id': 8427315, 'node_id': 'MI_kwDOEGMSVc4AgJcz', 'number': 450, 'title': 'BF.23', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-15T16:21:12Z', 'updated_at': '2022-09-15T16:22:15Z', 'due_on': None, 'closed_at': None}\n", - "450 BF.23\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/451', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/451', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/451/labels', 'id': 8430662, 'node_id': 'MI_kwDOEGMSVc4AgKRG', 'number': 451, 'title': 'BA.5.2.16 BU.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-16T11:36:04Z', 'updated_at': '2022-09-16T11:36:04Z', 'due_on': None, 'closed_at': None}\n", - "451 BA.5.2.16\n", - "451 BU.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/452', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/452', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/452/labels', 'id': 8433806, 'node_id': 'MI_kwDOEGMSVc4AgLCO', 'number': 452, 'title': 'BA.5.2.18', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-17T19:03:21Z', 'updated_at': '2022-09-17T19:03:21Z', 'due_on': None, 'closed_at': None}\n", - "452 BA.5.2.18\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/453', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/453', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/453/labels', 'id': 8433860, 'node_id': 'MI_kwDOEGMSVc4AgLDE', 'number': 453, 'title': 'BL.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-17T19:39:22Z', 'updated_at': '2022-09-17T19:39:22Z', 'due_on': None, 'closed_at': None}\n", - "453 BL.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/454', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/454', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/454/labels', 'id': 8433867, 'node_id': 'MI_kwDOEGMSVc4AgLDL', 'number': 454, 'title': 'BL.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-17T19:51:27Z', 'updated_at': '2022-09-17T19:51:27Z', 'due_on': None, 'closed_at': None}\n", - "454 BL.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/455', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/455', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/455/labels', 'id': 8433881, 'node_id': 'MI_kwDOEGMSVc4AgLDZ', 'number': 455, 'title': 'XBB', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-17T20:11:25Z', 'updated_at': '2022-09-17T20:11:25Z', 'due_on': None, 'closed_at': None}\n", - "455 XBB\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/456', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/456', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/456/labels', 'id': 8433899, 'node_id': 'MI_kwDOEGMSVc4AgLDr', 'number': 456, 'title': 'BR.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-17T20:47:29Z', 'updated_at': '2022-09-21T18:25:07Z', 'due_on': None, 'closed_at': None}\n", - "456 BR.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/457', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/457', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/457/labels', 'id': 8434752, 'node_id': 'MI_kwDOEGMSVc4AgLRA', 'number': 457, 'title': 'BA.5.10.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-18T14:14:24Z', 'updated_at': '2022-09-18T14:14:24Z', 'due_on': None, 'closed_at': None}\n", - "457 BA.5.10.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/458', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/458', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/458/labels', 'id': 8434761, 'node_id': 'MI_kwDOEGMSVc4AgLRJ', 'number': 458, 'title': 'BA.2.83', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-18T14:21:35Z', 'updated_at': '2022-09-18T14:21:35Z', 'due_on': None, 'closed_at': None}\n", - "458 BA.2.83\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/459', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/459', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/459/labels', 'id': 8434783, 'node_id': 'MI_kwDOEGMSVc4AgLRf', 'number': 459, 'title': 'BA.5.2.19', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-18T14:39:49Z', 'updated_at': '2022-09-18T14:39:49Z', 'due_on': None, 'closed_at': None}\n", - "459 BA.5.2.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/460', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/460', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/460/labels', 'id': 8435307, 'node_id': 'MI_kwDOEGMSVc4AgLZr', 'number': 460, 'title': 'BM.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-18T21:38:20Z', 'updated_at': '2022-09-18T21:38:20Z', 'due_on': None, 'closed_at': None}\n", - "460 BM.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/461', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/461', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/461/labels', 'id': 8435371, 'node_id': 'MI_kwDOEGMSVc4AgLar', 'number': 461, 'title': 'BM.1.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-18T22:28:41Z', 'updated_at': '2022-09-18T22:30:13Z', 'due_on': None, 'closed_at': None}\n", - "461 BM.1.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/462', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/462', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/462/labels', 'id': 8435419, 'node_id': 'MI_kwDOEGMSVc4AgLbb', 'number': 462, 'title': 'BA.2.84', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-18T23:10:58Z', 'updated_at': '2022-09-19T12:52:58Z', 'due_on': None, 'closed_at': None}\n", - "462 BA.2.84\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/463', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/463', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/463/labels', 'id': 8437423, 'node_id': 'MI_kwDOEGMSVc4AgL6v', 'number': 463, 'title': 'BA.2.31.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-09-19T12:52:58Z', 'updated_at': '2022-09-19T12:53:05Z', 'due_on': None, 'closed_at': None}\n", - "463 BA.2.31.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/464', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/464', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/464/labels', 'id': 8437424, 'node_id': 'MI_kwDOEGMSVc4AgL6w', 'number': 464, 'title': 'BA.2.31.1 BA.2.84', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-19T12:53:05Z', 'updated_at': '2022-09-19T12:53:05Z', 'due_on': None, 'closed_at': None}\n", - "464 BA.2.31.1\n", - "464 BA.2.84\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/465', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/465', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/465/labels', 'id': 8441929, 'node_id': 'MI_kwDOEGMSVc4AgNBJ', 'number': 465, 'title': 'BA.5.2.22', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-20T14:27:02Z', 'updated_at': '2022-09-20T14:27:15Z', 'due_on': None, 'closed_at': None}\n", - "465 BA.5.2.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/466', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/466', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/466/labels', 'id': 8442031, 'node_id': 'MI_kwDOEGMSVc4AgNCv', 'number': 466, 'title': 'BA.2.75.8', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-20T14:51:39Z', 'updated_at': '2022-09-20T14:51:39Z', 'due_on': None, 'closed_at': None}\n", - "466 BA.2.75.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/467', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/467', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/467/labels', 'id': 8442616, 'node_id': 'MI_kwDOEGMSVc4AgNL4', 'number': 467, 'title': 'BA.5.2.23', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-20T17:35:57Z', 'updated_at': '2022-09-20T17:36:17Z', 'due_on': None, 'closed_at': None}\n", - "467 BA.5.2.23\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/468', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/468', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/468/labels', 'id': 8444241, 'node_id': 'MI_kwDOEGMSVc4AgNlR', 'number': 468, 'title': 'BE.1.2.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-21T07:03:11Z', 'updated_at': '2022-09-21T07:03:11Z', 'due_on': None, 'closed_at': None}\n", - "468 BE.1.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/469', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/469', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/469/labels', 'id': 8446509, 'node_id': 'MI_kwDOEGMSVc4AgOIt', 'number': 469, 'title': 'BR.2 BR.3 CA.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-21T18:25:07Z', 'updated_at': '2022-09-21T18:25:07Z', 'due_on': None, 'closed_at': None}\n", - "469 BR.2\n", - "469 BR.3\n", - "469 CA.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/470', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/470', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/470/labels', 'id': 8455466, 'node_id': 'MI_kwDOEGMSVc4AgQUq', 'number': 470, 'title': 'XBC', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-24T20:12:26Z', 'updated_at': '2022-09-24T20:12:47Z', 'due_on': None, 'closed_at': None}\n", - "470 XBC\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/471', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/471', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/471/labels', 'id': 8456361, 'node_id': 'MI_kwDOEGMSVc4AgQip', 'number': 471, 'title': 'BA.5.2.25', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-25T11:23:49Z', 'updated_at': '2022-09-25T11:25:21Z', 'due_on': None, 'closed_at': None}\n", - "471 BA.5.2.25\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/472', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/472', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/472/labels', 'id': 8480206, 'node_id': 'MI_kwDOEGMSVc4AgWXO', 'number': 472, 'title': 'BA.5.2.26 BA.5.2.27 BA.5.2.28', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T21:01:11Z', 'updated_at': '2022-09-29T21:01:11Z', 'due_on': None, 'closed_at': None}\n", - "472 BA.5.2.26\n", - "472 BA.5.2.27\n", - "472 BA.5.2.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/473', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/473', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/473/labels', 'id': 8480259, 'node_id': 'MI_kwDOEGMSVc4AgWYD', 'number': 473, 'title': 'BA.5.1.22 BA.5.1.23 BA.5.1.24 BA.5.1.25', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T21:21:54Z', 'updated_at': '2022-09-29T21:21:54Z', 'due_on': None, 'closed_at': None}\n", - "473 BA.5.1.22\n", - "473 BA.5.1.23\n", - "473 BA.5.1.24\n", - "473 BA.5.1.25\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/474', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/474', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/474/labels', 'id': 8480277, 'node_id': 'MI_kwDOEGMSVc4AgWYV', 'number': 474, 'title': 'BF.26', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T21:26:10Z', 'updated_at': '2022-09-29T21:26:16Z', 'due_on': None, 'closed_at': None}\n", - "474 BF.26\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/475', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/475', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/475/labels', 'id': 8480291, 'node_id': 'MI_kwDOEGMSVc4AgWYj', 'number': 475, 'title': 'BF.27', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T21:30:05Z', 'updated_at': '2022-09-29T21:30:05Z', 'due_on': None, 'closed_at': None}\n", - "475 BF.27\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/476', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/476', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/476/labels', 'id': 8480297, 'node_id': 'MI_kwDOEGMSVc4AgWYp', 'number': 476, 'title': 'BF.28', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T21:34:46Z', 'updated_at': '2022-09-29T21:34:46Z', 'due_on': None, 'closed_at': None}\n", - "476 BF.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/477', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/477', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/477/labels', 'id': 8480504, 'node_id': 'MI_kwDOEGMSVc4AgWb4', 'number': 477, 'title': 'BS.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T23:27:58Z', 'updated_at': '2022-09-29T23:27:58Z', 'due_on': None, 'closed_at': None}\n", - "477 BS.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/478', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/478', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/478/labels', 'id': 8480509, 'node_id': 'MI_kwDOEGMSVc4AgWb9', 'number': 478, 'title': 'BA.2.75.9 CB.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-29T23:28:39Z', 'updated_at': '2022-09-29T23:28:43Z', 'due_on': None, 'closed_at': None}\n", - "478 BA.2.75.9\n", - "478 CB.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/479', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/479', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/479/labels', 'id': 8482182, 'node_id': 'MI_kwDOEGMSVc4AgW2G', 'number': 479, 'title': 'BA.2.85', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-30T10:41:42Z', 'updated_at': '2022-09-30T10:42:08Z', 'due_on': None, 'closed_at': None}\n", - "479 BA.2.85\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/480', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/480', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/480/labels', 'id': 8482501, 'node_id': 'MI_kwDOEGMSVc4AgW7F', 'number': 480, 'title': 'BA.5.2.29', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-30T12:46:00Z', 'updated_at': '2022-09-30T12:48:17Z', 'due_on': None, 'closed_at': None}\n", - "480 BA.5.2.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/481', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/481', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/481/labels', 'id': 8483220, 'node_id': 'MI_kwDOEGMSVc4AgXGU', 'number': 481, 'title': 'BE.4 BE.4.1 BE.4.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-09-30T16:25:17Z', 'updated_at': '2022-09-30T16:25:17Z', 'due_on': None, 'closed_at': None}\n", - "481 BE.4\n", - "481 BE.4.1\n", - "481 BE.4.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/482', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/482', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/482/labels', 'id': 8484931, 'node_id': 'MI_kwDOEGMSVc4AgXhD', 'number': 482, 'title': 'BA.5.1.26', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-01T10:31:40Z', 'updated_at': '2022-10-01T10:31:40Z', 'due_on': None, 'closed_at': None}\n", - "482 BA.5.1.26\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/483', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/483', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/483/labels', 'id': 8490041, 'node_id': 'MI_kwDOEGMSVc4AgYw5', 'number': 483, 'title': 'CG.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-03T12:47:15Z', 'updated_at': '2022-10-03T12:48:33Z', 'due_on': None, 'closed_at': None}\n", - "483 CG.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/484', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/484', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/484/labels', 'id': 8494926, 'node_id': 'MI_kwDOEGMSVc4AgZ9O', 'number': 484, 'title': 'XBB.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-04T12:28:42Z', 'updated_at': '2022-10-04T12:28:42Z', 'due_on': None, 'closed_at': None}\n", - "484 XBB.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/485', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/485', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/485/labels', 'id': 8494937, 'node_id': 'MI_kwDOEGMSVc4AgZ9Z', 'number': 485, 'title': 'XBC.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-04T12:30:15Z', 'updated_at': '2022-10-04T12:30:15Z', 'due_on': None, 'closed_at': None}\n", - "485 XBC.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/486', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/486', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/486/labels', 'id': 8509362, 'node_id': 'MI_kwDOEGMSVc4Agdey', 'number': 486, 'title': 'BF.7.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-05T15:30:24Z', 'updated_at': '2022-10-05T15:30:39Z', 'due_on': None, 'closed_at': None}\n", - "486 BF.7.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/487', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/487', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/487/labels', 'id': 8517012, 'node_id': 'MI_kwDOEGMSVc4AgfWU', 'number': 487, 'title': 'BA.5.3.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-07T10:56:07Z', 'updated_at': '2022-10-07T10:57:25Z', 'due_on': None, 'closed_at': None}\n", - "487 BA.5.3.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/488', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/488', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/488/labels', 'id': 8517315, 'node_id': 'MI_kwDOEGMSVc4AgfbD', 'number': 488, 'title': 'BA.5.1.29', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-07T12:27:22Z', 'updated_at': '2022-10-07T12:28:21Z', 'due_on': None, 'closed_at': None}\n", - "488 BA.5.1.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/489', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/489', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/489/labels', 'id': 8528453, 'node_id': 'MI_kwDOEGMSVc4AgiJF', 'number': 489, 'title': 'BQ.1.8', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T14:44:28Z', 'updated_at': '2022-10-11T14:44:28Z', 'due_on': None, 'closed_at': None}\n", - "489 BQ.1.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/490', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/490', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/490/labels', 'id': 8528559, 'node_id': 'MI_kwDOEGMSVc4AgiKv', 'number': 490, 'title': 'BA.5.6.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T15:16:57Z', 'updated_at': '2022-10-11T22:15:43Z', 'due_on': None, 'closed_at': None}\n", - "490 BA.5.6.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/491', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/491', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/491/labels', 'id': 8528913, 'node_id': 'MI_kwDOEGMSVc4AgiQR', 'number': 491, 'title': 'BG.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T17:03:16Z', 'updated_at': '2022-10-11T17:06:52Z', 'due_on': None, 'closed_at': None}\n", - "491 BG.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/492', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/492', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/492/labels', 'id': 8529577, 'node_id': 'MI_kwDOEGMSVc4Agiap', 'number': 492, 'title': 'BA.4.6.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T20:45:58Z', 'updated_at': '2022-10-11T20:45:58Z', 'due_on': None, 'closed_at': None}\n", - "492 BA.4.6.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/493', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/493', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/493/labels', 'id': 8529610, 'node_id': 'MI_kwDOEGMSVc4AgibK', 'number': 493, 'title': 'BE.4.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T20:58:24Z', 'updated_at': '2022-10-11T20:58:24Z', 'due_on': None, 'closed_at': None}\n", - "493 BE.4.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/494', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/494', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/494/labels', 'id': 8529626, 'node_id': 'MI_kwDOEGMSVc4Agiba', 'number': 494, 'title': 'BA.4.6.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:04:47Z', 'updated_at': '2022-10-11T21:04:47Z', 'due_on': None, 'closed_at': None}\n", - "494 BA.4.6.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/495', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/495', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/495/labels', 'id': 8529647, 'node_id': 'MI_kwDOEGMSVc4Agibv', 'number': 495, 'title': 'CH.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:16:46Z', 'updated_at': '2022-10-11T21:16:46Z', 'due_on': None, 'closed_at': None}\n", - "495 CH.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/496', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/496', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/496/labels', 'id': 8529673, 'node_id': 'MI_kwDOEGMSVc4AgicJ', 'number': 496, 'title': 'CJ.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:25:47Z', 'updated_at': '2022-10-11T21:26:00Z', 'due_on': None, 'closed_at': None}\n", - "496 CJ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/497', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/497', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/497/labels', 'id': 8529723, 'node_id': 'MI_kwDOEGMSVc4Agic7', 'number': 497, 'title': 'BV.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:34:56Z', 'updated_at': '2022-10-11T21:35:00Z', 'due_on': None, 'closed_at': None}\n", - "497 BV.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/498', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/498', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/498/labels', 'id': 8529768, 'node_id': 'MI_kwDOEGMSVc4Agido', 'number': 498, 'title': 'CK.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:41:28Z', 'updated_at': '2022-10-20T19:29:27Z', 'due_on': None, 'closed_at': None}\n", - "498 CK.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/499', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/499', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/499/labels', 'id': 8529775, 'node_id': 'MI_kwDOEGMSVc4Agidv', 'number': 499, 'title': 'CL.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:47:03Z', 'updated_at': '2022-10-11T21:47:03Z', 'due_on': None, 'closed_at': None}\n", - "499 CL.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/500', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/500', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/500/labels', 'id': 8529797, 'node_id': 'MI_kwDOEGMSVc4AgieF', 'number': 500, 'title': 'CM.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T21:55:59Z', 'updated_at': '2022-10-11T21:55:59Z', 'due_on': None, 'closed_at': None}\n", - "500 CM.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/501', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/501', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/501/labels', 'id': 8529808, 'node_id': 'MI_kwDOEGMSVc4AgieQ', 'number': 501, 'title': 'BR.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T22:04:08Z', 'updated_at': '2022-10-11T22:04:08Z', 'due_on': None, 'closed_at': None}\n", - "501 BR.4\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/502', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/502', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/502/labels', 'id': 8529818, 'node_id': 'MI_kwDOEGMSVc4Agiea', 'number': 502, 'title': 'CN.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-11T22:08:53Z', 'updated_at': '2022-10-15T07:56:06Z', 'due_on': None, 'closed_at': None}\n", - "502 CN.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/503', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/503', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/503/labels', 'id': 8532505, 'node_id': 'MI_kwDOEGMSVc4AgjIZ', 'number': 503, 'title': 'BA.5.2.34', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-12T12:52:41Z', 'updated_at': '2022-10-12T12:52:58Z', 'due_on': None, 'closed_at': None}\n", - "503 BA.5.2.34\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/504', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/504', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/504/labels', 'id': 8532507, 'node_id': 'MI_kwDOEGMSVc4AgjIb', 'number': 504, 'title': 'XBD', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-12T12:53:29Z', 'updated_at': '2022-10-12T12:53:29Z', 'due_on': None, 'closed_at': None}\n", - "504 XBD\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/505', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/505', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/505/labels', 'id': 8533009, 'node_id': 'MI_kwDOEGMSVc4AgjQR', 'number': 505, 'title': 'BA.2.38.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-12T14:57:43Z', 'updated_at': '2022-10-12T14:57:54Z', 'due_on': None, 'closed_at': None}\n", - "505 BA.2.38.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/506', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/506', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/506/labels', 'id': 8533367, 'node_id': 'MI_kwDOEGMSVc4AgjV3', 'number': 506, 'title': 'BF.29', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-12T16:39:08Z', 'updated_at': '2022-10-12T16:39:23Z', 'due_on': None, 'closed_at': None}\n", - "506 BF.29\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/507', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/507', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/507/labels', 'id': 8537869, 'node_id': 'MI_kwDOEGMSVc4AgkcN', 'number': 507, 'title': 'BF.7.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-13T17:59:02Z', 'updated_at': '2022-10-13T17:59:02Z', 'due_on': None, 'closed_at': None}\n", - "507 BF.7.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/508', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/508', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/508/labels', 'id': 8543781, 'node_id': 'MI_kwDOEGMSVc4Agl4l', 'number': 508, 'title': 'BQ.1.10.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-15T01:33:22Z', 'updated_at': '2022-10-15T01:33:36Z', 'due_on': None, 'closed_at': None}\n", - "508 BQ.1.10.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/509', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/509', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/509/labels', 'id': 8545046, 'node_id': 'MI_kwDOEGMSVc4AgmMW', 'number': 509, 'title': 'BN.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-15T22:59:08Z', 'updated_at': '2022-10-15T22:59:08Z', 'due_on': None, 'closed_at': None}\n", - "509 BN.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/510', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/510', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/510/labels', 'id': 8545048, 'node_id': 'MI_kwDOEGMSVc4AgmMY', 'number': 510, 'title': 'CA.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-15T22:59:25Z', 'updated_at': '2022-10-15T22:59:45Z', 'due_on': None, 'closed_at': None}\n", - "510 CA.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/511', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/511', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/511/labels', 'id': 8545085, 'node_id': 'MI_kwDOEGMSVc4AgmM9', 'number': 511, 'title': 'XAY.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-15T23:49:20Z', 'updated_at': '2022-10-15T23:49:25Z', 'due_on': None, 'closed_at': None}\n", - "511 XAY.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/512', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/512', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/512/labels', 'id': 8549024, 'node_id': 'MI_kwDOEGMSVc4AgnKg', 'number': 512, 'title': 'BT.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-17T13:11:01Z', 'updated_at': '2022-10-17T13:11:14Z', 'due_on': None, 'closed_at': None}\n", - "512 BT.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/513', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/513', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/513/labels', 'id': 8549416, 'node_id': 'MI_kwDOEGMSVc4AgnQo', 'number': 513, 'title': 'BA.5.6.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-17T14:42:02Z', 'updated_at': '2022-10-17T14:42:20Z', 'due_on': None, 'closed_at': None}\n", - "513 BA.5.6.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/514', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/514', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/514/labels', 'id': 8550514, 'node_id': 'MI_kwDOEGMSVc4Agnhy', 'number': 514, 'title': 'BA.5.2.37', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-17T19:31:40Z', 'updated_at': '2022-10-17T19:32:31Z', 'due_on': None, 'closed_at': None}\n", - "514 BA.5.2.37\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/515', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/515', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/515/labels', 'id': 8557887, 'node_id': 'MI_kwDOEGMSVc4AgpU_', 'number': 515, 'title': 'BQ.1.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-19T11:56:05Z', 'updated_at': '2022-10-19T11:56:05Z', 'due_on': None, 'closed_at': None}\n", - "515 BQ.1.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/516', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/516', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/516/labels', 'id': 8563410, 'node_id': 'MI_kwDOEGMSVc4AgqrS', 'number': 516, 'title': 'BF.7.7', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-20T16:49:11Z', 'updated_at': '2022-10-20T16:49:11Z', 'due_on': None, 'closed_at': None}\n", - "516 BF.7.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/517', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/517', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/517/labels', 'id': 8563783, 'node_id': 'MI_kwDOEGMSVc4AgqxH', 'number': 517, 'title': 'BN.1.2.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-20T18:59:36Z', 'updated_at': '2022-10-20T18:59:42Z', 'due_on': None, 'closed_at': None}\n", - "517 BN.1.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/518', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/518', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/518/labels', 'id': 8563812, 'node_id': 'MI_kwDOEGMSVc4Agqxk', 'number': 518, 'title': 'XBB.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-20T19:08:30Z', 'updated_at': '2022-10-20T19:08:30Z', 'due_on': None, 'closed_at': None}\n", - "518 XBB.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/519', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/519', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/519/labels', 'id': 8563893, 'node_id': 'MI_kwDOEGMSVc4Agqy1', 'number': 519, 'title': 'CK.2 CK.2.1 CK.2.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-20T19:29:38Z', 'updated_at': '2022-10-20T19:29:38Z', 'due_on': None, 'closed_at': None}\n", - "519 CK.2\n", - "519 CK.2.1\n", - "519 CK.2.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/520', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/520', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/520/labels', 'id': 8566268, 'node_id': 'MI_kwDOEGMSVc4AgrX8', 'number': 520, 'title': 'CQ.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-21T09:12:35Z', 'updated_at': '2022-10-21T09:12:35Z', 'due_on': None, 'closed_at': None}\n", - "520 CQ.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/521', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/521', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/521/labels', 'id': 8566270, 'node_id': 'MI_kwDOEGMSVc4AgrX-', 'number': 521, 'title': 'CK.2.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-21T09:13:29Z', 'updated_at': '2022-10-21T09:13:29Z', 'due_on': None, 'closed_at': None}\n", - "521 CK.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/522', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/522', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/522/labels', 'id': 8569864, 'node_id': 'MI_kwDOEGMSVc4AgsQI', 'number': 522, 'title': 'XBE', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-22T15:12:25Z', 'updated_at': '2022-10-22T15:14:08Z', 'due_on': None, 'closed_at': None}\n", - "522 XBE\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/523', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/523', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/523/labels', 'id': 8571962, 'node_id': 'MI_kwDOEGMSVc4Agsw6', 'number': 523, 'title': 'BY.1.2.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-23T21:56:12Z', 'updated_at': '2022-10-23T21:56:12Z', 'due_on': None, 'closed_at': None}\n", - "523 BY.1.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/524', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/524', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/524/labels', 'id': 8578945, 'node_id': 'MI_kwDOEGMSVc4AgueB', 'number': 524, 'title': 'BA.5.2.36 CT.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-25T13:42:31Z', 'updated_at': '2022-10-25T13:42:31Z', 'due_on': None, 'closed_at': None}\n", - "524 BA.5.2.36\n", - "524 CT.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/525', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/525', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/525/labels', 'id': 8599996, 'node_id': 'MI_kwDOEGMSVc4Agzm8', 'number': 525, 'title': 'BN.1.3.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-31T17:05:29Z', 'updated_at': '2022-10-31T17:05:47Z', 'due_on': None, 'closed_at': None}\n", - "525 BN.1.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/526', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/526', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/526/labels', 'id': 8600776, 'node_id': 'MI_kwDOEGMSVc4AgzzI', 'number': 526, 'title': 'BF.7.4.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-10-31T20:41:16Z', 'updated_at': '2022-10-31T20:41:29Z', 'due_on': None, 'closed_at': None}\n", - "526 BF.7.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/527', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/527', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/527/labels', 'id': 8605072, 'node_id': 'MI_kwDOEGMSVc4Ag02Q', 'number': 527, 'title': 'BF.32', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-01T17:29:08Z', 'updated_at': '2022-11-01T17:29:46Z', 'due_on': None, 'closed_at': None}\n", - "527 BF.32\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/528', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/528', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/528/labels', 'id': 8605351, 'node_id': 'MI_kwDOEGMSVc4Ag06n', 'number': 528, 'title': 'CY.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-01T18:23:04Z', 'updated_at': '2022-11-01T18:24:17Z', 'due_on': None, 'closed_at': None}\n", - "528 CY.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/529', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/529', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/529/labels', 'id': 8605801, 'node_id': 'MI_kwDOEGMSVc4Ag1Bp', 'number': 529, 'title': 'BA.2.9.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-01T20:29:58Z', 'updated_at': '2022-11-01T20:31:26Z', 'due_on': None, 'closed_at': None}\n", - "529 BA.2.9.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/530', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/530', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/530/labels', 'id': 8608921, 'node_id': 'MI_kwDOEGMSVc4Ag1yZ', 'number': 530, 'title': 'BL.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-02T14:20:49Z', 'updated_at': '2022-11-02T14:21:22Z', 'due_on': None, 'closed_at': None}\n", - "530 BL.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/531', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/531', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/531/labels', 'id': 8610864, 'node_id': 'MI_kwDOEGMSVc4Ag2Qw', 'number': 531, 'title': 'XAY.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-02T23:44:37Z', 'updated_at': '2022-11-02T23:44:50Z', 'due_on': None, 'closed_at': None}\n", - "531 XAY.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/532', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/532', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/532/labels', 'id': 8614772, 'node_id': 'MI_kwDOEGMSVc4Ag3N0', 'number': 532, 'title': 'XBF', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-03T21:55:19Z', 'updated_at': '2022-11-03T21:55:19Z', 'due_on': None, 'closed_at': None}\n", - "532 XBF\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/533', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/533', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/533/labels', 'id': 8615339, 'node_id': 'MI_kwDOEGMSVc4Ag3Wr', 'number': 533, 'title': 'DD.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:00:45Z', 'updated_at': '2022-11-04T03:00:45Z', 'due_on': None, 'closed_at': None}\n", - "533 DD.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/534', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/534', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/534/labels', 'id': 8615354, 'node_id': 'MI_kwDOEGMSVc4Ag3W6', 'number': 534, 'title': 'BE.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:05:29Z', 'updated_at': '2022-11-04T03:05:45Z', 'due_on': None, 'closed_at': None}\n", - "534 BE.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/535', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/535', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/535/labels', 'id': 8615378, 'node_id': 'MI_kwDOEGMSVc4Ag3XS', 'number': 535, 'title': 'BE.7', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:14:24Z', 'updated_at': '2022-11-04T03:14:24Z', 'due_on': None, 'closed_at': None}\n", - "535 BE.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/536', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/536', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/536/labels', 'id': 8615381, 'node_id': 'MI_kwDOEGMSVc4Ag3XV', 'number': 536, 'title': 'BE.8', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:16:52Z', 'updated_at': '2022-11-04T03:16:52Z', 'due_on': None, 'closed_at': None}\n", - "536 BE.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/537', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/537', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/537/labels', 'id': 8615397, 'node_id': 'MI_kwDOEGMSVc4Ag3Xl', 'number': 537, 'title': 'BA.5.11', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:22:21Z', 'updated_at': '2022-11-04T03:22:21Z', 'due_on': None, 'closed_at': None}\n", - "537 BA.5.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/538', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/538', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/538/labels', 'id': 8615406, 'node_id': 'MI_kwDOEGMSVc4Ag3Xu', 'number': 538, 'title': 'BA.5.2.39', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:27:48Z', 'updated_at': '2022-11-04T03:28:07Z', 'due_on': None, 'closed_at': None}\n", - "538 BA.5.2.39\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/539', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/539', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/539/labels', 'id': 8615409, 'node_id': 'MI_kwDOEGMSVc4Ag3Xx', 'number': 539, 'title': 'DB.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:29:18Z', 'updated_at': '2022-11-05T10:38:53Z', 'due_on': None, 'closed_at': None}\n", - "539 DB.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/540', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/540', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/540/labels', 'id': 8615410, 'node_id': 'MI_kwDOEGMSVc4Ag3Xy', 'number': 540, 'title': 'BA.5.2.38 DA.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:30:04Z', 'updated_at': '2022-11-04T03:30:06Z', 'due_on': None, 'closed_at': None}\n", - "540 BA.5.2.38\n", - "540 DA.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/541', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/541', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/541/labels', 'id': 8615416, 'node_id': 'MI_kwDOEGMSVc4Ag3X4', 'number': 541, 'title': 'BQ.1.24', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-04T03:33:19Z', 'updated_at': '2022-11-04T03:33:21Z', 'due_on': None, 'closed_at': None}\n", - "541 BQ.1.24\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/542', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/542', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/542/labels', 'id': 8621481, 'node_id': 'MI_kwDOEGMSVc4Ag42p', 'number': 542, 'title': 'DF.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-06T11:21:07Z', 'updated_at': '2022-11-06T11:21:23Z', 'due_on': None, 'closed_at': None}\n", - "542 DF.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/543', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/543', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/543/labels', 'id': 8632183, 'node_id': 'MI_kwDOEGMSVc4Ag7d3', 'number': 543, 'title': 'BF.34', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-08T16:57:21Z', 'updated_at': '2022-11-08T16:57:38Z', 'due_on': None, 'closed_at': None}\n", - "543 BF.34\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/544', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/544', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/544/labels', 'id': 8633953, 'node_id': 'MI_kwDOEGMSVc4Ag75h', 'number': 544, 'title': 'DG.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-09T00:14:22Z', 'updated_at': '2022-11-09T00:18:52Z', 'due_on': None, 'closed_at': None}\n", - "544 DG.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/545', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/545', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/545/labels', 'id': 8637717, 'node_id': 'MI_kwDOEGMSVc4Ag80V', 'number': 545, 'title': 'DH.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-09T15:07:49Z', 'updated_at': '2022-11-09T15:08:13Z', 'due_on': None, 'closed_at': None}\n", - "545 DH.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/546', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/546', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/546/labels', 'id': 8638164, 'node_id': 'MI_kwDOEGMSVc4Ag87U', 'number': 546, 'title': 'BR.2.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-09T16:53:45Z', 'updated_at': '2022-11-09T16:54:02Z', 'due_on': None, 'closed_at': None}\n", - "546 BR.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/547', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/547', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/547/labels', 'id': 8638456, 'node_id': 'MI_kwDOEGMSVc4Ag8_4', 'number': 547, 'title': 'CA.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-09T18:07:17Z', 'updated_at': '2022-11-09T18:07:25Z', 'due_on': None, 'closed_at': None}\n", - "547 CA.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/548', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/548', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/548/labels', 'id': 8648004, 'node_id': 'MI_kwDOEGMSVc4Ag_VE', 'number': 548, 'title': 'BE.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-12T15:13:10Z', 'updated_at': '2022-11-12T15:13:35Z', 'due_on': None, 'closed_at': None}\n", - "548 BE.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/549', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/549', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/549/labels', 'id': 8648049, 'node_id': 'MI_kwDOEGMSVc4Ag_Vx', 'number': 549, 'title': 'BN.1.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-12T15:50:04Z', 'updated_at': '2022-11-12T16:08:34Z', 'due_on': None, 'closed_at': None}\n", - "549 BN.1.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/550', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/550', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/550/labels', 'id': 8648136, 'node_id': 'MI_kwDOEGMSVc4Ag_XI', 'number': 550, 'title': 'BQ.1.26', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-12T17:03:46Z', 'updated_at': '2022-11-12T17:04:13Z', 'due_on': None, 'closed_at': None}\n", - "550 BQ.1.26\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/551', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/551', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/551/labels', 'id': 8649160, 'node_id': 'MI_kwDOEGMSVc4Ag_nI', 'number': 551, 'title': 'BF.7.5.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-13T13:03:46Z', 'updated_at': '2022-11-13T13:04:02Z', 'due_on': None, 'closed_at': None}\n", - "551 BF.7.5.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/552', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/552', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/552/labels', 'id': 8649285, 'node_id': 'MI_kwDOEGMSVc4Ag_pF', 'number': 552, 'title': 'BA.5.2.41', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-13T14:55:55Z', 'updated_at': '2022-11-13T14:56:13Z', 'due_on': None, 'closed_at': None}\n", - "552 BA.5.2.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/553', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/553', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/553/labels', 'id': 8653132, 'node_id': 'MI_kwDOEGMSVc4AhAlM', 'number': 553, 'title': 'CK.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-14T16:13:52Z', 'updated_at': '2022-11-14T16:14:15Z', 'due_on': None, 'closed_at': None}\n", - "553 CK.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/554', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/554', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/554/labels', 'id': 8653393, 'node_id': 'MI_kwDOEGMSVc4AhApR', 'number': 554, 'title': 'XBG', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-14T17:35:23Z', 'updated_at': '2022-11-14T17:35:58Z', 'due_on': None, 'closed_at': None}\n", - "554 XBG\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/555', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/555', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/555/labels', 'id': 8656984, 'node_id': 'MI_kwDOEGMSVc4AhBhY', 'number': 555, 'title': 'BA.5.1.31', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-15T15:04:49Z', 'updated_at': '2022-11-15T15:05:01Z', 'due_on': None, 'closed_at': None}\n", - "555 BA.5.1.31\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/556', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/556', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/556/labels', 'id': 8662198, 'node_id': 'MI_kwDOEGMSVc4AhCy2', 'number': 556, 'title': 'XBH', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-16T17:34:26Z', 'updated_at': '2022-11-16T17:34:46Z', 'due_on': None, 'closed_at': None}\n", - "556 XBH\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/557', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/557', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/557/labels', 'id': 8681203, 'node_id': 'MI_kwDOEGMSVc4AhHbz', 'number': 557, 'title': 'CM.2.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-22T16:41:08Z', 'updated_at': '2022-11-22T16:41:08Z', 'due_on': None, 'closed_at': None}\n", - "557 CM.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/558', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/558', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/558/labels', 'id': 8681206, 'node_id': 'MI_kwDOEGMSVc4AhHb2', 'number': 558, 'title': 'BW.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-22T16:43:27Z', 'updated_at': '2022-11-22T16:43:42Z', 'due_on': None, 'closed_at': None}\n", - "558 BW.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/559', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/559', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/559/labels', 'id': 8684915, 'node_id': 'MI_kwDOEGMSVc4AhIVz', 'number': 559, 'title': 'DJ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-23T16:04:50Z', 'updated_at': '2022-11-23T16:27:27Z', 'due_on': None, 'closed_at': None}\n", - "559 DJ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/560', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/560', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/560/labels', 'id': 8685811, 'node_id': 'MI_kwDOEGMSVc4AhIjz', 'number': 560, 'title': 'BA.5.2.42', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-23T20:29:15Z', 'updated_at': '2022-11-23T20:30:38Z', 'due_on': None, 'closed_at': None}\n", - "560 BA.5.2.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/561', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/561', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/561/labels', 'id': 8692062, 'node_id': 'MI_kwDOEGMSVc4AhKFe', 'number': 561, 'title': 'XBB.1.4.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-25T16:47:51Z', 'updated_at': '2022-11-25T16:48:04Z', 'due_on': None, 'closed_at': None}\n", - "561 XBB.1.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/562', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/562', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/562/labels', 'id': 8693444, 'node_id': 'MI_kwDOEGMSVc4AhKbE', 'number': 562, 'title': 'BA.5.2.43', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-26T16:14:25Z', 'updated_at': '2022-11-26T16:15:33Z', 'due_on': None, 'closed_at': None}\n", - "562 BA.5.2.43\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/563', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/563', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/563/labels', 'id': 8698396, 'node_id': 'MI_kwDOEGMSVc4AhLoc', 'number': 563, 'title': 'BN.1.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-28T15:14:02Z', 'updated_at': '2022-11-28T15:14:23Z', 'due_on': None, 'closed_at': None}\n", - "563 BN.1.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/564', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/564', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/564/labels', 'id': 8699382, 'node_id': 'MI_kwDOEGMSVc4AhL32', 'number': 564, 'title': 'BQ.1.1.25', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-11-28T18:54:50Z', 'updated_at': '2022-12-13T17:55:37Z', 'due_on': None, 'closed_at': None}\n", - "564 BQ.1.1.25\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/565', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/565', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/565/labels', 'id': 8711230, 'node_id': 'MI_kwDOEGMSVc4AhOw-', 'number': 565, 'title': 'XBJ', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-01T17:36:31Z', 'updated_at': '2022-12-01T17:36:31Z', 'due_on': None, 'closed_at': None}\n", - "565 XBJ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/566', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/566', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/566/labels', 'id': 8711277, 'node_id': 'MI_kwDOEGMSVc4AhOxt', 'number': 566, 'title': 'CH.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-01T18:04:11Z', 'updated_at': '2022-12-01T18:04:12Z', 'due_on': None, 'closed_at': None}\n", - "566 CH.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/567', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/567', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/567/labels', 'id': 8716607, 'node_id': 'MI_kwDOEGMSVc4AhQE_', 'number': 567, 'title': 'BA.5.2.45', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-03T15:51:32Z', 'updated_at': '2022-12-03T15:51:58Z', 'due_on': None, 'closed_at': None}\n", - "567 BA.5.2.45\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/568', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/568', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/568/labels', 'id': 8718030, 'node_id': 'MI_kwDOEGMSVc4AhQbO', 'number': 568, 'title': 'BQ.1.26.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-04T15:29:42Z', 'updated_at': '2022-12-04T15:30:04Z', 'due_on': None, 'closed_at': None}\n", - "568 BQ.1.26.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/569', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/569', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/569/labels', 'id': 8723390, 'node_id': 'MI_kwDOEGMSVc4AhRu-', 'number': 569, 'title': 'CV.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-05T23:24:51Z', 'updated_at': '2022-12-05T23:24:51Z', 'due_on': None, 'closed_at': None}\n", - "569 CV.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/570', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/570', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/570/labels', 'id': 8747641, 'node_id': 'MI_kwDOEGMSVc4AhXp5', 'number': 570, 'title': 'DJ.1.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-10T12:01:55Z', 'updated_at': '2022-12-10T12:02:09Z', 'due_on': None, 'closed_at': None}\n", - "570 DJ.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/571', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/571', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/571/labels', 'id': 8764710, 'node_id': 'MI_kwDOEGMSVc4Ahb0m', 'number': 571, 'title': 'CM.5.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2022-12-14T23:16:31Z', 'updated_at': '2022-12-14T23:16:45Z', 'due_on': None, 'closed_at': None}\n", - "571 CM.5.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/572', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/572', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/572/labels', 'id': 8764711, 'node_id': 'MI_kwDOEGMSVc4Ahb0n', 'number': 572, 'title': 'CM.5.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-14T23:16:49Z', 'updated_at': '2022-12-14T23:16:49Z', 'due_on': None, 'closed_at': None}\n", - "572 CM.5.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/573', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/573', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/573/labels', 'id': 8764752, 'node_id': 'MI_kwDOEGMSVc4Ahb1Q', 'number': 573, 'title': 'CN.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-14T23:50:33Z', 'updated_at': '2022-12-14T23:50:33Z', 'due_on': None, 'closed_at': None}\n", - "573 CN.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/574', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/574', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/574/labels', 'id': 8764807, 'node_id': 'MI_kwDOEGMSVc4Ahb2H', 'number': 574, 'title': 'CJ.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T00:10:55Z', 'updated_at': '2022-12-15T00:11:45Z', 'due_on': None, 'closed_at': None}\n", - "574 CJ.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/575', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/575', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/575/labels', 'id': 8764828, 'node_id': 'MI_kwDOEGMSVc4Ahb2c', 'number': 575, 'title': 'BE.10', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T00:28:48Z', 'updated_at': '2022-12-15T00:28:49Z', 'due_on': None, 'closed_at': None}\n", - "575 BE.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/576', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/576', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/576/labels', 'id': 8764851, 'node_id': 'MI_kwDOEGMSVc4Ahb2z', 'number': 576, 'title': 'XBK', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T00:45:21Z', 'updated_at': '2022-12-15T00:45:21Z', 'due_on': None, 'closed_at': None}\n", - "576 XBK\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/577', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/577', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/577/labels', 'id': 8764860, 'node_id': 'MI_kwDOEGMSVc4Ahb28', 'number': 577, 'title': 'CH.3.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T00:51:29Z', 'updated_at': '2022-12-15T00:51:29Z', 'due_on': None, 'closed_at': None}\n", - "577 CH.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/578', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/578', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/578/labels', 'id': 8764864, 'node_id': 'MI_kwDOEGMSVc4Ahb3A', 'number': 578, 'title': 'CH.1.1.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T00:54:27Z', 'updated_at': '2022-12-15T15:09:16Z', 'due_on': None, 'closed_at': None}\n", - "578 CH.1.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/579', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/579', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/579/labels', 'id': 8768861, 'node_id': 'MI_kwDOEGMSVc4Ahc1d', 'number': 579, 'title': 'XBB.1.6', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-15T23:46:12Z', 'updated_at': '2022-12-15T23:46:12Z', 'due_on': None, 'closed_at': None}\n", - "579 XBB.1.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/580', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/580', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/580/labels', 'id': 8771568, 'node_id': 'MI_kwDOEGMSVc4Ahdfw', 'number': 580, 'title': 'CR.1.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-16T14:30:32Z', 'updated_at': '2022-12-16T14:30:48Z', 'due_on': None, 'closed_at': None}\n", - "580 CR.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/581', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/581', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/581/labels', 'id': 8775195, 'node_id': 'MI_kwDOEGMSVc4AheYb', 'number': 581, 'title': 'BF.10.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-18T11:35:12Z', 'updated_at': '2022-12-18T11:35:33Z', 'due_on': None, 'closed_at': None}\n", - "581 BF.10.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/582', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/582', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/582/labels', 'id': 8785294, 'node_id': 'MI_kwDOEGMSVc4Ahg2O', 'number': 582, 'title': 'BQ.1.25.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-21T13:12:06Z', 'updated_at': '2022-12-21T13:12:38Z', 'due_on': None, 'closed_at': None}\n", - "582 BQ.1.25.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/583', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/583', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/583/labels', 'id': 8785533, 'node_id': 'MI_kwDOEGMSVc4Ahg59', 'number': 583, 'title': 'BN.1.3.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-21T14:11:59Z', 'updated_at': '2022-12-21T14:12:12Z', 'due_on': None, 'closed_at': None}\n", - "583 BN.1.3.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/584', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/584', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/584/labels', 'id': 8793763, 'node_id': 'MI_kwDOEGMSVc4Ahi6j', 'number': 584, 'title': 'DJ.1.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-23T15:01:24Z', 'updated_at': '2022-12-23T15:01:41Z', 'due_on': None, 'closed_at': None}\n", - "584 DJ.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/585', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/585', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/585/labels', 'id': 8796075, 'node_id': 'MI_kwDOEGMSVc4Ahjer', 'number': 585, 'title': 'DN.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-25T11:32:38Z', 'updated_at': '2022-12-25T11:32:54Z', 'due_on': None, 'closed_at': None}\n", - "585 DN.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/586', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/586', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/586/labels', 'id': 8796190, 'node_id': 'MI_kwDOEGMSVc4Ahjge', 'number': 586, 'title': 'BQ.1.13.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-25T14:38:21Z', 'updated_at': '2022-12-25T14:38:33Z', 'due_on': None, 'closed_at': None}\n", - "586 BQ.1.13.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/587', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/587', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/587/labels', 'id': 8799994, 'node_id': 'MI_kwDOEGMSVc4Ahkb6', 'number': 587, 'title': 'BF.5.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-27T14:00:37Z', 'updated_at': '2022-12-27T14:01:48Z', 'due_on': None, 'closed_at': None}\n", - "587 BF.5.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/588', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/588', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/588/labels', 'id': 8800712, 'node_id': 'MI_kwDOEGMSVc4AhknI', 'number': 588, 'title': 'BF.5.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-27T21:16:44Z', 'updated_at': '2022-12-27T21:17:04Z', 'due_on': None, 'closed_at': None}\n", - "588 BF.5.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/589', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/589', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/589/labels', 'id': 8805160, 'node_id': 'MI_kwDOEGMSVc4Ahlso', 'number': 589, 'title': 'CK.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-29T16:07:54Z', 'updated_at': '2022-12-29T16:08:05Z', 'due_on': None, 'closed_at': None}\n", - "589 CK.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/590', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/590', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/590/labels', 'id': 8808556, 'node_id': 'MI_kwDOEGMSVc4Ahmhs', 'number': 590, 'title': 'BA.5.2.46', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-30T16:52:21Z', 'updated_at': '2022-12-30T16:52:40Z', 'due_on': None, 'closed_at': None}\n", - "590 BA.5.2.46\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/591', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/591', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/591/labels', 'id': 8809646, 'node_id': 'MI_kwDOEGMSVc4Ahmyu', 'number': 591, 'title': 'BQ.1.28', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-31T15:10:57Z', 'updated_at': '2022-12-31T15:12:11Z', 'due_on': None, 'closed_at': None}\n", - "591 BQ.1.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/592', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/592', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/592/labels', 'id': 8809728, 'node_id': 'MI_kwDOEGMSVc4Ahm0A', 'number': 592, 'title': 'BQ.1.1.32', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2022-12-31T17:03:14Z', 'updated_at': '2022-12-31T17:03:45Z', 'due_on': None, 'closed_at': None}\n", - "592 BQ.1.1.32\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/593', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/593', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/593/labels', 'id': 8810401, 'node_id': 'MI_kwDOEGMSVc4Ahm-h', 'number': 593, 'title': 'DF.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-01T11:51:28Z', 'updated_at': '2023-01-01T11:52:02Z', 'due_on': None, 'closed_at': None}\n", - "593 DF.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/594', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/594', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/594/labels', 'id': 8811013, 'node_id': 'MI_kwDOEGMSVc4AhnIF', 'number': 594, 'title': 'BA.5.2.47', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-01T16:14:02Z', 'updated_at': '2023-01-01T16:15:30Z', 'due_on': None, 'closed_at': None}\n", - "594 BA.5.2.47\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/595', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/595', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/595/labels', 'id': 8824024, 'node_id': 'MI_kwDOEGMSVc4AhqTY', 'number': 595, 'title': 'XBB.1.5', 'description': None, 'creator': {'login': 'thomasppeacock', 'id': 79373149, 'node_id': 'MDQ6VXNlcjc5MzczMTQ5', 'avatar_url': 'https://avatars.githubusercontent.com/u/79373149?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/thomasppeacock', 'html_url': 'https://github.com/thomasppeacock', 'followers_url': 'https://api.github.com/users/thomasppeacock/followers', 'following_url': 'https://api.github.com/users/thomasppeacock/following{/other_user}', 'gists_url': 'https://api.github.com/users/thomasppeacock/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/thomasppeacock/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/thomasppeacock/subscriptions', 'organizations_url': 'https://api.github.com/users/thomasppeacock/orgs', 'repos_url': 'https://api.github.com/users/thomasppeacock/repos', 'events_url': 'https://api.github.com/users/thomasppeacock/events{/privacy}', 'received_events_url': 'https://api.github.com/users/thomasppeacock/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-01-05T13:49:19Z', 'updated_at': '2023-01-31T13:34:11Z', 'due_on': None, 'closed_at': None}\n", - "595 XBB.1.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/596', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/596', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/596/labels', 'id': 8828673, 'node_id': 'MI_kwDOEGMSVc4AhrcB', 'number': 596, 'title': 'BF.7.14', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-06T17:31:56Z', 'updated_at': '2023-01-06T17:32:28Z', 'due_on': None, 'closed_at': None}\n", - "596 BF.7.14\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/597', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/597', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/597/labels', 'id': 8828863, 'node_id': 'MI_kwDOEGMSVc4Ahre_', 'number': 597, 'title': 'BA.5.2.48', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-06T18:57:29Z', 'updated_at': '2023-01-06T18:57:47Z', 'due_on': None, 'closed_at': None}\n", - "597 BA.5.2.48\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/598', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/598', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/598/labels', 'id': 8830317, 'node_id': 'MI_kwDOEGMSVc4Ahr1t', 'number': 598, 'title': 'XBB.1.8', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-07T11:18:22Z', 'updated_at': '2023-01-07T11:19:35Z', 'due_on': None, 'closed_at': None}\n", - "598 XBB.1.8\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/599', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/599', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/599/labels', 'id': 8830344, 'node_id': 'MI_kwDOEGMSVc4Ahr2I', 'number': 599, 'title': 'BL.6', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-07T11:57:09Z', 'updated_at': '2023-01-07T11:57:09Z', 'due_on': None, 'closed_at': None}\n", - "599 BL.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/600', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/600', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/600/labels', 'id': 8830397, 'node_id': 'MI_kwDOEGMSVc4Ahr29', 'number': 600, 'title': 'CH.1.1.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-07T12:22:34Z', 'updated_at': '2023-01-07T12:22:34Z', 'due_on': None, 'closed_at': None}\n", - "600 CH.1.1.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/601', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/601', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/601/labels', 'id': 8832635, 'node_id': 'MI_kwDOEGMSVc4AhsZ7', 'number': 601, 'title': 'BF.7.15', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T01:54:02Z', 'updated_at': '2023-01-09T01:54:03Z', 'due_on': None, 'closed_at': None}\n", - "601 BF.7.15\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/602', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/602', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/602/labels', 'id': 8832707, 'node_id': 'MI_kwDOEGMSVc4AhsbD', 'number': 602, 'title': 'XBL', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T02:32:55Z', 'updated_at': '2023-01-09T02:34:29Z', 'due_on': None, 'closed_at': None}\n", - "602 XBL\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/603', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/603', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/603/labels', 'id': 8832750, 'node_id': 'MI_kwDOEGMSVc4Ahsbu', 'number': 603, 'title': 'CM.11', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T02:39:25Z', 'updated_at': '2023-01-09T02:39:42Z', 'due_on': None, 'closed_at': None}\n", - "603 CM.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/604', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/604', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/604/labels', 'id': 8832795, 'node_id': 'MI_kwDOEGMSVc4Ahscb', 'number': 604, 'title': 'DT.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T02:52:06Z', 'updated_at': '2023-01-09T02:52:06Z', 'due_on': None, 'closed_at': None}\n", - "604 DT.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/605', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/605', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/605/labels', 'id': 8832821, 'node_id': 'MI_kwDOEGMSVc4Ahsc1', 'number': 605, 'title': 'BQ.1.1.34', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:07:25Z', 'updated_at': '2023-01-09T03:07:25Z', 'due_on': None, 'closed_at': None}\n", - "605 BQ.1.1.34\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/606', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/606', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/606/labels', 'id': 8832833, 'node_id': 'MI_kwDOEGMSVc4AhsdB', 'number': 606, 'title': 'CM.12', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:18:03Z', 'updated_at': '2023-01-09T03:18:03Z', 'due_on': None, 'closed_at': None}\n", - "606 CM.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/607', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/607', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/607/labels', 'id': 8832837, 'node_id': 'MI_kwDOEGMSVc4AhsdF', 'number': 607, 'title': 'CK.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:22:04Z', 'updated_at': '2023-01-09T03:22:14Z', 'due_on': None, 'closed_at': None}\n", - "607 CK.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/608', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/608', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/608/labels', 'id': 8832923, 'node_id': 'MI_kwDOEGMSVc4Ahseb', 'number': 608, 'title': 'BA.2.3.22', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:30:27Z', 'updated_at': '2023-01-09T03:30:27Z', 'due_on': None, 'closed_at': None}\n", - "608 BA.2.3.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/609', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/609', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/609/labels', 'id': 8832940, 'node_id': 'MI_kwDOEGMSVc4Ahses', 'number': 609, 'title': 'xbm', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-01-09T03:40:44Z', 'updated_at': '2023-01-09T03:40:58Z', 'due_on': None, 'closed_at': None}\n", - "609 xbm\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/610', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/610', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/610/labels', 'id': 8832941, 'node_id': 'MI_kwDOEGMSVc4Ahset', 'number': 610, 'title': 'XBM', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:40:58Z', 'updated_at': '2023-01-09T03:40:58Z', 'due_on': None, 'closed_at': None}\n", - "610 XBM\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/611', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/611', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/611/labels', 'id': 8832948, 'node_id': 'MI_kwDOEGMSVc4Ahse0', 'number': 611, 'title': 'BM.1.1.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T03:50:25Z', 'updated_at': '2023-01-09T03:58:13Z', 'due_on': None, 'closed_at': None}\n", - "611 BM.1.1.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/612', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/612', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/612/labels', 'id': 8832954, 'node_id': 'MI_kwDOEGMSVc4Ahse6', 'number': 612, 'title': 'BN.1.4.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 1, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-01-09T03:57:02Z', 'updated_at': '2023-01-09T03:57:02Z', 'due_on': None, 'closed_at': None}\n", - "612 BN.1.4.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/613', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/613', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/613/labels', 'id': 8833038, 'node_id': 'MI_kwDOEGMSVc4AhsgO', 'number': 613, 'title': 'BA.5.2.49', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-09T04:51:29Z', 'updated_at': '2023-01-09T04:51:29Z', 'due_on': None, 'closed_at': None}\n", - "613 BA.5.2.49\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/614', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/614', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/614/labels', 'id': 8849599, 'node_id': 'MI_kwDOEGMSVc4Ahwi_', 'number': 614, 'title': 'DU.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-12T21:47:51Z', 'updated_at': '2023-01-12T21:48:02Z', 'due_on': None, 'closed_at': None}\n", - "614 DU.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/615', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/615', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/615/labels', 'id': 8851660, 'node_id': 'MI_kwDOEGMSVc4AhxDM', 'number': 615, 'title': 'CH.1.1.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-13T11:36:37Z', 'updated_at': '2023-01-13T11:36:47Z', 'due_on': None, 'closed_at': None}\n", - "615 CH.1.1.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/616', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/616', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/616/labels', 'id': 8854825, 'node_id': 'MI_kwDOEGMSVc4Ahx0p', 'number': 616, 'title': 'XBN', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-14T16:30:29Z', 'updated_at': '2023-01-14T16:30:41Z', 'due_on': None, 'closed_at': None}\n", - "616 XBN\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/617', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/617', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/617/labels', 'id': 8856672, 'node_id': 'MI_kwDOEGMSVc4AhyRg', 'number': 617, 'title': 'BA.5.1.32', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-15T16:05:07Z', 'updated_at': '2023-01-15T16:05:18Z', 'due_on': None, 'closed_at': None}\n", - "617 BA.5.1.32\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/618', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/618', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/618/labels', 'id': 8950105, 'node_id': 'MI_kwDOEGMSVc4AiJFZ', 'number': 618, 'title': 'BA.5.2.50', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-21T13:29:48Z', 'updated_at': '2023-01-21T13:30:08Z', 'due_on': None, 'closed_at': None}\n", - "618 BA.5.2.50\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/619', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/619', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/619/labels', 'id': 8955291, 'node_id': 'MI_kwDOEGMSVc4AiKWb', 'number': 619, 'title': 'DW.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-23T15:33:48Z', 'updated_at': '2023-01-23T15:33:57Z', 'due_on': None, 'closed_at': None}\n", - "619 DW.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/620', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/620', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/620/labels', 'id': 8955604, 'node_id': 'MI_kwDOEGMSVc4AiKbU', 'number': 620, 'title': 'BQ.1.1.37', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-23T16:36:23Z', 'updated_at': '2023-01-23T16:37:12Z', 'due_on': None, 'closed_at': None}\n", - "620 BQ.1.1.37\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/621', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/621', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/621/labels', 'id': 8961164, 'node_id': 'MI_kwDOEGMSVc4AiLyM', 'number': 621, 'title': 'BQ.1.1.38', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-24T17:19:36Z', 'updated_at': '2023-01-24T17:19:52Z', 'due_on': None, 'closed_at': None}\n", - "621 BQ.1.1.38\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/622', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/622', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/622/labels', 'id': 8966254, 'node_id': 'MI_kwDOEGMSVc4AiNBu', 'number': 622, 'title': 'BF.7.14.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-25T15:31:50Z', 'updated_at': '2023-01-25T15:32:28Z', 'due_on': None, 'closed_at': None}\n", - "622 BF.7.14.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/623', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/623', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/623/labels', 'id': 8970951, 'node_id': 'MI_kwDOEGMSVc4AiOLH', 'number': 623, 'title': 'BQ.1.11.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-26T16:24:48Z', 'updated_at': '2023-01-26T16:25:25Z', 'due_on': None, 'closed_at': None}\n", - "623 BQ.1.11.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/624', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/624', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/624/labels', 'id': 8974764, 'node_id': 'MI_kwDOEGMSVc4AiPGs', 'number': 624, 'title': 'BR.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-27T15:26:45Z', 'updated_at': '2023-01-27T15:27:02Z', 'due_on': None, 'closed_at': None}\n", - "624 BR.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/625', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/625', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/625/labels', 'id': 8975078, 'node_id': 'MI_kwDOEGMSVc4AiPLm', 'number': 625, 'title': 'BQ.1.1.39', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-27T17:00:32Z', 'updated_at': '2023-01-27T17:01:18Z', 'due_on': None, 'closed_at': None}\n", - "625 BQ.1.1.39\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/626', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/626', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/626/labels', 'id': 8977001, 'node_id': 'MI_kwDOEGMSVc4AiPpp', 'number': 626, 'title': 'BQ.1.2.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-28T15:07:26Z', 'updated_at': '2023-01-28T15:08:01Z', 'due_on': None, 'closed_at': None}\n", - "626 BQ.1.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/627', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/627', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/627/labels', 'id': 8977555, 'node_id': 'MI_kwDOEGMSVc4AiPyT', 'number': 627, 'title': 'BF.7.14.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-28T23:51:23Z', 'updated_at': '2023-01-28T23:51:34Z', 'due_on': None, 'closed_at': None}\n", - "627 BF.7.14.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/628', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/628', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/628/labels', 'id': 8977563, 'node_id': 'MI_kwDOEGMSVc4AiPyb', 'number': 628, 'title': 'BQ.1.1.45', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-29T00:02:06Z', 'updated_at': '2023-01-29T00:02:19Z', 'due_on': None, 'closed_at': None}\n", - "628 BQ.1.1.45\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/629', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/629', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/629/labels', 'id': 8977565, 'node_id': 'MI_kwDOEGMSVc4AiPyd', 'number': 629, 'title': 'DY.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-29T00:02:47Z', 'updated_at': '2023-01-29T00:02:54Z', 'due_on': None, 'closed_at': None}\n", - "629 DY.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/630', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/630', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/630/labels', 'id': 8978761, 'node_id': 'MI_kwDOEGMSVc4AiQFJ', 'number': 630, 'title': 'BQ.1.1.41', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-29T19:04:45Z', 'updated_at': '2023-01-29T19:04:45Z', 'due_on': None, 'closed_at': None}\n", - "630 BQ.1.1.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/631', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/631', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/631/labels', 'id': 8983079, 'node_id': 'MI_kwDOEGMSVc4AiRIn', 'number': 631, 'title': 'XBP', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-30T18:36:12Z', 'updated_at': '2023-01-30T18:36:36Z', 'due_on': None, 'closed_at': None}\n", - "631 XBP\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/632', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/632', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/632/labels', 'id': 8983609, 'node_id': 'MI_kwDOEGMSVc4AiRQ5', 'number': 632, 'title': 'DN.1.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-30T20:58:22Z', 'updated_at': '2023-01-30T20:59:02Z', 'due_on': None, 'closed_at': None}\n", - "632 DN.1.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/633', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/633', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/633/labels', 'id': 8983621, 'node_id': 'MI_kwDOEGMSVc4AiRRF', 'number': 633, 'title': 'CM.6.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-30T20:59:54Z', 'updated_at': '2023-01-30T20:59:54Z', 'due_on': None, 'closed_at': None}\n", - "633 CM.6.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/634', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/634', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/634/labels', 'id': 8986603, 'node_id': 'MI_kwDOEGMSVc4AiR_r', 'number': 634, 'title': 'xbb.2.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-01-31T13:22:42Z', 'updated_at': '2023-02-03T07:05:13Z', 'due_on': None, 'closed_at': None}\n", - "634 xbb.2.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/635', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/635', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/635/labels', 'id': 8986632, 'node_id': 'MI_kwDOEGMSVc4AiSAI', 'number': 635, 'title': 'XBB.6.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-31T13:34:10Z', 'updated_at': '2023-01-31T13:34:11Z', 'due_on': None, 'closed_at': None}\n", - "635 XBB.6.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/636', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/636', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/636/labels', 'id': 8986922, 'node_id': 'MI_kwDOEGMSVc4AiSEq', 'number': 636, 'title': 'XBB.1.11 XBB.1.11.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-31T14:37:03Z', 'updated_at': '2023-01-31T14:37:03Z', 'due_on': None, 'closed_at': None}\n", - "636 XBB.1.11\n", - "636 XBB.1.11.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/637', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/637', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/637/labels', 'id': 8986932, 'node_id': 'MI_kwDOEGMSVc4AiSE0', 'number': 637, 'title': 'XBB.2.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-31T14:38:05Z', 'updated_at': '2023-01-31T14:38:05Z', 'due_on': None, 'closed_at': None}\n", - "637 XBB.2.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/638', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/638', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/638/labels', 'id': 8987152, 'node_id': 'MI_kwDOEGMSVc4AiSIQ', 'number': 638, 'title': 'DY.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-31T15:16:22Z', 'updated_at': '2023-01-31T15:16:54Z', 'due_on': None, 'closed_at': None}\n", - "638 DY.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/639', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/639', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/639/labels', 'id': 8987696, 'node_id': 'MI_kwDOEGMSVc4AiSQw', 'number': 639, 'title': 'DJ.1.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-01-31T17:08:49Z', 'updated_at': '2023-01-31T17:09:18Z', 'due_on': None, 'closed_at': None}\n", - "639 DJ.1.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/640', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/640', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/640/labels', 'id': 8999091, 'node_id': 'MI_kwDOEGMSVc4AiVCz', 'number': 640, 'title': 'BN.1.3.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-02T19:57:36Z', 'updated_at': '2023-02-02T19:57:49Z', 'due_on': None, 'closed_at': None}\n", - "640 BN.1.3.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/641', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/641', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/641/labels', 'id': 9000993, 'node_id': 'MI_kwDOEGMSVc4AiVgh', 'number': 641, 'title': 'XBB.2.3 XBB.2.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-03T07:05:13Z', 'updated_at': '2023-03-06T13:52:32Z', 'due_on': None, 'closed_at': None}\n", - "641 XBB.2.3\n", - "641 XBB.2.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/642', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/642', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/642/labels', 'id': 9002676, 'node_id': 'MI_kwDOEGMSVc4AiV60', 'number': 642, 'title': 'DT.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-03T15:57:52Z', 'updated_at': '2023-02-03T15:58:14Z', 'due_on': None, 'closed_at': None}\n", - "642 DT.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/643', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/643', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/643/labels', 'id': 9003408, 'node_id': 'MI_kwDOEGMSVc4AiWGQ', 'number': 643, 'title': 'BA.4.1.11', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-03T18:49:09Z', 'updated_at': '2023-02-03T18:49:24Z', 'due_on': None, 'closed_at': None}\n", - "643 BA.4.1.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/644', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/644', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/644/labels', 'id': 9010968, 'node_id': 'MI_kwDOEGMSVc4AiX8Y', 'number': 644, 'title': 'DL.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-06T15:54:52Z', 'updated_at': '2023-02-06T15:55:03Z', 'due_on': None, 'closed_at': None}\n", - "644 DL.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/645', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/645', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/645/labels', 'id': 9022473, 'node_id': 'MI_kwDOEGMSVc4AiawJ', 'number': 645, 'title': 'BF.5.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-08T21:22:05Z', 'updated_at': '2023-02-08T21:22:32Z', 'due_on': None, 'closed_at': None}\n", - "645 BF.5.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/646', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/646', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/646/labels', 'id': 9029866, 'node_id': 'MI_kwDOEGMSVc4Aicjq', 'number': 646, 'title': 'XBB.1.5.10', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-10T13:05:30Z', 'updated_at': '2023-02-10T13:05:31Z', 'due_on': None, 'closed_at': None}\n", - "646 XBB.1.5.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/647', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/647', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/647/labels', 'id': 9029872, 'node_id': 'MI_kwDOEGMSVc4Aicjw', 'number': 647, 'title': 'XBB.1.13', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-10T13:11:00Z', 'updated_at': '2023-02-10T13:16:41Z', 'due_on': None, 'closed_at': None}\n", - "647 XBB.1.13\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/648', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/648', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/648/labels', 'id': 9030275, 'node_id': 'MI_kwDOEGMSVc4AicqD', 'number': 648, 'title': 'BQ.1.1.50', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-10T15:01:47Z', 'updated_at': '2023-02-10T15:02:06Z', 'due_on': None, 'closed_at': None}\n", - "648 BQ.1.1.50\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/649', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/649', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/649/labels', 'id': 9033212, 'node_id': 'MI_kwDOEGMSVc4AidX8', 'number': 649, 'title': 'BQ.1.1.70', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-11T18:47:54Z', 'updated_at': '2023-02-11T18:47:54Z', 'due_on': None, 'closed_at': None}\n", - "649 BQ.1.1.70\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/650', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/650', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/650/labels', 'id': 9033215, 'node_id': 'MI_kwDOEGMSVc4AidX_', 'number': 650, 'title': 'EA.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-11T18:50:41Z', 'updated_at': '2023-02-11T18:50:41Z', 'due_on': None, 'closed_at': None}\n", - "650 EA.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/651', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/651', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/651/labels', 'id': 9033461, 'node_id': 'MI_kwDOEGMSVc4Aidb1', 'number': 651, 'title': 'BQ.1.1.60', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-11T23:06:35Z', 'updated_at': '2023-02-11T23:06:35Z', 'due_on': None, 'closed_at': None}\n", - "651 BQ.1.1.60\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/652', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/652', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/652/labels', 'id': 9043505, 'node_id': 'MI_kwDOEGMSVc4Aif4x', 'number': 652, 'title': 'BA.5.2.63', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-14T15:45:36Z', 'updated_at': '2023-02-14T15:46:14Z', 'due_on': None, 'closed_at': None}\n", - "652 BA.5.2.63\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/653', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/653', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/653/labels', 'id': 9063573, 'node_id': 'MI_kwDOEGMSVc4AikyV', 'number': 653, 'title': 'XBQ', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T16:17:58Z', 'updated_at': '2023-02-19T16:17:58Z', 'due_on': None, 'closed_at': None}\n", - "653 XBQ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/654', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/654', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/654/labels', 'id': 9063651, 'node_id': 'MI_kwDOEGMSVc4Aikzj', 'number': 654, 'title': 'EG.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T16:57:24Z', 'updated_at': '2023-02-19T16:57:52Z', 'due_on': None, 'closed_at': None}\n", - "654 EG.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/655', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/655', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/655/labels', 'id': 9063672, 'node_id': 'MI_kwDOEGMSVc4Aikz4', 'number': 655, 'title': 'XBR', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T17:13:39Z', 'updated_at': '2023-02-19T17:13:51Z', 'due_on': None, 'closed_at': None}\n", - "655 XBR\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/656', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/656', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/656/labels', 'id': 9063686, 'node_id': 'MI_kwDOEGMSVc4Aik0G', 'number': 656, 'title': 'XBS', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T17:22:12Z', 'updated_at': '2023-02-19T17:22:12Z', 'due_on': None, 'closed_at': None}\n", - "656 XBS\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/657', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/657', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/657/labels', 'id': 9063746, 'node_id': 'MI_kwDOEGMSVc4Aik1C', 'number': 657, 'title': 'XBT', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T17:51:16Z', 'updated_at': '2023-02-19T17:51:16Z', 'due_on': None, 'closed_at': None}\n", - "657 XBT\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/658', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/658', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/658/labels', 'id': 9063779, 'node_id': 'MI_kwDOEGMSVc4Aik1j', 'number': 658, 'title': 'EH.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T18:05:18Z', 'updated_at': '2023-02-19T18:05:19Z', 'due_on': None, 'closed_at': None}\n", - "658 EH.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/659', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/659', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/659/labels', 'id': 9063909, 'node_id': 'MI_kwDOEGMSVc4Aik3l', 'number': 659, 'title': 'DY.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T19:22:38Z', 'updated_at': '2023-02-19T19:22:39Z', 'due_on': None, 'closed_at': None}\n", - "659 DY.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/660', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/660', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/660/labels', 'id': 9064165, 'node_id': 'MI_kwDOEGMSVc4Aik7l', 'number': 660, 'title': 'EK.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T22:15:28Z', 'updated_at': '2023-02-19T22:15:28Z', 'due_on': None, 'closed_at': None}\n", - "660 EK.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/661', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/661', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/661/labels', 'id': 9064172, 'node_id': 'MI_kwDOEGMSVc4Aik7s', 'number': 661, 'title': 'DV.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T22:19:53Z', 'updated_at': '2023-02-19T22:19:53Z', 'due_on': None, 'closed_at': None}\n", - "661 DV.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/662', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/662', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/662/labels', 'id': 9064259, 'node_id': 'MI_kwDOEGMSVc4Aik9D', 'number': 662, 'title': 'XBK.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-19T23:56:07Z', 'updated_at': '2023-02-19T23:56:07Z', 'due_on': None, 'closed_at': None}\n", - "662 XBK.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/663', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/663', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/663/labels', 'id': 9077548, 'node_id': 'MI_kwDOEGMSVc4AioMs', 'number': 663, 'title': 'BA.5.2.64', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-02-22T17:11:49Z', 'updated_at': '2023-02-23T21:50:49Z', 'due_on': None, 'closed_at': None}\n", - "663 BA.5.2.64\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/664', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/664', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/664/labels', 'id': 9081630, 'node_id': 'MI_kwDOEGMSVc4AipMe', 'number': 664, 'title': 'DB.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-23T16:42:15Z', 'updated_at': '2023-02-23T16:43:09Z', 'due_on': None, 'closed_at': None}\n", - "664 DB.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/665', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/665', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/665/labels', 'id': 9083053, 'node_id': 'MI_kwDOEGMSVc4Aipit', 'number': 665, 'title': 'BA.5.12', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-23T21:50:56Z', 'updated_at': '2023-02-23T21:50:56Z', 'due_on': None, 'closed_at': None}\n", - "665 BA.5.12\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/666', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/666', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/666/labels', 'id': 9086094, 'node_id': 'MI_kwDOEGMSVc4AiqSO', 'number': 666, 'title': 'DV.3.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-24T15:06:32Z', 'updated_at': '2023-02-24T15:06:46Z', 'due_on': None, 'closed_at': None}\n", - "666 DV.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/667', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/667', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/667/labels', 'id': 9086504, 'node_id': 'MI_kwDOEGMSVc4AiqYo', 'number': 667, 'title': 'BF.7.14.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-24T17:00:16Z', 'updated_at': '2023-02-24T17:00:31Z', 'due_on': None, 'closed_at': None}\n", - "667 BF.7.14.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/668', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/668', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/668/labels', 'id': 9089650, 'node_id': 'MI_kwDOEGMSVc4AirJy', 'number': 668, 'title': 'EN.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-26T06:33:52Z', 'updated_at': '2023-02-26T06:33:52Z', 'due_on': None, 'closed_at': None}\n", - "668 EN.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/669', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/669', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/669/labels', 'id': 9089670, 'node_id': 'MI_kwDOEGMSVc4AirKG', 'number': 669, 'title': 'XBC.1.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-26T07:03:41Z', 'updated_at': '2023-02-26T07:03:41Z', 'due_on': None, 'closed_at': None}\n", - "669 XBC.1.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/670', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/670', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/670/labels', 'id': 9100279, 'node_id': 'MI_kwDOEGMSVc4Aitv3', 'number': 670, 'title': 'EQ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-28T15:45:41Z', 'updated_at': '2023-02-28T15:46:00Z', 'due_on': None, 'closed_at': None}\n", - "670 EQ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/671', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/671', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/671/labels', 'id': 9100445, 'node_id': 'MI_kwDOEGMSVc4Aityd', 'number': 671, 'title': 'CY.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-02-28T16:19:36Z', 'updated_at': '2023-02-28T16:19:52Z', 'due_on': None, 'closed_at': None}\n", - "671 CY.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/672', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/672', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/672/labels', 'id': 9109508, 'node_id': 'MI_kwDOEGMSVc4AiwAE', 'number': 672, 'title': 'CP.7', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-02T15:41:24Z', 'updated_at': '2023-03-02T15:41:52Z', 'due_on': None, 'closed_at': None}\n", - "672 CP.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/673', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/673', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/673/labels', 'id': 9114633, 'node_id': 'MI_kwDOEGMSVc4AixQJ', 'number': 673, 'title': 'BQ.1.1.71', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-03T16:30:09Z', 'updated_at': '2023-03-04T06:17:37Z', 'due_on': None, 'closed_at': None}\n", - "673 BQ.1.1.71\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/674', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/674', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/674/labels', 'id': 9119287, 'node_id': 'MI_kwDOEGMSVc4AiyY3', 'number': 674, 'title': 'XBB.1.16', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-05T12:31:34Z', 'updated_at': '2023-03-05T12:31:58Z', 'due_on': None, 'closed_at': None}\n", - "674 XBB.1.16\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/675', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/675', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/675/labels', 'id': 9119551, 'node_id': 'MI_kwDOEGMSVc4Aiyc_', 'number': 675, 'title': 'ER.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-05T16:37:09Z', 'updated_at': '2023-03-05T16:37:40Z', 'due_on': None, 'closed_at': None}\n", - "675 ER.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/676', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/676', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/676/labels', 'id': 9130012, 'node_id': 'MI_kwDOEGMSVc4Ai1Ac', 'number': 676, 'title': 'ER.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-07T15:55:53Z', 'updated_at': '2023-03-07T15:56:24Z', 'due_on': None, 'closed_at': None}\n", - "676 ER.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/677', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/677', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/677/labels', 'id': 9139137, 'node_id': 'MI_kwDOEGMSVc4Ai3PB', 'number': 677, 'title': 'ES.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-09T11:04:42Z', 'updated_at': '2023-03-09T11:04:57Z', 'due_on': None, 'closed_at': None}\n", - "677 ES.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/678', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/678', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/678/labels', 'id': 9140413, 'node_id': 'MI_kwDOEGMSVc4Ai3i9', 'number': 678, 'title': 'CH.1.1.15', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-09T16:34:40Z', 'updated_at': '2023-03-09T16:35:05Z', 'due_on': None, 'closed_at': None}\n", - "678 CH.1.1.15\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/679', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/679', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/679/labels', 'id': 9143685, 'node_id': 'MI_kwDOEGMSVc4Ai4WF', 'number': 679, 'title': 'BF.7.4.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-10T11:13:19Z', 'updated_at': '2023-03-10T11:13:19Z', 'due_on': None, 'closed_at': None}\n", - "679 BF.7.4.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/680', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/680', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/680/labels', 'id': 9147124, 'node_id': 'MI_kwDOEGMSVc4Ai5L0', 'number': 680, 'title': 'BQ.1.32', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-11T12:11:40Z', 'updated_at': '2023-03-11T12:11:50Z', 'due_on': None, 'closed_at': None}\n", - "680 BQ.1.32\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/681', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/681', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/681/labels', 'id': 9167421, 'node_id': 'MI_kwDOEGMSVc4Ai-I9', 'number': 681, 'title': 'ET.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-16T11:23:06Z', 'updated_at': '2023-03-16T11:23:44Z', 'due_on': None, 'closed_at': None}\n", - "681 ET.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/682', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/682', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/682/labels', 'id': 9169532, 'node_id': 'MI_kwDOEGMSVc4Ai-p8', 'number': 682, 'title': 'XBC.1.6', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-16T19:48:45Z', 'updated_at': '2023-03-16T19:49:08Z', 'due_on': None, 'closed_at': None}\n", - "682 XBC.1.6\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/683', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/683', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/683/labels', 'id': 9176570, 'node_id': 'MI_kwDOEGMSVc4AjAX6', 'number': 683, 'title': 'XBB.1.5.25', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-18T21:56:39Z', 'updated_at': '2023-03-18T21:56:39Z', 'due_on': None, 'closed_at': None}\n", - "683 XBB.1.5.25\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/684', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/684', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/684/labels', 'id': 9177578, 'node_id': 'MI_kwDOEGMSVc4AjAnq', 'number': 684, 'title': 'XBU', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T14:47:27Z', 'updated_at': '2023-03-19T14:47:27Z', 'due_on': None, 'closed_at': None}\n", - "684 XBU\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/685', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/685', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/685/labels', 'id': 9177733, 'node_id': 'MI_kwDOEGMSVc4AjAqF', 'number': 685, 'title': 'XBB.1.19', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T16:58:38Z', 'updated_at': '2023-03-19T16:58:38Z', 'due_on': None, 'closed_at': None}\n", - "685 XBB.1.19\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/686', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/686', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/686/labels', 'id': 9177734, 'node_id': 'MI_kwDOEGMSVc4AjAqG', 'number': 686, 'title': 'XBB.1.19.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T16:58:53Z', 'updated_at': '2023-03-19T16:58:53Z', 'due_on': None, 'closed_at': None}\n", - "686 XBB.1.19.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/687', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/687', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/687/labels', 'id': 9177758, 'node_id': 'MI_kwDOEGMSVc4AjAqe', 'number': 687, 'title': 'XBV', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T17:29:33Z', 'updated_at': '2023-03-19T17:29:33Z', 'due_on': None, 'closed_at': None}\n", - "687 XBV\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/688', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/688', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/688/labels', 'id': 9177782, 'node_id': 'MI_kwDOEGMSVc4AjAq2', 'number': 688, 'title': 'DV.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T17:47:46Z', 'updated_at': '2023-03-19T17:47:47Z', 'due_on': None, 'closed_at': None}\n", - "688 DV.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/689', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/689', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/689/labels', 'id': 9177850, 'node_id': 'MI_kwDOEGMSVc4AjAr6', 'number': 689, 'title': 'XBW', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T18:36:41Z', 'updated_at': '2023-03-19T18:40:02Z', 'due_on': None, 'closed_at': None}\n", - "689 XBW\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/690', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/690', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/690/labels', 'id': 9177927, 'node_id': 'MI_kwDOEGMSVc4AjAtH', 'number': 690, 'title': 'XBY', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 2, 'state': 'open', 'created_at': '2023-03-19T19:25:22Z', 'updated_at': '2023-03-19T19:25:44Z', 'due_on': None, 'closed_at': None}\n", - "690 XBY\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/691', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/691', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/691/labels', 'id': 9177999, 'node_id': 'MI_kwDOEGMSVc4AjAuP', 'number': 691, 'title': 'XBB.1.5.26, EU.1, EU.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T20:14:16Z', 'updated_at': '2023-03-19T20:14:17Z', 'due_on': None, 'closed_at': None}\n", - "691 XBB.1.5.26\n", - "691 EU.1\n", - "691 EU.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/692', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/692', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/692/labels', 'id': 9178043, 'node_id': 'MI_kwDOEGMSVc4AjAu7', 'number': 692, 'title': 'XBF.8.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-03-19T20:36:03Z', 'updated_at': '2023-04-22T17:21:57Z', 'due_on': None, 'closed_at': None}\n", - "692 XBF.8.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/693', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/693', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/693/labels', 'id': 9178057, 'node_id': 'MI_kwDOEGMSVc4AjAvJ', 'number': 693, 'title': 'XBB.1.21', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T20:49:47Z', 'updated_at': '2023-03-19T20:49:48Z', 'due_on': None, 'closed_at': None}\n", - "693 XBB.1.21\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/694', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/694', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/694/labels', 'id': 9178085, 'node_id': 'MI_kwDOEGMSVc4AjAvl', 'number': 694, 'title': 'XBC.2.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T21:09:43Z', 'updated_at': '2023-03-19T21:09:43Z', 'due_on': None, 'closed_at': None}\n", - "694 XBC.2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/695', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/695', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/695/labels', 'id': 9178135, 'node_id': 'MI_kwDOEGMSVc4AjAwX', 'number': 695, 'title': 'XBB.1.22, XBB.1.22.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T21:49:13Z', 'updated_at': '2023-03-19T21:49:13Z', 'due_on': None, 'closed_at': None}\n", - "695 XBB.1.22\n", - "695 XBB.1.22.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/696', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/696', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/696/labels', 'id': 9178145, 'node_id': 'MI_kwDOEGMSVc4AjAwh', 'number': 696, 'title': 'XBJ.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T22:04:48Z', 'updated_at': '2023-03-19T22:04:48Z', 'due_on': None, 'closed_at': None}\n", - "696 XBJ.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/697', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/697', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/697/labels', 'id': 9178204, 'node_id': 'MI_kwDOEGMSVc4AjAxc', 'number': 697, 'title': 'XBB.1.27', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-19T22:49:26Z', 'updated_at': '2023-03-19T22:49:26Z', 'due_on': None, 'closed_at': None}\n", - "697 XBB.1.27\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/698', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/698', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/698/labels', 'id': 9182619, 'node_id': 'MI_kwDOEGMSVc4AjB2b', 'number': 698, 'title': 'CH.1.1.16 CH.1.1.17 DV.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-20T17:23:30Z', 'updated_at': '2023-03-20T17:23:30Z', 'due_on': None, 'closed_at': None}\n", - "698 CH.1.1.16\n", - "698 CH.1.1.17\n", - "698 DV.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/699', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/699', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/699/labels', 'id': 9191917, 'node_id': 'MI_kwDOEGMSVc4AjEHt', 'number': 699, 'title': 'EW.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-22T13:48:48Z', 'updated_at': '2023-03-22T13:48:48Z', 'due_on': None, 'closed_at': None}\n", - "699 EW.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/700', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/700', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/700/labels', 'id': 9192810, 'node_id': 'MI_kwDOEGMSVc4AjEVq', 'number': 700, 'title': 'FF.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-22T16:13:39Z', 'updated_at': '2023-03-22T16:14:10Z', 'due_on': None, 'closed_at': None}\n", - "700 FF.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/701', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/701', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/701/labels', 'id': 9199061, 'node_id': 'MI_kwDOEGMSVc4AjF3V', 'number': 701, 'title': 'CP.8.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-23T19:22:49Z', 'updated_at': '2023-03-23T19:23:40Z', 'due_on': None, 'closed_at': None}\n", - "701 CP.8.1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/702', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/702', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/702/labels', 'id': 9201167, 'node_id': 'MI_kwDOEGMSVc4AjGYP', 'number': 702, 'title': 'EK.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T07:27:13Z', 'updated_at': '2023-03-24T11:55:31Z', 'due_on': None, 'closed_at': None}\n", - "702 EK.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/703', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/703', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/703/labels', 'id': 9203494, 'node_id': 'MI_kwDOEGMSVc4AjG8m', 'number': 703, 'title': 'FB.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T16:48:02Z', 'updated_at': '2023-03-24T16:48:02Z', 'due_on': None, 'closed_at': None}\n", - "703 FB.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/704', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/704', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/704/labels', 'id': 9203525, 'node_id': 'MI_kwDOEGMSVc4AjG9F', 'number': 704, 'title': 'XBB.2.3.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T16:59:10Z', 'updated_at': '2023-03-24T16:59:11Z', 'due_on': None, 'closed_at': None}\n", - "704 XBB.2.3.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/705', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/705', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/705/labels', 'id': 9204482, 'node_id': 'MI_kwDOEGMSVc4AjHMC', 'number': 705, 'title': 'CM.8.1.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T20:05:28Z', 'updated_at': '2023-03-24T20:05:28Z', 'due_on': None, 'closed_at': None}\n", - "705 CM.8.1.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/706', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/706', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/706/labels', 'id': 9204486, 'node_id': 'MI_kwDOEGMSVc4AjHMG', 'number': 706, 'title': 'XBB.2.3.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T20:06:24Z', 'updated_at': '2023-03-24T20:06:25Z', 'due_on': None, 'closed_at': None}\n", - "706 XBB.2.3.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/707', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/707', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/707/labels', 'id': 9204487, 'node_id': 'MI_kwDOEGMSVc4AjHMH', 'number': 707, 'title': 'BN.1.3.9', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-24T20:07:32Z', 'updated_at': '2023-03-24T20:07:49Z', 'due_on': None, 'closed_at': None}\n", - "707 BN.1.3.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/708', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/708', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/708/labels', 'id': 9218075, 'node_id': 'MI_kwDOEGMSVc4AjKgb', 'number': 708, 'title': 'XBZ', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-28T15:47:01Z', 'updated_at': '2023-03-28T15:48:09Z', 'due_on': None, 'closed_at': None}\n", - "708 XBZ\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/709', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/709', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/709/labels', 'id': 9222633, 'node_id': 'MI_kwDOEGMSVc4AjLnp', 'number': 709, 'title': 'CH.1.1.22', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-29T14:44:29Z', 'updated_at': '2023-03-29T14:45:05Z', 'due_on': None, 'closed_at': None}\n", - "709 CH.1.1.22\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/710', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/710', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/710/labels', 'id': 9222655, 'node_id': 'MI_kwDOEGMSVc4AjLn_', 'number': 710, 'title': 'EZ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-29T14:49:32Z', 'updated_at': '2023-03-29T14:52:09Z', 'due_on': None, 'closed_at': None}\n", - "710 EZ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/711', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/711', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/711/labels', 'id': 9232096, 'node_id': 'MI_kwDOEGMSVc4AjN7g', 'number': 711, 'title': 'FK.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-03-31T14:15:41Z', 'updated_at': '2023-03-31T14:16:21Z', 'due_on': None, 'closed_at': None}\n", - "711 FK.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/712', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/712', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/712/labels', 'id': 9240105, 'node_id': 'MI_kwDOEGMSVc4AjP4p', 'number': 712, 'title': 'BQ.1.1.73', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-03T14:43:39Z', 'updated_at': '2023-04-03T14:44:01Z', 'due_on': None, 'closed_at': None}\n", - "712 BQ.1.1.73\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/713', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/713', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/713/labels', 'id': 9240584, 'node_id': 'MI_kwDOEGMSVc4AjQAI', 'number': 713, 'title': 'XCA', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-03T16:19:41Z', 'updated_at': '2023-04-03T16:20:05Z', 'due_on': None, 'closed_at': None}\n", - "713 XCA\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/714', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/714', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/714/labels', 'id': 9245088, 'node_id': 'MI_kwDOEGMSVc4AjRGg', 'number': 714, 'title': 'XBB.1.28', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-04T15:29:47Z', 'updated_at': '2023-04-04T15:30:17Z', 'due_on': None, 'closed_at': None}\n", - "714 XBB.1.28\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/715', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/715', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/715/labels', 'id': 9250411, 'node_id': 'MI_kwDOEGMSVc4AjSZr', 'number': 715, 'title': 'BQ.1.1.74', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-05T18:16:27Z', 'updated_at': '2023-04-05T19:37:51Z', 'due_on': None, 'closed_at': None}\n", - "715 BQ.1.1.74\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/716', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/716', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/716/labels', 'id': 9262365, 'node_id': 'MI_kwDOEGMSVc4AjVUd', 'number': 716, 'title': 'XBB.1.31', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-10T09:43:00Z', 'updated_at': '2023-04-10T09:43:51Z', 'due_on': None, 'closed_at': None}\n", - "716 XBB.1.31\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/717', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/717', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/717/labels', 'id': 9262375, 'node_id': 'MI_kwDOEGMSVc4AjVUn', 'number': 717, 'title': 'XBB.2.3.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-10T09:46:36Z', 'updated_at': '2023-04-10T09:47:18Z', 'due_on': None, 'closed_at': None}\n", - "717 XBB.2.3.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/718', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/718', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/718/labels', 'id': 9267241, 'node_id': 'MI_kwDOEGMSVc4AjWgp', 'number': 718, 'title': 'FP.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-11T10:47:28Z', 'updated_at': '2023-04-11T10:47:51Z', 'due_on': None, 'closed_at': None}\n", - "718 FP.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/719', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/719', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/719/labels', 'id': 9267763, 'node_id': 'MI_kwDOEGMSVc4AjWoz', 'number': 719, 'title': 'BF.42', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-11T12:55:36Z', 'updated_at': '2023-04-11T12:55:55Z', 'due_on': None, 'closed_at': None}\n", - "719 BF.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/720', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/720', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/720/labels', 'id': 9268300, 'node_id': 'MI_kwDOEGMSVc4AjWxM', 'number': 720, 'title': 'CH.1.1.23', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-11T15:10:47Z', 'updated_at': '2023-04-11T15:11:01Z', 'due_on': None, 'closed_at': None}\n", - "720 CH.1.1.23\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/721', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/721', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/721/labels', 'id': 9273759, 'node_id': 'MI_kwDOEGMSVc4AjYGf', 'number': 721, 'title': 'XBB.2.3.5', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-12T10:35:38Z', 'updated_at': '2023-04-12T10:36:03Z', 'due_on': None, 'closed_at': None}\n", - "721 XBB.2.3.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/722', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/722', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/722/labels', 'id': 9279964, 'node_id': 'MI_kwDOEGMSVc4AjZnc', 'number': 722, 'title': 'FK.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-13T15:05:10Z', 'updated_at': '2023-04-13T15:05:35Z', 'due_on': None, 'closed_at': None}\n", - "722 FK.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/723', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/723', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/723/labels', 'id': 9283290, 'node_id': 'MI_kwDOEGMSVc4Ajaba', 'number': 723, 'title': 'XBB.2.3.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-14T09:38:40Z', 'updated_at': '2023-04-15T01:29:33Z', 'due_on': None, 'closed_at': None}\n", - "723 XBB.2.3.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/724', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/724', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/724/labels', 'id': 9284092, 'node_id': 'MI_kwDOEGMSVc4Ajan8', 'number': 724, 'title': 'XCB', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-14T13:26:23Z', 'updated_at': '2023-04-14T13:26:55Z', 'due_on': None, 'closed_at': None}\n", - "724 XCB\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/725', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/725', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/725/labels', 'id': 9294217, 'node_id': 'MI_kwDOEGMSVc4AjdGJ', 'number': 725, 'title': 'FQ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-17T18:35:06Z', 'updated_at': '2023-04-17T18:35:26Z', 'due_on': None, 'closed_at': None}\n", - "725 FQ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/726', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/726', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/726/labels', 'id': 9297918, 'node_id': 'MI_kwDOEGMSVc4Ajd_-', 'number': 726, 'title': 'XBB.1.33', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-18T13:41:49Z', 'updated_at': '2023-04-18T13:42:13Z', 'due_on': None, 'closed_at': None}\n", - "726 XBB.1.33\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/727', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/727', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/727/labels', 'id': 9308815, 'node_id': 'MI_kwDOEGMSVc4AjgqP', 'number': 727, 'title': 'XBB.1.34', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-20T18:48:02Z', 'updated_at': '2023-04-20T18:48:31Z', 'due_on': None, 'closed_at': None}\n", - "727 XBB.1.34\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/728', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/728', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/728/labels', 'id': 9312601, 'node_id': 'MI_kwDOEGMSVc4AjhlZ', 'number': 728, 'title': 'FL.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-21T12:01:32Z', 'updated_at': '2023-04-21T12:01:50Z', 'due_on': None, 'closed_at': None}\n", - "728 FL.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/729', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/729', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/729/labels', 'id': 9312811, 'node_id': 'MI_kwDOEGMSVc4Ajhor', 'number': 729, 'title': 'FR.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-21T13:14:22Z', 'updated_at': '2023-04-21T13:14:57Z', 'due_on': None, 'closed_at': None}\n", - "729 FR.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/730', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/730', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/730/labels', 'id': 9313250, 'node_id': 'MI_kwDOEGMSVc4Ajhvi', 'number': 730, 'title': 'FS.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-21T15:15:47Z', 'updated_at': '2023-04-21T15:16:32Z', 'due_on': None, 'closed_at': None}\n", - "730 FS.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/731', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/731', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/731/labels', 'id': 9315751, 'node_id': 'MI_kwDOEGMSVc4AjiWn', 'number': 731, 'title': 'XBF.1.1 XBF.8.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-22T17:21:57Z', 'updated_at': '2023-04-22T17:21:57Z', 'due_on': None, 'closed_at': None}\n", - "731 XBF.1.1\n", - "731 XBF.8.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/732', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/732', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/732/labels', 'id': 9315864, 'node_id': 'MI_kwDOEGMSVc4AjiYY', 'number': 732, 'title': 'FT.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-22T19:00:53Z', 'updated_at': '2023-04-22T19:00:53Z', 'due_on': None, 'closed_at': None}\n", - "732 FT.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/733', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/733', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/733/labels', 'id': 9315963, 'node_id': 'MI_kwDOEGMSVc4AjiZ7', 'number': 733, 'title': 'XBB.1.5.41', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-22T21:11:14Z', 'updated_at': '2023-04-22T21:11:14Z', 'due_on': None, 'closed_at': None}\n", - "733 XBB.1.5.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/734', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/734', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/734/labels', 'id': 9315977, 'node_id': 'MI_kwDOEGMSVc4AjiaJ', 'number': 734, 'title': 'XBB.1.5.42', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-22T21:32:19Z', 'updated_at': '2023-04-22T21:32:20Z', 'due_on': None, 'closed_at': None}\n", - "734 XBB.1.5.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/735', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/735', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/735/labels', 'id': 9315998, 'node_id': 'MI_kwDOEGMSVc4Ajiae', 'number': 735, 'title': 'EG.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-22T22:03:01Z', 'updated_at': '2023-04-22T22:03:01Z', 'due_on': None, 'closed_at': None}\n", - "735 EG.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/736', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/736', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/736/labels', 'id': 9317213, 'node_id': 'MI_kwDOEGMSVc4Ajitd', 'number': 736, 'title': 'XBB.1.5.44', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-23T17:32:25Z', 'updated_at': '2023-04-23T17:32:25Z', 'due_on': None, 'closed_at': None}\n", - "736 XBB.1.5.44\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/737', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/737', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/737/labels', 'id': 9317265, 'node_id': 'MI_kwDOEGMSVc4AjiuR', 'number': 737, 'title': 'XAY.2.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-23T18:23:12Z', 'updated_at': '2023-04-23T18:23:12Z', 'due_on': None, 'closed_at': None}\n", - "737 XAY.2.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/738', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/738', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/738/labels', 'id': 9320890, 'node_id': 'MI_kwDOEGMSVc4Ajjm6', 'number': 738, 'title': 'XBB.1.36', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-24T15:12:58Z', 'updated_at': '2023-04-24T15:14:36Z', 'due_on': None, 'closed_at': None}\n", - "738 XBB.1.36\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/739', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/739', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/739/labels', 'id': 9328259, 'node_id': 'MI_kwDOEGMSVc4AjlaD', 'number': 739, 'title': 'XCC', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-26T00:10:39Z', 'updated_at': '2023-04-26T00:10:39Z', 'due_on': None, 'closed_at': None}\n", - "739 XCC\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/740', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/740', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/740/labels', 'id': 9331252, 'node_id': 'MI_kwDOEGMSVc4AjmI0', 'number': 740, 'title': 'XBB.1.5.53', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-26T13:54:32Z', 'updated_at': '2023-04-26T13:54:49Z', 'due_on': None, 'closed_at': None}\n", - "740 XBB.1.5.53\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/741', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/741', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/741/labels', 'id': 9339240, 'node_id': 'MI_kwDOEGMSVc4AjoFo', 'number': 741, 'title': 'XBB.1.16.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-28T09:43:57Z', 'updated_at': '2023-04-28T09:43:57Z', 'due_on': None, 'closed_at': None}\n", - "741 XBB.1.16.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/742', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/742', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/742/labels', 'id': 9340529, 'node_id': 'MI_kwDOEGMSVc4AjoZx', 'number': 742, 'title': 'BQ.1.2.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-04-28T15:27:26Z', 'updated_at': '2023-04-28T15:27:39Z', 'due_on': None, 'closed_at': None}\n", - "742 BQ.1.2.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/743', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/743', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/743/labels', 'id': 9361699, 'node_id': 'MI_kwDOEGMSVc4Ajtkj', 'number': 743, 'title': 'XBB.1.5.30', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-04T14:30:55Z', 'updated_at': '2023-05-04T14:30:55Z', 'due_on': None, 'closed_at': None}\n", - "743 XBB.1.5.30\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/744', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/744', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/744/labels', 'id': 9361974, 'node_id': 'MI_kwDOEGMSVc4Ajto2', 'number': 744, 'title': 'EG.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-04T15:30:12Z', 'updated_at': '2023-05-04T15:30:15Z', 'due_on': None, 'closed_at': None}\n", - "744 EG.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/745', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/745', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/745/labels', 'id': 9362277, 'node_id': 'MI_kwDOEGMSVc4Ajttl', 'number': 745, 'title': 'FY.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-04T17:08:12Z', 'updated_at': '2023-05-04T17:08:14Z', 'due_on': None, 'closed_at': None}\n", - "745 FY.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/746', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/746', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/746/labels', 'id': 9362306, 'node_id': 'MI_kwDOEGMSVc4AjtuC', 'number': 746, 'title': 'FY.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-04T17:16:33Z', 'updated_at': '2023-05-04T17:16:33Z', 'due_on': None, 'closed_at': None}\n", - "746 FY.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/747', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/747', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/747/labels', 'id': 9364124, 'node_id': 'MI_kwDOEGMSVc4AjuKc', 'number': 747, 'title': 'XBB.1.16.4', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-05T07:38:38Z', 'updated_at': '2023-05-05T07:38:38Z', 'due_on': None, 'closed_at': None}\n", - "747 XBB.1.16.4\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/748', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/748', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/748/labels', 'id': 9364537, 'node_id': 'MI_kwDOEGMSVc4AjuQ5', 'number': 748, 'title': 'XBB.1.5.57', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-05T09:01:32Z', 'updated_at': '2023-05-05T09:01:32Z', 'due_on': None, 'closed_at': None}\n", - "748 XBB.1.5.57\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/749', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/749', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/749/labels', 'id': 9367868, 'node_id': 'MI_kwDOEGMSVc4AjvE8', 'number': 749, 'title': 'XBB.1.16.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-06T13:55:31Z', 'updated_at': '2023-05-06T13:55:31Z', 'due_on': None, 'closed_at': None}\n", - "749 XBB.1.16.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/750', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/750', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/750/labels', 'id': 9368188, 'node_id': 'MI_kwDOEGMSVc4AjvJ8', 'number': 750, 'title': 'GB.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-06T18:20:38Z', 'updated_at': '2023-05-06T18:20:38Z', 'due_on': None, 'closed_at': None}\n", - "750 GB.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/751', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/751', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/751/labels', 'id': 9368240, 'node_id': 'MI_kwDOEGMSVc4AjvKw', 'number': 751, 'title': 'XBB.1.37 XBB.1.37.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-06T18:27:02Z', 'updated_at': '2023-05-06T18:27:02Z', 'due_on': None, 'closed_at': None}\n", - "751 XBB.1.37\n", - "751 XBB.1.37.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/752', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/752', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/752/labels', 'id': 9368898, 'node_id': 'MI_kwDOEGMSVc4AjvVC', 'number': 752, 'title': 'FL.11', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-07T07:58:43Z', 'updated_at': '2023-05-07T07:58:43Z', 'due_on': None, 'closed_at': None}\n", - "752 FL.11\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/753', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/753', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/753/labels', 'id': 9371952, 'node_id': 'MI_kwDOEGMSVc4AjwEw', 'number': 753, 'title': 'XBB.1.32.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-08T09:18:15Z', 'updated_at': '2023-05-08T09:18:15Z', 'due_on': None, 'closed_at': None}\n", - "753 XBB.1.32.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/754', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/754', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/754/labels', 'id': 9373183, 'node_id': 'MI_kwDOEGMSVc4AjwX_', 'number': 754, 'title': 'XBB.1.32 XBB.1.32.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-08T14:47:21Z', 'updated_at': '2023-05-08T17:13:19Z', 'due_on': None, 'closed_at': None}\n", - "754 XBB.1.32\n", - "754 XBB.1.32.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/755', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/755', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/755/labels', 'id': 9388084, 'node_id': 'MI_kwDOEGMSVc4Aj0A0', 'number': 755, 'title': 'XBB.2.9', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-11T10:23:44Z', 'updated_at': '2023-05-11T10:23:58Z', 'due_on': None, 'closed_at': None}\n", - "755 XBB.2.9\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/756', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/756', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/756/labels', 'id': 9404532, 'node_id': 'MI_kwDOEGMSVc4Aj4B0', 'number': 756, 'title': 'XBB.1.5.45', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-16T13:43:13Z', 'updated_at': '2023-05-16T13:43:13Z', 'due_on': None, 'closed_at': None}\n", - "756 XBB.1.5.45\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/757', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/757', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/757/labels', 'id': 9423402, 'node_id': 'MI_kwDOEGMSVc4Aj8oq', 'number': 757, 'title': 'XBB.1.5.70', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-22T13:11:10Z', 'updated_at': '2023-05-22T13:13:19Z', 'due_on': None, 'closed_at': None}\n", - "757 XBB.1.5.70\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/758', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/758', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/758/labels', 'id': 9434150, 'node_id': 'MI_kwDOEGMSVc4Aj_Qm', 'number': 758, 'title': 'GF.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-23T16:06:53Z', 'updated_at': '2023-05-23T16:06:53Z', 'due_on': None, 'closed_at': None}\n", - "758 GF.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/759', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/759', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/759/labels', 'id': 9437038, 'node_id': 'MI_kwDOEGMSVc4Aj_9u', 'number': 759, 'title': 'XBB.1.41', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-24T10:05:17Z', 'updated_at': '2023-05-24T10:05:17Z', 'due_on': None, 'closed_at': None}\n", - "759 XBB.1.41\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/760', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/760', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/760/labels', 'id': 9459356, 'node_id': 'MI_kwDOEGMSVc4AkFac', 'number': 760, 'title': 'FL.15', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-29T11:55:38Z', 'updated_at': '2023-05-29T11:58:35Z', 'due_on': None, 'closed_at': None}\n", - "760 FL.15\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/761', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/761', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/761/labels', 'id': 9460080, 'node_id': 'MI_kwDOEGMSVc4AkFlw', 'number': 761, 'title': 'FL.13.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-29T15:41:02Z', 'updated_at': '2023-05-29T15:41:02Z', 'due_on': None, 'closed_at': None}\n", - "761 FL.13.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/762', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/762', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/762/labels', 'id': 9463347, 'node_id': 'MI_kwDOEGMSVc4AkGYz', 'number': 762, 'title': 'FP. 2.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-30T13:40:06Z', 'updated_at': '2023-05-30T13:40:22Z', 'due_on': None, 'closed_at': None}\n", - "762 FP.\n", - "762 2.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/763', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/763', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/763/labels', 'id': 9466954, 'node_id': 'MI_kwDOEGMSVc4AkHRK', 'number': 763, 'title': 'FP.3', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-31T09:30:38Z', 'updated_at': '2023-05-31T09:31:07Z', 'due_on': None, 'closed_at': None}\n", - "763 FP.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/764', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/764', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/764/labels', 'id': 9467722, 'node_id': 'MI_kwDOEGMSVc4AkHdK', 'number': 764, 'title': 'FR.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-31T13:11:09Z', 'updated_at': '2023-05-31T13:11:14Z', 'due_on': None, 'closed_at': None}\n", - "764 FR.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/765', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/765', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/765/labels', 'id': 9467727, 'node_id': 'MI_kwDOEGMSVc4AkHdP', 'number': 765, 'title': 'FR.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-31T13:12:40Z', 'updated_at': '2023-05-31T13:12:49Z', 'due_on': None, 'closed_at': None}\n", - "765 FR.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/766', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/766', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/766/labels', 'id': 9467789, 'node_id': 'MI_kwDOEGMSVc4AkHeN', 'number': 766, 'title': 'XBB.1.43 XBB.1.43.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-31T13:26:15Z', 'updated_at': '2023-05-31T13:26:15Z', 'due_on': None, 'closed_at': None}\n", - "766 XBB.1.43\n", - "766 XBB.1.43.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/767', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/767', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/767/labels', 'id': 9468966, 'node_id': 'MI_kwDOEGMSVc4AkHwm', 'number': 767, 'title': 'XBB.1.42', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-05-31T18:07:26Z', 'updated_at': '2023-05-31T18:07:26Z', 'due_on': None, 'closed_at': None}\n", - "767 XBB.1.42\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/768', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/768', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/768/labels', 'id': 9476171, 'node_id': 'MI_kwDOEGMSVc4AkJhL', 'number': 768, 'title': 'EG.6.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-02T09:50:18Z', 'updated_at': '2023-06-02T09:51:00Z', 'due_on': None, 'closed_at': None}\n", - "768 EG.6.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/769', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/769', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/769/labels', 'id': 9476330, 'node_id': 'MI_kwDOEGMSVc4AkJjq', 'number': 769, 'title': 'GJ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-02T10:49:27Z', 'updated_at': '2023-06-02T10:49:52Z', 'due_on': None, 'closed_at': None}\n", - "769 GJ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/770', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/770', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/770/labels', 'id': 9509245, 'node_id': 'MI_kwDOEGMSVc4AkRl9', 'number': 770, 'title': 'XCD', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-07T16:11:07Z', 'updated_at': '2023-06-07T16:11:07Z', 'due_on': None, 'closed_at': None}\n", - "770 XCD\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/771', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/771', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/771/labels', 'id': 9522555, 'node_id': 'MI_kwDOEGMSVc4AkU17', 'number': 771, 'title': 'DV.6.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-10T19:25:55Z', 'updated_at': '2023-06-10T19:25:55Z', 'due_on': None, 'closed_at': None}\n", - "771 DV.6.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/772', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/772', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/772/labels', 'id': 9522563, 'node_id': 'MI_kwDOEGMSVc4AkU2D', 'number': 772, 'title': 'DV.7', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-10T19:31:10Z', 'updated_at': '2023-06-10T19:31:11Z', 'due_on': None, 'closed_at': None}\n", - "772 DV.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/773', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/773', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/773/labels', 'id': 9523706, 'node_id': 'MI_kwDOEGMSVc4AkVH6', 'number': 773, 'title': 'XBB.1.44.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-11T15:55:31Z', 'updated_at': '2023-06-11T15:55:31Z', 'due_on': None, 'closed_at': None}\n", - "773 XBB.1.44.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/774', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/774', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/774/labels', 'id': 9528022, 'node_id': 'MI_kwDOEGMSVc4AkWLW', 'number': 774, 'title': 'FL.2.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T14:55:04Z', 'updated_at': '2023-06-12T14:55:06Z', 'due_on': None, 'closed_at': None}\n", - "774 FL.2.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/775', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/775', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/775/labels', 'id': 9528066, 'node_id': 'MI_kwDOEGMSVc4AkWMC', 'number': 775, 'title': 'FY.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T15:04:18Z', 'updated_at': '2023-06-12T15:04:24Z', 'due_on': None, 'closed_at': None}\n", - "775 FY.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/776', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/776', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/776/labels', 'id': 9528127, 'node_id': 'MI_kwDOEGMSVc4AkWM_', 'number': 776, 'title': 'XBB.1.6.10', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-06-12T15:14:50Z', 'updated_at': '2023-06-20T13:51:10Z', 'due_on': None, 'closed_at': None}\n", - "776 XBB.1.6.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/777', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/777', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/777/labels', 'id': 9528138, 'node_id': 'MI_kwDOEGMSVc4AkWNK', 'number': 777, 'title': 'FL.16', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T15:17:13Z', 'updated_at': '2023-06-12T15:17:13Z', 'due_on': None, 'closed_at': None}\n", - "777 FL.16\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/778', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/778', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/778/labels', 'id': 9528242, 'node_id': 'MI_kwDOEGMSVc4AkWOy', 'number': 778, 'title': 'GR.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T15:24:09Z', 'updated_at': '2023-06-12T15:24:11Z', 'due_on': None, 'closed_at': None}\n", - "778 GR.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/779', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/779', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/779/labels', 'id': 9528326, 'node_id': 'MI_kwDOEGMSVc4AkWQG', 'number': 779, 'title': 'GB.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T15:30:24Z', 'updated_at': '2023-06-12T15:30:25Z', 'due_on': None, 'closed_at': None}\n", - "779 GB.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/780', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/780', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/780/labels', 'id': 9528334, 'node_id': 'MI_kwDOEGMSVc4AkWQO', 'number': 780, 'title': 'GS.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-12T15:33:41Z', 'updated_at': '2023-06-12T15:33:42Z', 'due_on': None, 'closed_at': None}\n", - "780 GS.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/781', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/781', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/781/labels', 'id': 9559739, 'node_id': 'MI_kwDOEGMSVc4Akd67', 'number': 781, 'title': 'XBB.1.45.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-20T13:42:13Z', 'updated_at': '2023-06-20T13:42:13Z', 'due_on': None, 'closed_at': None}\n", - "781 XBB.1.45.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/782', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/782', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/782/labels', 'id': 9559826, 'node_id': 'MI_kwDOEGMSVc4Akd8S', 'number': 782, 'title': 'GQ.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-20T13:47:04Z', 'updated_at': '2023-06-20T13:47:04Z', 'due_on': None, 'closed_at': None}\n", - "782 GQ.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/783', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/783', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/783/labels', 'id': 9559831, 'node_id': 'MI_kwDOEGMSVc4Akd8X', 'number': 783, 'title': 'XBB.1.4.2', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-20T13:48:26Z', 'updated_at': '2023-06-20T13:48:26Z', 'due_on': None, 'closed_at': None}\n", - "783 XBB.1.4.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/784', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/784', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/784/labels', 'id': 9559842, 'node_id': 'MI_kwDOEGMSVc4Akd8i', 'number': 784, 'title': 'XBB.1.16.10', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-20T13:51:15Z', 'updated_at': '2023-06-20T13:51:16Z', 'due_on': None, 'closed_at': None}\n", - "784 XBB.1.16.10\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/785', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/785', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/785/labels', 'id': 9560485, 'node_id': 'MI_kwDOEGMSVc4AkeGl', 'number': 785, 'title': 'EG.5.1.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-20T15:50:01Z', 'updated_at': '2023-06-20T15:50:27Z', 'due_on': None, 'closed_at': None}\n", - "785 EG.5.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/786', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/786', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/786/labels', 'id': 9585344, 'node_id': 'MI_kwDOEGMSVc4AkkLA', 'number': 786, 'title': 'GY.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-26T17:52:06Z', 'updated_at': '2023-06-26T17:52:06Z', 'due_on': None, 'closed_at': None}\n", - "786 GY.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/787', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/787', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/787/labels', 'id': 9585435, 'node_id': 'MI_kwDOEGMSVc4AkkMb', 'number': 787, 'title': 'BN.1.2.7', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-26T18:16:24Z', 'updated_at': '2023-06-26T18:16:24Z', 'due_on': None, 'closed_at': None}\n", - "787 BN.1.2.7\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/788', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/788', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/788/labels', 'id': 9585505, 'node_id': 'MI_kwDOEGMSVc4AkkNh', 'number': 788, 'title': 'GJ.1.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-26T18:31:35Z', 'updated_at': '2023-06-26T18:31:35Z', 'due_on': None, 'closed_at': None}\n", - "788 GJ.1.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/789', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/789', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/789/labels', 'id': 9594259, 'node_id': 'MI_kwDOEGMSVc4AkmWT', 'number': 789, 'title': 'FL.13.2', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-28T11:33:57Z', 'updated_at': '2023-06-28T11:33:57Z', 'due_on': None, 'closed_at': None}\n", - "789 FL.13.2\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/790', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/790', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/790/labels', 'id': 9594784, 'node_id': 'MI_kwDOEGMSVc4Akmeg', 'number': 790, 'title': 'FL.18.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-28T13:55:55Z', 'updated_at': '2023-06-28T13:55:55Z', 'due_on': None, 'closed_at': None}\n", - "790 FL.18.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/791', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/791', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/791/labels', 'id': 9600667, 'node_id': 'MI_kwDOEGMSVc4Akn6b', 'number': 791, 'title': 'FL.20', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-29T21:30:11Z', 'updated_at': '2023-06-29T21:30:11Z', 'due_on': None, 'closed_at': None}\n", - "791 FL.20\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/792', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/792', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/792/labels', 'id': 9642521, 'node_id': 'MI_kwDOEGMSVc4AkyIZ', 'number': 792, 'title': 'XBB.1.5.90', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-11T09:10:54Z', 'updated_at': '2023-07-11T09:11:01Z', 'due_on': None, 'closed_at': None}\n", - "792 XBB.1.5.90\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/793', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/793', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/793/labels', 'id': 9642524, 'node_id': 'MI_kwDOEGMSVc4AkyIc', 'number': 793, 'title': 'FL.10.1 FL.25', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-11T09:12:04Z', 'updated_at': '2023-07-11T09:12:04Z', 'due_on': None, 'closed_at': None}\n", - "793 FL.10.1\n", - "793 FL.25\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/794', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/794', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/794/labels', 'id': 9642538, 'node_id': 'MI_kwDOEGMSVc4AkyIq', 'number': 794, 'title': 'FL.1.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-11T09:16:32Z', 'updated_at': '2023-07-18T08:53:43Z', 'due_on': None, 'closed_at': None}\n", - "794 FL.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/795', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/795', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/795/labels', 'id': 9667545, 'node_id': 'MI_kwDOEGMSVc4Ak4PZ', 'number': 795, 'title': 'FR.1.3', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-18T08:53:48Z', 'updated_at': '2023-07-18T08:53:48Z', 'due_on': None, 'closed_at': None}\n", - "795 FR.1.3\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/796', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/796', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/796/labels', 'id': 9701376, 'node_id': 'MI_kwDOEGMSVc4AlAgA', 'number': 796, 'title': 'FL.20.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T21:20:54Z', 'updated_at': '2023-07-26T21:20:54Z', 'due_on': None, 'closed_at': None}\n", - "796 FL.20.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/797', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/797', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/797/labels', 'id': 9701379, 'node_id': 'MI_kwDOEGMSVc4AlAgD', 'number': 797, 'title': 'GW.5', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T21:22:30Z', 'updated_at': '2023-07-26T21:22:49Z', 'due_on': None, 'closed_at': None}\n", - "797 GW.5\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/798', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/798', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/798/labels', 'id': 9704000, 'node_id': 'MI_kwDOEGMSVc4AlBJA', 'number': 798, 'title': 'FL.21.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-27T11:40:35Z', 'updated_at': '2023-07-27T11:40:35Z', 'due_on': None, 'closed_at': None}\n", - "798 FL.21.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/799', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/799', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/799/labels', 'id': 9704021, 'node_id': 'MI_kwDOEGMSVc4AlBJV', 'number': 799, 'title': 'FT.3.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 1, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-27T11:49:25Z', 'updated_at': '2023-07-27T11:49:25Z', 'due_on': None, 'closed_at': None}\n", - "799 FT.3.1.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/800', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/800', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/800/labels', 'id': 9704027, 'node_id': 'MI_kwDOEGMSVc4AlBJb', 'number': 800, 'title': 'FL.19.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-27T11:53:20Z', 'updated_at': '2023-07-27T11:53:20Z', 'due_on': None, 'closed_at': None}\n", - "800 FL.19.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/801', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/801', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/801/labels', 'id': 9791115, 'node_id': 'MI_kwDOEGMSVc4AlWaL', 'number': 801, 'title': 'EG.5.1.4', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-14T19:02:21Z', 'updated_at': '2023-08-14T19:02:22Z', 'due_on': None, 'closed_at': None}\n", - "801 EG.5.1.4\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/802', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/802', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/802/labels', 'id': 9791155, 'node_id': 'MI_kwDOEGMSVc4AlWaz', 'number': 802, 'title': 'HF.1', 'description': None, 'creator': {'login': 'InfrPopGen', 'id': 50238498, 'node_id': 'MDQ6VXNlcjUwMjM4NDk4', 'avatar_url': 'https://avatars.githubusercontent.com/u/50238498?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/InfrPopGen', 'html_url': 'https://github.com/InfrPopGen', 'followers_url': 'https://api.github.com/users/InfrPopGen/followers', 'following_url': 'https://api.github.com/users/InfrPopGen/following{/other_user}', 'gists_url': 'https://api.github.com/users/InfrPopGen/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/InfrPopGen/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/InfrPopGen/subscriptions', 'organizations_url': 'https://api.github.com/users/InfrPopGen/orgs', 'repos_url': 'https://api.github.com/users/InfrPopGen/repos', 'events_url': 'https://api.github.com/users/InfrPopGen/events{/privacy}', 'received_events_url': 'https://api.github.com/users/InfrPopGen/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-14T19:12:27Z', 'updated_at': '2023-08-14T19:12:28Z', 'due_on': None, 'closed_at': None}\n", - "802 HF.1\n", - "{'url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/803', 'html_url': 'https://github.com/cov-lineages/pango-designation/milestone/803', 'labels_url': 'https://api.github.com/repos/cov-lineages/pango-designation/milestones/803/labels', 'id': 9801670, 'node_id': 'MI_kwDOEGMSVc4AlY_G', 'number': 803, 'title': 'BA.2.86', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-17T12:59:34Z', 'updated_at': '2023-08-17T15:21:13Z', 'due_on': None, 'closed_at': None}\n", - "803 BA.2.86\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/1', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/1', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/1/labels', 'id': 9520503, 'node_id': 'MI_kwDOJfoOuM4AkUV3', 'number': 1, 'title': 'XCE', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-09T19:00:17Z', 'updated_at': '2023-06-09T19:00:19Z', 'due_on': None, 'closed_at': None}\n", - "1 sars#XCE\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/2', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/2', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/2/labels', 'id': 9521986, 'node_id': 'MI_kwDOJfoOuM4AkUtC', 'number': 2, 'title': 'XCF', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-06-10T11:10:22Z', 'updated_at': '2023-06-10T11:10:22Z', 'due_on': None, 'closed_at': None}\n", - "2 sars#XCF\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/3', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/3', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/3/labels', 'id': 9655753, 'node_id': 'MI_kwDOJfoOuM4Ak1XJ', 'number': 3, 'title': 'CM.7.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-14T09:37:31Z', 'updated_at': '2023-07-14T09:39:03Z', 'due_on': None, 'closed_at': None}\n", - "3 sars#CM.7.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/4', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/4', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/4/labels', 'id': 9655758, 'node_id': 'MI_kwDOJfoOuM4Ak1XO', 'number': 4, 'title': 'CM.7.1 CM.7.1.1', 'description': None, 'creator': {'login': 'corneliusroemer', 'id': 25161793, 'node_id': 'MDQ6VXNlcjI1MTYxNzkz', 'avatar_url': 'https://avatars.githubusercontent.com/u/25161793?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/corneliusroemer', 'html_url': 'https://github.com/corneliusroemer', 'followers_url': 'https://api.github.com/users/corneliusroemer/followers', 'following_url': 'https://api.github.com/users/corneliusroemer/following{/other_user}', 'gists_url': 'https://api.github.com/users/corneliusroemer/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/corneliusroemer/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/corneliusroemer/subscriptions', 'organizations_url': 'https://api.github.com/users/corneliusroemer/orgs', 'repos_url': 'https://api.github.com/users/corneliusroemer/repos', 'events_url': 'https://api.github.com/users/corneliusroemer/events{/privacy}', 'received_events_url': 'https://api.github.com/users/corneliusroemer/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-14T09:39:03Z', 'updated_at': '2023-07-14T09:50:19Z', 'due_on': None, 'closed_at': None}\n", - "4 sars#CM.7.1\n", - "4 sars#CM.7.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/5', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/5', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/5/labels', 'id': 9674136, 'node_id': 'MI_kwDOJfoOuM4Ak52Y', 'number': 5, 'title': 'EG.4.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-19T15:22:00Z', 'updated_at': '2023-07-19T15:22:00Z', 'due_on': None, 'closed_at': None}\n", - "5 sars#EG.4.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/6', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/6', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/6/labels', 'id': 9674155, 'node_id': 'MI_kwDOJfoOuM4Ak52r', 'number': 6, 'title': 'GY.4', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-19T15:24:46Z', 'updated_at': '2023-08-05T15:42:02Z', 'due_on': None, 'closed_at': None}\n", - "6 sars#GY.4\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/7', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/7', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/7/labels', 'id': 9674904, 'node_id': 'MI_kwDOJfoOuM4Ak6CY', 'number': 7, 'title': 'GY.6', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 1, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-19T19:18:39Z', 'updated_at': '2023-07-22T08:22:56Z', 'due_on': None, 'closed_at': None}\n", - "7 sars#GY.6\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/8', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/8', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/8/labels', 'id': 9682629, 'node_id': 'MI_kwDOJfoOuM4Ak77F', 'number': 8, 'title': 'GK.1.3', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-21T11:39:19Z', 'updated_at': '2023-07-21T11:39:20Z', 'due_on': None, 'closed_at': None}\n", - "8 sars#GK.1.3\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/9', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/9', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/9/labels', 'id': 9682633, 'node_id': 'MI_kwDOJfoOuM4Ak77J', 'number': 9, 'title': 'XBB.1.41.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-21T11:40:09Z', 'updated_at': '2023-07-21T11:40:09Z', 'due_on': None, 'closed_at': None}\n", - "9 sars#XBB.1.41.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/11', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/11', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/11/labels', 'id': 9682787, 'node_id': 'MI_kwDOJfoOuM4Ak79j', 'number': 11, 'title': 'FL.4.3', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-21T12:24:53Z', 'updated_at': '2023-07-21T12:24:53Z', 'due_on': None, 'closed_at': None}\n", - "11 sars#FL.4.3\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/12', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/12', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/12/labels', 'id': 9683396, 'node_id': 'MI_kwDOJfoOuM4Ak8HE', 'number': 12, 'title': 'GJ.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-21T15:14:01Z', 'updated_at': '2023-07-21T15:14:01Z', 'due_on': None, 'closed_at': None}\n", - "12 sars#GJ.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/13', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/13', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/13/labels', 'id': 9685519, 'node_id': 'MI_kwDOJfoOuM4Ak8oP', 'number': 13, 'title': 'GW.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-22T08:18:03Z', 'updated_at': '2023-07-22T08:18:03Z', 'due_on': None, 'closed_at': None}\n", - "13 sars#GW.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/14', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/14', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/14/labels', 'id': 9690555, 'node_id': 'MI_kwDOJfoOuM4Ak927', 'number': 14, 'title': 'HL.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T12:58:40Z', 'updated_at': '2023-07-24T12:58:40Z', 'due_on': None, 'closed_at': None}\n", - "14 sars#HL.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/15', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/15', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/15/labels', 'id': 9690556, 'node_id': 'MI_kwDOJfoOuM4Ak928', 'number': 15, 'title': 'EG.5.1.6', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T12:59:13Z', 'updated_at': '2023-07-24T12:59:13Z', 'due_on': None, 'closed_at': None}\n", - "15 sars#EG.5.1.6\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/16', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/16', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/16/labels', 'id': 9690557, 'node_id': 'MI_kwDOJfoOuM4Ak929', 'number': 16, 'title': 'XM.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-24T12:59:28Z', 'updated_at': '2023-07-24T12:59:36Z', 'due_on': None, 'closed_at': None}\n", - "16 sars#XM.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/17', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/17', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/17/labels', 'id': 9690559, 'node_id': 'MI_kwDOJfoOuM4Ak92_', 'number': 17, 'title': 'HM.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T12:59:42Z', 'updated_at': '2023-07-24T12:59:42Z', 'due_on': None, 'closed_at': None}\n", - "17 sars#HM.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/18', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/18', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/18/labels', 'id': 9690561, 'node_id': 'MI_kwDOJfoOuM4Ak93B', 'number': 18, 'title': 'EG.5.1.4', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:00:31Z', 'updated_at': '2023-07-24T13:00:31Z', 'due_on': None, 'closed_at': None}\n", - "18 sars#EG.5.1.4\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/19', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/19', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/19/labels', 'id': 9690573, 'node_id': 'MI_kwDOJfoOuM4Ak93N', 'number': 19, 'title': 'HK.3', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:04:14Z', 'updated_at': '2023-07-31T14:10:11Z', 'due_on': None, 'closed_at': None}\n", - "19 sars#HK.3\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/20', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/20', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/20/labels', 'id': 9690602, 'node_id': 'MI_kwDOJfoOuM4Ak93q', 'number': 20, 'title': 'XBB.1.16.17', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:10:48Z', 'updated_at': '2023-07-24T13:11:07Z', 'due_on': None, 'closed_at': None}\n", - "20 sars#XBB.1.16.17\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/21', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/21', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/21/labels', 'id': 9690613, 'node_id': 'MI_kwDOJfoOuM4Ak931', 'number': 21, 'title': 'FY.4.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:14:32Z', 'updated_at': '2023-07-24T13:14:55Z', 'due_on': None, 'closed_at': None}\n", - "21 sars#FY.4.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/22', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/22', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/22/labels', 'id': 9690629, 'node_id': 'MI_kwDOJfoOuM4Ak94F', 'number': 22, 'title': 'FY.2.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:19:50Z', 'updated_at': '2023-07-24T13:19:50Z', 'due_on': None, 'closed_at': None}\n", - "22 sars#FY.2.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/23', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/23', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/23/labels', 'id': 9690646, 'node_id': 'MI_kwDOJfoOuM4Ak94W', 'number': 23, 'title': 'HK.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:24:31Z', 'updated_at': '2023-07-24T13:24:31Z', 'due_on': None, 'closed_at': None}\n", - "23 sars#HK.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/24', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/24', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/24/labels', 'id': 9690664, 'node_id': 'MI_kwDOJfoOuM4Ak94o', 'number': 24, 'title': 'EG.5.1.3', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T13:30:05Z', 'updated_at': '2023-07-24T13:30:05Z', 'due_on': None, 'closed_at': None}\n", - "24 sars#EG.5.1.3\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/25', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/25', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/25/labels', 'id': 9690788, 'node_id': 'MI_kwDOJfoOuM4Ak96k', 'number': 25, 'title': 'GA.4', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T14:02:38Z', 'updated_at': '2023-07-24T14:03:17Z', 'due_on': None, 'closed_at': None}\n", - "25 sars#GA.4\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/26', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/26', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/26/labels', 'id': 9691054, 'node_id': 'MI_kwDOJfoOuM4Ak9-u', 'number': 26, 'title': 'FY.7', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-24T15:03:45Z', 'updated_at': '2023-07-24T15:03:45Z', 'due_on': None, 'closed_at': None}\n", - "26 sars#FY.7\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/27', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/27', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/27/labels', 'id': 9693657, 'node_id': 'MI_kwDOJfoOuM4Ak-nZ', 'number': 27, 'title': 'FL.29', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T08:00:23Z', 'updated_at': '2023-07-25T08:00:23Z', 'due_on': None, 'closed_at': None}\n", - "27 sars#FL.29\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/28', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/28', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/28/labels', 'id': 9693868, 'node_id': 'MI_kwDOJfoOuM4Ak-qs', 'number': 28, 'title': 'XBB.1.5.93', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-25T09:04:04Z', 'updated_at': '2023-07-25T09:04:12Z', 'due_on': None, 'closed_at': None}\n", - "28 sars#XBB.1.5.93\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/29', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/29', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/29/labels', 'id': 9693869, 'node_id': 'MI_kwDOJfoOuM4Ak-qt', 'number': 29, 'title': 'HD.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-25T09:04:12Z', 'updated_at': '2023-07-25T09:04:27Z', 'due_on': None, 'closed_at': None}\n", - "29 sars#HD.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/30', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/30', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/30/labels', 'id': 9693870, 'node_id': 'MI_kwDOJfoOuM4Ak-qu', 'number': 30, 'title': 'HD.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-25T09:04:27Z', 'updated_at': '2023-07-25T09:05:22Z', 'due_on': None, 'closed_at': None}\n", - "30 sars#HD.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/31', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/31', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/31/labels', 'id': 9693873, 'node_id': 'MI_kwDOJfoOuM4Ak-qx', 'number': 31, 'title': 'XBB.1.5.93 HD.1 HD.1.1', 'description': '', 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T09:05:22Z', 'updated_at': '2023-07-25T22:51:22Z', 'due_on': None, 'closed_at': None}\n", - "31 sars#XBB.1.5.93\n", - "31 sars#HD.1\n", - "31 sars#HD.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/32', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/32', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/32/labels', 'id': 9694012, 'node_id': 'MI_kwDOJfoOuM4Ak-s8', 'number': 32, 'title': 'HK.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T09:43:32Z', 'updated_at': '2023-07-25T09:43:32Z', 'due_on': None, 'closed_at': None}\n", - "32 sars#HK.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/33', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/33', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/33/labels', 'id': 9694132, 'node_id': 'MI_kwDOJfoOuM4Ak-u0', 'number': 33, 'title': 'FK.1.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:17:30Z', 'updated_at': '2023-07-25T10:17:44Z', 'due_on': None, 'closed_at': None}\n", - "33 sars#FK.1.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/34', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/34', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/34/labels', 'id': 9694158, 'node_id': 'MI_kwDOJfoOuM4Ak-vO', 'number': 34, 'title': 'FK.1.4.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:26:11Z', 'updated_at': '2023-07-25T10:26:12Z', 'due_on': None, 'closed_at': None}\n", - "34 sars#FK.1.4.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/35', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/35', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/35/labels', 'id': 9694171, 'node_id': 'MI_kwDOJfoOuM4Ak-vb', 'number': 35, 'title': 'HN.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:28:24Z', 'updated_at': '2023-07-31T14:09:34Z', 'due_on': None, 'closed_at': None}\n", - "35 sars#HN.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/36', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/36', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/36/labels', 'id': 9694211, 'node_id': 'MI_kwDOJfoOuM4Ak-wD', 'number': 36, 'title': 'EG.9.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:44:06Z', 'updated_at': '2023-07-25T10:44:22Z', 'due_on': None, 'closed_at': None}\n", - "36 sars#EG.9.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/37', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/37', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/37/labels', 'id': 9694218, 'node_id': 'MI_kwDOJfoOuM4Ak-wK', 'number': 37, 'title': 'EG.9', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:46:07Z', 'updated_at': '2023-07-25T10:46:19Z', 'due_on': None, 'closed_at': None}\n", - "37 sars#EG.9\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/38', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/38', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/38/labels', 'id': 9694227, 'node_id': 'MI_kwDOJfoOuM4Ak-wT', 'number': 38, 'title': 'EG.10 EG.10.1', 'description': '', 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T10:48:17Z', 'updated_at': '2023-07-25T22:51:07Z', 'due_on': None, 'closed_at': None}\n", - "38 sars#EG.10\n", - "38 sars#EG.10.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/39', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/39', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/39/labels', 'id': 9695429, 'node_id': 'MI_kwDOJfoOuM4Ak_DF', 'number': 39, 'title': 'FT.3 FT.3.1', 'description': '', 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-25T16:45:48Z', 'updated_at': '2023-07-25T22:50:53Z', 'due_on': None, 'closed_at': None}\n", - "39 sars#FT.3\n", - "39 sars#FT.3.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/40', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/40', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/40/labels', 'id': 9698254, 'node_id': 'MI_kwDOJfoOuM4Ak_vO', 'number': 40, 'title': 'XBB.1.5.99', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-07-26T06:25:04Z', 'updated_at': '2023-07-26T10:41:55Z', 'due_on': None, 'closed_at': None}\n", - "40 sars#XBB.1.5.99\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/41', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/41', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/41/labels', 'id': 9698257, 'node_id': 'MI_kwDOJfoOuM4Ak_vR', 'number': 41, 'title': 'EG.5.2.3', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T06:26:08Z', 'updated_at': '2023-07-26T06:26:27Z', 'due_on': None, 'closed_at': None}\n", - "41 sars#EG.5.2.3\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/42', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/42', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/42/labels', 'id': 9698258, 'node_id': 'MI_kwDOJfoOuM4Ak_vS', 'number': 42, 'title': 'EG.5.2.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T06:26:58Z', 'updated_at': '2023-07-26T06:27:25Z', 'due_on': None, 'closed_at': None}\n", - "42 sars#EG.5.2.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/43', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/43', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/43/labels', 'id': 9698856, 'node_id': 'MI_kwDOJfoOuM4Ak_4o', 'number': 43, 'title': 'XBB.1.16.18', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T08:58:55Z', 'updated_at': '2023-07-26T08:59:14Z', 'due_on': None, 'closed_at': None}\n", - "43 sars#XBB.1.16.18\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/44', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/44', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/44/labels', 'id': 9699193, 'node_id': 'MI_kwDOJfoOuM4Ak_95', 'number': 44, 'title': ' HQ.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T10:42:10Z', 'updated_at': '2023-07-26T10:42:11Z', 'due_on': None, 'closed_at': None}\n", - "44 sars#HQ.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/45', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/45', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/45/labels', 'id': 9699199, 'node_id': 'MI_kwDOJfoOuM4Ak_9_', 'number': 45, 'title': 'HR.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T10:45:18Z', 'updated_at': '2023-07-26T10:45:18Z', 'due_on': None, 'closed_at': None}\n", - "45 sars#HR.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/46', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/46', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/46/labels', 'id': 9699810, 'node_id': 'MI_kwDOJfoOuM4AlAHi', 'number': 46, 'title': 'GW.5', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T13:51:39Z', 'updated_at': '2023-07-26T13:51:39Z', 'due_on': None, 'closed_at': None}\n", - "46 sars#GW.5\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/47', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/47', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/47/labels', 'id': 9699819, 'node_id': 'MI_kwDOJfoOuM4AlAHr', 'number': 47, 'title': 'XBB.1.19.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T13:53:58Z', 'updated_at': '2023-07-26T15:40:00Z', 'due_on': None, 'closed_at': None}\n", - "47 sars#XBB.1.19.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/48', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/48', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/48/labels', 'id': 9701604, 'node_id': 'MI_kwDOJfoOuM4AlAjk', 'number': 48, 'title': 'XBB.1.31.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-26T23:55:12Z', 'updated_at': '2023-07-26T23:55:12Z', 'due_on': None, 'closed_at': None}\n", - "48 sars#XBB.1.31.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/49', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/49', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/49/labels', 'id': 9704433, 'node_id': 'MI_kwDOJfoOuM4AlBPx', 'number': 49, 'title': 'FL.21.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-27T13:37:58Z', 'updated_at': '2023-07-27T13:38:09Z', 'due_on': None, 'closed_at': None}\n", - "49 sars#FL.21.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/50', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/50', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/50/labels', 'id': 9706593, 'node_id': 'MI_kwDOJfoOuM4AlBxh', 'number': 50, 'title': 'HU.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-27T18:06:28Z', 'updated_at': '2023-07-27T18:06:33Z', 'due_on': None, 'closed_at': None}\n", - "50 sars#HU.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/51', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/51', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/51/labels', 'id': 9713156, 'node_id': 'MI_kwDOJfoOuM4AlDYE', 'number': 51, 'title': 'XBB.1.16.14 FP.2.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-29T09:09:58Z', 'updated_at': '2023-08-06T14:10:48Z', 'due_on': None, 'closed_at': None}\n", - "51 sars#XBB.1.16.14\n", - "51 sars#FP.2.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/52', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/52', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/52/labels', 'id': 9721718, 'node_id': 'MI_kwDOJfoOuM4AlFd2', 'number': 52, 'title': 'EG.5.1.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-07-31T12:35:24Z', 'updated_at': '2023-07-31T12:35:43Z', 'due_on': None, 'closed_at': None}\n", - "52 sars#EG.5.1.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/53', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/53', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/53/labels', 'id': 9727951, 'node_id': 'MI_kwDOJfoOuM4AlG_P', 'number': 53, 'title': 'HP.1 HP.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-01T10:26:37Z', 'updated_at': '2023-08-01T10:26:38Z', 'due_on': None, 'closed_at': None}\n", - "53 sars#HP.1\n", - "53 sars#HP.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/54', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/54', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/54/labels', 'id': 9734232, 'node_id': 'MI_kwDOJfoOuM4AlIhY', 'number': 54, 'title': 'HW.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-02T15:38:19Z', 'updated_at': '2023-08-02T15:39:15Z', 'due_on': None, 'closed_at': None}\n", - "54 sars#HW.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/55', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/55', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/55/labels', 'id': 9735556, 'node_id': 'MI_kwDOJfoOuM4AlI2E', 'number': 55, 'title': 'HY.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-02T23:13:42Z', 'updated_at': '2023-08-02T23:13:51Z', 'due_on': None, 'closed_at': None}\n", - "55 sars#HY.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/56', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/56', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/56/labels', 'id': 9742827, 'node_id': 'MI_kwDOJfoOuM4AlKnr', 'number': 56, 'title': 'GJ.1.2.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-04T14:02:46Z', 'updated_at': '2023-08-04T14:02:46Z', 'due_on': None, 'closed_at': None}\n", - "56 sars#GJ.1.2.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/57', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/57', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/57/labels', 'id': 9742845, 'node_id': 'MI_kwDOJfoOuM4AlKn9', 'number': 57, 'title': 'HZ.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-04T14:07:16Z', 'updated_at': '2023-08-04T14:07:32Z', 'due_on': None, 'closed_at': None}\n", - "57 sars#HZ.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/58', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/58', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/58/labels', 'id': 9744838, 'node_id': 'MI_kwDOJfoOuM4AlLHG', 'number': 58, 'title': 'HW.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-04T22:19:49Z', 'updated_at': '2023-08-04T22:19:49Z', 'due_on': None, 'closed_at': None}\n", - "58 sars#HW.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/59', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/59', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/59/labels', 'id': 9752793, 'node_id': 'MI_kwDOJfoOuM4AlNDZ', 'number': 59, 'title': 'BN.1.3.13', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 1, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-08-07T11:21:52Z', 'updated_at': '2023-08-07T11:21:53Z', 'due_on': None, 'closed_at': None}\n", - "59 sars#BN.1.3.13\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/60', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/60', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/60/labels', 'id': 9758886, 'node_id': 'MI_kwDOJfoOuM4AlOim', 'number': 60, 'title': 'Fy.4.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 0, 'state': 'open', 'created_at': '2023-08-08T10:19:01Z', 'updated_at': '2023-08-08T10:19:10Z', 'due_on': None, 'closed_at': None}\n", - "60 sars#Fy.4.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/61', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/61', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/61/labels', 'id': 9758888, 'node_id': 'MI_kwDOJfoOuM4AlOio', 'number': 61, 'title': 'FY.4.2', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-08T10:19:18Z', 'updated_at': '2023-08-08T10:19:18Z', 'due_on': None, 'closed_at': None}\n", - "61 sars#FY.4.2\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/62', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/62', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/62/labels', 'id': 9758908, 'node_id': 'MI_kwDOJfoOuM4AlOi8', 'number': 62, 'title': 'EG.11', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-08T10:26:04Z', 'updated_at': '2023-08-08T10:26:05Z', 'due_on': None, 'closed_at': None}\n", - "62 sars#EG.11\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/63', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/63', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/63/labels', 'id': 9758911, 'node_id': 'MI_kwDOJfoOuM4AlOi_', 'number': 63, 'title': 'GY.8', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-08T10:27:40Z', 'updated_at': '2023-08-08T10:27:40Z', 'due_on': None, 'closed_at': None}\n", - "63 sars#GY.8\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/64', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/64', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/64/labels', 'id': 9758947, 'node_id': 'MI_kwDOJfoOuM4AlOjj', 'number': 64, 'title': 'HU.1 HU.1.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-08T10:38:03Z', 'updated_at': '2023-08-08T10:38:03Z', 'due_on': None, 'closed_at': None}\n", - "64 sars#HU.1\n", - "64 sars#HU.1.1\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/65', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/65', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/65/labels', 'id': 9758954, 'node_id': 'MI_kwDOJfoOuM4AlOjq', 'number': 65, 'title': 'FL.2.5', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-08T10:41:00Z', 'updated_at': '2023-08-08T10:41:00Z', 'due_on': None, 'closed_at': None}\n", - "65 sars#FL.2.5\n", - "{'url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/66', 'html_url': 'https://github.com/sars-cov-2-variants/lineage-proposals/milestone/66', 'labels_url': 'https://api.github.com/repos/sars-cov-2-variants/lineage-proposals/milestones/66/labels', 'id': 9771948, 'node_id': 'MI_kwDOJfoOuM4AlRus', 'number': 66, 'title': 'JA.1', 'description': None, 'creator': {'login': 'FedeGueli', 'id': 87669813, 'node_id': 'MDQ6VXNlcjg3NjY5ODEz', 'avatar_url': 'https://avatars.githubusercontent.com/u/87669813?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FedeGueli', 'html_url': 'https://github.com/FedeGueli', 'followers_url': 'https://api.github.com/users/FedeGueli/followers', 'following_url': 'https://api.github.com/users/FedeGueli/following{/other_user}', 'gists_url': 'https://api.github.com/users/FedeGueli/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FedeGueli/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FedeGueli/subscriptions', 'organizations_url': 'https://api.github.com/users/FedeGueli/orgs', 'repos_url': 'https://api.github.com/users/FedeGueli/repos', 'events_url': 'https://api.github.com/users/FedeGueli/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FedeGueli/received_events', 'type': 'User', 'site_admin': False}, 'open_issues': 0, 'closed_issues': 1, 'state': 'open', 'created_at': '2023-08-10T13:58:33Z', 'updated_at': '2023-08-10T13:58:33Z', 'due_on': None, 'closed_at': None}\n", - "66 sars#JA.1\n" - ] - } - ], - "source": [ - "import json\n", - "from urllib import request\n", - "...\n", - "# Build milestone_list from API query that lists all milestones in a repo.\n", - "milestone_list = []\n", - "milestone_already=[]\n", - "for repo in ['cov-lineages/pango-designation', 'sars-cov-2-variants/lineage-proposals']:\n", - " if repo == 'sars-cov-2-variants/lineage-proposals':\n", - " prefix = 'sars#'\n", - " else:\n", - " prefix = ''\n", - " # Request pages starting with 1, until we get an empty result list.\n", - " page = 1\n", - " while 1:\n", - " url = f'https://api.github.com/repos/{repo}/milestones?per_page=100&page={page}'\n", - " res_text = request.urlopen(url).read().decode('utf-8')\n", - " res_list = json.loads(res_text)\n", - " \n", - " if len(res_list) == 0:\n", - " break\n", - " # Each element of this page's result list includes the milestone number and title. Parse out lineage names from title.\n", - " for milestone_info in res_list:\n", - " print(milestone_info)\n", - " milestone = milestone_info['number']\n", - " if milestone not in milestone_already:\n", - " try:\n", - " title = milestone_info['title']\n", - " title_words = title.replace('. ','.').replace(',', ' ').split()\n", - " title = title.replace(' ', '+')\n", - " for item in title_words:\n", - " milestone=prefix+milestone\n", - " item = item\n", - " milestone_list.append([milestone, item, title])\n", - " print(milestone, item)\n", - " except Exception as e:\n", - " print(milestone, e)\n", - " page += 1" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/autoref/milestone.txt b/autoref/milestone.txt index bf5a6e5b..ceb11cf2 100755 --- a/autoref/milestone.txt +++ b/autoref/milestone.txt @@ -10,7 +10,6 @@ 10 A.28 A.28 11 B.1.214.2 B.1.214.2 12 B.1.214.1 B.1.214.1 -13 B.1.324.1 B.1.324.1 14 P.3 P.3 15 B.1.466.2 B.1.466.2 16 N.9 N.9 @@ -19,7 +18,6 @@ 19 B.1.243.1 B.1.243.1 20 B.1.617 B.1.617 21 P.1.1 P.1.1 -22 B.1.214.3 B.1.214.3 23 B.1.214.4 B.1.214.4 24 B.1.429.1 B.1.429.1 25 A.2.5.1 A.2.5.1 @@ -36,7 +34,6 @@ 36 B.1.622 B.1.622 37 P.1.2 P.1.2 38 XA XA -39 B.1.575 B.1.575 40 B.1.575.1 B.1.575.1 41 B.1.351.3 B.1.351.3 42 AV.1 AV.1 @@ -193,7 +190,6 @@ 144 AY.63 AY.63+AY.58 144 AY.58 AY.63+AY.58 145 AY.104 AY.104 -146 AY.99 AY.99 147 AY.106 AY.106 148 B.1.639 B.1.639 149 AY.4.2.1 AY.4.2.1 @@ -204,8 +200,6 @@ 153 AY.20.1 AY.20.1 154 AY.43.1 AY.43.1+AY.43.2 154 AY.43.2 AY.43.1+AY.43.2 -155 AY.99.1 AY.99.1 -156 AY.99.2 AY.99.2 157 AY.99 AY.99+AY.99.1+AY.99.2 157 AY.99.1 AY.99+AY.99.1+AY.99.2 157 AY.99.2 AY.99+AY.99.1+AY.99.2 @@ -335,7 +329,6 @@ 272 BA.2.21 BA.2.21 273 BA.2.22 BA.2.22 274 BA.2.23 BA.2.23 -275 BA.2.3.3 BA.2.3.3 276 BA.3.1 BA.3.1 277 BA.2.35 BA.2.35 278 BA.2.36 BA.2.36 @@ -344,7 +337,6 @@ 281 BA.2.39 BA.2.39 282 BA.2.38 BA.2.38 283 BA.2.23.1 BA.2.23.1 -284 BA.2.40 BA.2.40 285 BA.2.40.1 BA.2.40.1 286 BA.2.10.2 BA.2.10.2 287 BA.2.41 BA.2.41 @@ -362,7 +354,6 @@ 299 BA.5.3 BA.5.3 300 BA.2.46 BA.2.46 301 BA.2.3.5 BA.2.3.5 -302 BA.5.4 BA.5.4 303 BE.1 BE.1 304 BA.2.9.3 BA.2.9.3 305 BA.2.47 BA.2.47 @@ -483,7 +474,6 @@ 420 BA.5.1.12 BA.5.1.12 421 BE.1.1.1 BE.1.1.1 422 XAW XAW -423 XAY XAY 424 XAZ XAZ 425 BA.5.6 BA.5.6 426 BA.4.1.9 BA.4.1.9 @@ -494,13 +484,10 @@ 431 BN.1 BN.1 432 BP.1 BP.1 433 BA.5.5.3 BA.5.5.3 -434 BQ.1 BQ.1 435 BN.2 BN.2 436 BA.5.1.19 BA.5.1.19 437 BA.4.6.1 BA.4.6.1 438 BA.5.2.13 BA.5.2.13 -439 BM.4 BM.4 -440 BM4.1 BM4.1 441 BM.4 BM.4+BM.4.1 441 BM.4.1 BM.4+BM.4.1 442 BA.5.1.20 BA.5.1.20 @@ -520,14 +507,11 @@ 453 BL.1.1 BL.1.1 454 BL.1.2 BL.1.2 455 XBB XBB -456 BR.2 BR.2 457 BA.5.10.1 BA.5.10.1 458 BA.2.83 BA.2.83 459 BA.5.2.19 BA.5.2.19 460 BM.5 BM.5 461 BM.1.1.1 BM.1.1.1 -462 BA.2.84 BA.2.84 -463 BA.2.31.1 BA.2.31.1 464 BA.2.31.1 BA.2.31.1+BA.2.84 464 BA.2.84 BA.2.31.1+BA.2.84 465 BA.5.2.22 BA.5.2.22 @@ -650,7 +634,6 @@ 568 BQ.1.26.1 BQ.1.26.1 569 CV.2 CV.2 570 DJ.1.2 DJ.1.2 -571 CM.5.1 CM.5.1 572 CM.5.2 CM.5.2 573 CN.2 CN.2 574 CJ.1.1 CJ.1.1 @@ -674,7 +657,6 @@ 592 BQ.1.1.32 BQ.1.1.32 593 DF.1.1 DF.1.1 594 BA.5.2.47 BA.5.2.47 -595 XBB.1.5 XBB.1.5 596 BF.7.14 BF.7.14 597 BA.5.2.48 BA.5.2.48 598 XBB.1.8 XBB.1.8 @@ -688,7 +670,6 @@ 606 CM.12 CM.12 607 CK.1.2 CK.1.2 608 BA.2.3.22 BA.2.3.22 -609 xbm xbm 610 XBM XBM 611 BM.1.1.4 BM.1.1.4 612 BN.1.4.1 BN.1.4.1 @@ -713,7 +694,6 @@ 631 XBP XBP 632 DN.1.1.1 DN.1.1.1 633 CM.6.1 CM.6.1 -634 xbb.2.3 xbb.2.3 635 XBB.6.1 XBB.6.1 636 XBB.1.11 XBB.1.11+XBB.1.11.1 636 XBB.1.11.1 XBB.1.11+XBB.1.11.1 @@ -744,7 +724,6 @@ 660 EK.1 EK.1 661 DV.4 DV.4 662 XBK.1 XBK.1 -663 BA.5.2.64 BA.5.2.64 664 DB.3 DB.3 665 BA.5.12 BA.5.12 666 DV.3.1 DV.3.1 @@ -775,7 +754,6 @@ 691 XBB.1.5.26 XBB.1.5.26,+EU.1,+EU.1.1 691 EU.1 XBB.1.5.26,+EU.1,+EU.1.1 691 EU.1.1 XBB.1.5.26,+EU.1,+EU.1.1 -692 XBF.8.1 XBF.8.1 693 XBB.1.21 XBB.1.21 694 XBC.2.1 XBC.2.1 695 XBB.1.22 XBB.1.22,+XBB.1.22.1 @@ -851,7 +829,7 @@ 759 XBB.1.41 XBB.1.41 760 FL.15 FL.15 761 FL.13.1 FL.13.1 -762 FP.2.1 FP.+2.1 +762 FP.2.1 FP.2.1 763 FP.3 FP.3 764 FR.1.2 FR.1.2 765 FR.1.1 FR.1.1 @@ -866,7 +844,6 @@ 773 XBB.1.44.1 XBB.1.44.1 774 FL.2.3 FL.2.3 775 FY.5 FY.5 -776 XBB.1.6.10 XBB.1.6.10 777 FL.16 FL.16 778 GR.1 GR.1 779 GB.2 GB.2 @@ -885,7 +862,6 @@ 792 XBB.1.5.90 XBB.1.5.90 793 FL.10.1 FL.10.1+FL.25 793 FL.25 FL.10.1+FL.25 -794 FL.1.3 FL.1.3 795 FR.1.3 FR.1.3 796 FL.20.1 FL.20.1 797 GW.5 GW.5 @@ -895,9 +871,22 @@ 801 EG.5.1.4 EG.5.1.4 802 HF.1 HF.1 803 BA.2.86 BA.2.86 +804 JD.1 JD.1 +805 XCH XCH +806 FY.3.2 FY.3.2 +807 JH.1 JH.1+JH.2 +807 JH.2 JH.1+JH.2 +808 JD.1.1 JD.1.1 +809 XBB.1.5.103 XBB.1.5.103 +810 FL.2.6 FL.2.6 +812 XCK XCK +813 XCL XCL +814 FL.30 FL.30 +815 HS.1.1 HS.1.1 +816 JJ.1 JJ.1 +817 HK.8 HK.8 sars#1 XCE XCE sars#2 XCF XCF -sars#3 CM.7.1 CM.7.1 sars#4 CM.7.1 CM.7.1+CM.7.1.1 sars#4 CM.7.1.1 CM.7.1+CM.7.1.1 sars#5 EG.4.2 EG.4.2 @@ -910,7 +899,6 @@ sars#12 GJ.1.1 GJ.1.1 sars#13 GW.1 GW.1 sars#14 HL.1 HL.1 sars#15 EG.5.1.6 EG.5.1.6 -sars#16 XM.1 XM.1 sars#17 HM.1 HM.1 sars#18 EG.5.1.4 EG.5.1.4 sars#19 HK.3 HK.3 @@ -922,9 +910,6 @@ sars#24 EG.5.1.3 EG.5.1.3 sars#25 GA.4 GA.4 sars#26 FY.7 FY.7 sars#27 FL.29 FL.29 -sars#28 XBB.1.5.93 XBB.1.5.93 -sars#29 HD.1 HD.1 -sars#30 HD.1.1 HD.1.1 sars#31 XBB.1.5.93 XBB.1.5.93+HD.1++HD.1.1 sars#31 HD.1 XBB.1.5.93+HD.1++HD.1.1 sars#31 HD.1.1 XBB.1.5.93+HD.1++HD.1.1 @@ -938,11 +923,9 @@ sars#38 EG.10 EG.10++EG.10.1 sars#38 EG.10.1 EG.10++EG.10.1 sars#39 FT.3 FT.3+FT.3.1 sars#39 FT.3.1 FT.3+FT.3.1 -sars#40 XBB.1.5.99 XBB.1.5.99 sars#41 EG.5.2.3 EG.5.2.3 sars#42 EG.5.2.1 EG.5.2.1 sars#43 XBB.1.16.18 XBB.1.16.18 -sars#44 HQ.1 +HQ.1 sars#45 HR.1 HR.1 sars#46 GW.5 GW.5 sars#47 XBB.1.19.2 XBB.1.19.2 @@ -960,7 +943,6 @@ sars#56 GJ.1.2.1 GJ.1.2.1 sars#57 HZ.1 HZ.1 sars#58 HW.1 HW.1 sars#59 BN.1.3.13 BN.1.3.13 -sars#60 Fy.4.2 Fy.4.2 sars#61 FY.4.2 FY.4.2 sars#62 EG.11 EG.11 sars#63 GY.8 GY.8 @@ -968,3 +950,40 @@ sars#64 HU.1 HU.1+HU.1.1 sars#64 HU.1.1 HU.1+HU.1.1 sars#65 FL.2.5 FL.2.5 sars#66 JA.1 JA.1 +sars#67 GA.4.1 GA.4.1 +sars#68 XBB.1.41.2 XBB.1.41.2 +sars#69 GE.1.1 GE.1.1 +sars#70 GE.1.2 GE.1.2 +sars#71 FL.1.5.2 FL.1.5.2 +sars#72 GS.2 GS.2 +sars#73 GS.3 GS.3 +sars#74 JB.2 JB.2+JB.2.1 +sars#74 JB.2.1 JB.2+JB.2.1 +sars#76 GE.1.3 GE.1.3 +sars#77 JE.1 JE.1 +sars#78 HG.2 HG.2 +sars#79 JF.1 JF.1 +sars#80 JF.2 JF.2 +sars#81 GK.1.4 GK.1.4 +sars#82 HK.3.1 HK.3.1 +sars#83 GS.4 GS.4+GS.4.1 +sars#83 GS.4.1 GS.4+GS.4.1 +sars#84 XCJ XCJ +sars#85 GM.3.1 GM.3.1 +sars#86 HC.2 HC.2 +sars#87 JD.2 JD.2 +sars#88 GK.2 GK.2 +sars#89 HQ.1 HQ.1 +sars#91 EG.2.4 EG.2.4 +sars#92 EG.2.3 EG.2.3 +sars#94 JG.1 JG.1 +sars#95 EG.2.5 EG.2.5 +sars#96 JH.2 JH.2 +sars#97 GW.1.1 GW.1.1 +sars#98 GK.2.2 GK.2.2 +sars#99 HF.1.1 HF.1.1 +sars#100 EG.2.2 EG.2.2+XBB.1.16.23 +sars#100 XBB.1.16.23 EG.2.2+XBB.1.16.23 +sars#102 HK.9 HK.9 +sars#104 HK.8 HK.8+HK.10 +sars#104 HK.10 HK.8+HK.10 diff --git a/autoref/missing_refs.txt b/autoref/missing_refs.txt index 3c51c611..6fb2a6b2 100755 --- a/autoref/missing_refs.txt +++ b/autoref/missing_refs.txt @@ -1,4 +1,35 @@ -BN.1.3.13 sars-cov-2-variants/lineage-proposals#218 -HQ.1 sars-cov-2-variants/lineage-proposals#170 -FP.2.1 #2012 -FY.4.2 sars-cov-2-variants/lineage-proposals#487 +HC.2 sars-cov-2-variants/lineage-proposals#433 +JB.2 sars-cov-2-variants/lineage-proposals#209 +JB.2.1 sars-cov-2-variants/lineage-proposals#209 +GK.1.4 sars-cov-2-variants/lineage-proposals#504 +GK.2.2 sars-cov-2-variants/lineage-proposals#470 +JD.1.1 #2174 +XBB.1.5.103 #2192 +FL.1.5.2 sars-cov-2-variants/lineage-proposals#614 +EG.2.2 sars-cov-2-variants/lineage-proposals#517 +EG.2.3 sars-cov-2-variants/lineage-proposals#587 +EG.2.4 sars-cov-2-variants/lineage-proposals#586 +EG.2.5 sars-cov-2-variants/lineage-proposals#445 +HK.3.1 sars-cov-2-variants/lineage-proposals#580 +HK.8 #2230 +HK.9 sars-cov-2-variants/lineage-proposals#564 +HK.10 sars-cov-2-variants/lineage-proposals#537 +JG.1 sars-cov-2-variants/lineage-proposals#519 +JJ.1 #2208 +JF.1 sars-cov-2-variants/lineage-proposals#531 +JF.2 sars-cov-2-variants/lineage-proposals#457 +HF.1.1 sars-cov-2-variants/lineage-proposals#521 +XBB.1.16.23 sars-cov-2-variants/lineage-proposals#517 +GA.4.1 sars-cov-2-variants/lineage-proposals#661 +GW.1.1 sars-cov-2-variants/lineage-proposals#355 +XBB.1.41.2 sars-cov-2-variants/lineage-proposals#389 +JE.1 sars-cov-2-variants/lineage-proposals#597 +GM.3.1 sars-cov-2-variants/lineage-proposals#450 +HG.2 sars-cov-2-variants/lineage-proposals#652 +GE.1.1 sars-cov-2-variants/lineage-proposals#367 +GE.1.2 sars-cov-2-variants/lineage-proposals#200 +GE.1.3 sars-cov-2-variants/lineage-proposals#102 +GS.2 sars-cov-2-variants/lineage-proposals#93 +GS.3 sars-cov-2-variants/lineage-proposals#669 +GS.4 sars-cov-2-variants/lineage-proposals#668 +GS.4.1 sars-cov-2-variants/lineage-proposals#668 diff --git a/lineage_notes.txt b/lineage_notes.txt index fca5f936..32c0554b 100644 --- a/lineage_notes.txt +++ b/lineage_notes.txt @@ -2751,7 +2751,7 @@ GR.1 Alias of XBB.1.5.42.1, S:445S, Vietnam From #1966 XBB.1.5.43 C18501T, Singapore/Malaysia/Indonesia XBB.1.5.44 S:K356T, S:T572I, USA, from #1907 HC.1 Alias of XBB.1.5.44.1, S:P631S, USA, from sars-cov-2-variants/lineage-proposals#106 -HC.2 Alias of XBB.1.5.44.2, S:F157L, Canada +HC.2 Alias of XBB.1.5.44.2, S:F157L, Canada From sars-cov-2-variants/lineage-proposals#433 XBB.1.5.45 S:478R, C27425T, G28079T, India-GJ/MH, from #1792 XBB.1.5.46 C5770T, C15279T, Germany/France GB.1 Alias of XBB.1.5.46.1, S:L518V, France, from #1969 @@ -2770,8 +2770,8 @@ XBB.1.5.51 ORF1a:D3009A, USA XBB.1.5.52 C3589T XBB.1.5.53 S:F140I, S:L582F, S:R403K, South Africa,from #1804 JB.1 Alias of XBB.1.5.53.1, S:N148T, South Africa -JB.2 Alias of XBB.1.5.53.2, S:K478R, South Africa/USA -JB.2.1 Alias of XBB.1.5.53.2.1, S:H245Y, S:E554D, South Africa +JB.2 Alias of XBB.1.5.53.2, S:K478R, South Africa/USA From sars-cov-2-variants/lineage-proposals#209 +JB.2.1 Alias of XBB.1.5.53.2.1, S:H245Y, S:E554D, South Africa From sars-cov-2-variants/lineage-proposals#209 XBB.1.5.54 C14358T,C20016T,C29311T, Central/Eastern Europe XBB.1.5.55 ORF1a:T3356I, USA/Canada HP.1 Alias of XBB.1.5.55.1, N:L13F, US/Mexico From sars-cov-2-variants/lineage-proposals#277 @@ -2798,10 +2798,10 @@ GK.1 Alias of XBB.1.5.70.1, S:S704L, Brazil, from #2025 GK.1.1 Alias of XBB.1.5.70.1.1, S:T573I, Brazil GK.1.2 Alias of XBB.1.5.70.1.2, S:N185D, Brazil from #2093 GK.1.3 Alias of XBB.1.5.70.1.3, ORF1a:E633A, ORF1b:D1130G, USA/Canada From sars-cov-2-variants/lineage-proposals#179 -GK.1.4 Alias of XBB.1.5.70.1.4, S:478R, S:98F, Brazil +GK.1.4 Alias of XBB.1.5.70.1.4, S:478R, S:98F, Brazil From sars-cov-2-variants/lineage-proposals#504 GK.2 Alias of XBB.1.5.70.2, S:V511I, from sars-cov-2-variants/lineage-proposals#300 GK.2.1 Alias of XBB.1.5.70.2.1, ORF1a:L624I, ORF1a:L3641S, ORF1b:S763C -GK.2.2 Alias of XBB.1.5.70.2.2, S:E554D +GK.2.2 Alias of XBB.1.5.70.2.2, S:E554D From sars-cov-2-variants/lineage-proposals#470 GK.3 Alias of XBB.1.5.70.3, ORF1a:A876S, Brazil/USA/Canada GK.3.1 Alias of XBB.1.5.70.3.1, S:A475V, USA XBB.1.5.71 S:V511I, Spain @@ -2852,9 +2852,9 @@ HY.1 Alias of XBB.1.5.100.1, S:478R, US/Mexico From sars-cov-2-variants/lineage- XBB.1.5.101 ORF7a:E3Q, C14877T, Scandinavia/Poland/Vietnam XBB.1.5.102 C6896T, C14085T, C19488T, Brazil-Amazonas JD.1 Alias of XBB.1.5.102.1, S:L455F, S:F456L (T22928C), A14634G, T28282C, Brazil, from #2071 -JD.1.1 Alias of XBB.1.5.102.1.1, S:A475V, Brazil/USA/Spain +JD.1.1 Alias of XBB.1.5.102.1.1, S:A475V, Brazil/USA/Spain From #2174 JD.1.2 Alias of XBB.1.5.102.1.2, S:P1162S, Brazil -XBB.1.5.103 S:F456L (T22928C), S:180/184del, S:N185D, ORF1a:T1437I, ORF7b:C41W, T21357C, Argentina +XBB.1.5.103 S:F456L (T22928C), S:180/184del, S:N185D, ORF1a:T1437I, ORF7b:C41W, T21357C, Argentina From #2192 XBB.1.5.104 S:K304Q, USA XBB.1.5.105 S:K304N, USA/Europe XBB.1.6 USA, S:L216F, S:H146K, from issue #1428 @@ -2871,7 +2871,7 @@ FL.1.4 Alias of XBB.1.9.1.1.4, S:478R, S:Q1208H, Vietnam, from issue #1985 FL.1.5 Alias of XBB.1.9.1.1.5, S:456L (T22928C), ORF1b:K2557R, from #2036 FL.1.5.1 Alias of XBB.1.9.1.1.5.1, S:478R, from #2036 HN.1 Alias of XBB.1.9.1.1.5.1.1, S:A67S, Dominican Republic From sars-cov-2-variants/lineage-proposals#408 -FL.1.5.2 Alias of XBB.1.9.1.1.5.2, S:N481K, S:H681R, England/France/Denmark +FL.1.5.2 Alias of XBB.1.9.1.1.5.2, S:N481K, S:H681R, England/France/Denmark From sars-cov-2-variants/lineage-proposals#614 FL.1.6 Alias of XBB.1.9.1.1.6, S:N481K, S:Q1208H FL.1.7 Alias of XBB.1.9.1.1.7, S:478R, S:C1235F, Indonesia, from #1985 FL.2 Alias of XBB.1.9.1.2, T4579A @@ -2956,10 +2956,10 @@ EG.1.7 Alias of XBB.1.9.2.1.7, S:E156V, Europe EG.1.8 Alias of XBB.1.9.2.1.8, S:S640F, ORF1b:D161G, ORF1b:P2321L, China EG.2 Alias of XBB.1.9.2.2, S:478R, Indonesia EG.2.1 Alias of XBB.1.9.2.2.1, S:F456L (T22930A), S:V327I, Indonesia -EG.2.2 Alias of XBB.1.9.2.2.2, S:K304N, Indonesia/Japan -EG.2.3 Alias of XBB.1.9.2.2.3, S:I742V, Indonesia/Singapore -EG.2.4 Alias of XBB.1.9.2.2.4, S:K356T, ORF1a:G2265D, Singapore -EG.2.5 Alias of XBB.1.9.2.2.4, S:Q675H, Indonesia +EG.2.2 Alias of XBB.1.9.2.2.2, S:K304N, Indonesia/Japan From sars-cov-2-variants/lineage-proposals#517 +EG.2.3 Alias of XBB.1.9.2.2.3, S:I742V, Indonesia/Singapore From sars-cov-2-variants/lineage-proposals#587 +EG.2.4 Alias of XBB.1.9.2.2.4, S:K356T, ORF1a:G2265D, Singapore From sars-cov-2-variants/lineage-proposals#586 +EG.2.5 Alias of XBB.1.9.2.2.4, S:Q675H, Indonesia From sars-cov-2-variants/lineage-proposals#445 EG.3 Alias of XBB.1.9.2.3, ORF1a:L2778F on N:L219F branch EG.4 Alias of XBB.1.9.2.4, C28651T EG.4.1 Alias of XBB.1.9.2.4.1, S:I870V, N:A119S @@ -2972,19 +2972,19 @@ EG.5.1.1 Alias of XBB.1.9.2.5.1.1, China, from pango-designation issue #2020 HK.1 Alias of XBB.1.9.2.5.1.1.1, S:G257V, China from https://github.com/sars-cov-2-variants/lineage-proposals/issues/359 HK.2 Alias of XBB.1.9.2.5.1.1.2, S:Q14H, China From sars-cov-2-variants/lineage-proposals#432 HK.3 Alias of XBB.1.9.2.5.1.1.3, S:L455F, China from https://github.com/sars-cov-2-variants/lineage-proposals/issues/414 -HK.3.1 Alias of XBB.1.9.2.5.1.1.3.1, S:F157L, China +HK.3.1 Alias of XBB.1.9.2.5.1.1.3.1, S:F157L, China From sars-cov-2-variants/lineage-proposals#580 HK.4 Alias of XBB.1.9.2.5.1.1.4, S:T883I, China HK.5 Alias of XBB.1.9.2.5.1.1.5, S:Q677H, China HK.6 Alias of XBB.1.9.2.5.1.1.6, S:D253G, ORF1a:A1923T, UK/USA HK.7 Alias of XBB.1.9.2.5.1.1.7, S:N148T, China -HK.8 Alias of XBB.1.9.2.5.1.1.8, S:L455F, on C11779T branch, China -HK.9 Alias of XBB.1.9.2.5.1.1.9, S:R190K, on C11779T branch, England -HK.10 Alias of XBB.1.9.2.5.1.1.10, S:L455F, on C19983T branch, China/England/Denmark +HK.8 Alias of XBB.1.9.2.5.1.1.8, S:L455F, on C11779T branch, China From #2230 +HK.9 Alias of XBB.1.9.2.5.1.1.9, S:R190K, on C11779T branch, England From sars-cov-2-variants/lineage-proposals#564 +HK.10 Alias of XBB.1.9.2.5.1.1.10, S:L455F, on C19983T branch, China/England/Denmark From sars-cov-2-variants/lineage-proposals#537 EG.5.1.2 Alias of XBB.1.9.2.5.1.2, Japan, ORF1b:V1644I From sars-cov-2-variants/lineage-proposals#301 EG.5.1.3 Alias of XBB.1.9.2.5.1.3, ORF1a:R542C, C22570T from https://github.com/sars-cov-2-variants/lineage-proposals/issues/222 -JG.1 Alias of XBB.1.9.2.5.1.3.1, S:T732I, France +JG.1 Alias of XBB.1.9.2.5.1.3.1, S:T732I, France From sars-cov-2-variants/lineage-proposals#519 EG.5.1.4 Alias of XBB.1.9.2.5.1.4, ORF1b:K2557R from https://github.com/cov-lineages/pango-designation/issues/2117 -JJ.1 Alias of XBB.1.9.2.5.1.4.1, S:L455F, ORF3a:I47V, China/Japan +JJ.1 Alias of XBB.1.9.2.5.1.4.1, S:L455F, ORF3a:I47V, China/Japan From #2208 EG.5.1.5 Alias of XBB.1.9.2.5.1.5, ORF1a:L3293I, ORF1b:T1274I, ORF1b:L2349V, Portugal EG.5.1.6 Alias of XBB.1.9.2.5.1.6, S:F157L, ORF1a:S1857L, USA from https://github.com/sars-cov-2-variants/lineage-proposals/issues/394 HV.1 Alias of XBB.1.9.2.5.1.6.1, S:L452R, USA @@ -3053,8 +3053,8 @@ XBB.1.16.3 Defined by A2893C, India XBB.1.16.4 Defined by S:T678I, India, from #1903 XBB.1.16.5 Defined by T9991C,C16332T, India, from #1983 XBB.1.16.6 S:F456L (T22930A), A12397G, USA/Canada/China -JF.1 Alias of XBB.1.16.6.1, S:L455F, USA -JF.2 Alias of XBB.1.16.6.2, S:Q675H, USA/Wales +JF.1 Alias of XBB.1.16.6.1, S:L455F, USA From sars-cov-2-variants/lineage-proposals#531 +JF.2 Alias of XBB.1.16.6.2, S:Q675H, USA/Wales From sars-cov-2-variants/lineage-proposals#457 XBB.1.16.7 S:T732I after T12214C, Singapore/Japan/SouthKorea XBB.1.16.8 S:T732I after C28531T, India/USA/China/Australia XBB.1.16.9 S:F456L (T22930G), ORF1a:S2500F, Canada/Sweden/SouthKorea/USA @@ -3063,7 +3063,7 @@ XBB.1.16.11 S:P521T, India XBB.1.16.12 S:Q52H, South Korea XBB.1.16.13 ORF1a:G519S, ORF1a:G1101D, India HF.1 XBB.1.16.13.1, S:K304N, South Korea/Japan from #2083 -HF.1.1 XBB.1.16.13.1.1, S:H1101Y, on N:A35T branch, South Korea/USA/Canada +HF.1.1 XBB.1.16.13.1.1, S:H1101Y, on N:A35T branch, South Korea/USA/Canada From sars-cov-2-variants/lineage-proposals#521 HF.1.2 XBB.1.16.13.1.2, S:A688V, on ORF1a:P1158S branch, USA XBB.1.16.14 S:L452Q, after A11782G, India/France/Canada, from sars-cov-2-variants/lineage-proposals#329 XBB.1.16.15 S:K147N, S:P521S, T10756C, T14067C, on C27513T branch, from #2092 @@ -3074,14 +3074,14 @@ XBB.1.16.19 ORF1b:V839I XBB.1.16.20 ORF7b:S31L XBB.1.16.21 ORF1a:V4072I XBB.1.16.22 ORF3a:E242Q, from #1893 -XBB.1.16.23 S:K304Q, India/USA/Japan/Singapore +XBB.1.16.23 S:K304Q, India/USA/Japan/Singapore From sars-cov-2-variants/lineage-proposals#517 XBB.1.17 Defined by T27995C and ORF1a:L469F, from issue #1712 XBB.1.17.1 Defined by S:215H, S:S486P, from issue #1712 GA.1 Alias of XBB.1.17.1.1, ORF1a:G728C GA.2 Alias of XBB.1.17.1.2, ORF3a:I179F, T6640C, Africa GA.3 Alias of XBB.1.17.1.3, ORF1b:A186V, Ghana GA.4 Alias of XBB.1.17.1.4, S:K356T, ORF1a:N1080D, ORF1a:S2553F, Nigeria from https://github.com/sars-cov-2-variants/lineage-proposals/issues/265 -GA.4.1 Alias of XBB.1.17.1.4.1, S:K478R, S:S704L, S:E554K, USA/Qatar +GA.4.1 Alias of XBB.1.17.1.4.1, S:K478R, S:S704L, S:E554K, USA/Qatar From sars-cov-2-variants/lineage-proposals#661 GA.5 Alias of XBB.1.17.1.5, T23797C GA.6 Alias of XBB.1.17.1.6, ORF1a:I2138V, G8785A, Ghana GA.6.1 Alias of XBB.1.17.1.6.1, S:478R, A19767G, C29642T @@ -3099,7 +3099,7 @@ FE.1.2 Alias of XBB.1.18.1.1.2, A5488G XBB.1.19 Defined by S:486P, C541T, A10042G, T21363C, pre ORF8:8*, Pakistan, from #1680 XBB.1.19.1 Defined by S:E554K,Pakistan, from #1765 GW.1 Alias of XBB.1.19.1.1, ORF1a:D264N, N:M322V, China, from sars-cov-2-variants/lineage-proposals#157 -GW.1.1 Alias of XBB.1.19.1.1.1, S:F456L, China/Japan/Singapore +GW.1.1 Alias of XBB.1.19.1.1.1, S:F456L, China/Japan/Singapore From sars-cov-2-variants/lineage-proposals#355 GW.2 Alias of XBB.1.19.1.2, S:D936G, USA GW.3 Alias of XBB.1.19.1.3, ORF1a:S100N, ORF1a:N3537S GW.4 Alias of XBB.1.19.1.4, ORF1a:M3280I @@ -3168,7 +3168,7 @@ XBB.1.40 S:Y453F, ORF1a:G519S, ORF1a:L2609F, ORF3a:P104S, Malaysia XBB.1.41 S:L335S, S:R403K, S:486P, possibly common in Central/West Africa, from #1997 XBB.1.41.1 S:478R, France From sars-cov-2-variants/lineage-proposals#150 JC.1 Alias of XBB.1.41.1.1, S:K77R, Japan/Hawaii -XBB.1.41.2 S:S494P +XBB.1.41.2 S:S494P From sars-cov-2-variants/lineage-proposals#389 XBB.1.42 S:486P, S:Q613H, on ORF1a:T4175I branch with XBB.1.9, Indonesia/Malaysia/China,from #1954 XBB.1.42.1 S:478R from https://github.com/sars-cov-2-variants/lineage-proposals/issues/198 XBB.1.42.2 C6040T, G9049A @@ -3199,7 +3199,7 @@ GJ.1 Alias of XBB.2.3.3.1, found mainly in China and USA, from pango-designation GJ.1.1 Alias of XBB.2.3.3.1.1, S:A222V, N:R319H, ORF1a:V1915I From sars-cov-2-variants/lineage-proposals#109 GJ.1.2 Alias of XBB.2.3.3.1.2, ORF1b:V1110I, from #2059 GJ.1.2.1 Alias of XBB.2.3.3.1.2.1, S:N450D, Singapore/Thailand/South Korea/USA/Spain From sars-cov-2-variants/lineage-proposals#446 -JE.1 Alias of XBB.2.3.3.1.2.1.1, S:478R, Singapore/SouthKorea/US +JE.1 Alias of XBB.2.3.3.1.2.1.1, S:478R, Singapore/SouthKorea/US From sars-cov-2-variants/lineage-proposals#597 GJ.2 Alias of XBB.2.3.3.2, S:I1114S, Europe GJ.3 Alias of XBB.2.3.3.3, ORF1a:P971S, ORF1b:V2371L GJ.4 Alias of XBB.2.3.3.4, S:M153I,from #1902 @@ -3210,23 +3210,23 @@ XBB.2.3.6 N:T166I, mainly Singapore GM.1 Alias of XBB.2.3.6.1, S:P621S, Singapore GM.2 Alias of XBB.2.3.6.2, S:G181R, Singapore GM.3 Alias of XBB.2.3.6.3, ORF1a:R4017K, Singapore -GM.3.1 Alias of XBB.2.3.6.3.1, S:N388K, Japan +GM.3.1 Alias of XBB.2.3.6.3.1, S:N388K, Japan From sars-cov-2-variants/lineage-proposals#450 XBB.2.3.7 ORF1a:T4087I XBB.2.3.8 C2013T, T16389C, S:478R, Singapore/SouthKorea from #1866 HG.1 Alias of XBB.2.3.8.1, S:S98F, South Korea -HG.2 Alias of XBB.2.3.8.2, S:T259I, South Korea/USA +HG.2 Alias of XBB.2.3.8.2, S:T259I, South Korea/USA From sars-cov-2-variants/lineage-proposals#652 XBB.2.3.9 S:S98F, C18744T, C19200T, India XBB.2.3.10 T5947C, India GE.1 Alias of XBB.2.3.10.1, S:K478R, from #1866 -GE.1.1 Alias of XBB.2.3.10.1.1, S:E554K, Bangladesh/Singapore -GE.1.2 Alias of XBB.2.3.10.1.2, S:N148T, Kenya -GE.1.3 Alias of XBB.2.3.10.1.3, S:T732I +GE.1.1 Alias of XBB.2.3.10.1.1, S:E554K, Bangladesh/Singapore From sars-cov-2-variants/lineage-proposals#367 +GE.1.2 Alias of XBB.2.3.10.1.2, S:N148T, Kenya From sars-cov-2-variants/lineage-proposals#200 +GE.1.3 Alias of XBB.2.3.10.1.3, S:T732I From sars-cov-2-variants/lineage-proposals#102 XBB.2.3.11 S:K478R, India, from #1866 GS.1 Alias of XBB.2.3.11.1, S:213D, C4582T, C25075T, Australia, from #2023 -GS.2 Alias of XBB.2.3.11.2, S:T470N, Singapore/Brunei -GS.3 Alias of XBB.2.3.11.3, S:R190S, USA/UK -GS.4 Alias of XBB.2.3.11.4, M:A104V, ORF1a:A181T, France -GS.4.1 Alias of XBB.2.3.11.4.1, S:N185D, ORF3a:G172C, France +GS.2 Alias of XBB.2.3.11.2, S:T470N, Singapore/Brunei From sars-cov-2-variants/lineage-proposals#93 +GS.3 Alias of XBB.2.3.11.3, S:R190S, USA/UK From sars-cov-2-variants/lineage-proposals#669 +GS.4 Alias of XBB.2.3.11.4, M:A104V, ORF1a:A181T, France From sars-cov-2-variants/lineage-proposals#668 +GS.4.1 Alias of XBB.2.3.11.4.1, S:N185D, ORF3a:G172C, France From sars-cov-2-variants/lineage-proposals#668 XBB.2.3.12 S:S494P, from #2029 XBB.2.3.13 ORF1a:T1822I, Spain JA.1 Alias of XBB.2.3.13.1, S:F456L (T22928C), Spain/England/France, see sars-cov-2-variants/lineage-proposals#240