{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Welcome to the Second Lab - Week 1, Day 3\n", "\n", "Today we will work with lots of models! This is a way to get comfortable with APIs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", " \n", " \n", " \n", " \n", "
\n", " \n", " \n", "

Important point - please read

\n", " The way I collaborate with you may be different to other courses you've taken. I prefer not to type code while you watch. Rather, I execute Jupyter Labs, like this, and give you an intuition for what's going on. My suggestion is that you carefully execute this yourself, after watching the lecture. Add print statements to understand what's going on, and then come up with your own variations.

If you have time, I'd love it if you submit a PR for changes in the community_contributions folder - instructions in the resources. Also, if you have a Github account, use this to showcase your variations. Not only is this essential practice, but it demonstrates your skills to others, including perhaps future clients or employers...\n", "
\n", "
" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "# Start with imports - ask ChatGPT to explain any package that you don't know\n", "\n", "import os\n", "import json\n", "from dotenv import load_dotenv\n", "from openai import OpenAI\n", "from anthropic import Anthropic\n", "import google.generativeai as genai\n", "from IPython.display import Markdown, display" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Always remember to do this!\n", "load_dotenv(override=True)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "OpenAI API Key not set\n", "Anthropic API Key not set (and this is optional)\n", "Google API Key exists and begins AI\n", "DeepSeek API Key exists and begins sk-\n", "Groq API Key exists and begins gsk_\n" ] } ], "source": [ "# Print the key prefixes to help with any debugging\n", "\n", "openai_api_key = os.getenv('OPENAI_API_KEY')\n", "anthropic_api_key = os.getenv('ANTHROPIC_API_KEY')\n", "google_api_key = os.getenv('GOOGLE_API_KEY')\n", "deepseek_api_key = os.getenv('DEEPSEEK_API_KEY')\n", "groq_api_key = os.getenv('GROQ_API_KEY')\n", "\n", "if openai_api_key:\n", " print(f\"OpenAI API Key exists and begins {openai_api_key[:8]}\")\n", "else:\n", " print(\"OpenAI API Key not set\")\n", " \n", "if anthropic_api_key:\n", " print(f\"Anthropic API Key exists and begins {anthropic_api_key[:7]}\")\n", "else:\n", " print(\"Anthropic API Key not set (and this is optional)\")\n", "\n", "if google_api_key:\n", " print(f\"Google API Key exists and begins {google_api_key[:2]}\")\n", "else:\n", " print(\"Google API Key not set (and this is optional)\")\n", "\n", "if deepseek_api_key:\n", " print(f\"DeepSeek API Key exists and begins {deepseek_api_key[:3]}\")\n", "else:\n", " print(\"DeepSeek API Key not set (and this is optional)\")\n", "\n", "if groq_api_key:\n", " print(f\"Groq API Key exists and begins {groq_api_key[:4]}\")\n", "else:\n", " print(\"Groq API Key not set (and this is optional)\")" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "request = \"Please come up with a challenging, nuanced question that I can ask a number of LLMs to evaluate their intelligence. Answer only with the question.\"\n", "messages = [request]\n" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['Please come up with a challenging, nuanced question that I can ask a number of LLMs to evaluate their intelligence. Answer only with the question.']" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "messages" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Given the complexities of human motivation and societal impact, analyze a historical event (you choose the event) and argue whether the long-term consequences justify the ethical compromises made in its execution. Be sure to address multiple perspectives and potential unintended outcomes.\n", "\n" ] } ], "source": [ "model = genai.GenerativeModel(\"gemini-2.0-flash\")\n", "\n", "response = model.generate_content(messages)\n", "question = response.text\n", "print(question)\n", "\n" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "competitors = []\n", "answers = []\n", "messages = [{\"role\": \"user\", \"content\": question}]" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# The API we know well\n", "\n", "model_name = \"gpt-4o-mini\"\n", "\n", "response = openai.chat.completions.create(model=model_name, messages=messages)\n", "answer = response.choices[0].message.content\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Anthropic has a slightly different API, and Max Tokens is required\n", "\n", "model_name = \"claude-3-7-sonnet-latest\"\n", "\n", "claude = Anthropic()\n", "response = claude.messages.create(model=model_name, messages=messages, max_tokens=1000)\n", "answer = response.content[0].text\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "Okay, let's analyze the **Manhattan Project** and argue whether its long-term consequences justify the ethical compromises made in its execution.\n", "\n", "**Background:**\n", "\n", "The Manhattan Project, initiated during World War II (1942-1946), was a top-secret research and development undertaking that produced the first atomic bombs. Driven by the fear that Nazi Germany was also developing nuclear weapons, the project involved a massive mobilization of scientific, industrial, and military resources across the United States, Canada, and the United Kingdom. It culminated in the bombings of Hiroshima and Nagasaki in August 1945, leading to Japan's surrender and the end of World War II.\n", "\n", "**Ethical Compromises:**\n", "\n", "* **Secrecy and Deception:** The project operated under extreme secrecy, even from many elected officials. This secrecy fostered a culture where ethical concerns were often subordinated to the overarching goal of achieving a scientific breakthrough before the enemy. Deception was used to acquire land and resources, and to keep the project hidden from public scrutiny.\n", "* **Lack of Informed Consent:** Many scientists and workers involved in the project were not fully informed about the risks associated with their work, particularly regarding radiation exposure. While some were aware of the dangers, the urgency and compartmentalization of the project hindered transparent communication.\n", "* **Moral Question of Targeting Civilians:** The decision to drop the atomic bombs on Hiroshima and Nagasaki, predominantly civilian centers, raises profound ethical questions. While proponents argued it was necessary to force Japan's surrender and prevent a potentially bloodier invasion, critics contend that it constituted a war crime and an act of disproportionate violence.\n", "* **Environmental Impact:** The project left a legacy of environmental contamination due to uranium mining and processing. The long-term health effects on those exposed to radiation in the development and testing phases, as well as in the affected cities, were largely unknown or downplayed at the time.\n", "* **Fueling the Cold War:** The existence of nuclear weapons initiated an arms race with the Soviet Union, escalating tensions and ushering in the Cold War era. The threat of nuclear annihilation became a constant presence in global politics, fundamentally altering international relations.\n", "\n", "**Perspectives:**\n", "\n", "* **The U.S. Government/Military Perspective:** The prevailing argument was that the atomic bombs were necessary to end the war quickly, saving the lives of American soldiers and potentially millions of Japanese civilians who would have perished in a prolonged invasion. From this perspective, the ethical compromises were regrettable but justified by the greater good of ending the war and preventing further bloodshed. They also believed they had to beat the Nazis to the bomb.\n", "* **The Perspective of Scientists Involved:** Scientists were split. Some, like Oppenheimer, felt a moral responsibility for the consequences of their work and later advocated for international control of nuclear weapons. Others believed they were simply fulfilling their duty to their country during wartime, and the decision to use the bombs was beyond their control. Still others had concerns and actively tried to stall the project.\n", "* **The Perspective of Japanese Civilians:** For the survivors of Hiroshima and Nagasaki, the bombings were an unimaginable catastrophe. They experienced immense suffering, loss of life, and long-term health problems. They viewed the bombings as an inhumane act of aggression, regardless of the strategic justifications.\n", "* **The Historian/Ethicist Perspective:** Many historians and ethicists argue that the long-term consequences of the Manhattan Project, including the proliferation of nuclear weapons and the constant threat of nuclear war, outweigh any perceived benefits of ending World War II quickly. They emphasize the moral imperative to explore all possible alternatives before resorting to such devastating force.\n", "\n", "**Unintended Outcomes:**\n", "\n", "* **Nuclear Proliferation:** The Manhattan Project ushered in the nuclear age, leading to the development and stockpiling of nuclear weapons by multiple nations. This created a precarious balance of power and the constant threat of nuclear annihilation.\n", "* **Mutually Assured Destruction (MAD):** The doctrine of MAD, which held that any nuclear attack would inevitably lead to retaliation and the destruction of both sides, became a cornerstone of Cold War strategy. While it arguably prevented a large-scale nuclear war, it also created a climate of fear and mistrust.\n", "* **Nuclear Accidents and Environmental Concerns:** The use and testing of nuclear weapons have resulted in significant environmental contamination and health problems. Accidents like Chernobyl and Fukushima have highlighted the dangers of nuclear technology.\n", "* **Shift in Global Power Dynamics:** The United States emerged from World War II as a superpower, largely due to its possession of nuclear weapons. This altered the global balance of power and contributed to the Cold War rivalry with the Soviet Union.\n", "\n", "**Justification? A Complex Calculation:**\n", "\n", "The question of whether the long-term consequences of the Manhattan Project justify the ethical compromises made is inherently complex and subjective.\n", "\n", "**Arguments FOR Justification (Conditional):**\n", "\n", "* If one prioritizes the immediate goal of ending World War II as quickly as possible, preventing a potentially devastating invasion of Japan, and believes that the bombings were the only way to achieve this goal, then the ethical compromises might be seen as justified, *provided* that the use of nuclear weapons was genuinely the least-worst option available after exhausting all other reasonable alternatives.\n", "* One could argue that the horror of the atomic bombings, while tragic, instilled a powerful deterrent effect that prevented major global wars between superpowers for decades.\n", "\n", "**Arguments AGAINST Justification:**\n", "\n", "* The long-term consequences of nuclear proliferation, the constant threat of nuclear annihilation, and the environmental impact of nuclear testing outweigh any perceived benefits of ending World War II quickly.\n", "* Alternatives to the bombings, such as continued conventional bombing, a naval blockade, or Soviet entry into the war, may have been viable options that were not fully explored.\n", "* The moral cost of deliberately targeting civilians and unleashing the destructive power of nuclear weapons is simply too high to justify, regardless of the circumstances.\n", "* The initiation of the Cold War and the arms race were extremely costly, and it is debatable whether these outcomes were superior to what might have resulted from a longer, less devastating end to WWII.\n", "\n", "**Conclusion:**\n", "\n", "In my view, the ethical compromises made during the Manhattan Project are difficult to justify in light of the long-term consequences. While the immediate goal of ending World War II was undeniably important, the creation and use of nuclear weapons set in motion a chain of events that continue to threaten the world today. The proliferation of nuclear weapons, the constant threat of nuclear war, and the environmental legacy of nuclear testing are all serious concerns that cannot be easily dismissed.\n", "\n", "While the debate continues, the Manhattan Project serves as a stark reminder of the ethical challenges inherent in scientific and technological advancements, particularly in times of war. It underscores the importance of carefully considering the long-term consequences of our actions and of upholding moral principles even when faced with difficult decisions. The fact that this is still debated shows the complexity and lasting impact of the decision. A more transparent process, broader consultation, and a more thorough exploration of alternatives might have led to a different outcome, potentially avoiding some of the most devastating consequences of the nuclear age.\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "gemini = OpenAI(api_key=google_api_key, base_url=\"https://generativelanguage.googleapis.com/v1beta/openai/\")\n", "model_name = \"gemini-2.0-flash\"\n", "\n", "response = gemini.chat.completions.create(model=model_name, messages=messages)\n", "answer = response.choices[0].message.content\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "deepseek = OpenAI(api_key=deepseek_api_key, base_url=\"https://api.deepseek.com/v1\")\n", "model_name = \"deepseek-chat\"\n", "\n", "response = deepseek.chat.completions.create(model=model_name, messages=messages)\n", "answer = response.choices[0].message.content\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "The Manhattan Project, which developed the atomic bomb during World War II, is a complex and multifaceted historical event that raises significant ethical concerns. The project's long-term consequences have been far-reaching and multifaceted, with both positive and negative outcomes. This analysis will argue that the long-term consequences of the Manhattan Project do not entirely justify the ethical compromises made in its execution, as the devastating effects of the bomb's use outweigh its benefits.\n", "\n", "**The Event and its Execution**\n", "\n", "The Manhattan Project was a secret research and development project led by the United States, with the participation of the United Kingdom and Canada. The project's primary goal was to develop an atomic bomb before Nazi Germany, which was also pursuing nuclear research. The project involved a large team of scientists, engineers, and technicians working in secret facilities across the United States, Canada, and the United Kingdom. The project's leaders, including J. Robert Oppenheimer and Enrico Fermi, were aware of the bomb's potential destructive power and the ethical implications of its use.\n", "\n", "**Ethical Compromises**\n", "\n", "The Manhattan Project involved several ethical compromises, including:\n", "\n", "1. **Secrecy and deception**: The project was shrouded in secrecy, with many participants unaware of the bomb's true purpose or the potential consequences of its use.\n", "2. **Use of forced labor**: The project relied on the labor of tens of thousands of workers, including POWs and civilians, who wereforced to work in harsh conditions.\n", "3. **Disregard for human life**: The bomb's development and testing involved significant risks to human life, including the exposure of workers to radiation and the potential for catastrophic accidents.\n", "4. **Targeting of civilian populations**: The bomb was ultimately used to target civilian populations in Hiroshima and Nagasaki, resulting in the deaths of hundreds of thousands of people.\n", "\n", "**Long-term Consequences**\n", "\n", "The long-term consequences of the Manhattan Project have been profound and far-reaching:\n", "\n", "1. **Ending World War II**: The bomb's use helped bring an end to World War II, potentially saving millions of lives and preventing further destruction.\n", "2. **Nuclear deterrence**: The bomb's existence has contributed to a state of nuclear deterrence, which has helped to maintain a fragile peace between nuclear-armed nations.\n", "3. **Nuclear energy**: The Manhattan Project laid the foundation for the development of nuclear energy, which has become a significant source of power generation worldwide.\n", "4. **International relations**: The bomb's existence has had a profound impact on international relations, shaping global politics and diplomacy for decades.\n", "\n", "**Multiple Perspectives**\n", "\n", "Different perspectives on the Manhattan Project offer varying assessments of its ethical implications:\n", "\n", "1. **Utilitarian perspective**: From a utilitarian perspective, the bomb's use can be justified as a necessary evil to prevent further suffering and loss of life during World War II.\n", "2. **Deontological perspective**: From a deontological perspective, the bomb's use is morally wrong, as it involves the intentional targeting of civilian populations and the violation of fundamental human rights.\n", "3. **Realist perspective**: From a realist perspective, the bomb's existence is a necessary component of national security, as it provides a deterrent against aggression and helps to maintain a balance of power.\n", "\n", "**Unintended Outcomes**\n", "\n", "The Manhattan Project has had several unintended outcomes, including:\n", "\n", "1. **Nuclear proliferation**: The bomb's existence has contributed to the proliferation of nuclear weapons, increasing the risk of nuclear conflict and terrorism.\n", "2. **Environmental damage**: The production and testing of nuclear weapons have resulted in significant environmental damage, including radioactive contamination and pollution.\n", "3. **Psychological trauma**: The bomb's use has caused significant psychological trauma, particularly for survivors of the Hiroshima and Nagasaki bombings.\n", "\n", "**Conclusion**\n", "\n", "In conclusion, while the Manhattan Project's long-term consequences have been significant and far-reaching, they do not entirely justify the ethical compromises made in its execution. The devastating effects of the bomb's use, including the loss of hundreds of thousands of lives and the long-term damage to the environment and human health, outweigh its benefits. The project's secrecy, use of forced labor, disregard for human life, and targeting of civilian populations all raise significant ethical concerns. A more nuanced understanding of the project's complexities and consequences is necessary to appreciate the need for careful consideration and reflection on the ethics of scientific research and development. Ultimately, the Manhattan Project serves as a cautionary tale about the importance of prioritizing human rights, dignity, and well-being in the pursuit of scientific progress and national security." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "groq = OpenAI(api_key=groq_api_key, base_url=\"https://api.groq.com/openai/v1\")\n", "model_name = \"llama-3.3-70b-versatile\"\n", "\n", "response = groq.chat.completions.create(model=model_name, messages=messages)\n", "answer = response.choices[0].message.content\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## For the next cell, we will use Ollama\n", "\n", "Ollama runs a local web service that gives an OpenAI compatible endpoint, \n", "and runs models locally using high performance C++ code.\n", "\n", "If you don't have Ollama, install it here by visiting https://ollama.com then pressing Download and following the instructions.\n", "\n", "After it's installed, you should be able to visit here: http://localhost:11434 and see the message \"Ollama is running\"\n", "\n", "You might need to restart Cursor (and maybe reboot). Then open a Terminal (control+\\`) and run `ollama serve`\n", "\n", "Useful Ollama commands (run these in the terminal, or with an exclamation mark in this notebook):\n", "\n", "`ollama pull ` downloads a model locally \n", "`ollama ls` lists all the models you've downloaded \n", "`ollama rm ` deletes the specified model from your downloads" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", " \n", " \n", " \n", " \n", "
\n", " \n", " \n", "

Super important - ignore me at your peril!

\n", " The model called llama3.3 is FAR too large for home computers - it's not intended for personal computing and will consume all your resources! Stick with the nicely sized llama3.2 or llama3.2:1b and if you want larger, try llama3.1 or smaller variants of Qwen, Gemma, Phi or DeepSeek. See the the Ollama models page for a full list of models and sizes.\n", " \n", "
" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 65 KB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 521 KB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 801 KB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 1.3 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 1.3 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 2.0 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 2.5 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 2.6 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 2.8 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 3.0 MB/637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 0% ▕ ▏ 3.2 MB/637 MB 3.1 MB/s 3m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 3.5 MB/637 MB 3.1 MB/s 3m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 3.6 MB/637 MB 3.1 MB/s 3m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 4.0 MB/637 MB 3.1 MB/s 3m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 4.3 MB/637 MB 3.1 MB/s 3m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 4.3 MB/637 MB 3.1 MB/s 3m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 4.4 MB/637 MB 3.1 MB/s 3m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 4.4 MB/637 MB 3.1 MB/s 3m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 6.6 MB/637 MB 3.1 MB/s 3m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 8.4 MB/637 MB 3.1 MB/s 3m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 8.4 MB/637 MB 3.1 MB/s 3m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 1% ▕ ▏ 8.5 MB/637 MB 4.2 MB/s 2m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10.0 MB/637 MB 4.2 MB/s 2m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 4.2 MB/s 2m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 10 MB/637 MB 3.6 MB/s 2m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 11 MB/637 MB 3.6 MB/s 2m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 13 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 14 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 15 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 2% ▕ ▏ 15 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 16 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 16 MB/637 MB 3.6 MB/s 2m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 16 MB/637 MB 3.6 MB/s 2m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 16 MB/637 MB 3.6 MB/s 2m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 17 MB/637 MB 4.2 MB/s 2m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 17 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 19 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 19 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 19 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 20 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 20 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 21 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 21 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 3% ▕ ▏ 21 MB/637 MB 4.2 MB/s 2m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 22 MB/637 MB 4.5 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 23 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 23 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 23 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 24 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 24 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 25 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 25 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 26 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 26 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 26 MB/637 MB 4.4 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 26 MB/637 MB 4.4 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 26 MB/637 MB 4.4 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 27 MB/637 MB 4.4 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 4% ▕ ▏ 28 MB/637 MB 4.4 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 28 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 29 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 29 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 29 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 30 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 30 MB/637 MB 4.4 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 31 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 32 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 32 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 32 MB/637 MB 4.5 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 33 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 33 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 34 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 5% ▕ ▏ 34 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕ ▏ 35 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 35 MB/637 MB 4.5 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 36 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 36 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 36 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 37 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 37 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 38 MB/637 MB 4.5 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 38 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 38 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 39 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 40 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 40 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 6% ▕█ ▏ 41 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 41 MB/637 MB 4.5 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 41 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 42 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 42 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 43 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 43 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 43 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 44 MB/637 MB 4.5 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 44 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 45 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 45 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 45 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 7% ▕█ ▏ 46 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 48 MB/637 MB 4.4 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 48 MB/637 MB 4.4 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 48 MB/637 MB 4.4 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 49 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 49 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 49 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 49 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 50 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 51 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 51 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 51 MB/637 MB 4.4 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 52 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 53 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 53 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 53 MB/637 MB 4.6 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 8% ▕█ ▏ 53 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 54 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 54 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 55 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 55 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 55 MB/637 MB 4.6 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 56 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 56 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 57 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 57 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 57 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 58 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 58 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 59 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 59 MB/637 MB 4.3 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 60 MB/637 MB 4.3 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 9% ▕█ ▏ 60 MB/637 MB 4.2 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 60 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 61 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 61 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 61 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 61 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 62 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 62 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 63 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 64 MB/637 MB 4.2 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 64 MB/637 MB 4.2 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 65 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 65 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 65 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 65 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 65 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 10% ▕█ ▏ 66 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 67 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 67 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 67 MB/637 MB 4.2 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 67 MB/637 MB 4.0 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 67 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 68 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 69 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 69 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 70 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 70 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕█ ▏ 70 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 71 MB/637 MB 4.0 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 71 MB/637 MB 4.0 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 72 MB/637 MB 4.0 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 72 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 72 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 11% ▕██ ▏ 72 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 73 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 74 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 74 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 75 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 75 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 76 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 76 MB/637 MB 4.0 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 77 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 77 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 77 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 77 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 77 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 78 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 79 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 79 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 12% ▕██ ▏ 79 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 80 MB/637 MB 4.0 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 80 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 81 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 81 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 81 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 82 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 83 MB/637 MB 3.9 MB/s 2m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 83 MB/637 MB 3.9 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 83 MB/637 MB 3.9 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 83 MB/637 MB 3.9 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 83 MB/637 MB 3.9 MB/s 2m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 84 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 85 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 85 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 13% ▕██ ▏ 85 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 86 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 86 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 87 MB/637 MB 4.1 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 87 MB/637 MB 4.1 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 87 MB/637 MB 4.1 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 88 MB/637 MB 4.1 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 88 MB/637 MB 4.1 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 88 MB/637 MB 4.1 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 89 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 90 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 90 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 90 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 90 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 91 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 14% ▕██ ▏ 92 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 92 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 92 MB/637 MB 4.1 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 93 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 93 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 93 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 94 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 94 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 94 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 95 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 96 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 96 MB/637 MB 4.1 MB/s 2m12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 97 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 97 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 97 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 97 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 98 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 98 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 15% ▕██ ▏ 98 MB/637 MB 4.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 99 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 99 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 100 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 101 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 101 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 102 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 102 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 102 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 103 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 103 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 103 MB/637 MB 4.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 104 MB/637 MB 4.1 MB/s 2m9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 104 MB/637 MB 4.1 MB/s 2m9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 16% ▕██ ▏ 104 MB/637 MB 4.1 MB/s 2m9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕██ ▏ 105 MB/637 MB 4.2 MB/s 2m6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 106 MB/637 MB 4.2 MB/s 2m6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 106 MB/637 MB 4.2 MB/s 2m6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 107 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 107 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 108 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 108 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.2 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 109 MB/637 MB 4.1 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 110 MB/637 MB 3.7 MB/s 2m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 111 MB/637 MB 3.7 MB/s 2m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 17% ▕███ ▏ 111 MB/637 MB 3.7 MB/s 2m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 112 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 112 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 112 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 113 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 113 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 114 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 114 MB/637 MB 3.7 MB/s 2m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 114 MB/637 MB 3.8 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 115 MB/637 MB 3.8 MB/s 2m17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 115 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 115 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 115 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 116 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 18% ▕███ ▏ 117 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 118 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 118 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 119 MB/637 MB 3.8 MB/s 2m16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 119 MB/637 MB 3.8 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 120 MB/637 MB 3.8 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 120 MB/637 MB 3.8 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 121 MB/637 MB 3.8 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 121 MB/637 MB 3.8 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 122 MB/637 MB 3.8 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 122 MB/637 MB 3.8 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 123 MB/637 MB 3.8 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 123 MB/637 MB 3.8 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 19% ▕███ ▏ 123 MB/637 MB 3.8 MB/s 2m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 124 MB/637 MB 4.0 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 125 MB/637 MB 4.0 MB/s 2m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 125 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 126 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 126 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 127 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 127 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 127 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 127 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 128 MB/637 MB 4.0 MB/s 2m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 129 MB/637 MB 4.1 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 129 MB/637 MB 4.1 MB/s 2m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 20% ▕███ ▏ 130 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 131 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 131 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 132 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 132 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 133 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 133 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 133 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 133 MB/637 MB 4.1 MB/s 2m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 134 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 134 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 135 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 136 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 136 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 21% ▕███ ▏ 136 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 137 MB/637 MB 4.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 138 MB/637 MB 4.2 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 139 MB/637 MB 4.2 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 139 MB/637 MB 4.2 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 139 MB/637 MB 4.2 MB/s 1m57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 139 MB/637 MB 4.2 MB/s 1m57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕███ ▏ 141 MB/637 MB 4.2 MB/s 1m57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 141 MB/637 MB 4.2 MB/s 1m57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 142 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 142 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 142 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 143 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 22% ▕████ ▏ 143 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 144 MB/637 MB 4.2 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 145 MB/637 MB 4.4 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 145 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 145 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 145 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 145 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 147 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 148 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 148 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 148 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 148 MB/637 MB 4.4 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 23% ▕████ ▏ 149 MB/637 MB 4.5 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 151 MB/637 MB 4.5 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 151 MB/637 MB 4.5 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 151 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 152 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 152 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 153 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 154 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 154 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 154 MB/637 MB 4.5 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 24% ▕████ ▏ 156 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 156 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 156 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 157 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 158 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 158 MB/637 MB 5.1 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 159 MB/637 MB 5.1 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 159 MB/637 MB 5.1 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 160 MB/637 MB 5.1 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 160 MB/637 MB 5.1 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 161 MB/637 MB 5.1 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 25% ▕████ ▏ 162 MB/637 MB 5.3 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 162 MB/637 MB 5.3 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 163 MB/637 MB 5.3 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 163 MB/637 MB 5.3 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 164 MB/637 MB 5.3 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 165 MB/637 MB 5.3 MB/s 1m29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 165 MB/637 MB 5.3 MB/s 1m29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 166 MB/637 MB 5.3 MB/s 1m29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 166 MB/637 MB 5.3 MB/s 1m29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 167 MB/637 MB 5.3 MB/s 1m29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 168 MB/637 MB 5.4 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 168 MB/637 MB 5.4 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 26% ▕████ ▏ 168 MB/637 MB 5.4 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 170 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 170 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 170 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 170 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 171 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 172 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 172 MB/637 MB 5.4 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 172 MB/637 MB 5.3 MB/s 1m28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 173 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 173 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 173 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 27% ▕████ ▏ 175 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕████ ▏ 175 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕████ ▏ 176 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕████ ▏ 176 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕████ ▏ 176 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕████ ▏ 176 MB/637 MB 5.3 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 178 MB/637 MB 5.4 MB/s 1m25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 179 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 179 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 179 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 180 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 28% ▕█████ ▏ 181 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 181 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 182 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 182 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 183 MB/637 MB 5.4 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 184 MB/637 MB 5.5 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 184 MB/637 MB 5.5 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 185 MB/637 MB 5.5 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 185 MB/637 MB 5.5 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 185 MB/637 MB 5.5 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 29% ▕█████ ▏ 186 MB/637 MB 5.5 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 188 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 189 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 189 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 189 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 190 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 191 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 191 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 192 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 192 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 192 MB/637 MB 5.4 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 193 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 193 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 193 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 30% ▕█████ ▏ 194 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 194 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 195 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 195 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 196 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 196 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 197 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 197 MB/637 MB 5.3 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 198 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 198 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 198 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 199 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 200 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 31% ▕█████ ▏ 200 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 201 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 201 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 202 MB/637 MB 5.3 MB/s 1m22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 202 MB/637 MB 5.2 MB/s 1m24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 203 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 203 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 203 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 204 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 205 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 205 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 205 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 205 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 205 MB/637 MB 5.2 MB/s 1m23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 206 MB/637 MB 4.9 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 32% ▕█████ ▏ 206 MB/637 MB 4.9 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 207 MB/637 MB 4.9 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 207 MB/637 MB 4.9 MB/s 1m27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 208 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 208 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 209 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 209 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 210 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 210 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 210 MB/637 MB 4.9 MB/s 1m26s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 210 MB/637 MB 4.7 MB/s 1m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 210 MB/637 MB 4.7 MB/s 1m31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 211 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 211 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕█████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕██████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕██████ ▏ 212 MB/637 MB 4.7 MB/s 1m30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕██████ ▏ 212 MB/637 MB 4.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 33% ▕██████ ▏ 213 MB/637 MB 4.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 214 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 214 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 214 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 214 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 215 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 215 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 216 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 216 MB/637 MB 4.5 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 216 MB/637 MB 4.3 MB/s 1m38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 216 MB/637 MB 4.3 MB/s 1m38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 216 MB/637 MB 4.3 MB/s 1m38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 217 MB/637 MB 4.3 MB/s 1m38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 217 MB/637 MB 4.3 MB/s 1m38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 4.3 MB/s 1m37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 4.3 MB/s 1m37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 4.3 MB/s 1m37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 4.3 MB/s 1m37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 4.3 MB/s 1m37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 218 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 34% ▕██████ ▏ 219 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 220 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 220 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 220 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 220 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 221 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 222 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 222 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 222 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 222 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 223 MB/637 MB 3.8 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 223 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 224 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 224 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 224 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.8 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 35% ▕██████ ▏ 225 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 226 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 226 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 226 MB/637 MB 3.6 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 227 MB/637 MB 3.6 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 227 MB/637 MB 3.6 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 227 MB/637 MB 3.6 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 228 MB/637 MB 3.4 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 228 MB/637 MB 3.4 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 228 MB/637 MB 3.4 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 229 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 230 MB/637 MB 3.4 MB/s 1m59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 230 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 230 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 230 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 231 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 231 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 232 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 232 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 36% ▕██████ ▏ 232 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 232 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 233 MB/637 MB 3.1 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 233 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 234 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 234 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 234 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 235 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 235 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 235 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 235 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 235 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 3.1 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 236 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 237 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 237 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 238 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 238 MB/637 MB 2.9 MB/s 2m19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 37% ▕██████ ▏ 238 MB/637 MB 2.9 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 239 MB/637 MB 2.9 MB/s 2m18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 239 MB/637 MB 2.9 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 239 MB/637 MB 2.9 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 240 MB/637 MB 2.9 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 240 MB/637 MB 2.9 MB/s 2m15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 241 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 241 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 241 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 242 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 242 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 243 MB/637 MB 2.9 MB/s 2m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 243 MB/637 MB 3.0 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 243 MB/637 MB 3.0 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 244 MB/637 MB 3.0 MB/s 2m11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 244 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 38% ▕██████ ▏ 245 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 245 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 245 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 246 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 246 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 247 MB/637 MB 3.0 MB/s 2m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 247 MB/637 MB 3.2 MB/s 2m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕██████ ▏ 247 MB/637 MB 3.2 MB/s 2m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 248 MB/637 MB 3.2 MB/s 2m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 248 MB/637 MB 3.2 MB/s 2m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 249 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 249 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 249 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 250 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 251 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 39% ▕███████ ▏ 251 MB/637 MB 3.2 MB/s 2m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 251 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 252 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 252 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 253 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 254 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 254 MB/637 MB 3.3 MB/s 1m56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 254 MB/637 MB 3.3 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 255 MB/637 MB 3.3 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 255 MB/637 MB 3.3 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 256 MB/637 MB 3.3 MB/s 1m55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 257 MB/637 MB 3.6 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 257 MB/637 MB 3.6 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 40% ▕███████ ▏ 258 MB/637 MB 3.6 MB/s 1m46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 258 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 259 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 259 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 260 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 260 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 260 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 260 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 261 MB/637 MB 3.6 MB/s 1m45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 261 MB/637 MB 3.7 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 261 MB/637 MB 3.7 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 261 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 262 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 262 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 262 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 41% ▕███████ ▏ 263 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 264 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 265 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 265 MB/637 MB 3.7 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 265 MB/637 MB 3.9 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 265 MB/637 MB 3.9 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 266 MB/637 MB 3.9 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 267 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 267 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 267 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 268 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 268 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 268 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 269 MB/637 MB 3.9 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 269 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 269 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 270 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 42% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.9 MB/s 1m33s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 271 MB/637 MB 3.6 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 272 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 273 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 273 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 273 MB/637 MB 3.6 MB/s 1m40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 273 MB/637 MB 3.3 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 274 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 274 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 274 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 275 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 275 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 275 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 275 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 275 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 276 MB/637 MB 3.3 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 276 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 276 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 43% ▕███████ ▏ 277 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 277 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 277 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 278 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 278 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 279 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 279 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 280 MB/637 MB 3.2 MB/s 1m50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 280 MB/637 MB 3.2 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 281 MB/637 MB 3.2 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 281 MB/637 MB 3.2 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 281 MB/637 MB 3.2 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 282 MB/637 MB 3.2 MB/s 1m52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 282 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕███████ ▏ 283 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 44% ▕████████ ▏ 283 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 284 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 284 MB/637 MB 3.2 MB/s 1m51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 285 MB/637 MB 3.1 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 285 MB/637 MB 3.1 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 285 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 286 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 287 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 287 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 287 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 287 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 287 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 288 MB/637 MB 3.1 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 288 MB/637 MB 3.0 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 289 MB/637 MB 3.0 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 45% ▕████████ ▏ 289 MB/637 MB 3.0 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 290 MB/637 MB 3.0 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 290 MB/637 MB 3.0 MB/s 1m54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 291 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 291 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 292 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 292 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 293 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 293 MB/637 MB 3.0 MB/s 1m53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 294 MB/637 MB 3.1 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 294 MB/637 MB 3.1 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 295 MB/637 MB 3.1 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 295 MB/637 MB 3.1 MB/s 1m49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 46% ▕████████ ▏ 296 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 296 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 297 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 297 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 298 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 298 MB/637 MB 3.1 MB/s 1m48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 299 MB/637 MB 3.3 MB/s 1m42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 299 MB/637 MB 3.3 MB/s 1m42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 300 MB/637 MB 3.3 MB/s 1m42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 300 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 301 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 301 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 301 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 301 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 302 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 302 MB/637 MB 3.3 MB/s 1m41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 47% ▕████████ ▏ 302 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 303 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 304 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 304 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 304 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 305 MB/637 MB 3.5 MB/s 1m35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 305 MB/637 MB 3.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 306 MB/637 MB 3.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 307 MB/637 MB 3.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 307 MB/637 MB 3.5 MB/s 1m34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 308 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 308 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 48% ▕████████ ▏ 308 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 309 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 310 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 310 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 311 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 311 MB/637 MB 4.0 MB/s 1m21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 312 MB/637 MB 4.0 MB/s 1m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 312 MB/637 MB 4.0 MB/s 1m20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 312 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 313 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 314 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 314 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 314 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 49% ▕████████ ▏ 315 MB/637 MB 4.3 MB/s 1m14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 315 MB/637 MB 4.3 MB/s 1m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 315 MB/637 MB 4.3 MB/s 1m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 316 MB/637 MB 4.3 MB/s 1m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 316 MB/637 MB 4.3 MB/s 1m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 316 MB/637 MB 4.3 MB/s 1m13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 317 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 318 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕████████ ▏ 318 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 318 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 319 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 319 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 319 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 320 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 320 MB/637 MB 4.5 MB/s 1m10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 50% ▕█████████ ▏ 321 MB/637 MB 4.5 MB/s 1m9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 322 MB/637 MB 4.6 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 322 MB/637 MB 4.6 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 323 MB/637 MB 4.6 MB/s 1m8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 323 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 323 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 324 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 325 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 325 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 326 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 327 MB/637 MB 4.6 MB/s 1m7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 51% ▕█████████ ▏ 327 MB/637 MB 4.8 MB/s 1m5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 328 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 329 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 329 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 329 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 331 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 331 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 331 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 331 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 332 MB/637 MB 4.8 MB/s 1m4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 332 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 333 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 333 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 334 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 52% ▕█████████ ▏ 334 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 335 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 336 MB/637 MB 4.9 MB/s 1m2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 336 MB/637 MB 4.9 MB/s 1m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 336 MB/637 MB 4.9 MB/s 1m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 337 MB/637 MB 4.9 MB/s 1m1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 338 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 338 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 339 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 340 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 340 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 53% ▕█████████ ▏ 340 MB/637 MB 5.0 MB/s 1m0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 341 MB/637 MB 5.0 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 342 MB/637 MB 5.0 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 342 MB/637 MB 5.0 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 343 MB/637 MB 5.0 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 344 MB/637 MB 5.0 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 344 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 345 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 345 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 346 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 54% ▕█████████ ▏ 346 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 347 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 348 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 348 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 348 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 348 MB/637 MB 5.1 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 349 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 349 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 349 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 350 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 350 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 350 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 350 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 351 MB/637 MB 5.1 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 351 MB/637 MB 5.1 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 352 MB/637 MB 5.1 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 353 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 55% ▕█████████ ▏ 353 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕█████████ ▏ 354 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 354 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 355 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 355 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 355 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 356 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 357 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 357 MB/637 MB 5.0 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 358 MB/637 MB 5.1 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 358 MB/637 MB 5.1 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 358 MB/637 MB 5.1 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 359 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 359 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 56% ▕██████████ ▏ 360 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 360 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 361 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 361 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 361 MB/637 MB 5.1 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 361 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 361 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 362 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 362 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 362 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 362 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 363 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 363 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 364 MB/637 MB 4.9 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 364 MB/637 MB 4.9 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 365 MB/637 MB 4.9 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 365 MB/637 MB 4.8 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 366 MB/637 MB 4.8 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 57% ▕██████████ ▏ 366 MB/637 MB 4.8 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 367 MB/637 MB 4.8 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 367 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 367 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 368 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 369 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 369 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 370 MB/637 MB 4.8 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 370 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 371 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 371 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 372 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 58% ▕██████████ ▏ 372 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 373 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 373 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 374 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 374 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 374 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 374 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 374 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 375 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 375 MB/637 MB 4.7 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 375 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 377 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 377 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 377 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 377 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 378 MB/637 MB 4.7 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 378 MB/637 MB 4.4 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 378 MB/637 MB 4.4 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 378 MB/637 MB 4.4 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 59% ▕██████████ ▏ 379 MB/637 MB 4.4 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 380 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 380 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 381 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 381 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 382 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 382 MB/637 MB 4.4 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 382 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 383 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 384 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 384 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 385 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 60% ▕██████████ ▏ 385 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 385 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 385 MB/637 MB 4.3 MB/s 59s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 387 MB/637 MB 4.3 MB/s 58s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 388 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 389 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕██████████ ▏ 389 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 390 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 390 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 391 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 391 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 391 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 61% ▕███████████ ▏ 391 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 393 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 393 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 393 MB/637 MB 4.3 MB/s 57s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 394 MB/637 MB 4.3 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 395 MB/637 MB 4.3 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 395 MB/637 MB 4.3 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 395 MB/637 MB 4.3 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 396 MB/637 MB 4.3 MB/s 56s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 396 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 397 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 397 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 62% ▕███████████ ▏ 397 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 398 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 399 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 399 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 399 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 400 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 400 MB/637 MB 4.3 MB/s 55s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 400 MB/637 MB 4.4 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 400 MB/637 MB 4.4 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 400 MB/637 MB 4.4 MB/s 54s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 402 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 402 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 402 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 402 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 403 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 63% ▕███████████ ▏ 403 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 405 MB/637 MB 4.4 MB/s 53s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 405 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 405 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 406 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 407 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 407 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 407 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 407 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 408 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 409 MB/637 MB 4.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 410 MB/637 MB 4.5 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 410 MB/637 MB 4.5 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 64% ▕███████████ ▏ 410 MB/637 MB 4.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 411 MB/637 MB 4.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 411 MB/637 MB 4.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 412 MB/637 MB 4.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 412 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 412 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 412 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 413 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 414 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 415 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 416 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 416 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 417 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 65% ▕███████████ ▏ 417 MB/637 MB 4.5 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 417 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 418 MB/637 MB 4.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 419 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 419 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 420 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 421 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 421 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 422 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.4 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 66% ▕███████████ ▏ 423 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕███████████ ▏ 425 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 425 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 425 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 425 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 425 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 426 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 427 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 427 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 427 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 427 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 427 MB/637 MB 4.5 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 429 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 429 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 429 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 67% ▕████████████ ▏ 429 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 431 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 431 MB/637 MB 4.5 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 431 MB/637 MB 4.4 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 432 MB/637 MB 4.4 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 432 MB/637 MB 4.4 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 432 MB/637 MB 4.4 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 433 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 433 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 434 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 434 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 435 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 435 MB/637 MB 4.4 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 435 MB/637 MB 4.3 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 435 MB/637 MB 4.3 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 435 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 436 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 68% ▕████████████ ▏ 436 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 437 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 437 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 437 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.3 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 438 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 439 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 439 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 440 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 440 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 441 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 441 MB/637 MB 4.2 MB/s 46s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 441 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 442 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 442 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 442 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 69% ▕████████████ ▏ 442 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 443 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 444 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 444 MB/637 MB 4.0 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 444 MB/637 MB 4.0 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 445 MB/637 MB 4.0 MB/s 47s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 445 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 445 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 446 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 446 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 446 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 446 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 447 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 447 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 447 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 448 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 448 MB/637 MB 3.9 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 448 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 449 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 449 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 449 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 70% ▕████████████ ▏ 449 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 449 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 450 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 450 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 450 MB/637 MB 3.7 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 451 MB/637 MB 3.7 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 451 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 451 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 452 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 452 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 452 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 453 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 453 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 453 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 454 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 454 MB/637 MB 3.7 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 455 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 455 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 455 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 71% ▕████████████ ▏ 455 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 456 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 456 MB/637 MB 3.5 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 456 MB/637 MB 3.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 457 MB/637 MB 3.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 457 MB/637 MB 3.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 458 MB/637 MB 3.5 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 458 MB/637 MB 3.4 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 459 MB/637 MB 3.4 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 459 MB/637 MB 3.4 MB/s 52s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 459 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 459 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 459 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕████████████ ▏ 460 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕█████████████ ▏ 461 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕█████████████ ▏ 461 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 72% ▕█████████████ ▏ 461 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 462 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 462 MB/637 MB 3.4 MB/s 51s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 463 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 463 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 463 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 464 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 464 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 465 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 465 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 465 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 465 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 466 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 467 MB/637 MB 3.4 MB/s 50s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 467 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 73% ▕█████████████ ▏ 468 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 468 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 469 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 469 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 470 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 470 MB/637 MB 3.4 MB/s 49s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 471 MB/637 MB 3.4 MB/s 48s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 471 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 471 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 472 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 472 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 472 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 472 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 473 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 473 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 473 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 474 MB/637 MB 3.6 MB/s 45s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 74% ▕█████████████ ▏ 474 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 475 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 475 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 475 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 476 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 476 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 477 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 477 MB/637 MB 3.6 MB/s 44s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 478 MB/637 MB 3.6 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 478 MB/637 MB 3.6 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 478 MB/637 MB 3.7 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 479 MB/637 MB 3.7 MB/s 43s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 479 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 479 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 480 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 75% ▕█████████████ ▏ 481 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 481 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 482 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 482 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 482 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 482 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 483 MB/637 MB 3.7 MB/s 42s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 483 MB/637 MB 3.7 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 483 MB/637 MB 3.7 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 484 MB/637 MB 3.7 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 484 MB/637 MB 3.7 MB/s 41s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 485 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 485 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 486 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 486 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 487 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 76% ▕█████████████ ▏ 487 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 488 MB/637 MB 3.7 MB/s 40s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 488 MB/637 MB 3.7 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 489 MB/637 MB 3.7 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 489 MB/637 MB 3.7 MB/s 39s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 490 MB/637 MB 3.9 MB/s 38s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 490 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 491 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 491 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 491 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 492 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 492 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 493 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 493 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 493 MB/637 MB 3.9 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 493 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 77% ▕█████████████ ▏ 494 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 494 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 494 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 494 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 494 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 495 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕█████████████ ▏ 495 MB/637 MB 3.9 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 495 MB/637 MB 3.9 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.9 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 496 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 497 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 497 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 498 MB/637 MB 3.8 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 498 MB/637 MB 3.8 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 499 MB/637 MB 3.8 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 499 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 499 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 499 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 78% ▕██████████████ ▏ 500 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 500 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 501 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 501 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 501 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 501 MB/637 MB 3.7 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 502 MB/637 MB 3.7 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 503 MB/637 MB 3.7 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 503 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 503 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 504 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 504 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 505 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 505 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 505 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 505 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 505 MB/637 MB 3.5 MB/s 37s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 79% ▕██████████████ ▏ 506 MB/637 MB 3.5 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 507 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 507 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 507 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 508 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 508 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 508 MB/637 MB 3.6 MB/s 36s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 509 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 509 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 510 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 510 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 511 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 511 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 511 MB/637 MB 3.6 MB/s 35s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 512 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 512 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 80% ▕██████████████ ▏ 513 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 513 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 514 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 514 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 514 MB/637 MB 3.6 MB/s 34s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 515 MB/637 MB 3.8 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 515 MB/637 MB 3.8 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 516 MB/637 MB 3.8 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 516 MB/637 MB 3.8 MB/s 32s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 517 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 517 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 517 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 517 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 518 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 518 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 519 MB/637 MB 3.8 MB/s 31s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 81% ▕██████████████ ▏ 519 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 520 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 520 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 521 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 521 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 522 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 522 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 523 MB/637 MB 3.8 MB/s 30s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 523 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 524 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 524 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 525 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 525 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 82% ▕██████████████ ▏ 525 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 526 MB/637 MB 3.8 MB/s 29s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 526 MB/637 MB 3.8 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 527 MB/637 MB 3.8 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 527 MB/637 MB 3.8 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 528 MB/637 MB 3.8 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 528 MB/637 MB 3.8 MB/s 28s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 529 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 529 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 529 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 529 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 529 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕██████████████ ▏ 530 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕███████████████ ▏ 531 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕███████████████ ▏ 531 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕███████████████ ▏ 531 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 83% ▕███████████████ ▏ 532 MB/637 MB 3.9 MB/s 27s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 532 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 533 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 534 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 534 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 534 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 535 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 535 MB/637 MB 4.1 MB/s 25s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 536 MB/637 MB 4.1 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 536 MB/637 MB 4.1 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 536 MB/637 MB 4.1 MB/s 24s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 537 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 537 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 537 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 84% ▕███████████████ ▏ 538 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 539 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 539 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 539 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 540 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 540 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 541 MB/637 MB 4.2 MB/s 23s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 541 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 541 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 541 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 541 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 542 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 543 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 85% ▕███████████████ ▏ 544 MB/637 MB 4.2 MB/s 22s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 545 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 545 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 546 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 547 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 547 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 547 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 548 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 548 MB/637 MB 4.2 MB/s 21s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 549 MB/637 MB 4.2 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 549 MB/637 MB 4.3 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 550 MB/637 MB 4.3 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 550 MB/637 MB 4.3 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 86% ▕███████████████ ▏ 551 MB/637 MB 4.3 MB/s 20s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 551 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 552 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 552 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 553 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 553 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 554 MB/637 MB 4.3 MB/s 19s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 554 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 555 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 555 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 555 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 555 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 555 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 556 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 556 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 556 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 557 MB/637 MB 4.4 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 87% ▕███████████████ ▏ 557 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 558 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 558 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 558 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 559 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 559 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 560 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 560 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 560 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 561 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 562 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 562 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 562 MB/637 MB 4.2 MB/s 18s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 562 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 563 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 88% ▕███████████████ ▏ 564 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 564 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 564 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 565 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 566 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 566 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕███████████████ ▏ 566 MB/637 MB 4.2 MB/s 17s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 567 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 567 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 567 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 568 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 568 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 569 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 569 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 569 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 570 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 570 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 89% ▕████████████████ ▏ 570 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 571 MB/637 MB 4.2 MB/s 16s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 571 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 572 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 572 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 572 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 572 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 573 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 574 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 574 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 574 MB/637 MB 4.2 MB/s 15s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 575 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 575 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 576 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 90% ▕████████████████ ▏ 576 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 577 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 577 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 578 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 578 MB/637 MB 4.2 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 578 MB/637 MB 4.1 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 578 MB/637 MB 4.1 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 578 MB/637 MB 4.1 MB/s 14s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 580 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 580 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 581 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 581 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 582 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 582 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 582 MB/637 MB 4.1 MB/s 13s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 583 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 91% ▕████████████████ ▏ 583 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 583 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 584 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 584 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 584 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 585 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 585 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 586 MB/637 MB 4.3 MB/s 12s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 586 MB/637 MB 4.3 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 587 MB/637 MB 4.3 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 587 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 588 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 588 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 588 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 589 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 92% ▕████████████████ ▏ 589 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 589 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.2 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 590 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 591 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 591 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 591 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 591 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 592 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 592 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 592 MB/637 MB 4.0 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 592 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 593 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 593 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 593 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 593 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 593 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 594 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 594 MB/637 MB 3.9 MB/s 11s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 595 MB/637 MB 3.9 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 93% ▕████████████████ ▏ 596 MB/637 MB 3.9 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 596 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 597 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 597 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 597 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 597 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 598 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 598 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 598 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 598 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 598 MB/637 MB 3.8 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 599 MB/637 MB 3.7 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 599 MB/637 MB 3.7 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 600 MB/637 MB 3.7 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 600 MB/637 MB 3.7 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 600 MB/637 MB 3.7 MB/s 10s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 601 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 601 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 601 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕████████████████ ▏ 602 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕█████████████████ ▏ 602 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕█████████████████ ▏ 602 MB/637 MB 3.7 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 94% ▕█████████████████ ▏ 602 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 602 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 602 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 603 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 603 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 603 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 604 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 604 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 604 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 604 MB/637 MB 3.6 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 605 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 605 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 605 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 606 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 606 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 606 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 607 MB/637 MB 3.4 MB/s 9s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 607 MB/637 MB 3.4 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 607 MB/637 MB 3.4 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 607 MB/637 MB 3.4 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 608 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 608 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 95% ▕█████████████████ ▏ 608 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 609 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 609 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 609 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 610 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 610 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 610 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 611 MB/637 MB 3.3 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 611 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 611 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 611 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 611 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 612 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 612 MB/637 MB 3.1 MB/s 8s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 612 MB/637 MB 3.1 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 613 MB/637 MB 3.1 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 613 MB/637 MB 3.1 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 613 MB/637 MB 3.1 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 614 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 614 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 96% ▕█████████████████ ▏ 615 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 615 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 615 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 616 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 616 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 616 MB/637 MB 3.0 MB/s 7s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 616 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 617 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 617 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 618 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 6s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 619 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 620 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 620 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 620 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 620 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 621 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 97% ▕█████████████████ ▏ 621 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 621 MB/637 MB 3.0 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 621 MB/637 MB 2.8 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 622 MB/637 MB 2.8 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 622 MB/637 MB 2.8 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 622 MB/637 MB 2.8 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 623 MB/637 MB 2.8 MB/s 5s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 623 MB/637 MB 2.8 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 623 MB/637 MB 2.8 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 624 MB/637 MB 2.8 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 624 MB/637 MB 2.8 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 624 MB/637 MB 2.8 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 625 MB/637 MB 2.9 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 625 MB/637 MB 2.9 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 626 MB/637 MB 2.9 MB/s 4s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 626 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 626 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 627 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 627 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 98% ▕█████████████████ ▏ 628 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 628 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 628 MB/637 MB 2.9 MB/s 3s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 629 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 629 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 629 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 629 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 629 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 630 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 630 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 631 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 631 MB/637 MB 3.0 MB/s 2s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 631 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 632 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 632 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 633 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 633 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 633 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 634 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 99% ▕█████████████████ ▏ 634 MB/637 MB 3.0 MB/s 1s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 634 MB/637 MB 3.0 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 634 MB/637 MB 3.0 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 635 MB/637 MB 3.0 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 635 MB/637 MB 3.0 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 635 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 635 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 636 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 636 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 636 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕█████████████████ ▏ 637 MB/637 MB 3.1 MB/s 0s\u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠹ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠸ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠼ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠴ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠦ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠧ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠇ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠏ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠋ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest ⠙ \u001b[K\u001b[?25h\u001b[?2026l\u001b[?2026h\u001b[?25l\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[1Gpulling manifest \u001b[K\n", "pulling 2af3b81862c6: 100% ▕██████████████████▏ 637 MB \u001b[K\n", "pulling af0ddbdaaa26: 100% ▕██████████████████▏ 70 B \u001b[K\n", "pulling c8472cd9daed: 100% ▕██████████████████▏ 31 B \u001b[K\n", "pulling fa956ab37b8c: 100% ▕██████████████████▏ 98 B \u001b[K\n", "pulling 6331358be52a: 100% ▕██████████████████▏ 483 B \u001b[K\n", "verifying sha256 digest \u001b[K\n", "writing manifest \u001b[K\n", "success \u001b[K\u001b[?25h\u001b[?2026l\n" ] } ], "source": [ "!ollama pull tinyllama\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ollama = OpenAI(base_url='http://localhost:11434/v1', api_key='ollama')\n", "model_name = \"llama3.2:1b\"\n", "\n", "response = ollama.chat.completions.create(model=model_name, messages=messages)\n", "answer = response.choices[0].message.content\n", "\n", "display(Markdown(answer))\n", "competitors.append(model_name)\n", "answers.append(answer)" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['gemini-2.0-flash', 'llama-3.3-70b-versatile']\n", "[\"Okay, let's analyze the **Manhattan Project** and argue whether its long-term consequences justify the ethical compromises made in its execution.\\n\\n**Background:**\\n\\nThe Manhattan Project, initiated during World War II (1942-1946), was a top-secret research and development undertaking that produced the first atomic bombs. Driven by the fear that Nazi Germany was also developing nuclear weapons, the project involved a massive mobilization of scientific, industrial, and military resources across the United States, Canada, and the United Kingdom. It culminated in the bombings of Hiroshima and Nagasaki in August 1945, leading to Japan's surrender and the end of World War II.\\n\\n**Ethical Compromises:**\\n\\n* **Secrecy and Deception:** The project operated under extreme secrecy, even from many elected officials. This secrecy fostered a culture where ethical concerns were often subordinated to the overarching goal of achieving a scientific breakthrough before the enemy. Deception was used to acquire land and resources, and to keep the project hidden from public scrutiny.\\n* **Lack of Informed Consent:** Many scientists and workers involved in the project were not fully informed about the risks associated with their work, particularly regarding radiation exposure. While some were aware of the dangers, the urgency and compartmentalization of the project hindered transparent communication.\\n* **Moral Question of Targeting Civilians:** The decision to drop the atomic bombs on Hiroshima and Nagasaki, predominantly civilian centers, raises profound ethical questions. While proponents argued it was necessary to force Japan's surrender and prevent a potentially bloodier invasion, critics contend that it constituted a war crime and an act of disproportionate violence.\\n* **Environmental Impact:** The project left a legacy of environmental contamination due to uranium mining and processing. The long-term health effects on those exposed to radiation in the development and testing phases, as well as in the affected cities, were largely unknown or downplayed at the time.\\n* **Fueling the Cold War:** The existence of nuclear weapons initiated an arms race with the Soviet Union, escalating tensions and ushering in the Cold War era. The threat of nuclear annihilation became a constant presence in global politics, fundamentally altering international relations.\\n\\n**Perspectives:**\\n\\n* **The U.S. Government/Military Perspective:** The prevailing argument was that the atomic bombs were necessary to end the war quickly, saving the lives of American soldiers and potentially millions of Japanese civilians who would have perished in a prolonged invasion. From this perspective, the ethical compromises were regrettable but justified by the greater good of ending the war and preventing further bloodshed. They also believed they had to beat the Nazis to the bomb.\\n* **The Perspective of Scientists Involved:** Scientists were split. Some, like Oppenheimer, felt a moral responsibility for the consequences of their work and later advocated for international control of nuclear weapons. Others believed they were simply fulfilling their duty to their country during wartime, and the decision to use the bombs was beyond their control. Still others had concerns and actively tried to stall the project.\\n* **The Perspective of Japanese Civilians:** For the survivors of Hiroshima and Nagasaki, the bombings were an unimaginable catastrophe. They experienced immense suffering, loss of life, and long-term health problems. They viewed the bombings as an inhumane act of aggression, regardless of the strategic justifications.\\n* **The Historian/Ethicist Perspective:** Many historians and ethicists argue that the long-term consequences of the Manhattan Project, including the proliferation of nuclear weapons and the constant threat of nuclear war, outweigh any perceived benefits of ending World War II quickly. They emphasize the moral imperative to explore all possible alternatives before resorting to such devastating force.\\n\\n**Unintended Outcomes:**\\n\\n* **Nuclear Proliferation:** The Manhattan Project ushered in the nuclear age, leading to the development and stockpiling of nuclear weapons by multiple nations. This created a precarious balance of power and the constant threat of nuclear annihilation.\\n* **Mutually Assured Destruction (MAD):** The doctrine of MAD, which held that any nuclear attack would inevitably lead to retaliation and the destruction of both sides, became a cornerstone of Cold War strategy. While it arguably prevented a large-scale nuclear war, it also created a climate of fear and mistrust.\\n* **Nuclear Accidents and Environmental Concerns:** The use and testing of nuclear weapons have resulted in significant environmental contamination and health problems. Accidents like Chernobyl and Fukushima have highlighted the dangers of nuclear technology.\\n* **Shift in Global Power Dynamics:** The United States emerged from World War II as a superpower, largely due to its possession of nuclear weapons. This altered the global balance of power and contributed to the Cold War rivalry with the Soviet Union.\\n\\n**Justification? A Complex Calculation:**\\n\\nThe question of whether the long-term consequences of the Manhattan Project justify the ethical compromises made is inherently complex and subjective.\\n\\n**Arguments FOR Justification (Conditional):**\\n\\n* If one prioritizes the immediate goal of ending World War II as quickly as possible, preventing a potentially devastating invasion of Japan, and believes that the bombings were the only way to achieve this goal, then the ethical compromises might be seen as justified, *provided* that the use of nuclear weapons was genuinely the least-worst option available after exhausting all other reasonable alternatives.\\n* One could argue that the horror of the atomic bombings, while tragic, instilled a powerful deterrent effect that prevented major global wars between superpowers for decades.\\n\\n**Arguments AGAINST Justification:**\\n\\n* The long-term consequences of nuclear proliferation, the constant threat of nuclear annihilation, and the environmental impact of nuclear testing outweigh any perceived benefits of ending World War II quickly.\\n* Alternatives to the bombings, such as continued conventional bombing, a naval blockade, or Soviet entry into the war, may have been viable options that were not fully explored.\\n* The moral cost of deliberately targeting civilians and unleashing the destructive power of nuclear weapons is simply too high to justify, regardless of the circumstances.\\n* The initiation of the Cold War and the arms race were extremely costly, and it is debatable whether these outcomes were superior to what might have resulted from a longer, less devastating end to WWII.\\n\\n**Conclusion:**\\n\\nIn my view, the ethical compromises made during the Manhattan Project are difficult to justify in light of the long-term consequences. While the immediate goal of ending World War II was undeniably important, the creation and use of nuclear weapons set in motion a chain of events that continue to threaten the world today. The proliferation of nuclear weapons, the constant threat of nuclear war, and the environmental legacy of nuclear testing are all serious concerns that cannot be easily dismissed.\\n\\nWhile the debate continues, the Manhattan Project serves as a stark reminder of the ethical challenges inherent in scientific and technological advancements, particularly in times of war. It underscores the importance of carefully considering the long-term consequences of our actions and of upholding moral principles even when faced with difficult decisions. The fact that this is still debated shows the complexity and lasting impact of the decision. A more transparent process, broader consultation, and a more thorough exploration of alternatives might have led to a different outcome, potentially avoiding some of the most devastating consequences of the nuclear age.\\n\", \"The Manhattan Project, which developed the atomic bomb during World War II, is a complex and multifaceted historical event that raises significant ethical concerns. The project's long-term consequences have been far-reaching and multifaceted, with both positive and negative outcomes. This analysis will argue that the long-term consequences of the Manhattan Project do not entirely justify the ethical compromises made in its execution, as the devastating effects of the bomb's use outweigh its benefits.\\n\\n**The Event and its Execution**\\n\\nThe Manhattan Project was a secret research and development project led by the United States, with the participation of the United Kingdom and Canada. The project's primary goal was to develop an atomic bomb before Nazi Germany, which was also pursuing nuclear research. The project involved a large team of scientists, engineers, and technicians working in secret facilities across the United States, Canada, and the United Kingdom. The project's leaders, including J. Robert Oppenheimer and Enrico Fermi, were aware of the bomb's potential destructive power and the ethical implications of its use.\\n\\n**Ethical Compromises**\\n\\nThe Manhattan Project involved several ethical compromises, including:\\n\\n1. **Secrecy and deception**: The project was shrouded in secrecy, with many participants unaware of the bomb's true purpose or the potential consequences of its use.\\n2. **Use of forced labor**: The project relied on the labor of tens of thousands of workers, including POWs and civilians, who wereforced to work in harsh conditions.\\n3. **Disregard for human life**: The bomb's development and testing involved significant risks to human life, including the exposure of workers to radiation and the potential for catastrophic accidents.\\n4. **Targeting of civilian populations**: The bomb was ultimately used to target civilian populations in Hiroshima and Nagasaki, resulting in the deaths of hundreds of thousands of people.\\n\\n**Long-term Consequences**\\n\\nThe long-term consequences of the Manhattan Project have been profound and far-reaching:\\n\\n1. **Ending World War II**: The bomb's use helped bring an end to World War II, potentially saving millions of lives and preventing further destruction.\\n2. **Nuclear deterrence**: The bomb's existence has contributed to a state of nuclear deterrence, which has helped to maintain a fragile peace between nuclear-armed nations.\\n3. **Nuclear energy**: The Manhattan Project laid the foundation for the development of nuclear energy, which has become a significant source of power generation worldwide.\\n4. **International relations**: The bomb's existence has had a profound impact on international relations, shaping global politics and diplomacy for decades.\\n\\n**Multiple Perspectives**\\n\\nDifferent perspectives on the Manhattan Project offer varying assessments of its ethical implications:\\n\\n1. **Utilitarian perspective**: From a utilitarian perspective, the bomb's use can be justified as a necessary evil to prevent further suffering and loss of life during World War II.\\n2. **Deontological perspective**: From a deontological perspective, the bomb's use is morally wrong, as it involves the intentional targeting of civilian populations and the violation of fundamental human rights.\\n3. **Realist perspective**: From a realist perspective, the bomb's existence is a necessary component of national security, as it provides a deterrent against aggression and helps to maintain a balance of power.\\n\\n**Unintended Outcomes**\\n\\nThe Manhattan Project has had several unintended outcomes, including:\\n\\n1. **Nuclear proliferation**: The bomb's existence has contributed to the proliferation of nuclear weapons, increasing the risk of nuclear conflict and terrorism.\\n2. **Environmental damage**: The production and testing of nuclear weapons have resulted in significant environmental damage, including radioactive contamination and pollution.\\n3. **Psychological trauma**: The bomb's use has caused significant psychological trauma, particularly for survivors of the Hiroshima and Nagasaki bombings.\\n\\n**Conclusion**\\n\\nIn conclusion, while the Manhattan Project's long-term consequences have been significant and far-reaching, they do not entirely justify the ethical compromises made in its execution. The devastating effects of the bomb's use, including the loss of hundreds of thousands of lives and the long-term damage to the environment and human health, outweigh its benefits. The project's secrecy, use of forced labor, disregard for human life, and targeting of civilian populations all raise significant ethical concerns. A more nuanced understanding of the project's complexities and consequences is necessary to appreciate the need for careful consideration and reflection on the ethics of scientific research and development. Ultimately, the Manhattan Project serves as a cautionary tale about the importance of prioritizing human rights, dignity, and well-being in the pursuit of scientific progress and national security.\"]\n" ] } ], "source": [ "# So where are we?\n", "\n", "print(competitors)\n", "print(answers)\n" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Competitor: gemini-2.0-flash\n", "\n", "Okay, let's analyze the **Manhattan Project** and argue whether its long-term consequences justify the ethical compromises made in its execution.\n", "\n", "**Background:**\n", "\n", "The Manhattan Project, initiated during World War II (1942-1946), was a top-secret research and development undertaking that produced the first atomic bombs. Driven by the fear that Nazi Germany was also developing nuclear weapons, the project involved a massive mobilization of scientific, industrial, and military resources across the United States, Canada, and the United Kingdom. It culminated in the bombings of Hiroshima and Nagasaki in August 1945, leading to Japan's surrender and the end of World War II.\n", "\n", "**Ethical Compromises:**\n", "\n", "* **Secrecy and Deception:** The project operated under extreme secrecy, even from many elected officials. This secrecy fostered a culture where ethical concerns were often subordinated to the overarching goal of achieving a scientific breakthrough before the enemy. Deception was used to acquire land and resources, and to keep the project hidden from public scrutiny.\n", "* **Lack of Informed Consent:** Many scientists and workers involved in the project were not fully informed about the risks associated with their work, particularly regarding radiation exposure. While some were aware of the dangers, the urgency and compartmentalization of the project hindered transparent communication.\n", "* **Moral Question of Targeting Civilians:** The decision to drop the atomic bombs on Hiroshima and Nagasaki, predominantly civilian centers, raises profound ethical questions. While proponents argued it was necessary to force Japan's surrender and prevent a potentially bloodier invasion, critics contend that it constituted a war crime and an act of disproportionate violence.\n", "* **Environmental Impact:** The project left a legacy of environmental contamination due to uranium mining and processing. The long-term health effects on those exposed to radiation in the development and testing phases, as well as in the affected cities, were largely unknown or downplayed at the time.\n", "* **Fueling the Cold War:** The existence of nuclear weapons initiated an arms race with the Soviet Union, escalating tensions and ushering in the Cold War era. The threat of nuclear annihilation became a constant presence in global politics, fundamentally altering international relations.\n", "\n", "**Perspectives:**\n", "\n", "* **The U.S. Government/Military Perspective:** The prevailing argument was that the atomic bombs were necessary to end the war quickly, saving the lives of American soldiers and potentially millions of Japanese civilians who would have perished in a prolonged invasion. From this perspective, the ethical compromises were regrettable but justified by the greater good of ending the war and preventing further bloodshed. They also believed they had to beat the Nazis to the bomb.\n", "* **The Perspective of Scientists Involved:** Scientists were split. Some, like Oppenheimer, felt a moral responsibility for the consequences of their work and later advocated for international control of nuclear weapons. Others believed they were simply fulfilling their duty to their country during wartime, and the decision to use the bombs was beyond their control. Still others had concerns and actively tried to stall the project.\n", "* **The Perspective of Japanese Civilians:** For the survivors of Hiroshima and Nagasaki, the bombings were an unimaginable catastrophe. They experienced immense suffering, loss of life, and long-term health problems. They viewed the bombings as an inhumane act of aggression, regardless of the strategic justifications.\n", "* **The Historian/Ethicist Perspective:** Many historians and ethicists argue that the long-term consequences of the Manhattan Project, including the proliferation of nuclear weapons and the constant threat of nuclear war, outweigh any perceived benefits of ending World War II quickly. They emphasize the moral imperative to explore all possible alternatives before resorting to such devastating force.\n", "\n", "**Unintended Outcomes:**\n", "\n", "* **Nuclear Proliferation:** The Manhattan Project ushered in the nuclear age, leading to the development and stockpiling of nuclear weapons by multiple nations. This created a precarious balance of power and the constant threat of nuclear annihilation.\n", "* **Mutually Assured Destruction (MAD):** The doctrine of MAD, which held that any nuclear attack would inevitably lead to retaliation and the destruction of both sides, became a cornerstone of Cold War strategy. While it arguably prevented a large-scale nuclear war, it also created a climate of fear and mistrust.\n", "* **Nuclear Accidents and Environmental Concerns:** The use and testing of nuclear weapons have resulted in significant environmental contamination and health problems. Accidents like Chernobyl and Fukushima have highlighted the dangers of nuclear technology.\n", "* **Shift in Global Power Dynamics:** The United States emerged from World War II as a superpower, largely due to its possession of nuclear weapons. This altered the global balance of power and contributed to the Cold War rivalry with the Soviet Union.\n", "\n", "**Justification? A Complex Calculation:**\n", "\n", "The question of whether the long-term consequences of the Manhattan Project justify the ethical compromises made is inherently complex and subjective.\n", "\n", "**Arguments FOR Justification (Conditional):**\n", "\n", "* If one prioritizes the immediate goal of ending World War II as quickly as possible, preventing a potentially devastating invasion of Japan, and believes that the bombings were the only way to achieve this goal, then the ethical compromises might be seen as justified, *provided* that the use of nuclear weapons was genuinely the least-worst option available after exhausting all other reasonable alternatives.\n", "* One could argue that the horror of the atomic bombings, while tragic, instilled a powerful deterrent effect that prevented major global wars between superpowers for decades.\n", "\n", "**Arguments AGAINST Justification:**\n", "\n", "* The long-term consequences of nuclear proliferation, the constant threat of nuclear annihilation, and the environmental impact of nuclear testing outweigh any perceived benefits of ending World War II quickly.\n", "* Alternatives to the bombings, such as continued conventional bombing, a naval blockade, or Soviet entry into the war, may have been viable options that were not fully explored.\n", "* The moral cost of deliberately targeting civilians and unleashing the destructive power of nuclear weapons is simply too high to justify, regardless of the circumstances.\n", "* The initiation of the Cold War and the arms race were extremely costly, and it is debatable whether these outcomes were superior to what might have resulted from a longer, less devastating end to WWII.\n", "\n", "**Conclusion:**\n", "\n", "In my view, the ethical compromises made during the Manhattan Project are difficult to justify in light of the long-term consequences. While the immediate goal of ending World War II was undeniably important, the creation and use of nuclear weapons set in motion a chain of events that continue to threaten the world today. The proliferation of nuclear weapons, the constant threat of nuclear war, and the environmental legacy of nuclear testing are all serious concerns that cannot be easily dismissed.\n", "\n", "While the debate continues, the Manhattan Project serves as a stark reminder of the ethical challenges inherent in scientific and technological advancements, particularly in times of war. It underscores the importance of carefully considering the long-term consequences of our actions and of upholding moral principles even when faced with difficult decisions. The fact that this is still debated shows the complexity and lasting impact of the decision. A more transparent process, broader consultation, and a more thorough exploration of alternatives might have led to a different outcome, potentially avoiding some of the most devastating consequences of the nuclear age.\n", "\n", "Competitor: llama-3.3-70b-versatile\n", "\n", "The Manhattan Project, which developed the atomic bomb during World War II, is a complex and multifaceted historical event that raises significant ethical concerns. The project's long-term consequences have been far-reaching and multifaceted, with both positive and negative outcomes. This analysis will argue that the long-term consequences of the Manhattan Project do not entirely justify the ethical compromises made in its execution, as the devastating effects of the bomb's use outweigh its benefits.\n", "\n", "**The Event and its Execution**\n", "\n", "The Manhattan Project was a secret research and development project led by the United States, with the participation of the United Kingdom and Canada. The project's primary goal was to develop an atomic bomb before Nazi Germany, which was also pursuing nuclear research. The project involved a large team of scientists, engineers, and technicians working in secret facilities across the United States, Canada, and the United Kingdom. The project's leaders, including J. Robert Oppenheimer and Enrico Fermi, were aware of the bomb's potential destructive power and the ethical implications of its use.\n", "\n", "**Ethical Compromises**\n", "\n", "The Manhattan Project involved several ethical compromises, including:\n", "\n", "1. **Secrecy and deception**: The project was shrouded in secrecy, with many participants unaware of the bomb's true purpose or the potential consequences of its use.\n", "2. **Use of forced labor**: The project relied on the labor of tens of thousands of workers, including POWs and civilians, who wereforced to work in harsh conditions.\n", "3. **Disregard for human life**: The bomb's development and testing involved significant risks to human life, including the exposure of workers to radiation and the potential for catastrophic accidents.\n", "4. **Targeting of civilian populations**: The bomb was ultimately used to target civilian populations in Hiroshima and Nagasaki, resulting in the deaths of hundreds of thousands of people.\n", "\n", "**Long-term Consequences**\n", "\n", "The long-term consequences of the Manhattan Project have been profound and far-reaching:\n", "\n", "1. **Ending World War II**: The bomb's use helped bring an end to World War II, potentially saving millions of lives and preventing further destruction.\n", "2. **Nuclear deterrence**: The bomb's existence has contributed to a state of nuclear deterrence, which has helped to maintain a fragile peace between nuclear-armed nations.\n", "3. **Nuclear energy**: The Manhattan Project laid the foundation for the development of nuclear energy, which has become a significant source of power generation worldwide.\n", "4. **International relations**: The bomb's existence has had a profound impact on international relations, shaping global politics and diplomacy for decades.\n", "\n", "**Multiple Perspectives**\n", "\n", "Different perspectives on the Manhattan Project offer varying assessments of its ethical implications:\n", "\n", "1. **Utilitarian perspective**: From a utilitarian perspective, the bomb's use can be justified as a necessary evil to prevent further suffering and loss of life during World War II.\n", "2. **Deontological perspective**: From a deontological perspective, the bomb's use is morally wrong, as it involves the intentional targeting of civilian populations and the violation of fundamental human rights.\n", "3. **Realist perspective**: From a realist perspective, the bomb's existence is a necessary component of national security, as it provides a deterrent against aggression and helps to maintain a balance of power.\n", "\n", "**Unintended Outcomes**\n", "\n", "The Manhattan Project has had several unintended outcomes, including:\n", "\n", "1. **Nuclear proliferation**: The bomb's existence has contributed to the proliferation of nuclear weapons, increasing the risk of nuclear conflict and terrorism.\n", "2. **Environmental damage**: The production and testing of nuclear weapons have resulted in significant environmental damage, including radioactive contamination and pollution.\n", "3. **Psychological trauma**: The bomb's use has caused significant psychological trauma, particularly for survivors of the Hiroshima and Nagasaki bombings.\n", "\n", "**Conclusion**\n", "\n", "In conclusion, while the Manhattan Project's long-term consequences have been significant and far-reaching, they do not entirely justify the ethical compromises made in its execution. The devastating effects of the bomb's use, including the loss of hundreds of thousands of lives and the long-term damage to the environment and human health, outweigh its benefits. The project's secrecy, use of forced labor, disregard for human life, and targeting of civilian populations all raise significant ethical concerns. A more nuanced understanding of the project's complexities and consequences is necessary to appreciate the need for careful consideration and reflection on the ethics of scientific research and development. Ultimately, the Manhattan Project serves as a cautionary tale about the importance of prioritizing human rights, dignity, and well-being in the pursuit of scientific progress and national security.\n" ] } ], "source": [ "# It's nice to know how to use \"zip\"\n", "for competitor, answer in zip(competitors, answers):\n", " print(f\"Competitor: {competitor}\\n\\n{answer}\")\n" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "# Let's bring this together - note the use of \"enumerate\"\n", "\n", "together = \"\"\n", "for index, answer in enumerate(answers):\n", " together += f\"# Response from competitor {index+1}\\n\\n\"\n", " together += answer + \"\\n\\n\"" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "# Response from competitor 1\n", "\n", "Okay, let's analyze the **Manhattan Project** and argue whether its long-term consequences justify the ethical compromises made in its execution.\n", "\n", "**Background:**\n", "\n", "The Manhattan Project, initiated during World War II (1942-1946), was a top-secret research and development undertaking that produced the first atomic bombs. Driven by the fear that Nazi Germany was also developing nuclear weapons, the project involved a massive mobilization of scientific, industrial, and military resources across the United States, Canada, and the United Kingdom. It culminated in the bombings of Hiroshima and Nagasaki in August 1945, leading to Japan's surrender and the end of World War II.\n", "\n", "**Ethical Compromises:**\n", "\n", "* **Secrecy and Deception:** The project operated under extreme secrecy, even from many elected officials. This secrecy fostered a culture where ethical concerns were often subordinated to the overarching goal of achieving a scientific breakthrough before the enemy. Deception was used to acquire land and resources, and to keep the project hidden from public scrutiny.\n", "* **Lack of Informed Consent:** Many scientists and workers involved in the project were not fully informed about the risks associated with their work, particularly regarding radiation exposure. While some were aware of the dangers, the urgency and compartmentalization of the project hindered transparent communication.\n", "* **Moral Question of Targeting Civilians:** The decision to drop the atomic bombs on Hiroshima and Nagasaki, predominantly civilian centers, raises profound ethical questions. While proponents argued it was necessary to force Japan's surrender and prevent a potentially bloodier invasion, critics contend that it constituted a war crime and an act of disproportionate violence.\n", "* **Environmental Impact:** The project left a legacy of environmental contamination due to uranium mining and processing. The long-term health effects on those exposed to radiation in the development and testing phases, as well as in the affected cities, were largely unknown or downplayed at the time.\n", "* **Fueling the Cold War:** The existence of nuclear weapons initiated an arms race with the Soviet Union, escalating tensions and ushering in the Cold War era. The threat of nuclear annihilation became a constant presence in global politics, fundamentally altering international relations.\n", "\n", "**Perspectives:**\n", "\n", "* **The U.S. Government/Military Perspective:** The prevailing argument was that the atomic bombs were necessary to end the war quickly, saving the lives of American soldiers and potentially millions of Japanese civilians who would have perished in a prolonged invasion. From this perspective, the ethical compromises were regrettable but justified by the greater good of ending the war and preventing further bloodshed. They also believed they had to beat the Nazis to the bomb.\n", "* **The Perspective of Scientists Involved:** Scientists were split. Some, like Oppenheimer, felt a moral responsibility for the consequences of their work and later advocated for international control of nuclear weapons. Others believed they were simply fulfilling their duty to their country during wartime, and the decision to use the bombs was beyond their control. Still others had concerns and actively tried to stall the project.\n", "* **The Perspective of Japanese Civilians:** For the survivors of Hiroshima and Nagasaki, the bombings were an unimaginable catastrophe. They experienced immense suffering, loss of life, and long-term health problems. They viewed the bombings as an inhumane act of aggression, regardless of the strategic justifications.\n", "* **The Historian/Ethicist Perspective:** Many historians and ethicists argue that the long-term consequences of the Manhattan Project, including the proliferation of nuclear weapons and the constant threat of nuclear war, outweigh any perceived benefits of ending World War II quickly. They emphasize the moral imperative to explore all possible alternatives before resorting to such devastating force.\n", "\n", "**Unintended Outcomes:**\n", "\n", "* **Nuclear Proliferation:** The Manhattan Project ushered in the nuclear age, leading to the development and stockpiling of nuclear weapons by multiple nations. This created a precarious balance of power and the constant threat of nuclear annihilation.\n", "* **Mutually Assured Destruction (MAD):** The doctrine of MAD, which held that any nuclear attack would inevitably lead to retaliation and the destruction of both sides, became a cornerstone of Cold War strategy. While it arguably prevented a large-scale nuclear war, it also created a climate of fear and mistrust.\n", "* **Nuclear Accidents and Environmental Concerns:** The use and testing of nuclear weapons have resulted in significant environmental contamination and health problems. Accidents like Chernobyl and Fukushima have highlighted the dangers of nuclear technology.\n", "* **Shift in Global Power Dynamics:** The United States emerged from World War II as a superpower, largely due to its possession of nuclear weapons. This altered the global balance of power and contributed to the Cold War rivalry with the Soviet Union.\n", "\n", "**Justification? A Complex Calculation:**\n", "\n", "The question of whether the long-term consequences of the Manhattan Project justify the ethical compromises made is inherently complex and subjective.\n", "\n", "**Arguments FOR Justification (Conditional):**\n", "\n", "* If one prioritizes the immediate goal of ending World War II as quickly as possible, preventing a potentially devastating invasion of Japan, and believes that the bombings were the only way to achieve this goal, then the ethical compromises might be seen as justified, *provided* that the use of nuclear weapons was genuinely the least-worst option available after exhausting all other reasonable alternatives.\n", "* One could argue that the horror of the atomic bombings, while tragic, instilled a powerful deterrent effect that prevented major global wars between superpowers for decades.\n", "\n", "**Arguments AGAINST Justification:**\n", "\n", "* The long-term consequences of nuclear proliferation, the constant threat of nuclear annihilation, and the environmental impact of nuclear testing outweigh any perceived benefits of ending World War II quickly.\n", "* Alternatives to the bombings, such as continued conventional bombing, a naval blockade, or Soviet entry into the war, may have been viable options that were not fully explored.\n", "* The moral cost of deliberately targeting civilians and unleashing the destructive power of nuclear weapons is simply too high to justify, regardless of the circumstances.\n", "* The initiation of the Cold War and the arms race were extremely costly, and it is debatable whether these outcomes were superior to what might have resulted from a longer, less devastating end to WWII.\n", "\n", "**Conclusion:**\n", "\n", "In my view, the ethical compromises made during the Manhattan Project are difficult to justify in light of the long-term consequences. While the immediate goal of ending World War II was undeniably important, the creation and use of nuclear weapons set in motion a chain of events that continue to threaten the world today. The proliferation of nuclear weapons, the constant threat of nuclear war, and the environmental legacy of nuclear testing are all serious concerns that cannot be easily dismissed.\n", "\n", "While the debate continues, the Manhattan Project serves as a stark reminder of the ethical challenges inherent in scientific and technological advancements, particularly in times of war. It underscores the importance of carefully considering the long-term consequences of our actions and of upholding moral principles even when faced with difficult decisions. The fact that this is still debated shows the complexity and lasting impact of the decision. A more transparent process, broader consultation, and a more thorough exploration of alternatives might have led to a different outcome, potentially avoiding some of the most devastating consequences of the nuclear age.\n", "\n", "\n", "# Response from competitor 2\n", "\n", "The Manhattan Project, which developed the atomic bomb during World War II, is a complex and multifaceted historical event that raises significant ethical concerns. The project's long-term consequences have been far-reaching and multifaceted, with both positive and negative outcomes. This analysis will argue that the long-term consequences of the Manhattan Project do not entirely justify the ethical compromises made in its execution, as the devastating effects of the bomb's use outweigh its benefits.\n", "\n", "**The Event and its Execution**\n", "\n", "The Manhattan Project was a secret research and development project led by the United States, with the participation of the United Kingdom and Canada. The project's primary goal was to develop an atomic bomb before Nazi Germany, which was also pursuing nuclear research. The project involved a large team of scientists, engineers, and technicians working in secret facilities across the United States, Canada, and the United Kingdom. The project's leaders, including J. Robert Oppenheimer and Enrico Fermi, were aware of the bomb's potential destructive power and the ethical implications of its use.\n", "\n", "**Ethical Compromises**\n", "\n", "The Manhattan Project involved several ethical compromises, including:\n", "\n", "1. **Secrecy and deception**: The project was shrouded in secrecy, with many participants unaware of the bomb's true purpose or the potential consequences of its use.\n", "2. **Use of forced labor**: The project relied on the labor of tens of thousands of workers, including POWs and civilians, who wereforced to work in harsh conditions.\n", "3. **Disregard for human life**: The bomb's development and testing involved significant risks to human life, including the exposure of workers to radiation and the potential for catastrophic accidents.\n", "4. **Targeting of civilian populations**: The bomb was ultimately used to target civilian populations in Hiroshima and Nagasaki, resulting in the deaths of hundreds of thousands of people.\n", "\n", "**Long-term Consequences**\n", "\n", "The long-term consequences of the Manhattan Project have been profound and far-reaching:\n", "\n", "1. **Ending World War II**: The bomb's use helped bring an end to World War II, potentially saving millions of lives and preventing further destruction.\n", "2. **Nuclear deterrence**: The bomb's existence has contributed to a state of nuclear deterrence, which has helped to maintain a fragile peace between nuclear-armed nations.\n", "3. **Nuclear energy**: The Manhattan Project laid the foundation for the development of nuclear energy, which has become a significant source of power generation worldwide.\n", "4. **International relations**: The bomb's existence has had a profound impact on international relations, shaping global politics and diplomacy for decades.\n", "\n", "**Multiple Perspectives**\n", "\n", "Different perspectives on the Manhattan Project offer varying assessments of its ethical implications:\n", "\n", "1. **Utilitarian perspective**: From a utilitarian perspective, the bomb's use can be justified as a necessary evil to prevent further suffering and loss of life during World War II.\n", "2. **Deontological perspective**: From a deontological perspective, the bomb's use is morally wrong, as it involves the intentional targeting of civilian populations and the violation of fundamental human rights.\n", "3. **Realist perspective**: From a realist perspective, the bomb's existence is a necessary component of national security, as it provides a deterrent against aggression and helps to maintain a balance of power.\n", "\n", "**Unintended Outcomes**\n", "\n", "The Manhattan Project has had several unintended outcomes, including:\n", "\n", "1. **Nuclear proliferation**: The bomb's existence has contributed to the proliferation of nuclear weapons, increasing the risk of nuclear conflict and terrorism.\n", "2. **Environmental damage**: The production and testing of nuclear weapons have resulted in significant environmental damage, including radioactive contamination and pollution.\n", "3. **Psychological trauma**: The bomb's use has caused significant psychological trauma, particularly for survivors of the Hiroshima and Nagasaki bombings.\n", "\n", "**Conclusion**\n", "\n", "In conclusion, while the Manhattan Project's long-term consequences have been significant and far-reaching, they do not entirely justify the ethical compromises made in its execution. The devastating effects of the bomb's use, including the loss of hundreds of thousands of lives and the long-term damage to the environment and human health, outweigh its benefits. The project's secrecy, use of forced labor, disregard for human life, and targeting of civilian populations all raise significant ethical concerns. A more nuanced understanding of the project's complexities and consequences is necessary to appreciate the need for careful consideration and reflection on the ethics of scientific research and development. Ultimately, the Manhattan Project serves as a cautionary tale about the importance of prioritizing human rights, dignity, and well-being in the pursuit of scientific progress and national security.\n", "\n", "\n" ] } ], "source": [ "print(together)" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [], "source": [ "judge = f\"\"\"You are judging a competition between {len(competitors)} competitors.\n", "Each model has been given this question:\n", "\n", "{question}\n", "\n", "Your job is to evaluate each response for clarity and strength of argument, and rank them in order of best to worst.\n", "Respond with JSON, and only JSON, with the following format:\n", "{{\"results\": [\"best competitor number\", \"second best competitor number\", \"third best competitor number\", ...]}}\n", "\n", "Here are the responses from each competitor:\n", "\n", "{together}\n", "\n", "Now respond with the JSON with the ranked order of the competitors, nothing else. Do not include markdown formatting or code blocks.\"\"\"\n" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "You are judging a competition between 2 competitors.\n", "Each model has been given this question:\n", "\n", "Given the complexities of human motivation and societal impact, analyze a historical event (you choose the event) and argue whether the long-term consequences justify the ethical compromises made in its execution. Be sure to address multiple perspectives and potential unintended outcomes.\n", "\n", "\n", "Your job is to evaluate each response for clarity and strength of argument, and rank them in order of best to worst.\n", "Respond with JSON, and only JSON, with the following format:\n", "{\"results\": [\"best competitor number\", \"second best competitor number\", \"third best competitor number\", ...]}\n", "\n", "Here are the responses from each competitor:\n", "\n", "# Response from competitor 1\n", "\n", "Okay, let's analyze the **Manhattan Project** and argue whether its long-term consequences justify the ethical compromises made in its execution.\n", "\n", "**Background:**\n", "\n", "The Manhattan Project, initiated during World War II (1942-1946), was a top-secret research and development undertaking that produced the first atomic bombs. Driven by the fear that Nazi Germany was also developing nuclear weapons, the project involved a massive mobilization of scientific, industrial, and military resources across the United States, Canada, and the United Kingdom. It culminated in the bombings of Hiroshima and Nagasaki in August 1945, leading to Japan's surrender and the end of World War II.\n", "\n", "**Ethical Compromises:**\n", "\n", "* **Secrecy and Deception:** The project operated under extreme secrecy, even from many elected officials. This secrecy fostered a culture where ethical concerns were often subordinated to the overarching goal of achieving a scientific breakthrough before the enemy. Deception was used to acquire land and resources, and to keep the project hidden from public scrutiny.\n", "* **Lack of Informed Consent:** Many scientists and workers involved in the project were not fully informed about the risks associated with their work, particularly regarding radiation exposure. While some were aware of the dangers, the urgency and compartmentalization of the project hindered transparent communication.\n", "* **Moral Question of Targeting Civilians:** The decision to drop the atomic bombs on Hiroshima and Nagasaki, predominantly civilian centers, raises profound ethical questions. While proponents argued it was necessary to force Japan's surrender and prevent a potentially bloodier invasion, critics contend that it constituted a war crime and an act of disproportionate violence.\n", "* **Environmental Impact:** The project left a legacy of environmental contamination due to uranium mining and processing. The long-term health effects on those exposed to radiation in the development and testing phases, as well as in the affected cities, were largely unknown or downplayed at the time.\n", "* **Fueling the Cold War:** The existence of nuclear weapons initiated an arms race with the Soviet Union, escalating tensions and ushering in the Cold War era. The threat of nuclear annihilation became a constant presence in global politics, fundamentally altering international relations.\n", "\n", "**Perspectives:**\n", "\n", "* **The U.S. Government/Military Perspective:** The prevailing argument was that the atomic bombs were necessary to end the war quickly, saving the lives of American soldiers and potentially millions of Japanese civilians who would have perished in a prolonged invasion. From this perspective, the ethical compromises were regrettable but justified by the greater good of ending the war and preventing further bloodshed. They also believed they had to beat the Nazis to the bomb.\n", "* **The Perspective of Scientists Involved:** Scientists were split. Some, like Oppenheimer, felt a moral responsibility for the consequences of their work and later advocated for international control of nuclear weapons. Others believed they were simply fulfilling their duty to their country during wartime, and the decision to use the bombs was beyond their control. Still others had concerns and actively tried to stall the project.\n", "* **The Perspective of Japanese Civilians:** For the survivors of Hiroshima and Nagasaki, the bombings were an unimaginable catastrophe. They experienced immense suffering, loss of life, and long-term health problems. They viewed the bombings as an inhumane act of aggression, regardless of the strategic justifications.\n", "* **The Historian/Ethicist Perspective:** Many historians and ethicists argue that the long-term consequences of the Manhattan Project, including the proliferation of nuclear weapons and the constant threat of nuclear war, outweigh any perceived benefits of ending World War II quickly. They emphasize the moral imperative to explore all possible alternatives before resorting to such devastating force.\n", "\n", "**Unintended Outcomes:**\n", "\n", "* **Nuclear Proliferation:** The Manhattan Project ushered in the nuclear age, leading to the development and stockpiling of nuclear weapons by multiple nations. This created a precarious balance of power and the constant threat of nuclear annihilation.\n", "* **Mutually Assured Destruction (MAD):** The doctrine of MAD, which held that any nuclear attack would inevitably lead to retaliation and the destruction of both sides, became a cornerstone of Cold War strategy. While it arguably prevented a large-scale nuclear war, it also created a climate of fear and mistrust.\n", "* **Nuclear Accidents and Environmental Concerns:** The use and testing of nuclear weapons have resulted in significant environmental contamination and health problems. Accidents like Chernobyl and Fukushima have highlighted the dangers of nuclear technology.\n", "* **Shift in Global Power Dynamics:** The United States emerged from World War II as a superpower, largely due to its possession of nuclear weapons. This altered the global balance of power and contributed to the Cold War rivalry with the Soviet Union.\n", "\n", "**Justification? A Complex Calculation:**\n", "\n", "The question of whether the long-term consequences of the Manhattan Project justify the ethical compromises made is inherently complex and subjective.\n", "\n", "**Arguments FOR Justification (Conditional):**\n", "\n", "* If one prioritizes the immediate goal of ending World War II as quickly as possible, preventing a potentially devastating invasion of Japan, and believes that the bombings were the only way to achieve this goal, then the ethical compromises might be seen as justified, *provided* that the use of nuclear weapons was genuinely the least-worst option available after exhausting all other reasonable alternatives.\n", "* One could argue that the horror of the atomic bombings, while tragic, instilled a powerful deterrent effect that prevented major global wars between superpowers for decades.\n", "\n", "**Arguments AGAINST Justification:**\n", "\n", "* The long-term consequences of nuclear proliferation, the constant threat of nuclear annihilation, and the environmental impact of nuclear testing outweigh any perceived benefits of ending World War II quickly.\n", "* Alternatives to the bombings, such as continued conventional bombing, a naval blockade, or Soviet entry into the war, may have been viable options that were not fully explored.\n", "* The moral cost of deliberately targeting civilians and unleashing the destructive power of nuclear weapons is simply too high to justify, regardless of the circumstances.\n", "* The initiation of the Cold War and the arms race were extremely costly, and it is debatable whether these outcomes were superior to what might have resulted from a longer, less devastating end to WWII.\n", "\n", "**Conclusion:**\n", "\n", "In my view, the ethical compromises made during the Manhattan Project are difficult to justify in light of the long-term consequences. While the immediate goal of ending World War II was undeniably important, the creation and use of nuclear weapons set in motion a chain of events that continue to threaten the world today. The proliferation of nuclear weapons, the constant threat of nuclear war, and the environmental legacy of nuclear testing are all serious concerns that cannot be easily dismissed.\n", "\n", "While the debate continues, the Manhattan Project serves as a stark reminder of the ethical challenges inherent in scientific and technological advancements, particularly in times of war. It underscores the importance of carefully considering the long-term consequences of our actions and of upholding moral principles even when faced with difficult decisions. The fact that this is still debated shows the complexity and lasting impact of the decision. A more transparent process, broader consultation, and a more thorough exploration of alternatives might have led to a different outcome, potentially avoiding some of the most devastating consequences of the nuclear age.\n", "\n", "\n", "# Response from competitor 2\n", "\n", "The Manhattan Project, which developed the atomic bomb during World War II, is a complex and multifaceted historical event that raises significant ethical concerns. The project's long-term consequences have been far-reaching and multifaceted, with both positive and negative outcomes. This analysis will argue that the long-term consequences of the Manhattan Project do not entirely justify the ethical compromises made in its execution, as the devastating effects of the bomb's use outweigh its benefits.\n", "\n", "**The Event and its Execution**\n", "\n", "The Manhattan Project was a secret research and development project led by the United States, with the participation of the United Kingdom and Canada. The project's primary goal was to develop an atomic bomb before Nazi Germany, which was also pursuing nuclear research. The project involved a large team of scientists, engineers, and technicians working in secret facilities across the United States, Canada, and the United Kingdom. The project's leaders, including J. Robert Oppenheimer and Enrico Fermi, were aware of the bomb's potential destructive power and the ethical implications of its use.\n", "\n", "**Ethical Compromises**\n", "\n", "The Manhattan Project involved several ethical compromises, including:\n", "\n", "1. **Secrecy and deception**: The project was shrouded in secrecy, with many participants unaware of the bomb's true purpose or the potential consequences of its use.\n", "2. **Use of forced labor**: The project relied on the labor of tens of thousands of workers, including POWs and civilians, who wereforced to work in harsh conditions.\n", "3. **Disregard for human life**: The bomb's development and testing involved significant risks to human life, including the exposure of workers to radiation and the potential for catastrophic accidents.\n", "4. **Targeting of civilian populations**: The bomb was ultimately used to target civilian populations in Hiroshima and Nagasaki, resulting in the deaths of hundreds of thousands of people.\n", "\n", "**Long-term Consequences**\n", "\n", "The long-term consequences of the Manhattan Project have been profound and far-reaching:\n", "\n", "1. **Ending World War II**: The bomb's use helped bring an end to World War II, potentially saving millions of lives and preventing further destruction.\n", "2. **Nuclear deterrence**: The bomb's existence has contributed to a state of nuclear deterrence, which has helped to maintain a fragile peace between nuclear-armed nations.\n", "3. **Nuclear energy**: The Manhattan Project laid the foundation for the development of nuclear energy, which has become a significant source of power generation worldwide.\n", "4. **International relations**: The bomb's existence has had a profound impact on international relations, shaping global politics and diplomacy for decades.\n", "\n", "**Multiple Perspectives**\n", "\n", "Different perspectives on the Manhattan Project offer varying assessments of its ethical implications:\n", "\n", "1. **Utilitarian perspective**: From a utilitarian perspective, the bomb's use can be justified as a necessary evil to prevent further suffering and loss of life during World War II.\n", "2. **Deontological perspective**: From a deontological perspective, the bomb's use is morally wrong, as it involves the intentional targeting of civilian populations and the violation of fundamental human rights.\n", "3. **Realist perspective**: From a realist perspective, the bomb's existence is a necessary component of national security, as it provides a deterrent against aggression and helps to maintain a balance of power.\n", "\n", "**Unintended Outcomes**\n", "\n", "The Manhattan Project has had several unintended outcomes, including:\n", "\n", "1. **Nuclear proliferation**: The bomb's existence has contributed to the proliferation of nuclear weapons, increasing the risk of nuclear conflict and terrorism.\n", "2. **Environmental damage**: The production and testing of nuclear weapons have resulted in significant environmental damage, including radioactive contamination and pollution.\n", "3. **Psychological trauma**: The bomb's use has caused significant psychological trauma, particularly for survivors of the Hiroshima and Nagasaki bombings.\n", "\n", "**Conclusion**\n", "\n", "In conclusion, while the Manhattan Project's long-term consequences have been significant and far-reaching, they do not entirely justify the ethical compromises made in its execution. The devastating effects of the bomb's use, including the loss of hundreds of thousands of lives and the long-term damage to the environment and human health, outweigh its benefits. The project's secrecy, use of forced labor, disregard for human life, and targeting of civilian populations all raise significant ethical concerns. A more nuanced understanding of the project's complexities and consequences is necessary to appreciate the need for careful consideration and reflection on the ethics of scientific research and development. Ultimately, the Manhattan Project serves as a cautionary tale about the importance of prioritizing human rights, dignity, and well-being in the pursuit of scientific progress and national security.\n", "\n", "\n", "\n", "Now respond with the JSON with the ranked order of the competitors, nothing else. Do not include markdown formatting or code blocks.\n" ] } ], "source": [ "print(judge)" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [], "source": [ "messages = [judge]" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\"results\": [\"1\", \"2\"]}\n", "\n" ] } ], "source": [ "response = model.generate_content(messages)\n", "answer = response.text\n", "print(answer)\n" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Rank 1: gemini-2.0-flash\n", "Rank 2: llama-3.3-70b-versatile\n" ] } ], "source": [ "# OK let's turn this into results!\n", "\n", "results_dict = json.loads(answer)\n", "ranks = results_dict[\"results\"]\n", "for index, result in enumerate(ranks):\n", " competitor = competitors[int(result)-1]\n", " print(f\"Rank {index+1}: {competitor}\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", " \n", " \n", " \n", " \n", "
\n", " \n", " \n", "

Exercise

\n", " Which pattern(s) did this use? Try updating this to add another Agentic design pattern.\n", " \n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", " \n", " \n", " \n", " \n", "
\n", " \n", " \n", "

Commercial implications

\n", " These kinds of patterns - to send a task to multiple models, and evaluate results,\n", " are common where you need to improve the quality of your LLM response. This approach can be universally applied\n", " to business projects where accuracy is critical.\n", " \n", "
" ] } ], "metadata": { "kernelspec": { "display_name": ".venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.3" } }, "nbformat": 4, "nbformat_minor": 2 }