diff --git "a/test.ipynb" "b/test.ipynb" --- "a/test.ipynb" +++ "b/test.ipynb" @@ -108,7 +108,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -116,13 +116,54 @@ "\n", "\n", "#client = genai.Client(api_key=os.getenv(\"API_KEY\"))\n", - "model = LiteLLMModel(model_id=\"gemini/gemini-2.0-flash\",\n", + "model = LiteLLMModel(model_id=\"gemini/gemini-2.5-flash-preview-04-17\",\n", " api_key=\"\")" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "import requests\n", + "from markdownify import markdownify\n", + "from requests.exceptions import RequestException\n", + "\n", + "\n", + "@tool\n", + "def visit_webpage(url: str) -> str:\n", + " \"\"\"Visits a webpage at the given URL and returns its content as a markdown string.\n", + "\n", + " Args:\n", + " url: The URL of the webpage to visit.\n", + "\n", + " Returns:\n", + " The content of the webpage converted to Markdown, or an error message if the request fails.\n", + " \"\"\"\n", + " try:\n", + " # Send a GET request to the URL\n", + " response = requests.get(url)\n", + " response.raise_for_status() # Raise an exception for bad status codes\n", + "\n", + " # Convert the HTML content to Markdown\n", + " markdown_content = markdownify(response.text).strip()\n", + "\n", + " # Remove multiple line breaks\n", + " markdown_content = re.sub(r\"\\n{3,}\", \"\\n\\n\", markdown_content)\n", + "\n", + " return markdown_content\n", + "\n", + " except RequestException as e:\n", + " return f\"Error fetching the webpage: {str(e)}\"\n", + " except Exception as e:\n", + " return f\"An unexpected error occurred: {str(e)}\"" + ] + }, + { + "cell_type": "code", + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ @@ -146,7 +187,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 32, "metadata": {}, "outputs": [ { @@ -154,21 +195,19 @@ "text/html": [ "
╭──────────────────────────────────────────────────── New run ────────────────────────────────────────────────────╮\n",
        "                                                                                                                 \n",
-       " Examine the video at https://www.youtube.com/watch?v=1htKBjuUWec.                                               \n",
+       " How many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest \n",
+       " 2022 version of english wikipedia.                                                                              \n",
        "                                                                                                                 \n",
-       " What does Teal'c say in response to the question \"\"Isn't that hot?                                              \n",
-       "                                                                                                                 \n",
-       "╰─ LiteLLMModel - gemini/gemini-2.0-flash-exp ────────────────────────────────────────────────────────────────────╯\n",
+       "╰─ LiteLLMModel - gemini/gemini-2.5-flash-preview-04-17 ──────────────────────────────────────────────────────────╯\n",
        "
\n" ], "text/plain": [ "\u001b[38;2;212;183;2m╭─\u001b[0m\u001b[38;2;212;183;2m───────────────────────────────────────────────────\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[1;38;2;212;183;2mNew run\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[38;2;212;183;2m───────────────────────────────────────────────────\u001b[0m\u001b[38;2;212;183;2m─╮\u001b[0m\n", "\u001b[38;2;212;183;2m│\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", - "\u001b[38;2;212;183;2m│\u001b[0m \u001b[1mExamine the video at https://www.youtube.com/watch?v=1htKBjuUWec.\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", - "\u001b[38;2;212;183;2m│\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", - "\u001b[38;2;212;183;2m│\u001b[0m \u001b[1mWhat does Teal'c say in response to the question \"\"Isn't that hot?\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", + "\u001b[38;2;212;183;2m│\u001b[0m \u001b[1mHow many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", + "\u001b[38;2;212;183;2m│\u001b[0m \u001b[1m2022 version of english wikipedia.\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", "\u001b[38;2;212;183;2m│\u001b[0m \u001b[38;2;212;183;2m│\u001b[0m\n", - "\u001b[38;2;212;183;2m╰─\u001b[0m\u001b[38;2;212;183;2m LiteLLMModel - gemini/gemini-2.0-flash-exp \u001b[0m\u001b[38;2;212;183;2m───────────────────────────────────────────────────────────────────\u001b[0m\u001b[38;2;212;183;2m─╯\u001b[0m\n" + "\u001b[38;2;212;183;2m╰─\u001b[0m\u001b[38;2;212;183;2m LiteLLMModel - gemini/gemini-2.5-flash-preview-04-17 \u001b[0m\u001b[38;2;212;183;2m─────────────────────────────────────────────────────────\u001b[0m\u001b[38;2;212;183;2m─╯\u001b[0m\n" ] }, "metadata": {}, @@ -191,24 +230,14 @@ "data": { "text/html": [ "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
-       "Thought: I need to get the transcript of the youtube video and then search for the phrase \"Isn't that hot?\". I will\n",
-       "use the tools `youtube_transcription_tool` and then search for the answer in the transcript.                       \n",
-       "Code:                                                                                                              \n",
-       "```py                                                                                                              \n",
-       "transcript = youtube_transcription_tool(url=\"https://www.youtube.com/watch?v=1htKBjuUWec\")                         \n",
-       "print(transcript)                                                                                                  \n",
-       "```<end_code>                                                                                                      \n",
+       "                                                                                                                   \n",
+       "                                                                                                                   \n",
        "
\n" ], "text/plain": [ "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mneed\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mget\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtranscript\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myoutube\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvideo\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msearch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mphrase\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Isn't\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhot?\".\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23muse\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtools\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;165;214;255;48;2;13;17;23m`youtube_transcription_tool`\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msearch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23manswer\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtranscript.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mtranscript\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myoutube_transcription_tool(url=\"https://www.youtube.com/watch?v=1htKBjuUWec\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mprint(transcript)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + "\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[48;2;13;17;23m \u001b[0m\n" ] }, "metadata": {}, @@ -218,15 +247,15 @@ "data": { "text/html": [ "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
-       "  transcript = youtube_transcription_tool(url=\"https://www.youtube.com/watch?v=1htKBjuUWec\")                       \n",
-       "  print(transcript)                                                                                                \n",
+       "                                                                                                                   \n",
+       "                                                                                                                   \n",
        " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
        "
\n" ], "text/plain": [ " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", - " \u001b[38;2;248;248;242;48;2;39;40;34mtranscript\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myoutube_transcription_tool\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://www.youtube.com/watch?v=1htKBjuUWec\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", - " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mtranscript\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[48;2;39;40;34m \u001b[0m \n", " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" ] }, @@ -236,18 +265,10 @@ { "data": { "text/html": [ - "
Execution logs:\n",
-       "Wow this coffee's great I was just thinking that yeah is that cinnamon chicory tea oak [Music] isn't that hot \n",
-       "extremely\n",
-       "\n",
-       "Out: None\n",
+       "
Out: None\n",
        "
\n" ], "text/plain": [ - "\u001b[1mExecution logs:\u001b[0m\n", - "Wow this coffee's great I was just thinking that yeah is that cinnamon chicory tea oak [Music] isn't that hot \n", - "extremely\n", - "\n", "Out: None\n" ] }, @@ -257,11 +278,11 @@ { "data": { "text/html": [ - "
[Step 1: Duration 4.54 seconds| Input tokens: 2,290 | Output tokens: 90]\n",
+       "
[Step 1: Duration 4.34 seconds| Input tokens: 2,352 | Output tokens: 167]\n",
        "
\n" ], "text/plain": [ - "\u001b[2m[Step 1: Duration 4.54 seconds| Input tokens: 2,290 | Output tokens: 90]\u001b[0m\n" + "\u001b[2m[Step 1: Duration 4.34 seconds| Input tokens: 2,352 | Output tokens: 167]\u001b[0m\n" ] }, "metadata": {}, @@ -284,21 +305,17 @@ "data": { "text/html": [ "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
-       "Thought: I have the transcript. Now I need to find Teal'c's response to \"Isn't that hot?\". Based on the transcript,\n",
-       "Teal'c says \"extremely\" in response to the question \"Isn't that hot?\".                                             \n",
        "Code:                                                                                                              \n",
        "```py                                                                                                              \n",
-       "final_answer(\"extremely\")                                                                                          \n",
+       "print(web_search(query=\"Mercedes Sosa discography wikipedia\"))                                                     \n",
        "```<end_code>                                                                                                      \n",
        "
\n" ], "text/plain": [ "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhave\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtranscript.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mNow\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mneed\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mTeal'c's\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mresponse\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Isn't\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhot?\".\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mBased\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mon\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtranscript,\u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mTeal'c\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msays\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"extremely\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mresponse\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mquestion\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Isn't\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhot?\".\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", - "\u001b[38;2;230;237;243;48;2;13;17;23mfinal_answer(\"extremely\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mprint(web_search(query=\"Mercedes\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mSosa\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwikipedia\"))\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" ] }, @@ -309,13 +326,13 @@ "data": { "text/html": [ "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
-       "  final_answer(\"extremely\")                                                                                        \n",
+       "  print(web_search(query=\"Mercedes Sosa discography wikipedia\"))                                                   \n",
        " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
        "
\n" ], "text/plain": [ " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", - " \u001b[38;2;248;248;242;48;2;39;40;34mfinal_answer\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mextremely\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mweb_search\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mquery\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mMercedes Sosa discography wikipedia\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" ] }, @@ -325,11 +342,115 @@ { "data": { "text/html": [ - "
Out - Final answer: extremely\n",
+       "
Execution logs:\n",
+       "## Search Results\n",
+       "\n",
+       "[Mercedes Sosa - Wikipedia](https://en.wikipedia.org/wiki/Mercedes_Sosa)\n",
+       "Haydée Mercedes \" La Negra \" Sosa (Latin American Spanish: [meɾˈseðes ˈsosa]; 9 July 1935 [1] - 4 October 2009) was\n",
+       "an Argentine singer who was popular throughout Latin America and many countries outside the region.\n",
+       "\n",
+       "[Mercedes Sosa Discography: Vinyl, CDs, & More | Discogs](https://www.discogs.com/artist/333361-Mercedes-Sosa)\n",
+       "Explore Mercedes Sosa's biography, discography, and artist credits. Shop rare vinyl records, top albums, and more \n",
+       "on Discogs.\n",
+       "\n",
+       "[Category:Mercedes Sosa albums - Wikipedia](https://en.wikipedia.org/wiki/Category:Mercedes_Sosa_albums)\n",
+       "This is a set category. It should only contain pages that are Mercedes Sosa albums or lists of Mercedes Sosa \n",
+       "albums, as well as subcategories containing those things (themselves set categories). Topics about Mercedes Sosa \n",
+       "albums in general should be placed in relevant topic categories.\n",
+       "\n",
+       "[Cantora, un Viaje Íntimo - Wikipedia](https://en.wikipedia.org/wiki/Cantora,_un_Viaje_Íntimo)\n",
+       "Cantora, un Viaje Íntimo (English: Cantora, An Intimate Journey) is a double album by Argentine singer Mercedes \n",
+       "Sosa, released on 2009 through Sony Music Argentina. [1][2] The album features Cantora 1 and Cantora 2, the project\n",
+       "is Sosa's final album before her death on October 4, 2009.\n",
+       "\n",
+       "[Mercedes Sosa - Wikipedia, la enciclopedia libre](https://es.wikipedia.org/wiki/Mercedes_Sosa)\n",
+       "Marta Haydée Mercedes Sosa Girón (San Miguel de Tucumán, Tucumán, 9 de julio de 1935- Buenos Aires, 4 de octubre de\n",
+       "2009) 3 fue una cantante de música folclórica argentina, considerada la mayor exponente del folclore argentino. Se \n",
+       "la conoció como la voz de América Latina. 4 Fundadora del Movimiento del Nuevo Cancionero y una de las exponentes \n",
+       "de la Nueva Canción Latinoamericana ...\n",
+       "\n",
+       "[Mercedes Sosa Discography, Complete list of albums by Mercedes Sosa \n",
+       "...](https://www.famousfix.com/topic/mercedes-sosa/albums)\n",
+       "Full list of Mercedes Sosa albums, sorted by release date. You can also sort the list of albums by most recently \n",
+       "added, year recorded (from most recent to first recorded), by views and by album name.\n",
+       "\n",
+       "[Mercedes Sosa Discography](https://www.mercedes-sosa.com/discographie)\n",
+       "Find all Mercedes Sosa's cd's in chronological order here and listen to other Latin American artists I discovered \n",
+       "through Mercedes Sosa. Find inspiration from world music more generally.\n",
+       "\n",
+       "[La voz de la zafra - Wikipedia](https://en.wikipedia.org/wiki/La_Voz_De_La_Zafra)\n",
+       "La voz de la zafra (translation, \"the voice of the harvest\") is the debut album by Argentine singer Mercedes Sosa. \n",
+       "It was recorded in 1961 and released in 1962 on the RCA Victor Argentina label. [1][2] The album, as originally \n",
+       "issued, included 12 songs.\n",
+       "\n",
+       "[Mercedes Sosa - Wikipedia](https://nl.wikipedia.org/wiki/Mercedes_Sosa)\n",
+       "Mercedes Sosa (zittend), samen met Cristina Fernández de Kirchner, voormalig presidente van Argentinië Mercedes \n",
+       "Sosa in 1973 Haydée Mercedes Sosa (San Miguel de Tucumán, 9 juli 1935 - Buenos Aires, 4 oktober 2009) was een \n",
+       "Argentijnse zangeres, die zeer populair was in Latijns-Amerika en bewonderd werd om haar intense stem. Haar bijnaam\n",
+       "was La Negra.\n",
+       "\n",
+       "[Mercedes Sosa Songs, Albums, Reviews, Bio & Mo... | \n",
+       "AllMusic](https://www.allmusic.com/artist/mercedes-sosa-mn0000869068)\n",
+       "Explore Mercedes Sosa's discography including top tracks, albums, and reviews. Learn all about Mercedes Sosa on \n",
+       "AllMusic.\n",
+       "\n",
+       "Out: None\n",
        "
\n" ], "text/plain": [ - "\u001b[1;38;2;212;183;2mOut - Final answer: extremely\u001b[0m\n" + "\u001b[1mExecution logs:\u001b[0m\n", + "## Search Results\n", + "\n", + "[Mercedes Sosa - Wikipedia](https://en.wikipedia.org/wiki/Mercedes_Sosa)\n", + "Haydée Mercedes \" La Negra \" Sosa (Latin American Spanish: [meɾˈseðes ˈsosa]; 9 July 1935 [1] - 4 October 2009) was\n", + "an Argentine singer who was popular throughout Latin America and many countries outside the region.\n", + "\n", + "[Mercedes Sosa Discography: Vinyl, CDs, & More | Discogs](https://www.discogs.com/artist/333361-Mercedes-Sosa)\n", + "Explore Mercedes Sosa's biography, discography, and artist credits. Shop rare vinyl records, top albums, and more \n", + "on Discogs.\n", + "\n", + "[Category:Mercedes Sosa albums - Wikipedia](https://en.wikipedia.org/wiki/Category:Mercedes_Sosa_albums)\n", + "This is a set category. It should only contain pages that are Mercedes Sosa albums or lists of Mercedes Sosa \n", + "albums, as well as subcategories containing those things (themselves set categories). Topics about Mercedes Sosa \n", + "albums in general should be placed in relevant topic categories.\n", + "\n", + "[Cantora, un Viaje Íntimo - Wikipedia](https://en.wikipedia.org/wiki/Cantora,_un_Viaje_Íntimo)\n", + "Cantora, un Viaje Íntimo (English: Cantora, An Intimate Journey) is a double album by Argentine singer Mercedes \n", + "Sosa, released on 2009 through Sony Music Argentina. [1][2] The album features Cantora 1 and Cantora 2, the project\n", + "is Sosa's final album before her death on October 4, 2009.\n", + "\n", + "[Mercedes Sosa - Wikipedia, la enciclopedia libre](https://es.wikipedia.org/wiki/Mercedes_Sosa)\n", + "Marta Haydée Mercedes Sosa Girón (San Miguel de Tucumán, Tucumán, 9 de julio de 1935- Buenos Aires, 4 de octubre de\n", + "2009) 3 fue una cantante de música folclórica argentina, considerada la mayor exponente del folclore argentino. Se \n", + "la conoció como la voz de América Latina. 4 Fundadora del Movimiento del Nuevo Cancionero y una de las exponentes \n", + "de la Nueva Canción Latinoamericana ...\n", + "\n", + "[Mercedes Sosa Discography, Complete list of albums by Mercedes Sosa \n", + "...](https://www.famousfix.com/topic/mercedes-sosa/albums)\n", + "Full list of Mercedes Sosa albums, sorted by release date. You can also sort the list of albums by most recently \n", + "added, year recorded (from most recent to first recorded), by views and by album name.\n", + "\n", + "[Mercedes Sosa Discography](https://www.mercedes-sosa.com/discographie)\n", + "Find all Mercedes Sosa's cd's in chronological order here and listen to other Latin American artists I discovered \n", + "through Mercedes Sosa. Find inspiration from world music more generally.\n", + "\n", + "[La voz de la zafra - Wikipedia](https://en.wikipedia.org/wiki/La_Voz_De_La_Zafra)\n", + "La voz de la zafra (translation, \"the voice of the harvest\") is the debut album by Argentine singer Mercedes Sosa. \n", + "It was recorded in 1961 and released in 1962 on the RCA Victor Argentina label. [1][2] The album, as originally \n", + "issued, included 12 songs.\n", + "\n", + "[Mercedes Sosa - Wikipedia](https://nl.wikipedia.org/wiki/Mercedes_Sosa)\n", + "Mercedes Sosa (zittend), samen met Cristina Fernández de Kirchner, voormalig presidente van Argentinië Mercedes \n", + "Sosa in 1973 Haydée Mercedes Sosa (San Miguel de Tucumán, 9 juli 1935 - Buenos Aires, 4 oktober 2009) was een \n", + "Argentijnse zangeres, die zeer populair was in Latijns-Amerika en bewonderd werd om haar intense stem. Haar bijnaam\n", + "was La Negra.\n", + "\n", + "[Mercedes Sosa Songs, Albums, Reviews, Bio & Mo... | \n", + "AllMusic](https://www.allmusic.com/artist/mercedes-sosa-mn0000869068)\n", + "Explore Mercedes Sosa's discography including top tracks, albums, and reviews. Learn all about Mercedes Sosa on \n", + "AllMusic.\n", + "\n", + "Out: None\n" ] }, "metadata": {}, @@ -338,29 +459,6951 @@ { "data": { "text/html": [ - "
[Step 2: Duration 3.48 seconds| Input tokens: 4,791 | Output tokens: 155]\n",
+       "
[Step 2: Duration 5.11 seconds| Input tokens: 4,759 | Output tokens: 286]\n",
        "
\n" ], "text/plain": [ - "\u001b[2m[Step 2: Duration 3.48 seconds| Input tokens: 4,791 | Output tokens: 155]\u001b[0m\n" + "\u001b[2m[Step 2: Duration 5.11 seconds| Input tokens: 4,759 | Output tokens: 286]\u001b[0m\n" ] }, "metadata": {}, "output_type": "display_data" - } - ], - "source": [ - "agent = CodeAgent(\n", - " tools=[DuckDuckGoSearchTool(), youtube_transcription_tool],\n", - " model=model,\n", - " #additional_authorized_imports=[\"helium\"],\n", - " #step_callbacks=[save_screenshot],\n", - " max_steps=20,\n", - " verbosity_level=2,\n", - " )\n", - "answer = agent.run(\"\"\"Examine the video at https://www.youtube.com/watch?v=1htKBjuUWec.\n", - "\n", - "What does Teal'c say in response to the question \"\"Isn't that hot?\"\"\")" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m3\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: I need to find the discography of Mercedes Sosa and count the studio albums released between 2000 and     \n",
+       "2009. I will visit the English Wikipedia page for Mercedes Sosa and look for the discography section.              \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "print(visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\"))                                            \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mneed\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mMercedes\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mSosa\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcount\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mreleased\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbetween\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2000\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m2009.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mEnglish\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mWikipedia\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mMercedes\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mSosa\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlook\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mprint(visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\"))\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  print(visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\"))                                          \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "Mercedes Sosa - Wikipedia\n",
+       "\n",
+       "[Jump to content](#bodyContent)\n",
+       "\n",
+       "Main menu\n",
+       "\n",
+       "Main menu\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "Navigation\n",
+       "\n",
+       "* [Main page](/wiki/Main_Page \"Visit the main page [z]\")\n",
+       "* [Contents](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\n",
+       "* [Current events](/wiki/Portal:Current_events \"Articles related to current events\")\n",
+       "* [Random article](/wiki/Special:Random \"Visit a randomly selected article [x]\")\n",
+       "* [About Wikipedia](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\n",
+       "* [Contact us](//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\")\n",
+       "\n",
+       "Contribute\n",
+       "\n",
+       "* [Help](/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\")\n",
+       "* [Learn to edit](/wiki/Help:Introduction \"Learn how to edit Wikipedia\")\n",
+       "* [Community portal](/wiki/Wikipedia:Community_portal \"The hub for editors\")\n",
+       "* [Recent changes](/wiki/Special:RecentChanges \"A list of recent changes to Wikipedia [r]\")\n",
+       "* [Upload file](/wiki/Wikipedia:File_upload_wizard \"Add images or other media for use on Wikipedia\")\n",
+       "* [Special pages](/wiki/Special:SpecialPages)\n",
+       "\n",
+       "[![](/static/images/icons/wikipedia.png)\n",
+       "\n",
+       "![Wikipedia](/static/images/mobile/copyright/wikipedia-wordmark-en.svg)\n",
+       "![The Free Encyclopedia](/static/images/mobile/copyright/wikipedia-tagline-en.svg)](/wiki/Main_Page)\n",
+       "\n",
+       "[Search](/wiki/Special:Search \"Search Wikipedia [f]\")\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Appearance\n",
+       "\n",
+       "* \n",
+       "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n",
+       "n)\n",
+       "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n",
+       "account and log in; however, it is not mandatory\")\n",
+       "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n",
+       "not mandatory. [o]\")\n",
+       "\n",
+       "Personal tools\n",
+       "\n",
+       "* \n",
+       "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n",
+       "n)\n",
+       "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n",
+       "account and log in; however, it is not mandatory\")\n",
+       "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n",
+       "not mandatory. [o]\")\n",
+       "\n",
+       "Pages for logged out editors [learn more](/wiki/Help:Introduction)\n",
+       "\n",
+       "* [Contributions](/wiki/Special:MyContributions \"A list of edits made from this IP address [y]\")\n",
+       "* [Talk](/wiki/Special:MyTalk \"Discussion about edits from this IP address [n]\")\n",
+       "\n",
+       "Contents\n",
+       "--------\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "* [(Top)](#)\n",
+       "* [1\n",
+       "  Life](#Life)\n",
+       "* [2\n",
+       "  Awards](#Awards)\n",
+       "* [3\n",
+       "  Death](#Death)\n",
+       "* [4\n",
+       "  Tributes](#Tributes)\n",
+       "* [5\n",
+       "  Discography](#Discography)\n",
+       "\n",
+       "  Toggle Discography subsection\n",
+       "  + [5.1\n",
+       "    Studio albums](#Studio_albums)\n",
+       "  + [5.2\n",
+       "    EPs](#EPs)\n",
+       "  + [5.3\n",
+       "    Live albums](#Live_albums)\n",
+       "  + [5.4\n",
+       "    Compilation albums](#Compilation_albums)\n",
+       "* [6\n",
+       "  Filmography](#Filmography)\n",
+       "* [7\n",
+       "  Further reading](#Further_reading)\n",
+       "* [8\n",
+       "  References](#References)\n",
+       "* [9\n",
+       "  External links](#External_links)\n",
+       "\n",
+       "Toggle the table of contents\n",
+       "\n",
+       "Mercedes Sosa\n",
+       "=============\n",
+       "\n",
+       "49 languages\n",
+       "\n",
+       "* [العربية](https://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس \n",
+       "سوسا – Arabic\")\n",
+       "* [Aymar aru](https://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\")\n",
+       "* [تۆرکجه](https://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "South Azerbaijani\")\n",
+       "* \n",
+       "[বাংলা](https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%B\n",
+       "8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\")\n",
+       "* [Беларуская \n",
+       "(тарашкевіца)](https://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%D\n",
+       "1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian (Taraškievica orthography)\")\n",
+       "* \n",
+       "[Български](https://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B0\n",
+       "\"Мерседес Соса – Bulgarian\")\n",
+       "* [Brezhoneg](https://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Breton\")\n",
+       "* [Català](https://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\")\n",
+       "* [Čeština](https://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\")\n",
+       "* [Dansk](https://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\")\n",
+       "* [Deutsch](https://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\")\n",
+       "* \n",
+       "[Ελληνικά](https://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1 \n",
+       "\"Μερσέδες Σόσα – Greek\")\n",
+       "* [Español](https://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\")\n",
+       "* [Esperanto](https://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\")\n",
+       "* [Euskara](https://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\")\n",
+       "* [فارسی](https://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "Persian\")\n",
+       "* [Français](https://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\")\n",
+       "* [Galego](https://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\")\n",
+       "* [한국어](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \n",
+       "\"메르세데스 소사 – Korean\")\n",
+       "* [Հայերեն](https://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1\n",
+       "\"Մերսեդես Սոսա – Armenian\")\n",
+       "* [Hrvatski](https://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Croatian\")\n",
+       "* [Ido](https://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\")\n",
+       "* [Bahasa Indonesia](https://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\")\n",
+       "* [Italiano](https://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\")\n",
+       "* [עברית](https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \n",
+       "Hebrew\")\n",
+       "* [Latina](https://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\")\n",
+       "* [Lëtzebuergesch](https://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\")\n",
+       "* [Magyar](https://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\")\n",
+       "* \n",
+       "[മലയാളം](https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B4\n",
+       "%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്‌സിഡസ് സോസ – Malayalam\")\n",
+       "* [مصرى](https://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا \n",
+       "– Egyptian Arabic\")\n",
+       "* [Nederlands](https://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\")\n",
+       "* \n",
+       "[日本語](https://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3%\n",
+       "82%B5 \"メルセデス・ソーサ – Japanese\")\n",
+       "* [Norsk bokmål](https://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Norwegian Bokmål\")\n",
+       "* [Occitan](https://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\")\n",
+       "* [Polski](https://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\")\n",
+       "* [Português](https://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\")\n",
+       "* [Runa Simi](https://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\")\n",
+       "* \n",
+       "[Русский](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81 \n",
+       "\"Соса, Мерседес – Russian\")\n",
+       "* [Scots](https://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\")\n",
+       "* [Simple English](https://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\")\n",
+       "* [Slovenščina](https://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\")\n",
+       "* [Suomi](https://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\")\n",
+       "* [Svenska](https://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\")\n",
+       "* [Tagalog](https://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\")\n",
+       "* [Türkçe](https://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\")\n",
+       "* \n",
+       "[Українська](https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\n",
+       "0 \"Мерседес Соса – Ukrainian\")\n",
+       "* [Tiếng Việt](https://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Vietnamese\")\n",
+       "* [Zazaki](https://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\")\n",
+       "* [中文](https://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 \n",
+       "– Chinese\")\n",
+       "\n",
+       "[Edit links](https://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit interlanguage \n",
+       "links\")\n",
+       "\n",
+       "* [Article](/wiki/Mercedes_Sosa \"View the content page [c]\")\n",
+       "* [Talk](/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page [t]\")\n",
+       "\n",
+       "English\n",
+       "\n",
+       "* [Read](/wiki/Mercedes_Sosa)\n",
+       "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n",
+       "* [View history](/w/index.php?title=Mercedes_Sosa&action=history \"Past revisions of this page [h]\")\n",
+       "\n",
+       "Tools\n",
+       "\n",
+       "Tools\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "Actions\n",
+       "\n",
+       "* [Read](/wiki/Mercedes_Sosa)\n",
+       "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n",
+       "* [View history](/w/index.php?title=Mercedes_Sosa&action=history)\n",
+       "\n",
+       "General\n",
+       "\n",
+       "* [What links here](/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links\n",
+       "to this page [j]\")\n",
+       "* [Related changes](/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from this page \n",
+       "[k]\")\n",
+       "* [Upload file](//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files [u]\")\n",
+       "* [Permanent link](/w/index.php?title=Mercedes_Sosa&oldid=1281260319 \"Permanent link to this revision of this \n",
+       "page\")\n",
+       "* [Page information](/w/index.php?title=Mercedes_Sosa&action=info \"More information about this page\")\n",
+       "* [Cite this \n",
+       "page](/w/index.php?title=Special:CiteThisPage&page=Mercedes_Sosa&id=1281260319&wpFormIdentifier=titleform \n",
+       "\"Information on how to cite this page\")\n",
+       "* [Get shortened \n",
+       "URL](/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n",
+       "* [Download QR code](/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n",
+       "\n",
+       "Print/export\n",
+       "\n",
+       "* [Download as PDF](/w/index.php?title=Special:DownloadAsPdf&page=Mercedes_Sosa&action=show-download-screen \n",
+       "\"Download this page as a PDF file\")\n",
+       "* [Printable version](/w/index.php?title=Mercedes_Sosa&printable=yes \"Printable version of this page [p]\")\n",
+       "\n",
+       "In other projects\n",
+       "\n",
+       "* [Wikimedia Commons](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa)\n",
+       "* [Wikidata item](https://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by \n",
+       "Wikidata [g]\")\n",
+       "\n",
+       "Appearance\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "From Wikipedia, the free encyclopedia\n",
+       "\n",
+       "Argentine singer (1935–2009)\n",
+       "\n",
+       "Not to be confused with [Mercedes Sola](/wiki/Mercedes_Sola \"Mercedes Sola\").\n",
+       "\n",
+       "| Mercedes Sosa | |\n",
+       "| --- | --- |\n",
+       "| Portrait by [Annemarie Heinrich](/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"), 1960s | |\n",
+       "| Born | Haydée Mercedes Sosa  (1935-07-09)9 July 1935  [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \n",
+       "\"San Miguel de Tucumán\"), Tucumán, Argentina |\n",
+       "| Died | 4 October 2009(2009-10-04) (aged 74)  [Buenos Aires](/wiki/Buenos_Aires \"Buenos Aires\"), Argentina |\n",
+       "| Occupation | Singer |\n",
+       "| Years active | 1950–2009 |\n",
+       "| **Musical career** | |\n",
+       "| Genres | * [Folk](/wiki/Folk_music \"Folk music\") * [nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\n",
+       "| Instruments | Vocals |\n",
+       "| Musical artist | |\n",
+       "\n",
+       "**Haydée Mercedes** \"**La Negra**\" **Sosa** (Latin American Spanish: [[meɾˈseðes ˈsosa]](/wiki/Help:IPA/Spanish \n",
+       "\"Help:IPA/Spanish\"); 9 July 1935[[1]](#cite_note-birth-1) – 4 October 2009) was an [Argentine](/wiki/Argentines \n",
+       "\"Argentines\") singer who was popular throughout [Latin America](/wiki/Latin_America \"Latin America\") and many \n",
+       "countries outside the region. With her roots in [Argentine folk music](/wiki/Folk_music_of_Argentina \"Folk music of\n",
+       "Argentina\"), Sosa became one of the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written \n",
+       "by many Latin American songwriters. Her music made people hail her as the \"voice of the voiceless \n",
+       "ones\".[[2]](#cite_note-tmc-2) She was often called \"the conscience of Latin America\".[[3]](#cite_note-3)\n",
+       "\n",
+       "Sosa performed in venues such as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln Center\") in New York City, the \n",
+       "[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\") in Paris, the [Sistine \n",
+       "Chapel](/wiki/Sistine_Chapel \"Sistine Chapel\") in Vatican City, as well as sold-out shows in New York's [Carnegie \n",
+       "Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") and the Roman [Colosseum](/wiki/Colosseum \"Colosseum\") during her final \n",
+       "decade of life. Her career spanned four decades and she was the recipient of six [Latin Grammy](/wiki/Latin_Grammy \n",
+       "\"Latin Grammy\") awards (2000, 2003, 2004, 2006, 2009, 2011), including a [Latin Grammy Lifetime Achievement \n",
+       "Award](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") in 2004 and two \n",
+       "posthumous [Latin Grammy Award for Best Folk Album](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \n",
+       "Award for Best Folk Album\") in 2009 and 2011. She won the [Premio Gardel](/wiki/Premios_Gardel \"Premios Gardel\") in\n",
+       "2000, the main musical award in Argentina. She served as an ambassador for [UNICEF](/wiki/UNICEF \"UNICEF\").\n",
+       "\n",
+       "Life\n",
+       "----\n",
+       "\n",
+       "[[edit](/w/index.php?title=Mercedes_Sosa&action=edit&section=1 \"Edit section: Life\")]\n",
+       "\n",
+       "Sosa was born on 9 July 1935, in [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"),\n",
+       "in the [northwestern Argentine](/wiki/Argentine_Northwest \"Argentine Northwest\") province of \n",
+       "[Tucumán](/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"), of [mestizo](/wiki/Mestizo \"Mestizo\") ancestry. She was \n",
+       "of French, Spanish and [Diaguita](/wiki/Diaguita \"Diaguita\") \n",
+       "descent.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Her nickname \"la negra\", which is a \n",
+       "common nickname in Argentina for people with darker complexion, is a reference to her indigenous \n",
+       "heritage.[[5]](#cite_note-:0-5) Her parents, a day laborer and a washerwoman,[[6]](#cite_note-6) were \n",
+       "[Peronists](/wiki/Peronism \"Peronism\"), although they never registered in the party, and she started her career as \n",
+       "a singer for the [Peronist Party](/wiki/Peronist_Party \"Peronist Party\") in [Tucuman](/wiki/Tucum%C3%A1n_Province \n",
+       "\"Tucumán Province\") under the name Gladys Osorio.[[7]](#cite_note-7) In 1950, at age fifteen, she won a singing \n",
+       "competition organized by a local radio station and was given a contract to perform for two \n",
+       "months.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) She recorded her first album, *[La Voz de la \n",
+       "Zafra](/wiki/La_voz_de_la_zafra \"La voz de la zafra\")*, in 1959.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) A \n",
+       "performance at the 1965 [Cosquín National Folklore Festival](/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\")—where \n",
+       "she was introduced and brought to the stage while sitting in the audience by fellow folk singer [Jorge \n",
+       "Cafrune](/wiki/Jorge_Cafrune \"Jorge Cafrune\")—[[9]](#cite_note-test-9) brought her to the attention of the \n",
+       "Argentine public.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Sosa and her first husband, [Manuel Oscar \n",
+       "Matus](/w/index.php?title=Manuel_Oscar_Matus&action=edit&redlink=1 \"Manuel Oscar Matus (page does not exist)\"), \n",
+       "with whom she had one son, were key players in the mid-60s *[nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva \n",
+       "canción\")* movement (which was called *nuevo cancionero* in \n",
+       "Argentina).[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Her second record was *Canciones con Fundamento*, \n",
+       "a collection of Argentine folk songs.\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg/\n",
+       "250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg)](/wiki/File:Mercedes_Sosa,_F%C3%A9lix_Luna_y_Ariel\n",
+       "_Ram%C3%ADrez.jpg)\n",
+       "\n",
+       "Sosa with [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\") and [Ariel Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel \n",
+       "Ramírez\") (at the piano)\n",
+       "\n",
+       "Sosa \"spent the late 1960s building her audience in Europe and among the cosmopolitan middle class in Buenos Aires,\n",
+       "becoming in the process a much bigger star\" than her contemporaries.[[11]](#cite_note-11)In 1967, Sosa toured the \n",
+       "United States and Europe with great success.[*[citation needed](/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation\n",
+       "needed\")*] In later years, she performed and recorded extensively, broadening her repertoire to include material \n",
+       "from throughout Latin America.\n",
+       "\n",
+       "In the early 1970s, Sosa released two concept albums in collaboration with composer [Ariel \n",
+       "Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\") and lyricist [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\"): \n",
+       "*Cantata Sudamericana* and *Mujeres Argentinas* (Argentine Women). She also recorded a tribute to Chilean musician \n",
+       "[Violeta Parra](/wiki/Violeta_Parra \"Violeta Parra\") in 1971, including what was to become one of Sosa's signature \n",
+       "songs, *[Gracias a la vida](/wiki/Gracias_a_la_vida \"Gracias a la \n",
+       "vida\")*.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[12]](#cite_note-ap-12) She further \n",
+       "popularized of songs written by [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\") of Brazil and \n",
+       "[Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") and [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \n",
+       "\"Silvio Rodríguez\") both from [Cuba](/wiki/Cuba \n",
+       "\"Cuba\").[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Throughout the decade, she released \n",
+       "albums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \n",
+       "\"Cuando tenga la tierra\", written by [Ariel Petrocelli](/w/index.php?title=Ariel_Petrocelli&action=edit&redlink=1 \n",
+       "\"Ariel Petrocelli (page does not exist)\") and Daniel Toro, which tackles political and social issues like wealth \n",
+       "and land inequality.[[13]](#cite_note-:2-13)[[14]](#cite_note-14) During the 1970s she was a part of two films by \n",
+       "the director [Leopoldo Torre Nilsson](/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"): *[El Santo de la \n",
+       "Espada](/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\")* in 1970 and *[Güemes, la tierra en \n",
+       "armas](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\")* in 1971, in which she portrayed [Juana \n",
+       "Azurduy de Padilla](/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"), the guerrilla military leader who \n",
+       "fought for Argentine independence.[[13]](#cite_note-:2-13)[[15]](#cite_note-15)\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg)](/wiki/File\n",
+       ":Mercedes_Sosa_2.jpg)\n",
+       "\n",
+       "Sosa in 1972\n",
+       "\n",
+       "After the [military junta](/wiki/National_Reorganization_Process \"National Reorganization Process\") of [Jorge \n",
+       "Videla](/wiki/Jorge_Videla \"Jorge Videla\") came to power in 1976, the atmosphere in Argentina grew increasingly \n",
+       "oppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \n",
+       "country. At a concert in [La Plata](/wiki/La_Plata \"La Plata\") in 1979, Sosa was searched and arrested on stage, \n",
+       "along with all those attending the concert.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Their release came\n",
+       "about through international intervention.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Despite attempts to hold more \n",
+       "concerts, she was officially barred from performing by the military regime.[[5]](#cite_note-:0-5) Banned in her own\n",
+       "country, she moved to Paris and then to [Madrid](/wiki/Madrid \n",
+       "\"Madrid\").[[8]](#cite_note-Mercedes_Sosa:_Obituary-8)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)She has \n",
+       "spoken publicly about her artistic and emotional struggles during this period of her life.[[5]](#cite_note-:0-5) \n",
+       "While in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\n",
+       "Acuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, [Patricio \n",
+       "Manns](/wiki/Patricio_Manns \"Patricio Manns\"). The song, which he wrote while also in political exile, expresses \n",
+       "the sorrow he felt from being separated from his homeland.[[16]](#cite_note-16) She related to this feeling and \n",
+       "struggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\n",
+       "problem, a problem of morale...It wasn’t my throat, or anything physical\". [[5]](#cite_note-:0-5)\n",
+       "\n",
+       "Sosa returned to Argentina from her exile in Europe in February of \n",
+       "1982,[[17]](#cite_note-:1-17)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) several months before the \n",
+       "military regime collapsed as a result of the [Falklands War](/wiki/Falklands_War \"Falklands War\"), and gave a \n",
+       "series of concerts at the *[Teatro Ópera](/wiki/Teatro_Opera \"Teatro Opera\")* in Buenos Aires, where she invited \n",
+       "many of her younger colleagues to share the stage. A double album of recordings from these performances became an \n",
+       "instant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\n",
+       "largely ignored by mainstream media in the country.[[17]](#cite_note-:1-17) In subsequent years, Sosa continued to \n",
+       "tour both in Argentina and abroad, performing in such venues as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln \n",
+       "Center\") in New York City and the *[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\")* in Paris. \n",
+       "In poor health for much of the 1990s, she performed a comeback show in Argentina in \n",
+       "1998.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) In 1994, she played in the [Sistine Chapel](/wiki/Sistine_Chapel \n",
+       "\"Sistine Chapel\") in Vatican City.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) In 2002, she \n",
+       "sold out both [Carnegie Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") in New York and the [Colosseum](/wiki/Colosseum \n",
+       "\"Colosseum\") in Rome in the same year.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg)](/wiki/File:Mer\n",
+       "cedes_Sosa.jpg)\n",
+       "\n",
+       "Sosa in 1973\n",
+       "\n",
+       "A supporter of [Perón](/wiki/Juan_Per%C3%B3n \"Juan Perón\"), she favored leftist causes throughout her life. She \n",
+       "supported President [Raul Alfonsin](/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\") in the election of 1983 which \n",
+       "marked the return of democracy in Argentina following the dictatorship. She referred to this election as \n",
+       "\"Argentina's Spring\"[[18]](#cite_note-18) She opposed President [Carlos Menem](/wiki/Carlos_Menem \"Carlos Menem\"), \n",
+       "who was in office from 1989 to 1999, and supported the election of [Néstor Kirchner](/wiki/N%C3%A9stor_Kirchner \n",
+       "\"Néstor Kirchner\"), who became president in 2003.[[19]](#cite_note-19)\n",
+       "Sosa was a [UNESCO Goodwill Ambassador](/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\") for Latin \n",
+       "America and the Caribbean.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)[[20]](#cite_note-20)\n",
+       "\n",
+       "Sosa disliked being identified as a protest singer.[[21]](#cite_note-21)[[22]](#cite_note-22) While she was \n",
+       "outright in her political stances, Sosa said the following on the position of the artist:\n",
+       "\n",
+       "> “An artist isn’t political in the party political sense – they have a constituency, which is their public – it is\n",
+       "the poetry that matters most of all.”\n",
+       "\n",
+       "In a career spanning four decades, she worked with performers across several genres and generations, folk, opera, \n",
+       "pop, rock, including [Martha Argerich](/wiki/Martha_Argerich \"Martha Argerich\"), [Andrea \n",
+       "Bocelli](/wiki/Andrea_Bocelli \"Andrea Bocelli\"), [David Broza](/wiki/David_Broza \"David Broza\"), [Franco \n",
+       "Battiato](/wiki/Franco_Battiato \"Franco Battiato\"), [Jaime Roos](/wiki/Jaime_Roos \"Jaime Roos\"), [Joan \n",
+       "Baez](/wiki/Joan_Baez \"Joan Baez\"), [Francis Cabrel](/wiki/Francis_Cabrel \"Francis Cabrel\"), [Gal \n",
+       "Costa](/wiki/Gal_Costa \"Gal Costa\"), [Luz Casal](/wiki/Luz_Casal \"Luz Casal\"), [Lila Downs](/wiki/Lila_Downs \"Lila \n",
+       "Downs\"), [Lucio Dalla](/wiki/Lucio_Dalla \"Lucio Dalla\"), [Maria Farantouri](/wiki/Maria_Farantouri \"Maria \n",
+       "Farantouri\"), [Lucecita Benitez](/wiki/Lucecita_Benitez \"Lucecita Benitez\"), [Nilda \n",
+       "Fernández](/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"), [Charly Garcia](/wiki/Charly_Garcia \"Charly Garcia\"), \n",
+       "[León Gieco](/wiki/Le%C3%B3n_Gieco \"León Gieco\"), [Gian Marco](/wiki/Gian_Marco \"Gian Marco\"), [Nana \n",
+       "Mouskouri](/wiki/Nana_Mouskouri \"Nana Mouskouri\"), [Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"), \n",
+       "[Holly Near](/wiki/Holly_Near \"Holly Near\"), [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\"), \n",
+       "[Pata Negra](/wiki/Pata_Negra \"Pata Negra\"), [Fito Páez](/wiki/Fito_P%C3%A1ez \"Fito Páez\"), [Franco De \n",
+       "Vita](/wiki/Franco_De_Vita \"Franco De Vita\"), [Lourdes Pérez](/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"), [Luciano \n",
+       "Pavarotti](/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"), [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \"Silvio \n",
+       "Rodríguez\"), [Ismael Serrano](/wiki/Ismael_Serrano \"Ismael Serrano\"), [Shakira](/wiki/Shakira \"Shakira\"), \n",
+       "[Sting](/wiki/Sting_(musician) \"Sting (musician)\"), [Caetano Veloso](/wiki/Caetano_Veloso \"Caetano \n",
+       "Veloso\"),[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) [Julieta Venegas](/wiki/Julieta_Venegas\n",
+       "\"Julieta Venegas\"), [Gustavo Cerati](/wiki/Gustavo_Cerati \"Gustavo Cerati\") and [Konstantin \n",
+       "Wecker](/wiki/Konstantin_Wecker \"Konstantin Wecker\")[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10\n",
+       "..._This content has been truncated to stay below 50000 characters_...\n",
+       " * [Roberto Pires](/w/index.php?title=Roberto_Pires&action=edit&redlink=1 \"Roberto Pires (page does not exist)\") * \n",
+       "[Ronaldo Correia de Brito](/w/index.php?title=Ronaldo_Correia_de_Brito&action=edit&redlink=1 \"Ronaldo Correia de \n",
+       "Brito (page does not exist)\") * [Rosa Maria dos Santos \n",
+       "Alves](/w/index.php?title=Rosa_Maria_dos_Santos_Alves&action=edit&redlink=1 \"Rosa Maria dos Santos Alves (page does\n",
+       "not exist)\") * [Rubem Braga](/wiki/Rubem_Braga \"Rubem Braga\") * [Sérgio Mamberti](/wiki/S%C3%A9rgio_Mamberti \n",
+       "\"Sérgio Mamberti\") * [Sociedade Junina Bumba Meu Boi da \n",
+       "Liberdade](/w/index.php?title=Sociedade_Junina_Bumba_Meu_Boi_da_Liberdade&action=edit&redlink=1 \"Sociedade Junina \n",
+       "Bumba Meu Boi da Liberdade (page does not exist)\") * [Tomie Ohtake](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Walda \n",
+       "Marques](/w/index.php?title=Walda_Marques&action=edit&redlink=1 \"Walda Marques (page does not exist)\") * [Walter \n",
+       "Pinto](/w/index.php?title=Walter_Pinto&action=edit&redlink=1 \"Walter Pinto (page does not exist)\") |\n",
+       "| 2014 | * [Alex Atala](/wiki/Alex_Atala \"Alex Atala\") * [Alexandre Herchcovitch](/wiki/Alexandre_Herchcovitch \n",
+       "\"Alexandre Herchcovitch\") * [Bernardo Paz](/wiki/Bernardo_Paz \"Bernardo Paz\") * [Bruno e \n",
+       "Marrone](/wiki/Bruno_e_Marrone \"Bruno e Marrone\") * [Celso Frateschi](/wiki/Celso_Frateschi \"Celso Frateschi\") * \n",
+       "[Chico de Assis](/w/index.php?title=Chico_de_Assis&action=edit&redlink=1 \"Chico de Assis (page does not exist)\") * \n",
+       "[Eliane Potiguara](/w/index.php?title=Eliane_Potiguara&action=edit&redlink=1 \"Eliane Potiguara (page does not \n",
+       "exist)\") * [Henricredo Coelho](/w/index.php?title=Henricredo_Coelho&action=edit&redlink=1 \"Henricredo Coelho (page \n",
+       "does not exist)\") * [Hermano Vianna](/w/index.php?title=Hermano_Vianna&action=edit&redlink=1 \"Hermano Vianna (page \n",
+       "does not exist)\") * [Jenner Augusto](/w/index.php?title=Jenner_Augusto&action=edit&redlink=1 \"Jenner Augusto (page \n",
+       "does not exist)\") * [José Carlos Meirelles](/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\") * [Júlio \n",
+       "Medaglia](/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\") * [Mano Brown](/wiki/Mano_Brown \"Mano Brown\") * [Marisa \n",
+       "Monte](/wiki/Marisa_Monte \"Marisa Monte\") * [Matheus Nachtergaele](/wiki/Matheus_Nachtergaele \"Matheus \n",
+       "Nachtergaele\") * [Ogã Bangbala](/w/index.php?title=Og%C3%A3_Bangbala&action=edit&redlink=1 \"Ogã Bangbala (page does\n",
+       "not exist)\") * [Orlando Senna](/w/index.php?title=Orlando_Senna&action=edit&redlink=1 \"Orlando Senna (page does not\n",
+       "exist)\") * [Oskar Metsavaht](/wiki/Oskar_Metsavaht \"Oskar Metsavaht\") * [Patrícia \n",
+       "Pillar](/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\") * Paulo Martins * [Tião \n",
+       "Oleiro](/w/index.php?title=Ti%C3%A3o_Oleiro&action=edit&redlink=1 \"Tião Oleiro (page does not exist)\") * [Vange \n",
+       "Leonel](/wiki/Vange_Leonel \"Vange Leonel\") |\n",
+       "| 2015 | * [Adylson Godoy](/w/index.php?title=Adylson_Godoy&action=edit&redlink=1 \"Adylson Godoy (page does not \n",
+       "exist)\") * [Ailton Krenak](/wiki/Ailton_Krenak \"Ailton Krenak\") * [Aldyr Schlee](/wiki/Aldyr_Schlee \"Aldyr Schlee\")\n",
+       "* [Antônio Araújo](/w/index.php?title=Ant%C3%B4nio_Ara%C3%BAjo&action=edit&redlink=1 \"Antônio Araújo (page does not\n",
+       "exist)\") * [Arnaldo Antunes](/wiki/Arnaldo_Antunes \"Arnaldo Antunes\") * [As Ceguinhas de Campina \n",
+       "Grande](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n",
+       "(page does not exist)\") * [Augusto de Campos](/wiki/Augusto_de_Campos \"Augusto de Campos\") * [Casa de Cinema de \n",
+       "Porto Alegre](/w/index.php?title=Casa_de_Cinema_de_Porto_Alegre&action=edit&redlink=1 \"Casa de Cinema de Porto \n",
+       "Alegre (page does not exist)\") * [Centro de Memória do \n",
+       "Circo](/w/index.php?title=Centro_de_Mem%C3%B3ria_do_Circo&action=edit&redlink=1 \"Centro de Memória do Circo (page \n",
+       "does not exist)\") * [Cesare La Rocca](/w/index.php?title=Cesare_La_Rocca&action=edit&redlink=1 \"Cesare La Rocca \n",
+       "(page does not exist)\") * [Comissão Guarani \n",
+       "Yvyrupa](/w/index.php?title=Comiss%C3%A3o_Guarani_Yvyrupa&action=edit&redlink=1 \"Comissão Guarani Yvyrupa (page \n",
+       "does not exist)\") * [Daniela Mercury](/wiki/Daniela_Mercury \"Daniela Mercury\") * [Davi Kopenawa \n",
+       "Yanomami](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Eva \n",
+       "Schul](/w/index.php?title=Eva_Schul&action=edit&redlink=1 \"Eva Schul (page does not exist)\") * [Humberto \n",
+       "Teixeira](/wiki/Humberto_Teixeira \"Humberto Teixeira\") * [Italo \n",
+       "Campofiorito](/w/index.php?title=Italo_Campofiorito&action=edit&redlink=1 \"Italo Campofiorito (page does not \n",
+       "exist)\") * Mestre [João Grande](/wiki/Jo%C3%A3o_Grande \"João Grande\") * [José \n",
+       "Mourão](/w/index.php?title=Jos%C3%A9_Mour%C3%A3o&action=edit&redlink=1 \"José Mourão (page does not exist)\") * [Luís\n",
+       "Humberto](/w/index.php?title=Lu%C3%ADs_Humberto&action=edit&redlink=1 \"Luís Humberto (page does not exist)\") * Mãe \n",
+       "[Beth de Oxum](/w/index.php?title=Beth_de_Oxum&action=edit&redlink=1 \"Beth de Oxum (page does not exist)\") * \n",
+       "[Marcelo Yuka](/wiki/Marcelo_Yuka \"Marcelo Yuka\") * [Niède Guidon](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * [Paulo\n",
+       "Herkenhoff](/w/index.php?title=Paulo_Herkenhoff&action=edit&redlink=1 \"Paulo Herkenhoff (page does not exist)\") * \n",
+       "[Rolando Boldrin](/wiki/Rolando_Boldrin \"Rolando Boldrin\") * [Ruy \n",
+       "Cezar](/w/index.php?title=Ruy_Cezar&action=edit&redlink=1 \"Ruy Cezar (page does not exist)\") * [Sociedade Musical \n",
+       "Curica](/w/index.php?title=Curica_(band)&action=edit&redlink=1 \"Curica (band) (page does not exist)\") * [Sônia \n",
+       "Guajajara](/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\") * [Tribo de \n",
+       "Atuadores](/w/index.php?title=Tribo_de_Atuadores&action=edit&redlink=1 \"Tribo de Atuadores (page does not exist)\") \n",
+       "* [Uruhu Mehinako](/w/index.php?title=Uruhu_Mehinako&action=edit&redlink=1 \"Uruhu Mehinako (page does not exist)\") \n",
+       "* [Vanisa Santiago](/w/index.php?title=Vanisa_Santiago&action=edit&redlink=1 \"Vanisa Santiago (page does not \n",
+       "exist)\") * [Vera Tostes](/w/index.php?title=Vera_Tostes&action=edit&redlink=1 \"Vera Tostes (page does not exist)\") \n",
+       "* [Walter Carvalho](/wiki/Walter_Carvalho \"Walter Carvalho\") |\n",
+       "| 2016 | * [Abel Gomes](/w/index.php?title=Abel_Gomes&action=edit&redlink=1 \"Abel Gomes (page does not exist)\") * \n",
+       "[Alcymar Monteiro](/w/index.php?title=Alcymar_Monteiro&action=edit&redlink=1 \"Alcymar Monteiro (page does not \n",
+       "exist)\") * [Ana Mae Barbosa](/w/index.php?title=Ana_Mae_Barbosa&action=edit&redlink=1 \"Ana Mae Barbosa (page does \n",
+       "not exist)\") * [Andrucha Waddington](/wiki/Andrucha_Waddington \"Andrucha Waddington\") * [Beatriz \n",
+       "Milhazes](/wiki/Beatriz_Milhazes \"Beatriz Milhazes\") * [Carlinhos de \n",
+       "Jesus](/w/index.php?title=Carlinhos_de_Jesus&action=edit&redlink=1 \"Carlinhos de Jesus (page does not exist)\") * \n",
+       "[Carlos Alberto Serpa de Oliveira](/w/index.php?title=Carlos_Alberto_Serpa_de_Oliveira&action=edit&redlink=1 \n",
+       "\"Carlos Alberto Serpa de Oliveira (page does not exist)\") * [Carlos Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * \n",
+       "[Clementina de Jesus](/wiki/Clementina_de_Jesus \"Clementina de Jesus\") * [Dona Ivone Lara](/wiki/Dona_Ivone_Lara \n",
+       "\"Dona Ivone Lara\") * [Donga](/wiki/Donga_(musician) \"Donga (musician)\") * [Fernando \n",
+       "Meirelles](/wiki/Fernando_Meirelles \"Fernando Meirelles\") * [Ferreira Gullar](/wiki/Ferreira_Gullar \"Ferreira \n",
+       "Gullar\") * [Focus Cia. De Dança](/w/index.php?title=Focus_Cia._De_Dan%C3%A7a&action=edit&redlink=1 \"Focus Cia. De \n",
+       "Dança (page does not exist)\") * [Fred Gelli](/w/index.php?title=Fred_Gelli&action=edit&redlink=1 \"Fred Gelli (page \n",
+       "does not exist)\") * [Fundação Darcy \n",
+       "Ribeiro](/w/index.php?title=Funda%C3%A7%C3%A3o_Darcy_Ribeiro&action=edit&redlink=1 \"Fundação Darcy Ribeiro (page \n",
+       "does not exist)\") * [Grupo Teatro da Laje](/w/index.php?title=Grupo_Teatro_da_Laje&action=edit&redlink=1 \"Grupo \n",
+       "Teatro da Laje (page does not exist)\") * [Instituto Ricardo Brennand](/wiki/Ricardo_Brennand_Institute \"Ricardo \n",
+       "Brennand Institute\") * [Isaurinha Garcia](/w/index.php?title=Isaurinha_Garcia&action=edit&redlink=1 \"Isaurinha \n",
+       "Garcia (page does not exist)\") * [Ismael Silva](/wiki/Ismael_Silva_(musician) \"Ismael Silva (musician)\") * [Jorge \n",
+       "Aragão](/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\") * [Jovelina Pérola Negra](/wiki/Jovelina_P%C3%A9rola_Negra \n",
+       "\"Jovelina Pérola Negra\") * [Maracatu Feminino Coração \n",
+       "Nazareno](/w/index.php?title=Maracatu_Feminino_Cora%C3%A7%C3%A3o_Nazareno&action=edit&redlink=1 \"Maracatu Feminino \n",
+       "Coração Nazareno (page does not exist)\") * [Marcus \n",
+       "Faustini](/w/index.php?title=Marcus_Faustini&action=edit&redlink=1 \"Marcus Faustini (page does not exist)\") * \n",
+       "[Mauro Mendonça](/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\") * [Museu do \n",
+       "Samba](/w/index.php?title=Centro_Cultural_Cartola&action=edit&redlink=1 \"Centro Cultural Cartola (page does not \n",
+       "exist)\") * [Neguinho da Beija-Flor](/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\") * [Nelson \n",
+       "Sargento](/wiki/Nelson_Sargento \"Nelson Sargento\") * [Noel Rosa](/wiki/Noel_Rosa \"Noel Rosa\") * \n",
+       "[Papete](/w/index.php?title=Papete&action=edit&redlink=1 \"Papete (page does not exist)\") * [Ricardo Cravo \n",
+       "Albin](/w/index.php?title=Ricardo_Cravo_Albin&action=edit&redlink=1 \"Ricardo Cravo Albin (page does not exist)\") * \n",
+       "[Rildo Hora](/w/index.php?title=Rildo_Hora&action=edit&redlink=1 \"Rildo Hora (page does not exist)\") * [Rosa \n",
+       "Magalhães](/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\") * [Rosa Maria \n",
+       "Araújo](/w/index.php?title=Rosa_Maria_Ara%C3%BAjo&action=edit&redlink=1 \"Rosa Maria Araújo (page does not exist)\") \n",
+       "* [Silas de Oliveira](/w/index.php?title=Silas_de_Oliveira&action=edit&redlink=1 \"Silas de Oliveira (page does not \n",
+       "exist)\") * [Vik Muniz](/wiki/Vik_Muniz \"Vik Muniz\") |\n",
+       "| 2017 | * [Afonso Oliveira](/w/index.php?title=Afonso_Oliveira&action=edit&redlink=1 \"Afonso Oliveira (page does \n",
+       "not exist)\") * [Ana Maria Nobrega Miranda](/w/index.php?title=Ana_Maria_Nobrega_Miranda&action=edit&redlink=1 \"Ana \n",
+       "Maria Nobrega Miranda (page does not exist)\") * [Augusto \n",
+       "Marzagão](/w/index.php?title=Augusto_Marzag%C3%A3o&action=edit&redlink=1 \"Augusto Marzagão (page does not exist)\") \n",
+       "* [Beto Kelner](/w/index.php?title=Beto_Kelner&action=edit&redlink=1 \"Beto Kelner (page does not exist)\") * \n",
+       "[Boni](/w/index.php?title=Jos%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&action=edit&redlink=1 \"José Bonifácio de \n",
+       "Oliveira Sobrinho (page does not exist)\") * [Carla Camurati](/wiki/Carla_Camurati \"Carla Camurati\") * [Carlos \n",
+       "Tufvesson](/wiki/Carlos_Tufvesson \"Carlos Tufvesson\") * [Cláudia Costin](/wiki/Cl%C3%A1udia_Costin \"Cláudia \n",
+       "Costin\") * [Domingo Alzugaray](/wiki/Domingo_Alzugaray \"Domingo Alzugaray\") * [Dona Onete](/wiki/Dona_Onete \"Dona \n",
+       "Onete\") * [Eduardo Portella](/wiki/Eduardo_Portella \"Eduardo Portella\") * [Eduardo Saron \n",
+       "Nunes](/w/index.php?title=Eduardo_Saron_Nunes&action=edit&redlink=1 \"Eduardo Saron Nunes (page does not exist)\") * \n",
+       "[Fernando Alterio](/w/index.php?title=Fernando_Alterio&action=edit&redlink=1 \"Fernando Alterio (page does not \n",
+       "exist)\") * [Galo da Madrugada](/wiki/Galo_da_Madrugada \"Galo da Madrugada\") * [Genival \n",
+       "Lacerda](/wiki/Genival_Lacerda \"Genival Lacerda\") * [Ivo \n",
+       "Barroso](/w/index.php?title=Ivo_Barroso&action=edit&redlink=1 \"Ivo Barroso (page does not exist)\") * [Jair de \n",
+       "Souza](/w/index.php?title=Jair_de_Souza&action=edit&redlink=1 \"Jair de Souza (page does not exist)\") * [Luciane \n",
+       "Gorgulho](/w/index.php?title=Luciane_Gorgulho&action=edit&redlink=1 \"Luciane Gorgulho (page does not exist)\") * \n",
+       "[Luis Severiano Ribeiro](/w/index.php?title=Luis_Severiano_Ribeiro&action=edit&redlink=1 \"Luis Severiano Ribeiro \n",
+       "(page does not exist)\") * [Luiz Calainho](/w/index.php?title=Luiz_Calainho&action=edit&redlink=1 \"Luiz Calainho \n",
+       "(page does not exist)\") * [Marcelo Bertini](/w/index.php?title=Marcelo_Bertini&action=edit&redlink=1 \"Marcelo \n",
+       "Bertini (page does not exist)\") * [Marcelo Bratke](/wiki/Marcelo_Bratke \"Marcelo Bratke\") * [Marcelo \n",
+       "Dantas](/w/index.php?title=Marcelo_Dantas&action=edit&redlink=1 \"Marcelo Dantas (page does not exist)\") * [Maria \n",
+       "Ignez Mantovani](/w/index.php?title=Maria_Ignez_Mantovani&action=edit&redlink=1 \"Maria Ignez Mantovani (page does \n",
+       "not exist)\") * [Moeller & Botelho Produções \n",
+       "Artísticas](/w/index.php?title=Moeller_%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&action=edit&redlink=1 \n",
+       "\"Moeller & Botelho Produções Artísticas (page does not exist)\") * Mãe [Neide Oyá \n",
+       "D´Oxum](/w/index.php?title=Neide_Oy%C3%A1_D%C2%B4Oxum&action=edit&redlink=1 \"Neide Oyá D´Oxum (page does not \n",
+       "exist)\") * [Paulo Cruz](/w/index.php?title=Paulo_Cruz&action=edit&redlink=1 \"Paulo Cruz (page does not exist)\") * \n",
+       "[Pierre André Mantovani](/w/index.php?title=Pierre_Andr%C3%A9_Mantovani&action=edit&redlink=1 \"Pierre André \n",
+       "Mantovani (page does not exist)\") * [Renato Aragão](/wiki/Renato_Arag%C3%A3o \"Renato Aragão\") * [Ricardo \n",
+       "Amaral](/w/index.php?title=Ricardo_Amaral&action=edit&redlink=1 \"Ricardo Amaral (page does not exist)\") * [Roberto \n",
+       "Minczuk](/wiki/Roberto_Minczuk \"Roberto Minczuk\") * [Roberto Santucci](/wiki/Roberto_Santucci \"Roberto Santucci\") |\n",
+       "| 2018 | * [Abelardo Barbosa](/wiki/Chacrinha \"Chacrinha\") * [Antonio \n",
+       "Mazzafera](/w/index.php?title=Antonio_Mazzafera&action=edit&redlink=1 \"Antonio Mazzafera (page does not exist)\") * \n",
+       "[Biblioteca Oliveira Lima](/w/index.php?title=Biblioteca_Oliveira_Lima&action=edit&redlink=1 \"Biblioteca Oliveira \n",
+       "Lima (page does not exist)\") * [Bruno Wainer](/w/index.php?title=Bruno_Wainer&action=edit&redlink=1 \"Bruno Wainer \n",
+       "(page does not exist)\") * [Carlos Saldanha](/wiki/Carlos_Saldanha \"Carlos Saldanha\") * [Carlos \n",
+       "Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * [Dedé Santana](/wiki/Ded%C3%A9_Santana \"Dedé Santana\") * [Eva \n",
+       "Sopher](/wiki/Eva_Sopher \"Eva Sopher\") * [Eva Wilma](/wiki/Eva_Wilma \"Eva Wilma\") * [Festival Villa \n",
+       "Mix](/w/index.php?title=Festival_Villa_Mix&action=edit&redlink=1 \"Festival Villa Mix (page does not exist)\") * \n",
+       "[Guilherme Fiuza](/w/index.php?title=Guilherme_Fiuza&action=edit&redlink=1 \"Guilherme Fiuza (page does not exist)\")\n",
+       "* [Instituto Histórico e Geográfico Brasileiro](/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \n",
+       "\"Instituto Histórico e Geográfico Brasileiro\") * [Jorge \n",
+       "Caldeira](/w/index.php?title=Jorge_Caldeira&action=edit&redlink=1 \"Jorge Caldeira (page does not exist)\") * [José \n",
+       "Bonifácio](/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\") * [Kati Almeida \n",
+       "Braga](/w/index.php?title=Kati_Almeida_Braga&action=edit&redlink=1 \"Kati Almeida Braga (page does not exist)\") * \n",
+       "[King's Brazil Institute](/w/index.php?title=King%27s_Brazil_Institute&action=edit&redlink=1 \"King's Brazil \n",
+       "Institute (page does not exist)\") * [Luiz Oscar \n",
+       "Niemeyer](/w/index.php?title=Luiz_Oscar_Niemeyer&action=edit&redlink=1 \"Luiz Oscar Niemeyer (page does not exist)\")\n",
+       "* [Marcelo Castello Branco](/w/index.php?title=Marcelo_Castello_Branco&action=edit&redlink=1 \"Marcelo Castello \n",
+       "Branco (page does not exist)\") * [Marcio Fraccaroli](/w/index.php?title=Marcio_Fraccaroli&action=edit&redlink=1 \n",
+       "\"Marcio Fraccaroli (page does not exist)\") * [Martim Vasques da \n",
+       "Cunha](/w/index.php?title=Martim_Vasques_da_Cunha&action=edit&redlink=1 \"Martim Vasques da Cunha (page does not \n",
+       "exist)\") * [Milton Gonçalves](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Monah \n",
+       "Delacy](/w/index.php?title=Monah_Delacy&action=edit&redlink=1 \"Monah Delacy (page does not exist)\") * [Museu de \n",
+       "Arte de São Paulo](/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\") * [Museu de Arte Moderna do \n",
+       "Rio de Janeiro](/w/index.php?title=Museu_de_Arte_Moderna_do_Rio_de_Janeiro&action=edit&redlink=1 \"Museu de Arte \n",
+       "Moderna do Rio de Janeiro (page does not exist)\") * [Museu de Arte Moderna de São \n",
+       "Paulo](/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\") * [Museu da Gente \n",
+       "Sergipana](/w/index.php?title=Museu_da_Gente_Sergipana&action=edit&redlink=1 \"Museu da Gente Sergipana (page does \n",
+       "not exist)\") * [Orquestra Filarmônica de Minas \n",
+       "Gerais](/w/index.php?title=Orquestra_Filarm%C3%B4nica_de_Minas_Gerais&action=edit&redlink=1 \"Orquestra Filarmônica \n",
+       "de Minas Gerais (page does not exist)\") * [Roberto Teixeira da \n",
+       "Costa](/w/index.php?title=Roberto_Teixeira_da_Costa&action=edit&redlink=1 \"Roberto Teixeira da Costa (page does not\n",
+       "exist)\") * [Saulo Ferreira](/w/index.php?title=Saulo_Ferreira&action=edit&redlink=1 \"Saulo Ferreira (page does not \n",
+       "exist)\") * [Sérgio Mendes](/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\") * [Sérgio \n",
+       "Mielniczenko](/w/index.php?title=S%C3%A9rgio_Mielniczenko&action=edit&redlink=1 \"Sérgio Mielniczenko (page does not\n",
+       "exist)\") * [Thiago Soares](/wiki/Thiago_Soares \"Thiago Soares\") * [Trio \n",
+       "Roraimeira](/w/index.php?title=Trio_Roraimeira&action=edit&redlink=1 \"Trio Roraimeira (page does not exist)\") * [Vó\n",
+       "Mera](/w/index.php?title=V%C3%B3_Mera&action=edit&redlink=1 \"Vó Mera (page does not exist)\") * [Wanda \n",
+       "Sá](/wiki/Wanda_S%C3%A1 \"Wanda Sá\") |\n",
+       "\n",
+       "| [Authority control databases](/wiki/Help:Authority_control \"Help:Authority control\") [Edit this at \n",
+       "Wikidata](https://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at Wikidata\") | |\n",
+       "| --- | --- |\n",
+       "| International | * [ISNI](https://isni.org/isni/0000000114681685) * [VIAF](https://viaf.org/viaf/14968654) * \n",
+       "[FAST](http://id.worldcat.org/fast/206968/) * \n",
+       "[WorldCat](https://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3) |\n",
+       "| National | * [Germany](https://d-nb.info/gnd/119022249) * [United \n",
+       "States](https://id.loc.gov/authorities/n87117284) * [France](https://catalogue.bnf.fr/ark:/12148/cb13999885k) * \n",
+       "[BnF data](https://data.bnf.fr/ark:/12148/cb13999885k) * [Italy](https://opac.sbn.it/nome/UBOV850079) * \n",
+       "[Spain](https://datos.bne.es/resource/XX1088218) * [Netherlands](http://data.bibliotheken.nl/id/thes/p071981608) * \n",
+       "[Norway](https://authority.bibsys.no/authority/rest/authorities/html/9050316) * \n",
+       "[Chile](http://www.bncatalogo.cl/F?func=direct&local_base=red10&doc_number=000157687) * \n",
+       "[Argentina](https://catalogo.bn.gov.ar/F/?func=direct&local_base=BNA10&doc_number=000042426) * \n",
+       "[Korea](https://lod.nl.go.kr/resource/KAC2020N6852) * \n",
+       "[Israel](https://www.nli.org.il/en/authorities/987007594420405171) * \n",
+       "[Catalonia](https://cantic.bnc.cat/registre/981058518702206706) |\n",
+       "| Artists | * [MusicBrainz](https://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577) |\n",
+       "| People | * [Deutsche Biographie](https://www.deutsche-biographie.de/119022249.html?language=en) * \n",
+       "[DDB](https://www.deutsche-digitale-bibliothek.de/person/gnd/119022249) |\n",
+       "| Other | * [IdRef](https://www.idref.fr/08071613X) * [SNAC](https://snaccooperative.org/ark:/99166/w67n4hns) |\n",
+       "\n",
+       "[Portals](/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"):\n",
+       "\n",
+       "* ![flag](//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png)\n",
+       "[Argentina](/wiki/Portal:Argentina \"Portal:Argentina\")\n",
+       "* ![](//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png) [Latin \n",
+       "music](/wiki/Portal:Latin_music \"Portal:Latin music\")\n",
+       "\n",
+       "![](https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1&usesul3=1)\n",
+       "\n",
+       "Retrieved from \"<https://en.wikipedia.org/w/index.php?title=Mercedes_Sosa&oldid=1281260319>\"\n",
+       "\n",
+       "[Categories](/wiki/Help:Category \"Help:Category\"):\n",
+       "\n",
+       "* [1935 births](/wiki/Category:1935_births \"Category:1935 births\")\n",
+       "* [2009 deaths](/wiki/Category:2009_deaths \"Category:2009 deaths\")\n",
+       "* [Latin Grammy Award winners](/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\")\n",
+       "* [20th-century Argentine women singers](/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century\n",
+       "Argentine women singers\")\n",
+       "* [Argentine activists](/wiki/Category:Argentine_activists \"Category:Argentine activists\")\n",
+       "* [Argentine women activists](/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\")\n",
+       "* [Argentine people of French descent](/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people\n",
+       "of French descent\")\n",
+       "* [Argentine people of Diaguita descent](/wiki/Category:Argentine_people_of_Diaguita_descent \"Category:Argentine \n",
+       "people of Diaguita descent\")\n",
+       "* [Argentine people of Quechua descent](/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine \n",
+       "people of Quechua descent\")\n",
+       "* [Deaths from kidney failure in Argentina](/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths\n",
+       "from kidney failure in Argentina\")\n",
+       "* [People from San Miguel de Tucumán](/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from \n",
+       "San Miguel de Tucumán\")\n",
+       "* [Nueva canción musicians](/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\")\n",
+       "* [Bombo legüero players](/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\")\n",
+       "* [Latin Grammy Lifetime Achievement Award winners](/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \n",
+       "\"Category:Latin Grammy Lifetime Achievement Award winners\")\n",
+       "* [Recipients of the Order of Cultural Merit \n",
+       "(Brazil)](/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_(Brazil) \"Category:Recipients of the Order of \n",
+       "Cultural Merit (Brazil)\")\n",
+       "* [20th-century drummers](/wiki/Category:20th-century_drummers \"Category:20th-century drummers\")\n",
+       "* [Women in Latin music](/wiki/Category:Women_in_Latin_music \"Category:Women in Latin music\")\n",
+       "\n",
+       "Hidden categories:\n",
+       "\n",
+       "* [All articles with dead external links](/wiki/Category:All_articles_with_dead_external_links \"Category:All \n",
+       "articles with dead external links\")\n",
+       "* [Articles with dead external links from June \n",
+       "2024](/wiki/Category:Articles_with_dead_external_links_from_June_2024 \"Category:Articles with dead external links \n",
+       "from June 2024\")\n",
+       "* [CS1 Spanish-language sources (es)](/wiki/Category:CS1_Spanish-language_sources_(es) \"Category:CS1 \n",
+       "Spanish-language sources (es)\")\n",
+       "* [CS1 maint: numeric names: authors list](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 \n",
+       "maint: numeric names: authors list\")\n",
+       "* [CS1 maint: url-status](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\")\n",
+       "* [Webarchive template wayback links](/wiki/Category:Webarchive_template_wayback_links \"Category:Webarchive \n",
+       "template wayback links\")\n",
+       "* [Articles with German-language sources (de)](/wiki/Category:Articles_with_German-language_sources_(de) \n",
+       "\"Category:Articles with German-language sources (de)\")\n",
+       "* [Articles with short description](/wiki/Category:Articles_with_short_description \"Category:Articles with short \n",
+       "description\")\n",
+       "* [Short description is different from Wikidata](/wiki/Category:Short_description_is_different_from_Wikidata \n",
+       "\"Category:Short description is different from Wikidata\")\n",
+       "* [Use dmy dates from July 2023](/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy dates from July \n",
+       "2023\")\n",
+       "* [Wikipedia indefinitely move-protected pages](/wiki/Category:Wikipedia_indefinitely_move-protected_pages \n",
+       "\"Category:Wikipedia indefinitely move-protected pages\")\n",
+       "* [Articles with hCards](/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\")\n",
+       "* [Pages with Latin American Spanish IPA](/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with\n",
+       "Latin American Spanish IPA\")\n",
+       "* [All articles with unsourced statements](/wiki/Category:All_articles_with_unsourced_statements \"Category:All \n",
+       "articles with unsourced statements\")\n",
+       "* [Articles with unsourced statements from December \n",
+       "2023](/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \n",
+       "statements from December 2023\")\n",
+       "* [Commons category link is on Wikidata](/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons \n",
+       "category link is on Wikidata\")\n",
+       "\n",
+       "* This page was last edited on 19 March 2025, at 08:35 (UTC).\n",
+       "* Text is available under the [Creative Commons Attribution-ShareAlike 4.0 \n",
+       "License](/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \n",
+       "\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\");\n",
+       "  additional terms may apply. By using this site, you agree to the [Terms of \n",
+       "Use](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \n",
+       "\"foundation:Special:MyLanguage/Policy:Terms of Use\") and [Privacy \n",
+       "Policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \n",
+       "\"foundation:Special:MyLanguage/Policy:Privacy policy\"). Wikipedia® is a registered trademark of the [Wikimedia \n",
+       "Foundation, Inc.](https://wikimediafoundation.org/), a non-profit organization.\n",
+       "\n",
+       "* [Privacy policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy)\n",
+       "* [About Wikipedia](/wiki/Wikipedia:About)\n",
+       "* [Disclaimers](/wiki/Wikipedia:General_disclaimer)\n",
+       "* [Contact Wikipedia](//en.wikipedia.org/wiki/Wikipedia:Contact_us)\n",
+       "* [Code of Conduct](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct)\n",
+       "* [Developers](https://developer.wikimedia.org)\n",
+       "* [Statistics](https://stats.wikimedia.org/#/en.wikipedia.org)\n",
+       "* [Cookie statement](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement)\n",
+       "* [Mobile view](//en.m.wikipedia.org/w/index.php?title=Mercedes_Sosa&mobileaction=toggle_view_mobile)\n",
+       "\n",
+       "* [![Wikimedia Foundation](/static/images/footer/wikimedia.svg)](https://www.wikimedia.org/)\n",
+       "* [![Powered by MediaWiki](/w/resources/assets/mediawiki_compact.svg)](https://www.mediawiki.org/)\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Toggle the table of contents\n",
+       "\n",
+       "Mercedes Sosa\n",
+       "\n",
+       "49 languages\n",
+       "[Add topic](#)\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "Mercedes Sosa - Wikipedia\n", + "\n", + "[Jump to content](#bodyContent)\n", + "\n", + "Main menu\n", + "\n", + "Main menu\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "Navigation\n", + "\n", + "* [Main page](/wiki/Main_Page \"Visit the main page [z]\")\n", + "* [Contents](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\n", + "* [Current events](/wiki/Portal:Current_events \"Articles related to current events\")\n", + "* [Random article](/wiki/Special:Random \"Visit a randomly selected article [x]\")\n", + "* [About Wikipedia](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\n", + "* [Contact us](//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\")\n", + "\n", + "Contribute\n", + "\n", + "* [Help](/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\")\n", + "* [Learn to edit](/wiki/Help:Introduction \"Learn how to edit Wikipedia\")\n", + "* [Community portal](/wiki/Wikipedia:Community_portal \"The hub for editors\")\n", + "* [Recent changes](/wiki/Special:RecentChanges \"A list of recent changes to Wikipedia [r]\")\n", + "* [Upload file](/wiki/Wikipedia:File_upload_wizard \"Add images or other media for use on Wikipedia\")\n", + "* [Special pages](/wiki/Special:SpecialPages)\n", + "\n", + "[![](/static/images/icons/wikipedia.png)\n", + "\n", + "![Wikipedia](/static/images/mobile/copyright/wikipedia-wordmark-en.svg)\n", + "![The Free Encyclopedia](/static/images/mobile/copyright/wikipedia-tagline-en.svg)](/wiki/Main_Page)\n", + "\n", + "[Search](/wiki/Special:Search \"Search Wikipedia [f]\")\n", + "\n", + "Search\n", + "\n", + "Appearance\n", + "\n", + "* \n", + "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n", + "n)\n", + "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n", + "account and log in; however, it is not mandatory\")\n", + "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n", + "not mandatory. [o]\")\n", + "\n", + "Personal tools\n", + "\n", + "* \n", + "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n", + "n)\n", + "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n", + "account and log in; however, it is not mandatory\")\n", + "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n", + "not mandatory. [o]\")\n", + "\n", + "Pages for logged out editors [learn more](/wiki/Help:Introduction)\n", + "\n", + "* [Contributions](/wiki/Special:MyContributions \"A list of edits made from this IP address [y]\")\n", + "* [Talk](/wiki/Special:MyTalk \"Discussion about edits from this IP address [n]\")\n", + "\n", + "Contents\n", + "--------\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "* [(Top)](#)\n", + "* [1\n", + " Life](#Life)\n", + "* [2\n", + " Awards](#Awards)\n", + "* [3\n", + " Death](#Death)\n", + "* [4\n", + " Tributes](#Tributes)\n", + "* [5\n", + " Discography](#Discography)\n", + "\n", + " Toggle Discography subsection\n", + " + [5.1\n", + " Studio albums](#Studio_albums)\n", + " + [5.2\n", + " EPs](#EPs)\n", + " + [5.3\n", + " Live albums](#Live_albums)\n", + " + [5.4\n", + " Compilation albums](#Compilation_albums)\n", + "* [6\n", + " Filmography](#Filmography)\n", + "* [7\n", + " Further reading](#Further_reading)\n", + "* [8\n", + " References](#References)\n", + "* [9\n", + " External links](#External_links)\n", + "\n", + "Toggle the table of contents\n", + "\n", + "Mercedes Sosa\n", + "=============\n", + "\n", + "49 languages\n", + "\n", + "* [العربية](https://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس \n", + "سوسا – Arabic\")\n", + "* [Aymar aru](https://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\")\n", + "* [تۆرکجه](https://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n", + "South Azerbaijani\")\n", + "* \n", + "[বাংলা](https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%B\n", + "8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\")\n", + "* [Беларуская \n", + "(тарашкевіца)](https://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%D\n", + "1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian (Taraškievica orthography)\")\n", + "* \n", + "[Български](https://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B0\n", + "\"Мерседес Соса – Bulgarian\")\n", + "* [Brezhoneg](https://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Breton\")\n", + "* [Català](https://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\")\n", + "* [Čeština](https://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\")\n", + "* [Dansk](https://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\")\n", + "* [Deutsch](https://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\")\n", + "* \n", + "[Ελληνικά](https://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1 \n", + "\"Μερσέδες Σόσα – Greek\")\n", + "* [Español](https://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\")\n", + "* [Esperanto](https://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\")\n", + "* [Euskara](https://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\")\n", + "* [فارسی](https://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n", + "Persian\")\n", + "* [Français](https://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\")\n", + "* [Galego](https://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\")\n", + "* [한국어](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \n", + "\"메르세데스 소사 – Korean\")\n", + "* [Հայերեն](https://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1\n", + "\"Մերսեդես Սոսա – Armenian\")\n", + "* [Hrvatski](https://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Croatian\")\n", + "* [Ido](https://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\")\n", + "* [Bahasa Indonesia](https://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\")\n", + "* [Italiano](https://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\")\n", + "* [עברית](https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \n", + "Hebrew\")\n", + "* [Latina](https://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\")\n", + "* [Lëtzebuergesch](https://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\")\n", + "* [Magyar](https://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\")\n", + "* \n", + "[മലയാളം](https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B4\n", + "%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്‌സിഡസ് സോസ – Malayalam\")\n", + "* [مصرى](https://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا \n", + "– Egyptian Arabic\")\n", + "* [Nederlands](https://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\")\n", + "* \n", + "[日本語](https://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3%\n", + "82%B5 \"メルセデス・ソーサ – Japanese\")\n", + "* [Norsk bokmål](https://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Norwegian Bokmål\")\n", + "* [Occitan](https://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\")\n", + "* [Polski](https://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\")\n", + "* [Português](https://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\")\n", + "* [Runa Simi](https://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\")\n", + "* \n", + "[Русский](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81 \n", + "\"Соса, Мерседес – Russian\")\n", + "* [Scots](https://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\")\n", + "* [Simple English](https://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\")\n", + "* [Slovenščina](https://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\")\n", + "* [Suomi](https://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\")\n", + "* [Svenska](https://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\")\n", + "* [Tagalog](https://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\")\n", + "* [Türkçe](https://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\")\n", + "* \n", + "[Українська](https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\n", + "0 \"Мерседес Соса – Ukrainian\")\n", + "* [Tiếng Việt](https://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Vietnamese\")\n", + "* [Zazaki](https://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\")\n", + "* [中文](https://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 \n", + "– Chinese\")\n", + "\n", + "[Edit links](https://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit interlanguage \n", + "links\")\n", + "\n", + "* [Article](/wiki/Mercedes_Sosa \"View the content page [c]\")\n", + "* [Talk](/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page [t]\")\n", + "\n", + "English\n", + "\n", + "* [Read](/wiki/Mercedes_Sosa)\n", + "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n", + "* [View history](/w/index.php?title=Mercedes_Sosa&action=history \"Past revisions of this page [h]\")\n", + "\n", + "Tools\n", + "\n", + "Tools\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "Actions\n", + "\n", + "* [Read](/wiki/Mercedes_Sosa)\n", + "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n", + "* [View history](/w/index.php?title=Mercedes_Sosa&action=history)\n", + "\n", + "General\n", + "\n", + "* [What links here](/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links\n", + "to this page [j]\")\n", + "* [Related changes](/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from this page \n", + "[k]\")\n", + "* [Upload file](//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files [u]\")\n", + "* [Permanent link](/w/index.php?title=Mercedes_Sosa&oldid=1281260319 \"Permanent link to this revision of this \n", + "page\")\n", + "* [Page information](/w/index.php?title=Mercedes_Sosa&action=info \"More information about this page\")\n", + "* [Cite this \n", + "page](/w/index.php?title=Special:CiteThisPage&page=Mercedes_Sosa&id=1281260319&wpFormIdentifier=titleform \n", + "\"Information on how to cite this page\")\n", + "* [Get shortened \n", + "URL](/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n", + "* [Download QR code](/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n", + "\n", + "Print/export\n", + "\n", + "* [Download as PDF](/w/index.php?title=Special:DownloadAsPdf&page=Mercedes_Sosa&action=show-download-screen \n", + "\"Download this page as a PDF file\")\n", + "* [Printable version](/w/index.php?title=Mercedes_Sosa&printable=yes \"Printable version of this page [p]\")\n", + "\n", + "In other projects\n", + "\n", + "* [Wikimedia Commons](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa)\n", + "* [Wikidata item](https://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by \n", + "Wikidata [g]\")\n", + "\n", + "Appearance\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "From Wikipedia, the free encyclopedia\n", + "\n", + "Argentine singer (1935–2009)\n", + "\n", + "Not to be confused with [Mercedes Sola](/wiki/Mercedes_Sola \"Mercedes Sola\").\n", + "\n", + "| Mercedes Sosa | |\n", + "| --- | --- |\n", + "| Portrait by [Annemarie Heinrich](/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"), 1960s | |\n", + "| Born | Haydée Mercedes Sosa (1935-07-09)9 July 1935 [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \n", + "\"San Miguel de Tucumán\"), Tucumán, Argentina |\n", + "| Died | 4 October 2009(2009-10-04) (aged 74) [Buenos Aires](/wiki/Buenos_Aires \"Buenos Aires\"), Argentina |\n", + "| Occupation | Singer |\n", + "| Years active | 1950–2009 |\n", + "| **Musical career** | |\n", + "| Genres | * [Folk](/wiki/Folk_music \"Folk music\") * [nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\n", + "| Instruments | Vocals |\n", + "| Musical artist | |\n", + "\n", + "**Haydée Mercedes** \"**La Negra**\" **Sosa** (Latin American Spanish: [[meɾˈseðes ˈsosa]](/wiki/Help:IPA/Spanish \n", + "\"Help:IPA/Spanish\"); 9 July 1935[[1]](#cite_note-birth-1) – 4 October 2009) was an [Argentine](/wiki/Argentines \n", + "\"Argentines\") singer who was popular throughout [Latin America](/wiki/Latin_America \"Latin America\") and many \n", + "countries outside the region. With her roots in [Argentine folk music](/wiki/Folk_music_of_Argentina \"Folk music of\n", + "Argentina\"), Sosa became one of the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written \n", + "by many Latin American songwriters. Her music made people hail her as the \"voice of the voiceless \n", + "ones\".[[2]](#cite_note-tmc-2) She was often called \"the conscience of Latin America\".[[3]](#cite_note-3)\n", + "\n", + "Sosa performed in venues such as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln Center\") in New York City, the \n", + "[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\") in Paris, the [Sistine \n", + "Chapel](/wiki/Sistine_Chapel \"Sistine Chapel\") in Vatican City, as well as sold-out shows in New York's [Carnegie \n", + "Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") and the Roman [Colosseum](/wiki/Colosseum \"Colosseum\") during her final \n", + "decade of life. Her career spanned four decades and she was the recipient of six [Latin Grammy](/wiki/Latin_Grammy \n", + "\"Latin Grammy\") awards (2000, 2003, 2004, 2006, 2009, 2011), including a [Latin Grammy Lifetime Achievement \n", + "Award](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") in 2004 and two \n", + "posthumous [Latin Grammy Award for Best Folk Album](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \n", + "Award for Best Folk Album\") in 2009 and 2011. She won the [Premio Gardel](/wiki/Premios_Gardel \"Premios Gardel\") in\n", + "2000, the main musical award in Argentina. She served as an ambassador for [UNICEF](/wiki/UNICEF \"UNICEF\").\n", + "\n", + "Life\n", + "----\n", + "\n", + "[[edit](/w/index.php?title=Mercedes_Sosa&action=edit§ion=1 \"Edit section: Life\")]\n", + "\n", + "Sosa was born on 9 July 1935, in [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"),\n", + "in the [northwestern Argentine](/wiki/Argentine_Northwest \"Argentine Northwest\") province of \n", + "[Tucumán](/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"), of [mestizo](/wiki/Mestizo \"Mestizo\") ancestry. She was \n", + "of French, Spanish and [Diaguita](/wiki/Diaguita \"Diaguita\") \n", + "descent.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Her nickname \"la negra\", which is a \n", + "common nickname in Argentina for people with darker complexion, is a reference to her indigenous \n", + "heritage.[[5]](#cite_note-:0-5) Her parents, a day laborer and a washerwoman,[[6]](#cite_note-6) were \n", + "[Peronists](/wiki/Peronism \"Peronism\"), although they never registered in the party, and she started her career as \n", + "a singer for the [Peronist Party](/wiki/Peronist_Party \"Peronist Party\") in [Tucuman](/wiki/Tucum%C3%A1n_Province \n", + "\"Tucumán Province\") under the name Gladys Osorio.[[7]](#cite_note-7) In 1950, at age fifteen, she won a singing \n", + "competition organized by a local radio station and was given a contract to perform for two \n", + "months.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) She recorded her first album, *[La Voz de la \n", + "Zafra](/wiki/La_voz_de_la_zafra \"La voz de la zafra\")*, in 1959.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) A \n", + "performance at the 1965 [Cosquín National Folklore Festival](/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\")—where \n", + "she was introduced and brought to the stage while sitting in the audience by fellow folk singer [Jorge \n", + "Cafrune](/wiki/Jorge_Cafrune \"Jorge Cafrune\")—[[9]](#cite_note-test-9) brought her to the attention of the \n", + "Argentine public.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Sosa and her first husband, [Manuel Oscar \n", + "Matus](/w/index.php?title=Manuel_Oscar_Matus&action=edit&redlink=1 \"Manuel Oscar Matus (page does not exist)\"), \n", + "with whom she had one son, were key players in the mid-60s *[nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva \n", + "canción\")* movement (which was called *nuevo cancionero* in \n", + "Argentina).[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Her second record was *Canciones con Fundamento*, \n", + "a collection of Argentine folk songs.\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg/\n", + "250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg)](/wiki/File:Mercedes_Sosa,_F%C3%A9lix_Luna_y_Ariel\n", + "_Ram%C3%ADrez.jpg)\n", + "\n", + "Sosa with [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\") and [Ariel Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel \n", + "Ramírez\") (at the piano)\n", + "\n", + "Sosa \"spent the late 1960s building her audience in Europe and among the cosmopolitan middle class in Buenos Aires,\n", + "becoming in the process a much bigger star\" than her contemporaries.[[11]](#cite_note-11)In 1967, Sosa toured the \n", + "United States and Europe with great success.[*[citation needed](/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation\n", + "needed\")*] In later years, she performed and recorded extensively, broadening her repertoire to include material \n", + "from throughout Latin America.\n", + "\n", + "In the early 1970s, Sosa released two concept albums in collaboration with composer [Ariel \n", + "Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\") and lyricist [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\"): \n", + "*Cantata Sudamericana* and *Mujeres Argentinas* (Argentine Women). She also recorded a tribute to Chilean musician \n", + "[Violeta Parra](/wiki/Violeta_Parra \"Violeta Parra\") in 1971, including what was to become one of Sosa's signature \n", + "songs, *[Gracias a la vida](/wiki/Gracias_a_la_vida \"Gracias a la \n", + "vida\")*.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[12]](#cite_note-ap-12) She further \n", + "popularized of songs written by [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\") of Brazil and \n", + "[Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") and [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \n", + "\"Silvio Rodríguez\") both from [Cuba](/wiki/Cuba \n", + "\"Cuba\").[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Throughout the decade, she released \n", + "albums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \n", + "\"Cuando tenga la tierra\", written by [Ariel Petrocelli](/w/index.php?title=Ariel_Petrocelli&action=edit&redlink=1 \n", + "\"Ariel Petrocelli (page does not exist)\") and Daniel Toro, which tackles political and social issues like wealth \n", + "and land inequality.[[13]](#cite_note-:2-13)[[14]](#cite_note-14) During the 1970s she was a part of two films by \n", + "the director [Leopoldo Torre Nilsson](/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"): *[El Santo de la \n", + "Espada](/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\")* in 1970 and *[Güemes, la tierra en \n", + "armas](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\")* in 1971, in which she portrayed [Juana \n", + "Azurduy de Padilla](/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"), the guerrilla military leader who \n", + "fought for Argentine independence.[[13]](#cite_note-:2-13)[[15]](#cite_note-15)\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg)](/wiki/File\n", + ":Mercedes_Sosa_2.jpg)\n", + "\n", + "Sosa in 1972\n", + "\n", + "After the [military junta](/wiki/National_Reorganization_Process \"National Reorganization Process\") of [Jorge \n", + "Videla](/wiki/Jorge_Videla \"Jorge Videla\") came to power in 1976, the atmosphere in Argentina grew increasingly \n", + "oppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \n", + "country. At a concert in [La Plata](/wiki/La_Plata \"La Plata\") in 1979, Sosa was searched and arrested on stage, \n", + "along with all those attending the concert.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Their release came\n", + "about through international intervention.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Despite attempts to hold more \n", + "concerts, she was officially barred from performing by the military regime.[[5]](#cite_note-:0-5) Banned in her own\n", + "country, she moved to Paris and then to [Madrid](/wiki/Madrid \n", + "\"Madrid\").[[8]](#cite_note-Mercedes_Sosa:_Obituary-8)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)She has \n", + "spoken publicly about her artistic and emotional struggles during this period of her life.[[5]](#cite_note-:0-5) \n", + "While in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\n", + "Acuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, [Patricio \n", + "Manns](/wiki/Patricio_Manns \"Patricio Manns\"). The song, which he wrote while also in political exile, expresses \n", + "the sorrow he felt from being separated from his homeland.[[16]](#cite_note-16) She related to this feeling and \n", + "struggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\n", + "problem, a problem of morale...It wasn’t my throat, or anything physical\". [[5]](#cite_note-:0-5)\n", + "\n", + "Sosa returned to Argentina from her exile in Europe in February of \n", + "1982,[[17]](#cite_note-:1-17)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) several months before the \n", + "military regime collapsed as a result of the [Falklands War](/wiki/Falklands_War \"Falklands War\"), and gave a \n", + "series of concerts at the *[Teatro Ópera](/wiki/Teatro_Opera \"Teatro Opera\")* in Buenos Aires, where she invited \n", + "many of her younger colleagues to share the stage. A double album of recordings from these performances became an \n", + "instant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\n", + "largely ignored by mainstream media in the country.[[17]](#cite_note-:1-17) In subsequent years, Sosa continued to \n", + "tour both in Argentina and abroad, performing in such venues as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln \n", + "Center\") in New York City and the *[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\")* in Paris. \n", + "In poor health for much of the 1990s, she performed a comeback show in Argentina in \n", + "1998.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) In 1994, she played in the [Sistine Chapel](/wiki/Sistine_Chapel \n", + "\"Sistine Chapel\") in Vatican City.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) In 2002, she \n", + "sold out both [Carnegie Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") in New York and the [Colosseum](/wiki/Colosseum \n", + "\"Colosseum\") in Rome in the same year.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg)](/wiki/File:Mer\n", + "cedes_Sosa.jpg)\n", + "\n", + "Sosa in 1973\n", + "\n", + "A supporter of [Perón](/wiki/Juan_Per%C3%B3n \"Juan Perón\"), she favored leftist causes throughout her life. She \n", + "supported President [Raul Alfonsin](/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\") in the election of 1983 which \n", + "marked the return of democracy in Argentina following the dictatorship. She referred to this election as \n", + "\"Argentina's Spring\"[[18]](#cite_note-18) She opposed President [Carlos Menem](/wiki/Carlos_Menem \"Carlos Menem\"), \n", + "who was in office from 1989 to 1999, and supported the election of [Néstor Kirchner](/wiki/N%C3%A9stor_Kirchner \n", + "\"Néstor Kirchner\"), who became president in 2003.[[19]](#cite_note-19)\n", + "Sosa was a [UNESCO Goodwill Ambassador](/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\") for Latin \n", + "America and the Caribbean.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)[[20]](#cite_note-20)\n", + "\n", + "Sosa disliked being identified as a protest singer.[[21]](#cite_note-21)[[22]](#cite_note-22) While she was \n", + "outright in her political stances, Sosa said the following on the position of the artist:\n", + "\n", + "> “An artist isn’t political in the party political sense – they have a constituency, which is their public – it is\n", + "the poetry that matters most of all.”\n", + "\n", + "In a career spanning four decades, she worked with performers across several genres and generations, folk, opera, \n", + "pop, rock, including [Martha Argerich](/wiki/Martha_Argerich \"Martha Argerich\"), [Andrea \n", + "Bocelli](/wiki/Andrea_Bocelli \"Andrea Bocelli\"), [David Broza](/wiki/David_Broza \"David Broza\"), [Franco \n", + "Battiato](/wiki/Franco_Battiato \"Franco Battiato\"), [Jaime Roos](/wiki/Jaime_Roos \"Jaime Roos\"), [Joan \n", + "Baez](/wiki/Joan_Baez \"Joan Baez\"), [Francis Cabrel](/wiki/Francis_Cabrel \"Francis Cabrel\"), [Gal \n", + "Costa](/wiki/Gal_Costa \"Gal Costa\"), [Luz Casal](/wiki/Luz_Casal \"Luz Casal\"), [Lila Downs](/wiki/Lila_Downs \"Lila \n", + "Downs\"), [Lucio Dalla](/wiki/Lucio_Dalla \"Lucio Dalla\"), [Maria Farantouri](/wiki/Maria_Farantouri \"Maria \n", + "Farantouri\"), [Lucecita Benitez](/wiki/Lucecita_Benitez \"Lucecita Benitez\"), [Nilda \n", + "Fernández](/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"), [Charly Garcia](/wiki/Charly_Garcia \"Charly Garcia\"), \n", + "[León Gieco](/wiki/Le%C3%B3n_Gieco \"León Gieco\"), [Gian Marco](/wiki/Gian_Marco \"Gian Marco\"), [Nana \n", + "Mouskouri](/wiki/Nana_Mouskouri \"Nana Mouskouri\"), [Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"), \n", + "[Holly Near](/wiki/Holly_Near \"Holly Near\"), [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\"), \n", + "[Pata Negra](/wiki/Pata_Negra \"Pata Negra\"), [Fito Páez](/wiki/Fito_P%C3%A1ez \"Fito Páez\"), [Franco De \n", + "Vita](/wiki/Franco_De_Vita \"Franco De Vita\"), [Lourdes Pérez](/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"), [Luciano \n", + "Pavarotti](/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"), [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \"Silvio \n", + "Rodríguez\"), [Ismael Serrano](/wiki/Ismael_Serrano \"Ismael Serrano\"), [Shakira](/wiki/Shakira \"Shakira\"), \n", + "[Sting](/wiki/Sting_(musician) \"Sting (musician)\"), [Caetano Veloso](/wiki/Caetano_Veloso \"Caetano \n", + "Veloso\"),[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) [Julieta Venegas](/wiki/Julieta_Venegas\n", + "\"Julieta Venegas\"), [Gustavo Cerati](/wiki/Gustavo_Cerati \"Gustavo Cerati\") and [Konstantin \n", + "Wecker](/wiki/Konstantin_Wecker \"Konstantin Wecker\")[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10\n", + "..._This content has been truncated to stay below 50000 characters_...\n", + " * [Roberto Pires](/w/index.php?title=Roberto_Pires&action=edit&redlink=1 \"Roberto Pires (page does not exist)\") * \n", + "[Ronaldo Correia de Brito](/w/index.php?title=Ronaldo_Correia_de_Brito&action=edit&redlink=1 \"Ronaldo Correia de \n", + "Brito (page does not exist)\") * [Rosa Maria dos Santos \n", + "Alves](/w/index.php?title=Rosa_Maria_dos_Santos_Alves&action=edit&redlink=1 \"Rosa Maria dos Santos Alves (page does\n", + "not exist)\") * [Rubem Braga](/wiki/Rubem_Braga \"Rubem Braga\") * [Sérgio Mamberti](/wiki/S%C3%A9rgio_Mamberti \n", + "\"Sérgio Mamberti\") * [Sociedade Junina Bumba Meu Boi da \n", + "Liberdade](/w/index.php?title=Sociedade_Junina_Bumba_Meu_Boi_da_Liberdade&action=edit&redlink=1 \"Sociedade Junina \n", + "Bumba Meu Boi da Liberdade (page does not exist)\") * [Tomie Ohtake](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Walda \n", + "Marques](/w/index.php?title=Walda_Marques&action=edit&redlink=1 \"Walda Marques (page does not exist)\") * [Walter \n", + "Pinto](/w/index.php?title=Walter_Pinto&action=edit&redlink=1 \"Walter Pinto (page does not exist)\") |\n", + "| 2014 | * [Alex Atala](/wiki/Alex_Atala \"Alex Atala\") * [Alexandre Herchcovitch](/wiki/Alexandre_Herchcovitch \n", + "\"Alexandre Herchcovitch\") * [Bernardo Paz](/wiki/Bernardo_Paz \"Bernardo Paz\") * [Bruno e \n", + "Marrone](/wiki/Bruno_e_Marrone \"Bruno e Marrone\") * [Celso Frateschi](/wiki/Celso_Frateschi \"Celso Frateschi\") * \n", + "[Chico de Assis](/w/index.php?title=Chico_de_Assis&action=edit&redlink=1 \"Chico de Assis (page does not exist)\") * \n", + "[Eliane Potiguara](/w/index.php?title=Eliane_Potiguara&action=edit&redlink=1 \"Eliane Potiguara (page does not \n", + "exist)\") * [Henricredo Coelho](/w/index.php?title=Henricredo_Coelho&action=edit&redlink=1 \"Henricredo Coelho (page \n", + "does not exist)\") * [Hermano Vianna](/w/index.php?title=Hermano_Vianna&action=edit&redlink=1 \"Hermano Vianna (page \n", + "does not exist)\") * [Jenner Augusto](/w/index.php?title=Jenner_Augusto&action=edit&redlink=1 \"Jenner Augusto (page \n", + "does not exist)\") * [José Carlos Meirelles](/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\") * [Júlio \n", + "Medaglia](/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\") * [Mano Brown](/wiki/Mano_Brown \"Mano Brown\") * [Marisa \n", + "Monte](/wiki/Marisa_Monte \"Marisa Monte\") * [Matheus Nachtergaele](/wiki/Matheus_Nachtergaele \"Matheus \n", + "Nachtergaele\") * [Ogã Bangbala](/w/index.php?title=Og%C3%A3_Bangbala&action=edit&redlink=1 \"Ogã Bangbala (page does\n", + "not exist)\") * [Orlando Senna](/w/index.php?title=Orlando_Senna&action=edit&redlink=1 \"Orlando Senna (page does not\n", + "exist)\") * [Oskar Metsavaht](/wiki/Oskar_Metsavaht \"Oskar Metsavaht\") * [Patrícia \n", + "Pillar](/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\") * Paulo Martins * [Tião \n", + "Oleiro](/w/index.php?title=Ti%C3%A3o_Oleiro&action=edit&redlink=1 \"Tião Oleiro (page does not exist)\") * [Vange \n", + "Leonel](/wiki/Vange_Leonel \"Vange Leonel\") |\n", + "| 2015 | * [Adylson Godoy](/w/index.php?title=Adylson_Godoy&action=edit&redlink=1 \"Adylson Godoy (page does not \n", + "exist)\") * [Ailton Krenak](/wiki/Ailton_Krenak \"Ailton Krenak\") * [Aldyr Schlee](/wiki/Aldyr_Schlee \"Aldyr Schlee\")\n", + "* [Antônio Araújo](/w/index.php?title=Ant%C3%B4nio_Ara%C3%BAjo&action=edit&redlink=1 \"Antônio Araújo (page does not\n", + "exist)\") * [Arnaldo Antunes](/wiki/Arnaldo_Antunes \"Arnaldo Antunes\") * [As Ceguinhas de Campina \n", + "Grande](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n", + "(page does not exist)\") * [Augusto de Campos](/wiki/Augusto_de_Campos \"Augusto de Campos\") * [Casa de Cinema de \n", + "Porto Alegre](/w/index.php?title=Casa_de_Cinema_de_Porto_Alegre&action=edit&redlink=1 \"Casa de Cinema de Porto \n", + "Alegre (page does not exist)\") * [Centro de Memória do \n", + "Circo](/w/index.php?title=Centro_de_Mem%C3%B3ria_do_Circo&action=edit&redlink=1 \"Centro de Memória do Circo (page \n", + "does not exist)\") * [Cesare La Rocca](/w/index.php?title=Cesare_La_Rocca&action=edit&redlink=1 \"Cesare La Rocca \n", + "(page does not exist)\") * [Comissão Guarani \n", + "Yvyrupa](/w/index.php?title=Comiss%C3%A3o_Guarani_Yvyrupa&action=edit&redlink=1 \"Comissão Guarani Yvyrupa (page \n", + "does not exist)\") * [Daniela Mercury](/wiki/Daniela_Mercury \"Daniela Mercury\") * [Davi Kopenawa \n", + "Yanomami](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Eva \n", + "Schul](/w/index.php?title=Eva_Schul&action=edit&redlink=1 \"Eva Schul (page does not exist)\") * [Humberto \n", + "Teixeira](/wiki/Humberto_Teixeira \"Humberto Teixeira\") * [Italo \n", + "Campofiorito](/w/index.php?title=Italo_Campofiorito&action=edit&redlink=1 \"Italo Campofiorito (page does not \n", + "exist)\") * Mestre [João Grande](/wiki/Jo%C3%A3o_Grande \"João Grande\") * [José \n", + "Mourão](/w/index.php?title=Jos%C3%A9_Mour%C3%A3o&action=edit&redlink=1 \"José Mourão (page does not exist)\") * [Luís\n", + "Humberto](/w/index.php?title=Lu%C3%ADs_Humberto&action=edit&redlink=1 \"Luís Humberto (page does not exist)\") * Mãe \n", + "[Beth de Oxum](/w/index.php?title=Beth_de_Oxum&action=edit&redlink=1 \"Beth de Oxum (page does not exist)\") * \n", + "[Marcelo Yuka](/wiki/Marcelo_Yuka \"Marcelo Yuka\") * [Niède Guidon](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * [Paulo\n", + "Herkenhoff](/w/index.php?title=Paulo_Herkenhoff&action=edit&redlink=1 \"Paulo Herkenhoff (page does not exist)\") * \n", + "[Rolando Boldrin](/wiki/Rolando_Boldrin \"Rolando Boldrin\") * [Ruy \n", + "Cezar](/w/index.php?title=Ruy_Cezar&action=edit&redlink=1 \"Ruy Cezar (page does not exist)\") * [Sociedade Musical \n", + "Curica](/w/index.php?title=Curica_(band)&action=edit&redlink=1 \"Curica (band) (page does not exist)\") * [Sônia \n", + "Guajajara](/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\") * [Tribo de \n", + "Atuadores](/w/index.php?title=Tribo_de_Atuadores&action=edit&redlink=1 \"Tribo de Atuadores (page does not exist)\") \n", + "* [Uruhu Mehinako](/w/index.php?title=Uruhu_Mehinako&action=edit&redlink=1 \"Uruhu Mehinako (page does not exist)\") \n", + "* [Vanisa Santiago](/w/index.php?title=Vanisa_Santiago&action=edit&redlink=1 \"Vanisa Santiago (page does not \n", + "exist)\") * [Vera Tostes](/w/index.php?title=Vera_Tostes&action=edit&redlink=1 \"Vera Tostes (page does not exist)\") \n", + "* [Walter Carvalho](/wiki/Walter_Carvalho \"Walter Carvalho\") |\n", + "| 2016 | * [Abel Gomes](/w/index.php?title=Abel_Gomes&action=edit&redlink=1 \"Abel Gomes (page does not exist)\") * \n", + "[Alcymar Monteiro](/w/index.php?title=Alcymar_Monteiro&action=edit&redlink=1 \"Alcymar Monteiro (page does not \n", + "exist)\") * [Ana Mae Barbosa](/w/index.php?title=Ana_Mae_Barbosa&action=edit&redlink=1 \"Ana Mae Barbosa (page does \n", + "not exist)\") * [Andrucha Waddington](/wiki/Andrucha_Waddington \"Andrucha Waddington\") * [Beatriz \n", + "Milhazes](/wiki/Beatriz_Milhazes \"Beatriz Milhazes\") * [Carlinhos de \n", + "Jesus](/w/index.php?title=Carlinhos_de_Jesus&action=edit&redlink=1 \"Carlinhos de Jesus (page does not exist)\") * \n", + "[Carlos Alberto Serpa de Oliveira](/w/index.php?title=Carlos_Alberto_Serpa_de_Oliveira&action=edit&redlink=1 \n", + "\"Carlos Alberto Serpa de Oliveira (page does not exist)\") * [Carlos Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * \n", + "[Clementina de Jesus](/wiki/Clementina_de_Jesus \"Clementina de Jesus\") * [Dona Ivone Lara](/wiki/Dona_Ivone_Lara \n", + "\"Dona Ivone Lara\") * [Donga](/wiki/Donga_(musician) \"Donga (musician)\") * [Fernando \n", + "Meirelles](/wiki/Fernando_Meirelles \"Fernando Meirelles\") * [Ferreira Gullar](/wiki/Ferreira_Gullar \"Ferreira \n", + "Gullar\") * [Focus Cia. De Dança](/w/index.php?title=Focus_Cia._De_Dan%C3%A7a&action=edit&redlink=1 \"Focus Cia. De \n", + "Dança (page does not exist)\") * [Fred Gelli](/w/index.php?title=Fred_Gelli&action=edit&redlink=1 \"Fred Gelli (page \n", + "does not exist)\") * [Fundação Darcy \n", + "Ribeiro](/w/index.php?title=Funda%C3%A7%C3%A3o_Darcy_Ribeiro&action=edit&redlink=1 \"Fundação Darcy Ribeiro (page \n", + "does not exist)\") * [Grupo Teatro da Laje](/w/index.php?title=Grupo_Teatro_da_Laje&action=edit&redlink=1 \"Grupo \n", + "Teatro da Laje (page does not exist)\") * [Instituto Ricardo Brennand](/wiki/Ricardo_Brennand_Institute \"Ricardo \n", + "Brennand Institute\") * [Isaurinha Garcia](/w/index.php?title=Isaurinha_Garcia&action=edit&redlink=1 \"Isaurinha \n", + "Garcia (page does not exist)\") * [Ismael Silva](/wiki/Ismael_Silva_(musician) \"Ismael Silva (musician)\") * [Jorge \n", + "Aragão](/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\") * [Jovelina Pérola Negra](/wiki/Jovelina_P%C3%A9rola_Negra \n", + "\"Jovelina Pérola Negra\") * [Maracatu Feminino Coração \n", + "Nazareno](/w/index.php?title=Maracatu_Feminino_Cora%C3%A7%C3%A3o_Nazareno&action=edit&redlink=1 \"Maracatu Feminino \n", + "Coração Nazareno (page does not exist)\") * [Marcus \n", + "Faustini](/w/index.php?title=Marcus_Faustini&action=edit&redlink=1 \"Marcus Faustini (page does not exist)\") * \n", + "[Mauro Mendonça](/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\") * [Museu do \n", + "Samba](/w/index.php?title=Centro_Cultural_Cartola&action=edit&redlink=1 \"Centro Cultural Cartola (page does not \n", + "exist)\") * [Neguinho da Beija-Flor](/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\") * [Nelson \n", + "Sargento](/wiki/Nelson_Sargento \"Nelson Sargento\") * [Noel Rosa](/wiki/Noel_Rosa \"Noel Rosa\") * \n", + "[Papete](/w/index.php?title=Papete&action=edit&redlink=1 \"Papete (page does not exist)\") * [Ricardo Cravo \n", + "Albin](/w/index.php?title=Ricardo_Cravo_Albin&action=edit&redlink=1 \"Ricardo Cravo Albin (page does not exist)\") * \n", + "[Rildo Hora](/w/index.php?title=Rildo_Hora&action=edit&redlink=1 \"Rildo Hora (page does not exist)\") * [Rosa \n", + "Magalhães](/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\") * [Rosa Maria \n", + "Araújo](/w/index.php?title=Rosa_Maria_Ara%C3%BAjo&action=edit&redlink=1 \"Rosa Maria Araújo (page does not exist)\") \n", + "* [Silas de Oliveira](/w/index.php?title=Silas_de_Oliveira&action=edit&redlink=1 \"Silas de Oliveira (page does not \n", + "exist)\") * [Vik Muniz](/wiki/Vik_Muniz \"Vik Muniz\") |\n", + "| 2017 | * [Afonso Oliveira](/w/index.php?title=Afonso_Oliveira&action=edit&redlink=1 \"Afonso Oliveira (page does \n", + "not exist)\") * [Ana Maria Nobrega Miranda](/w/index.php?title=Ana_Maria_Nobrega_Miranda&action=edit&redlink=1 \"Ana \n", + "Maria Nobrega Miranda (page does not exist)\") * [Augusto \n", + "Marzagão](/w/index.php?title=Augusto_Marzag%C3%A3o&action=edit&redlink=1 \"Augusto Marzagão (page does not exist)\") \n", + "* [Beto Kelner](/w/index.php?title=Beto_Kelner&action=edit&redlink=1 \"Beto Kelner (page does not exist)\") * \n", + "[Boni](/w/index.php?title=Jos%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&action=edit&redlink=1 \"José Bonifácio de \n", + "Oliveira Sobrinho (page does not exist)\") * [Carla Camurati](/wiki/Carla_Camurati \"Carla Camurati\") * [Carlos \n", + "Tufvesson](/wiki/Carlos_Tufvesson \"Carlos Tufvesson\") * [Cláudia Costin](/wiki/Cl%C3%A1udia_Costin \"Cláudia \n", + "Costin\") * [Domingo Alzugaray](/wiki/Domingo_Alzugaray \"Domingo Alzugaray\") * [Dona Onete](/wiki/Dona_Onete \"Dona \n", + "Onete\") * [Eduardo Portella](/wiki/Eduardo_Portella \"Eduardo Portella\") * [Eduardo Saron \n", + "Nunes](/w/index.php?title=Eduardo_Saron_Nunes&action=edit&redlink=1 \"Eduardo Saron Nunes (page does not exist)\") * \n", + "[Fernando Alterio](/w/index.php?title=Fernando_Alterio&action=edit&redlink=1 \"Fernando Alterio (page does not \n", + "exist)\") * [Galo da Madrugada](/wiki/Galo_da_Madrugada \"Galo da Madrugada\") * [Genival \n", + "Lacerda](/wiki/Genival_Lacerda \"Genival Lacerda\") * [Ivo \n", + "Barroso](/w/index.php?title=Ivo_Barroso&action=edit&redlink=1 \"Ivo Barroso (page does not exist)\") * [Jair de \n", + "Souza](/w/index.php?title=Jair_de_Souza&action=edit&redlink=1 \"Jair de Souza (page does not exist)\") * [Luciane \n", + "Gorgulho](/w/index.php?title=Luciane_Gorgulho&action=edit&redlink=1 \"Luciane Gorgulho (page does not exist)\") * \n", + "[Luis Severiano Ribeiro](/w/index.php?title=Luis_Severiano_Ribeiro&action=edit&redlink=1 \"Luis Severiano Ribeiro \n", + "(page does not exist)\") * [Luiz Calainho](/w/index.php?title=Luiz_Calainho&action=edit&redlink=1 \"Luiz Calainho \n", + "(page does not exist)\") * [Marcelo Bertini](/w/index.php?title=Marcelo_Bertini&action=edit&redlink=1 \"Marcelo \n", + "Bertini (page does not exist)\") * [Marcelo Bratke](/wiki/Marcelo_Bratke \"Marcelo Bratke\") * [Marcelo \n", + "Dantas](/w/index.php?title=Marcelo_Dantas&action=edit&redlink=1 \"Marcelo Dantas (page does not exist)\") * [Maria \n", + "Ignez Mantovani](/w/index.php?title=Maria_Ignez_Mantovani&action=edit&redlink=1 \"Maria Ignez Mantovani (page does \n", + "not exist)\") * [Moeller & Botelho Produções \n", + "Artísticas](/w/index.php?title=Moeller_%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&action=edit&redlink=1 \n", + "\"Moeller & Botelho Produções Artísticas (page does not exist)\") * Mãe [Neide Oyá \n", + "D´Oxum](/w/index.php?title=Neide_Oy%C3%A1_D%C2%B4Oxum&action=edit&redlink=1 \"Neide Oyá D´Oxum (page does not \n", + "exist)\") * [Paulo Cruz](/w/index.php?title=Paulo_Cruz&action=edit&redlink=1 \"Paulo Cruz (page does not exist)\") * \n", + "[Pierre André Mantovani](/w/index.php?title=Pierre_Andr%C3%A9_Mantovani&action=edit&redlink=1 \"Pierre André \n", + "Mantovani (page does not exist)\") * [Renato Aragão](/wiki/Renato_Arag%C3%A3o \"Renato Aragão\") * [Ricardo \n", + "Amaral](/w/index.php?title=Ricardo_Amaral&action=edit&redlink=1 \"Ricardo Amaral (page does not exist)\") * [Roberto \n", + "Minczuk](/wiki/Roberto_Minczuk \"Roberto Minczuk\") * [Roberto Santucci](/wiki/Roberto_Santucci \"Roberto Santucci\") |\n", + "| 2018 | * [Abelardo Barbosa](/wiki/Chacrinha \"Chacrinha\") * [Antonio \n", + "Mazzafera](/w/index.php?title=Antonio_Mazzafera&action=edit&redlink=1 \"Antonio Mazzafera (page does not exist)\") * \n", + "[Biblioteca Oliveira Lima](/w/index.php?title=Biblioteca_Oliveira_Lima&action=edit&redlink=1 \"Biblioteca Oliveira \n", + "Lima (page does not exist)\") * [Bruno Wainer](/w/index.php?title=Bruno_Wainer&action=edit&redlink=1 \"Bruno Wainer \n", + "(page does not exist)\") * [Carlos Saldanha](/wiki/Carlos_Saldanha \"Carlos Saldanha\") * [Carlos \n", + "Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * [Dedé Santana](/wiki/Ded%C3%A9_Santana \"Dedé Santana\") * [Eva \n", + "Sopher](/wiki/Eva_Sopher \"Eva Sopher\") * [Eva Wilma](/wiki/Eva_Wilma \"Eva Wilma\") * [Festival Villa \n", + "Mix](/w/index.php?title=Festival_Villa_Mix&action=edit&redlink=1 \"Festival Villa Mix (page does not exist)\") * \n", + "[Guilherme Fiuza](/w/index.php?title=Guilherme_Fiuza&action=edit&redlink=1 \"Guilherme Fiuza (page does not exist)\")\n", + "* [Instituto Histórico e Geográfico Brasileiro](/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \n", + "\"Instituto Histórico e Geográfico Brasileiro\") * [Jorge \n", + "Caldeira](/w/index.php?title=Jorge_Caldeira&action=edit&redlink=1 \"Jorge Caldeira (page does not exist)\") * [José \n", + "Bonifácio](/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\") * [Kati Almeida \n", + "Braga](/w/index.php?title=Kati_Almeida_Braga&action=edit&redlink=1 \"Kati Almeida Braga (page does not exist)\") * \n", + "[King's Brazil Institute](/w/index.php?title=King%27s_Brazil_Institute&action=edit&redlink=1 \"King's Brazil \n", + "Institute (page does not exist)\") * [Luiz Oscar \n", + "Niemeyer](/w/index.php?title=Luiz_Oscar_Niemeyer&action=edit&redlink=1 \"Luiz Oscar Niemeyer (page does not exist)\")\n", + "* [Marcelo Castello Branco](/w/index.php?title=Marcelo_Castello_Branco&action=edit&redlink=1 \"Marcelo Castello \n", + "Branco (page does not exist)\") * [Marcio Fraccaroli](/w/index.php?title=Marcio_Fraccaroli&action=edit&redlink=1 \n", + "\"Marcio Fraccaroli (page does not exist)\") * [Martim Vasques da \n", + "Cunha](/w/index.php?title=Martim_Vasques_da_Cunha&action=edit&redlink=1 \"Martim Vasques da Cunha (page does not \n", + "exist)\") * [Milton Gonçalves](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Monah \n", + "Delacy](/w/index.php?title=Monah_Delacy&action=edit&redlink=1 \"Monah Delacy (page does not exist)\") * [Museu de \n", + "Arte de São Paulo](/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\") * [Museu de Arte Moderna do \n", + "Rio de Janeiro](/w/index.php?title=Museu_de_Arte_Moderna_do_Rio_de_Janeiro&action=edit&redlink=1 \"Museu de Arte \n", + "Moderna do Rio de Janeiro (page does not exist)\") * [Museu de Arte Moderna de São \n", + "Paulo](/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\") * [Museu da Gente \n", + "Sergipana](/w/index.php?title=Museu_da_Gente_Sergipana&action=edit&redlink=1 \"Museu da Gente Sergipana (page does \n", + "not exist)\") * [Orquestra Filarmônica de Minas \n", + "Gerais](/w/index.php?title=Orquestra_Filarm%C3%B4nica_de_Minas_Gerais&action=edit&redlink=1 \"Orquestra Filarmônica \n", + "de Minas Gerais (page does not exist)\") * [Roberto Teixeira da \n", + "Costa](/w/index.php?title=Roberto_Teixeira_da_Costa&action=edit&redlink=1 \"Roberto Teixeira da Costa (page does not\n", + "exist)\") * [Saulo Ferreira](/w/index.php?title=Saulo_Ferreira&action=edit&redlink=1 \"Saulo Ferreira (page does not \n", + "exist)\") * [Sérgio Mendes](/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\") * [Sérgio \n", + "Mielniczenko](/w/index.php?title=S%C3%A9rgio_Mielniczenko&action=edit&redlink=1 \"Sérgio Mielniczenko (page does not\n", + "exist)\") * [Thiago Soares](/wiki/Thiago_Soares \"Thiago Soares\") * [Trio \n", + "Roraimeira](/w/index.php?title=Trio_Roraimeira&action=edit&redlink=1 \"Trio Roraimeira (page does not exist)\") * [Vó\n", + "Mera](/w/index.php?title=V%C3%B3_Mera&action=edit&redlink=1 \"Vó Mera (page does not exist)\") * [Wanda \n", + "Sá](/wiki/Wanda_S%C3%A1 \"Wanda Sá\") |\n", + "\n", + "| [Authority control databases](/wiki/Help:Authority_control \"Help:Authority control\") [Edit this at \n", + "Wikidata](https://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at Wikidata\") | |\n", + "| --- | --- |\n", + "| International | * [ISNI](https://isni.org/isni/0000000114681685) * [VIAF](https://viaf.org/viaf/14968654) * \n", + "[FAST](http://id.worldcat.org/fast/206968/) * \n", + "[WorldCat](https://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3) |\n", + "| National | * [Germany](https://d-nb.info/gnd/119022249) * [United \n", + "States](https://id.loc.gov/authorities/n87117284) * [France](https://catalogue.bnf.fr/ark:/12148/cb13999885k) * \n", + "[BnF data](https://data.bnf.fr/ark:/12148/cb13999885k) * [Italy](https://opac.sbn.it/nome/UBOV850079) * \n", + "[Spain](https://datos.bne.es/resource/XX1088218) * [Netherlands](http://data.bibliotheken.nl/id/thes/p071981608) * \n", + "[Norway](https://authority.bibsys.no/authority/rest/authorities/html/9050316) * \n", + "[Chile](http://www.bncatalogo.cl/F?func=direct&local_base=red10&doc_number=000157687) * \n", + "[Argentina](https://catalogo.bn.gov.ar/F/?func=direct&local_base=BNA10&doc_number=000042426) * \n", + "[Korea](https://lod.nl.go.kr/resource/KAC2020N6852) * \n", + "[Israel](https://www.nli.org.il/en/authorities/987007594420405171) * \n", + "[Catalonia](https://cantic.bnc.cat/registre/981058518702206706) |\n", + "| Artists | * [MusicBrainz](https://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577) |\n", + "| People | * [Deutsche Biographie](https://www.deutsche-biographie.de/119022249.html?language=en) * \n", + "[DDB](https://www.deutsche-digitale-bibliothek.de/person/gnd/119022249) |\n", + "| Other | * [IdRef](https://www.idref.fr/08071613X) * [SNAC](https://snaccooperative.org/ark:/99166/w67n4hns) |\n", + "\n", + "[Portals](/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"):\n", + "\n", + "* ![flag](//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png)\n", + "[Argentina](/wiki/Portal:Argentina \"Portal:Argentina\")\n", + "* ![](//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png) [Latin \n", + "music](/wiki/Portal:Latin_music \"Portal:Latin music\")\n", + "\n", + "![](https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1&usesul3=1)\n", + "\n", + "Retrieved from \"\"\n", + "\n", + "[Categories](/wiki/Help:Category \"Help:Category\"):\n", + "\n", + "* [1935 births](/wiki/Category:1935_births \"Category:1935 births\")\n", + "* [2009 deaths](/wiki/Category:2009_deaths \"Category:2009 deaths\")\n", + "* [Latin Grammy Award winners](/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\")\n", + "* [20th-century Argentine women singers](/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century\n", + "Argentine women singers\")\n", + "* [Argentine activists](/wiki/Category:Argentine_activists \"Category:Argentine activists\")\n", + "* [Argentine women activists](/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\")\n", + "* [Argentine people of French descent](/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people\n", + "of French descent\")\n", + "* [Argentine people of Diaguita descent](/wiki/Category:Argentine_people_of_Diaguita_descent \"Category:Argentine \n", + "people of Diaguita descent\")\n", + "* [Argentine people of Quechua descent](/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine \n", + "people of Quechua descent\")\n", + "* [Deaths from kidney failure in Argentina](/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths\n", + "from kidney failure in Argentina\")\n", + "* [People from San Miguel de Tucumán](/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from \n", + "San Miguel de Tucumán\")\n", + "* [Nueva canción musicians](/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\")\n", + "* [Bombo legüero players](/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\")\n", + "* [Latin Grammy Lifetime Achievement Award winners](/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \n", + "\"Category:Latin Grammy Lifetime Achievement Award winners\")\n", + "* [Recipients of the Order of Cultural Merit \n", + "(Brazil)](/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_(Brazil) \"Category:Recipients of the Order of \n", + "Cultural Merit (Brazil)\")\n", + "* [20th-century drummers](/wiki/Category:20th-century_drummers \"Category:20th-century drummers\")\n", + "* [Women in Latin music](/wiki/Category:Women_in_Latin_music \"Category:Women in Latin music\")\n", + "\n", + "Hidden categories:\n", + "\n", + "* [All articles with dead external links](/wiki/Category:All_articles_with_dead_external_links \"Category:All \n", + "articles with dead external links\")\n", + "* [Articles with dead external links from June \n", + "2024](/wiki/Category:Articles_with_dead_external_links_from_June_2024 \"Category:Articles with dead external links \n", + "from June 2024\")\n", + "* [CS1 Spanish-language sources (es)](/wiki/Category:CS1_Spanish-language_sources_(es) \"Category:CS1 \n", + "Spanish-language sources (es)\")\n", + "* [CS1 maint: numeric names: authors list](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 \n", + "maint: numeric names: authors list\")\n", + "* [CS1 maint: url-status](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\")\n", + "* [Webarchive template wayback links](/wiki/Category:Webarchive_template_wayback_links \"Category:Webarchive \n", + "template wayback links\")\n", + "* [Articles with German-language sources (de)](/wiki/Category:Articles_with_German-language_sources_(de) \n", + "\"Category:Articles with German-language sources (de)\")\n", + "* [Articles with short description](/wiki/Category:Articles_with_short_description \"Category:Articles with short \n", + "description\")\n", + "* [Short description is different from Wikidata](/wiki/Category:Short_description_is_different_from_Wikidata \n", + "\"Category:Short description is different from Wikidata\")\n", + "* [Use dmy dates from July 2023](/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy dates from July \n", + "2023\")\n", + "* [Wikipedia indefinitely move-protected pages](/wiki/Category:Wikipedia_indefinitely_move-protected_pages \n", + "\"Category:Wikipedia indefinitely move-protected pages\")\n", + "* [Articles with hCards](/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\")\n", + "* [Pages with Latin American Spanish IPA](/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with\n", + "Latin American Spanish IPA\")\n", + "* [All articles with unsourced statements](/wiki/Category:All_articles_with_unsourced_statements \"Category:All \n", + "articles with unsourced statements\")\n", + "* [Articles with unsourced statements from December \n", + "2023](/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \n", + "statements from December 2023\")\n", + "* [Commons category link is on Wikidata](/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons \n", + "category link is on Wikidata\")\n", + "\n", + "* This page was last edited on 19 March 2025, at 08:35 (UTC).\n", + "* Text is available under the [Creative Commons Attribution-ShareAlike 4.0 \n", + "License](/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \n", + "\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\");\n", + " additional terms may apply. By using this site, you agree to the [Terms of \n", + "Use](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \n", + "\"foundation:Special:MyLanguage/Policy:Terms of Use\") and [Privacy \n", + "Policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \n", + "\"foundation:Special:MyLanguage/Policy:Privacy policy\"). Wikipedia® is a registered trademark of the [Wikimedia \n", + "Foundation, Inc.](https://wikimediafoundation.org/), a non-profit organization.\n", + "\n", + "* [Privacy policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy)\n", + "* [About Wikipedia](/wiki/Wikipedia:About)\n", + "* [Disclaimers](/wiki/Wikipedia:General_disclaimer)\n", + "* [Contact Wikipedia](//en.wikipedia.org/wiki/Wikipedia:Contact_us)\n", + "* [Code of Conduct](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct)\n", + "* [Developers](https://developer.wikimedia.org)\n", + "* [Statistics](https://stats.wikimedia.org/#/en.wikipedia.org)\n", + "* [Cookie statement](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement)\n", + "* [Mobile view](//en.m.wikipedia.org/w/index.php?title=Mercedes_Sosa&mobileaction=toggle_view_mobile)\n", + "\n", + "* [![Wikimedia Foundation](/static/images/footer/wikimedia.svg)](https://www.wikimedia.org/)\n", + "* [![Powered by MediaWiki](/w/resources/assets/mediawiki_compact.svg)](https://www.mediawiki.org/)\n", + "\n", + "Search\n", + "\n", + "Search\n", + "\n", + "Toggle the table of contents\n", + "\n", + "Mercedes Sosa\n", + "\n", + "49 languages\n", + "[Add topic](#)\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 3: Duration 4.92 seconds| Input tokens: 8,193 | Output tokens: 500]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 3: Duration 4.92 seconds| Input tokens: 8,193 | Output tokens: 500]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m4\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: I have the content of the Wikipedia page. I need to find the \"Discography\" section and then the \"Studio   \n",
+       "albums\" subsection. I will then look for albums released between 2000 and 2009.                                    \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "discography_section = page_content.split(\"== Discography ==\")[1]                                                   \n",
+       "studio_albums_section = discography_section.split(\"=== Studio albums ===\")[1]                                      \n",
+       "print(studio_albums_section)                                                                                       \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhave\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mWikipedia\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mneed\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Discography\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msubsection.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlook\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mreleased\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbetween\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2000\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2009.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_section\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.split(\"==\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m==\")[1]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_section\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_section.split(\"===\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m===\")[1]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mprint(studio_albums_section)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  discography_section = page_content.split(\"== Discography ==\")[1]                                                 \n",
+       "  studio_albums_section = discography_section.split(\"=== Studio albums ===\")[1]                                    \n",
+       "  print(studio_albums_section)                                                                                     \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mdiscography_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34msplit\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m== Discography ==\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_section\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34msplit\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m=== Studio albums ===\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Code execution failed at line 'discography_section = page_content.split(\"== Discography ==\")[1\\]' due to: \n",
+       "InterpreterError: Could not index ['Mercedes Sosa - Wikipedia\\n\\n[Jump to content\\](#bodyContent)\\n\\nMain \n",
+       "menu\\n\\nMain menu\\n\\nmove to sidebar\\nhide\\n\\nNavigation\\n\\n* [Main page\\](/wiki/Main_Page \"Visit the main page \n",
+       "[z\\]\")\\n* [Contents\\](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\\n* [Current \n",
+       "events\\](/wiki/Portal:Current_events \"Articles related to current events\")\\n* [Random \n",
+       "article\\](/wiki/Special:Random \"Visit a randomly selected article [x\\]\")\\n* [About \n",
+       "Wikipedia\\](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\\n* [Contact \n",
+       "us\\](//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\")\\n\\nContribute\\n\\n* \n",
+       "[Help\\](/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\")\\n* [Learn to \n",
+       "edit\\](/wiki/Help:Introduction \"Learn how to edit Wikipedia\")\\n* [Community \n",
+       "portal\\](/wiki/Wikipedia:Community_portal \"The hub for editors\")\\n* [Recent changes\\](/wiki/Special:RecentChanges \n",
+       "\"A list of recent changes to Wikipedia [r\\]\")\\n* [Upload file\\](/wiki/Wikipedia:File_upload_wizard \"Add images or \n",
+       "other media for use on Wikipedia\")\\n* [Special \n",
+       "pages\\](/wiki/Special:SpecialPages)\\n\\n[![\\](/static/images/icons/wikipedia.png)\\n\\n![Wikipedia\\](/static/images/mo\n",
+       "bile/copyright/wikipedia-wordmark-en.svg)\\n![The Free \n",
+       "Encyclopedia\\](/static/images/mobile/copyright/wikipedia-tagline-en.svg)](/wiki/Main_Page)\\n\\n[Search\\](/wiki/Speci\n",
+       "al:Search \"Search Wikipedia [f\\]\")\\n\\nSearch\\n\\nAppearance\\n\\n* \n",
+       "[Donate\\](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=\n",
+       "en)\\n* [Create account\\](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to \n",
+       "create an account and log in; however, it is not mandatory\")\\n* [Log \n",
+       "in\\](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You\\'re encouraged to log in; however, it\\'s not \n",
+       "mandatory. [o\\]\")\\n\\nPersonal tools\\n\\n* \n",
+       "[Donate\\](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=\n",
+       "en)\\n* [Create account\\](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to \n",
+       "create an account and log in; however, it is not mandatory\")\\n* [Log \n",
+       "in\\](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You\\'re encouraged to log in; however, it\\'s not \n",
+       "mandatory. [o\\]\")\\n\\nPages for logged out editors [learn more\\](/wiki/Help:Introduction)\\n\\n* \n",
+       "[Contributions\\](/wiki/Special:MyContributions \"A list of edits made from this IP address [y\\]\")\\n* \n",
+       "[Talk\\](/wiki/Special:MyTalk \"Discussion about edits from this IP address [n\\]\")\\n\\nContents\\n--------\\n\\nmove to \n",
+       "sidebar\\nhide\\n\\n* [(Top)\\](#)\\n* [1\\n  Life\\](#Life)\\n* [2\\n  Awards\\](#Awards)\\n* [3\\n  Death\\](#Death)\\n* [4\\n  \n",
+       "Tributes\\](#Tributes)\\n* [5\\n  Discography\\](#Discography)\\n\\n  Toggle Discography subsection\\n  + [5.1\\n    Studio\n",
+       "albums\\](#Studio_albums)\\n  + [5.2\\n    EPs\\](#EPs)\\n  + [5.3\\n    Live albums\\](#Live_albums)\\n  + [5.4\\n    \n",
+       "Compilation albums\\](#Compilation_albums)\\n* [6\\n  Filmography\\](#Filmography)\\n* [7\\n  Further \n",
+       "reading\\](#Further_reading)\\n* [8\\n  References\\](#References)\\n* [9\\n  External links\\](#External_links)\\n\\nToggle\n",
+       "the table of contents\\n\\nMercedes Sosa\\n=============\\n\\n49 languages\\n\\n* \n",
+       "[العربية\\](https://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا\n",
+       "– Arabic\")\\n* [Aymar aru\\](https://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\")\\n* \n",
+       "[تۆرکجه\\](https://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "South Azerbaijani\")\\n* \n",
+       "[বাংলা\\](https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%\n",
+       "B8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\")\\n* [Беларуская \n",
+       "(тарашкевіца)\\](https://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%\n",
+       "D1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian (Taraškievica orthography)\")\\n* \n",
+       "[Български\\](https://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\n",
+       "0 \"Мерседес Соса – Bulgarian\")\\n* [Brezhoneg\\](https://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \n",
+       "Breton\")\\n* [Català\\](https://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\")\\n* \n",
+       "[Čeština\\](https://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\")\\n* \n",
+       "[Dansk\\](https://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\")\\n* \n",
+       "[Deutsch\\](https://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\")\\n* \n",
+       "[Ελληνικά\\](https://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1\n",
+       "\"Μερσέδες Σόσα – Greek\")\\n* [Español\\](https://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\")\\n* \n",
+       "[Esperanto\\](https://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\")\\n* \n",
+       "[Euskara\\](https://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\")\\n* \n",
+       "[فارسی\\](https://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "Persian\")\\n* [Français\\](https://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\")\\n* \n",
+       "[Galego\\](https://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\")\\n* \n",
+       "[한국어\\](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \n",
+       "\"메르세데스 소사 – Korean\")\\n* \n",
+       "[Հայերեն\\](https://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1 \n",
+       "\"Մերսեդես Սոսա – Armenian\")\\n* [Hrvatski\\](https://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \n",
+       "Croatian\")\\n* [Ido\\](https://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\")\\n* [Bahasa \n",
+       "Indonesia\\](https://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\")\\n* \n",
+       "[Italiano\\](https://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\")\\n* \n",
+       "[עברית\\](https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \n",
+       "Hebrew\")\\n* [Latina\\](https://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\")\\n* \n",
+       "[Lëtzebuergesch\\](https://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\")\\n* \n",
+       "[Magyar\\](https://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\")\\n* \n",
+       "[മലയാളം\\](https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B\n",
+       "4%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്\\u200cസിഡസ് സോസ – Malayalam\")\\n* \n",
+       "[مصرى\\](https://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا –\n",
+       "Egyptian Arabic\")\\n* [Nederlands\\](https://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\")\\n* \n",
+       "[日本語\\](https://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3\n",
+       "%82%B5 \"メルセデス・ソーサ – Japanese\")\\n* [Norsk bokmål\\](https://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes \n",
+       "Sosa – Norwegian Bokmål\")\\n* [Occitan\\](https://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\")\\n* \n",
+       "[Polski\\](https://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\")\\n* \n",
+       "[Português\\](https://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\")\\n* [Runa \n",
+       "Simi\\](https://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\")\\n* \n",
+       "[Русский\\](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81\n",
+       "\"Соса, Мерседес – Russian\")\\n* [Scots\\](https://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\")\\n* \n",
+       "[Simple English\\](https://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\")\\n* \n",
+       "[Slovenščina\\](https://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\")\\n* \n",
+       "[Suomi\\](https://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\")\\n* \n",
+       "[Svenska\\](https://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\")\\n* \n",
+       "[Tagalog\\](https://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\")\\n* \n",
+       "[Türkçe\\](https://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\")\\n* \n",
+       "[Українська\\](https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%\n",
+       "B0 \"Мерседес Соса – Ukrainian\")\\n* [Tiếng Việt\\](https://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \n",
+       "Vietnamese\")\\n* [Zazaki\\](https://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\")\\n* \n",
+       "[中文\\](https://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 –\n",
+       "Chinese\")\\n\\n[Edit links\\](https://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit \n",
+       "interlanguage links\")\\n\\n* [Article\\](/wiki/Mercedes_Sosa \"View the content page [c\\]\")\\n* \n",
+       "[Talk\\](/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page [t\\]\")\\n\\nEnglish\\n\\n* \n",
+       "[Read\\](/wiki/Mercedes_Sosa)\\n* [Edit\\](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e\\]\")\\n* \n",
+       "[View history\\](/w/index.php?title=Mercedes_Sosa&action=history \"Past revisions of this page \n",
+       "[h\\]\")\\n\\nTools\\n\\nTools\\n\\nmove to sidebar\\nhide\\n\\nActions\\n\\n* [Read\\](/wiki/Mercedes_Sosa)\\n* \n",
+       "[Edit\\](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e\\]\")\\n* [View \n",
+       "history\\](/w/index.php?title=Mercedes_Sosa&action=history)\\n\\nGeneral\\n\\n* [What links \n",
+       "here\\](/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links to this page\n",
+       "[j\\]\")\\n* [Related changes\\](/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from \n",
+       "this page [k\\]\")\\n* [Upload file\\](//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files [u\\]\")\\n* \n",
+       "[Permanent link\\](/w/index.php?title=Mercedes_Sosa&oldid=1281260319 \"Permanent link to this revision of this \n",
+       "page\")\\n* [Page information\\](/w/index.php?title=Mercedes_Sosa&action=info \"More information about this page\")\\n* \n",
+       "[Cite this \n",
+       "page\\](/w/index.php?title=Special:CiteThisPage&page=Mercedes_Sosa&id=1281260319&wpFormIdentifier=titleform \n",
+       "\"Information on how to cite this page\")\\n* [Get shortened \n",
+       "URL\\](/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\\n* \n",
+       "[Download QR \n",
+       "code\\](/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\\n\\nPrint/export\n",
+       "\\n\\n* [Download as PDF\\](/w/index.php?title=Special:DownloadAsPdf&page=Mercedes_Sosa&action=show-download-screen \n",
+       "\"Download this page as a PDF file\")\\n* [Printable version\\](/w/index.php?title=Mercedes_Sosa&printable=yes \n",
+       "\"Printable version of this page [p\\]\")\\n\\nIn other projects\\n\\n* [Wikimedia \n",
+       "Commons\\](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa)\\n* [Wikidata \n",
+       "item\\](https://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by Wikidata \n",
+       "[g\\]\")\\n\\nAppearance\\n\\nmove to sidebar\\nhide\\n\\nFrom Wikipedia, the free encyclopedia\\n\\nArgentine singer \n",
+       "(1935–2009)\\n\\nNot to be confused with [Mercedes Sola\\](/wiki/Mercedes_Sola \"Mercedes Sola\").\\n\\n| Mercedes Sosa | \n",
+       "|\\n| --- | --- |\\n| Portrait by [Annemarie Heinrich\\](/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"), 1960s | |\\n| \n",
+       "Born | Haydée Mercedes Sosa  (1935-07-09)9 July 1935  [San Miguel de Tucumán\\](/wiki/San_Miguel_de_Tucum%C3%A1n \n",
+       "\"San Miguel de Tucumán\"), Tucumán, Argentina |\\n| Died | 4 October 2009(2009-10-04) (aged\\xa074)  [Buenos \n",
+       "Aires\\](/wiki/Buenos_Aires \"Buenos Aires\"), Argentina |\\n| Occupation | Singer |\\n| Years\\xa0active | 1950–2009 \n",
+       "|\\n| **Musical career** | |\\n| Genres | * [Folk\\](/wiki/Folk_music \"Folk music\") * [nueva \n",
+       "canción\\](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\\n| Instruments | Vocals |\\n| Musical artist | |\\n\\n**Haydée \n",
+       "Mercedes** \"**La Negra**\" **Sosa** (Latin American Spanish: [](/wiki/Help:IPA/Spanish \"Help:IPA/Spanish\"); 9 July \n",
+       "1935[[1\\]](#cite_note-birth-1) – 4 October 2009) was an [Argentine\\](/wiki/Argentines \"Argentines\") singer who was \n",
+       "popular throughout [Latin America\\](/wiki/Latin_America \"Latin America\") and many countries outside the region. \n",
+       "With her roots in [Argentine folk music\\](/wiki/Folk_music_of_Argentina \"Folk music of Argentina\"), Sosa became one\n",
+       "of the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written by many Latin American \n",
+       "songwriters. Her music made people hail her as the \"voice of the voiceless ones\".[[2\\]](#cite_note-tmc-2) She was \n",
+       "often called \"the conscience of Latin America\".[[3\\]](#cite_note-3)\\n\\nSosa performed in venues such as the \n",
+       "[Lincoln Center\\](/wiki/Lincoln_Center \"Lincoln Center\") in New York City, the [Théâtre \n",
+       "Mogador\\](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\") in Paris, the [Sistine Chapel\\](/wiki/Sistine_Chapel \n",
+       "\"Sistine Chapel\") in Vatican City, as well as sold-out shows in New York\\'s [Carnegie Hall\\](/wiki/Carnegie_Hall \n",
+       "\"Carnegie Hall\") and the Roman [Colosseum\\](/wiki/Colosseum \"Colosseum\") during her final decade of life. Her \n",
+       "career spanned four decades and she was the recipient of six [Latin Grammy\\](/wiki/Latin_Grammy \"Latin Grammy\") \n",
+       "awards (2000, 2003, 2004, 2006, 2009, 2011), including a [Latin Grammy Lifetime Achievement \n",
+       "Award\\](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") in 2004 and two \n",
+       "posthumous [Latin Grammy Award for Best Folk Album\\](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \n",
+       "Award for Best Folk Album\") in 2009 and 2011. She won the [Premio Gardel\\](/wiki/Premios_Gardel \"Premios Gardel\") \n",
+       "in 2000, the main musical award in Argentina. She served as an ambassador for [UNICEF\\](/wiki/UNICEF \n",
+       "\"UNICEF\").\\n\\nLife\\n----\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=1 \"Edit section: Life\")]\\n\\nSosa\n",
+       "was born on 9 July 1935, in [San Miguel de Tucumán\\](/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"), in \n",
+       "the [northwestern Argentine\\](/wiki/Argentine_Northwest \"Argentine Northwest\") province of \n",
+       "[Tucumán\\](/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"), of [mestizo\\](/wiki/Mestizo \"Mestizo\") ancestry. She \n",
+       "was of French, Spanish and [Diaguita\\](/wiki/Diaguita \"Diaguita\") \n",
+       "descent.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Her nickname \"la negra\", which is a \n",
+       "common nickname in Argentina for people with darker complexion, is a reference to her indigenous \n",
+       "heritage.[[5\\]](#cite_note-:0-5) Her parents, a day laborer and a washerwoman,[[6\\]](#cite_note-6) were \n",
+       "[Peronists\\](/wiki/Peronism \"Peronism\"), although they never registered in the party, and she started her career as\n",
+       "a singer for the [Peronist Party\\](/wiki/Peronist_Party \"Peronist Party\") in [Tucuman\\](/wiki/Tucum%C3%A1n_Province\n",
+       "\"Tucumán Province\") under the name Gladys Osorio.[[7\\]](#cite_note-7) In 1950, at age fifteen, she won a singing \n",
+       "competition organized by a local radio station and was given a contract to perform for two \n",
+       "months.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) She recorded her first album, *[La Voz de la \n",
+       "Zafra\\](/wiki/La_voz_de_la_zafra \"La voz de la zafra\")*, in 1959.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) A \n",
+       "performance at the 1965 [Cosquín National Folklore Festival\\](/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\")—where\n",
+       "she was introduced and brought to the stage while sitting in the audience by fellow folk singer [Jorge \n",
+       "Cafrune\\](/wiki/Jorge_Cafrune \"Jorge Cafrune\")—[[9\\]](#cite_note-test-9) brought her to the attention of the \n",
+       "Argentine public.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) Sosa and her first husband, [Manuel Oscar \n",
+       "Matus\\](/w/index.php?title=Manuel_Oscar_Matus&action=edit&redlink=1 \"Manuel Oscar Matus (page does not exist)\"), \n",
+       "with whom she had one son, were key players in the mid-60s *[nueva canción\\](/wiki/Nueva_canci%C3%B3n \"Nueva \n",
+       "canción\")* movement (which was called *nuevo cancionero* in \n",
+       "Argentina).[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Her second record was *Canciones con Fundamento*,\n",
+       "a collection of Argentine folk \n",
+       "songs.\\n\\n[![\\](//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3\n",
+       "%ADrez.jpg/250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg)](/wiki/File:Mercedes_Sosa,_F%C3%A9lix_L\n",
+       "una_y_Ariel_Ram%C3%ADrez.jpg)\\n\\nSosa with [Félix Luna\\](/wiki/F%C3%A9lix_Luna \"Félix Luna\") and [Ariel \n",
+       "Ramírez\\](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\") (at the piano)\\n\\nSosa \"spent the late 1960s building her \n",
+       "audience in Europe and among the cosmopolitan middle class in Buenos Aires, becoming in the process a much bigger \n",
+       "star\" than her contemporaries.[[11\\]](#cite_note-11)In 1967, Sosa toured the United States and Europe with great \n",
+       "success.[*(/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation needed\")*] In later years, she performed and \n",
+       "recorded extensively, broadening her repertoire to include material from throughout Latin America.\\n\\nIn the early \n",
+       "1970s, Sosa released two concept albums in collaboration with composer [Ariel Ramírez\\](/wiki/Ariel_Ram%C3%ADrez \n",
+       "\"Ariel Ramírez\") and lyricist [Félix Luna\\](/wiki/F%C3%A9lix_Luna \"Félix Luna\"): *Cantata Sudamericana* and \n",
+       "*Mujeres Argentinas* (Argentine Women). She also recorded a tribute to Chilean musician [Violeta \n",
+       "Parra\\](/wiki/Violeta_Parra \"Violeta Parra\") in 1971, including what was to become one of Sosa\\'s signature songs, \n",
+       "*[Gracias a la vida\\](/wiki/Gracias_a_la_vida \"Gracias a la \n",
+       "vida\")*.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[12\\]](#cite_note-ap-12) She further \n",
+       "popularized of songs written by [Milton Nascimento\\](/wiki/Milton_Nascimento \"Milton Nascimento\") of Brazil and \n",
+       "[Pablo Milanés\\](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") and [Silvio Rodríguez\\](/wiki/Silvio_Rodr%C3%ADguez \n",
+       "\"Silvio Rodríguez\") both from [Cuba\\](/wiki/Cuba \n",
+       "\"Cuba\").[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Throughout the decade, she released \n",
+       "albums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \n",
+       "\"Cuando tenga la tierra\", written by [Ariel Petrocelli\\](/w/index.php?title=Ariel_Petrocelli&action=edit&redlink=1 \n",
+       "\"Ariel Petrocelli (page does not exist)\") and Daniel Toro, which tackles political and social issues like wealth \n",
+       "and land inequality.[[13\\]](#cite_note-:2-13)[[14\\]](#cite_note-14) During the 1970s she was a part of two films by\n",
+       "the director [Leopoldo Torre Nilsson\\](/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"): *[El Santo de la \n",
+       "Espada\\](/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\")* in 1970 and *[Güemes, la tierra en \n",
+       "armas\\](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\")* in 1971, in which she portrayed [Juana\n",
+       "Azurduy de Padilla\\](/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"), the guerrilla military leader who \n",
+       "fought for Argentine \n",
+       "independence.[[13\\]](#cite_note-:2-13)[[15\\]](#cite_note-15)\\n\\n[![\\](//upload.wikimedia.org/wikipedia/commons/thum\n",
+       "b/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg)](/wiki/File:Mercedes_Sosa_2.jpg)\\n\\nSosa in 1972\\n\\nAfter the\n",
+       "[military junta\\](/wiki/National_Reorganization_Process \"National Reorganization Process\") of [Jorge \n",
+       "Videla\\](/wiki/Jorge_Videla \"Jorge Videla\") came to power in 1976, the atmosphere in Argentina grew increasingly \n",
+       "oppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \n",
+       "country. At a concert in [La Plata\\](/wiki/La_Plata \"La Plata\") in 1979, Sosa was searched and arrested on stage, \n",
+       "along with all those attending the concert.[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Their release \n",
+       "came about through international intervention.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) Despite attempts to hold\n",
+       "more concerts, she was officially barred from performing by the military regime.[[5\\]](#cite_note-:0-5) Banned in \n",
+       "her own country, she moved to Paris and then to [Madrid\\](/wiki/Madrid \n",
+       "\"Madrid\").[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8)[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)She has\n",
+       "spoken publicly about her artistic and emotional struggles during this period of her life.[[5\\]](#cite_note-:0-5) \n",
+       "While in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\n",
+       "Acuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, [Patricio \n",
+       "Manns\\](/wiki/Patricio_Manns \"Patricio Manns\"). The song, which he wrote while also in political exile, expresses \n",
+       "the sorrow he felt from being separated from his homeland.[[16\\]](#cite_note-16) She related to this feeling and \n",
+       "struggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\n",
+       "problem, a problem of morale...It wasn’t my throat, or anything physical\". [[5\\]](#cite_note-:0-5)\\n\\nSosa returned\n",
+       "to Argentina from her exile in Europe in February of \n",
+       "1982,[[17\\]](#cite_note-:1-17)[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) several months before the \n",
+       "military regime collapsed as a result of the [Falklands War\\](/wiki/Falklands_War \"Falklands War\"), and gave a \n",
+       "series of concerts at the *[Teatro Ópera\\](/wiki/Teatro_Opera \"Teatro Opera\")* in Buenos Aires, where she invited \n",
+       "many of her younger colleagues to share the stage. A double album of recordings from these performances became an \n",
+       "instant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\n",
+       "largely ignored by mainstream media in the country.[[17\\]](#cite_note-:1-17) In subsequent years, Sosa continued to\n",
+       "tour both in Argentina and abroad, performing in such venues as the [Lincoln Center\\](/wiki/Lincoln_Center \"Lincoln\n",
+       "Center\") in New York City and the *[Théâtre Mogador\\](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\")* in Paris.\n",
+       "In poor health for much of the 1990s, she performed a comeback show in Argentina in \n",
+       "1998.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) In 1994, she played in the [Sistine Chapel\\](/wiki/Sistine_Chapel\n",
+       "\"Sistine Chapel\") in Vatican City.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) In 2002, she \n",
+       "sold out both [Carnegie Hall\\](/wiki/Carnegie_Hall \"Carnegie Hall\") in New York and the \n",
+       "[Colosseum\\](/wiki/Colosseum \"Colosseum\") in Rome in the same \n",
+       "year.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)\\n\\n[![\\](//upload.wikimedia.org/wikipedia/\n",
+       "commons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg)](/wiki/File:Mercedes_Sosa.jpg)\\n\\nSosa in 1973\\n\\nA \n",
+       "supporter of [Perón\\](/wiki/Juan_Per%C3%B3n \"Juan Perón\"), she favored leftist causes throughout her life. She \n",
+       "supported President [Raul Alfonsin\\](/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\") in the election of 1983 which \n",
+       "marked the return of democracy in Argentina following the dictatorship. She referred to this election as \n",
+       "\"Argentina\\'s Spring\"[[18\\]](#cite_note-18) She opposed President [Carlos Menem\\](/wiki/Carlos_Menem \"Carlos \n",
+       "Menem\"), who was in office from 1989 to 1999, and supported the election of [Néstor \n",
+       "Kirchner\\](/wiki/N%C3%A9stor_Kirchner \"Néstor Kirchner\"), who became president in 2003.[[19\\]](#cite_note-19)\\nSosa\n",
+       "was a [UNESCO Goodwill Ambassador\\](/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\") for Latin \n",
+       "America and the Caribbean.[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)[[20\\]](#cite_note-20)\\n\\nSosa \n",
+       "disliked being identified as a protest singer.[[21\\]](#cite_note-21)[[22\\]](#cite_note-22) While she was outright \n",
+       "in her political stances, Sosa said the following on the position of the artist:\\n\\n> “An artist isn’t political in\n",
+       "the party political sense – they have a constituency, which is their public – it is the poetry that matters most of\n",
+       "all.”\\n\\nIn a career spanning four decades, she worked with performers across several genres and generations, folk,\n",
+       "opera, pop, rock, including [Martha Argerich\\](/wiki/Martha_Argerich \"Martha Argerich\"), [Andrea \n",
+       "Bocelli\\](/wiki/Andrea_Bocelli \"Andrea Bocelli\"), [David Broza\\](/wiki/David_Broza \"David Broza\"), [Franco \n",
+       "Battiato\\](/wiki/Franco_Battiato \"Franco Battiato\"), [Jaime Roos\\](/wiki/Jaime_Roos \"Jaime Roos\"), [Joan \n",
+       "Baez\\](/wiki/Joan_Baez \"Joan Baez\"), [Francis Cabrel\\](/wiki/Francis_Cabrel \"Francis Cabrel\"), [Gal \n",
+       "Costa\\](/wiki/Gal_Costa \"Gal Costa\"), [Luz Casal\\](/wiki/Luz_Casal \"Luz Casal\"), [Lila Downs\\](/wiki/Lila_Downs \n",
+       "\"Lila Downs\"), [Lucio Dalla\\](/wiki/Lucio_Dalla \"Lucio Dalla\"), [Maria Farantouri\\](/wiki/Maria_Farantouri \"Maria \n",
+       "Farantouri\"), [Lucecita Benitez\\](/wiki/Lucecita_Benitez \"Lucecita Benitez\"), [Nilda \n",
+       "Fernández\\](/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"), [Charly Garcia\\](/wiki/Charly_Garcia \"Charly Garcia\"), \n",
+       "[León Gieco\\](/wiki/Le%C3%B3n_Gieco \"León Gieco\"), [Gian Marco\\](/wiki/Gian_Marco \"Gian Marco\"), [Nana \n",
+       "Mouskouri\\](/wiki/Nana_Mouskouri \"Nana Mouskouri\"), [Pablo Milanés\\](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"), \n",
+       "[Holly Near\\](/wiki/Holly_Near \"Holly Near\"), [Milton Nascimento\\](/wiki/Milton_Nascimento \"Milton Nascimento\"), \n",
+       "[Pata Negra\\](/wiki/Pata_Negra \"Pata Negra\"), [Fito Páez\\](/wiki/Fito_P%C3%A1ez \"Fito Páez\"), [Franco De \n",
+       "Vita\\](/wiki/Franco_De_Vita \"Franco De Vita\"), [Lourdes Pérez\\](/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"), [Luciano\n",
+       "Pavarotti\\](/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"), [Silvio Rodríguez\\](/wiki/Silvio_Rodr%C3%ADguez \"Silvio \n",
+       "Rodríguez\"), [Ismael Serrano\\](/wiki/Ismael_Serrano \"Ismael Serrano\"), [Shakira\\](/wiki/Shakira \"Shakira\"), \n",
+       "[Sting\\](/wiki/Sting_(musician) \"Sting (musician)\"), [Caetano Veloso\\](/wiki/Caetano_Veloso \"Caetano \n",
+       "Veloso\"),[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) [Julieta \n",
+       "Venegas\\](/wiki/Julieta_Venegas \"Julieta Venegas\"), [Gustavo Cerati\\](/wiki/Gustavo_Cerati \"Gustavo Cerati\") and \n",
+       "[Konstantin Wecker\\](/wiki/Konstantin_Wecker \"Konstantin \n",
+       "Wecker\")[[10\\]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)\\n\\nSosa participated in a 1999 production of [Ariel \n",
+       "Ramírez\\](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\")\\'s *Misa Criolla*.[[23\\]](#cite_note-23) Her song *Balderrama* \n",
+       "is featured in the 2008 movie *[Che\\](/wiki/Che_(2008_film) \"Che (2008 film)\")*, starring [Benicio del \n",
+       "Toro\\](/wiki/Benicio_del_Toro \"Benicio del Toro\") as the Argentine [Marxist\\](/wiki/Marxist \"Marxist\") \n",
+       "revolutionary [Che Guevara\\](/wiki/Che_Guevara \"Che Guevara\").[[24\\]](#cite_note-24)\\n\\nSosa was the co-chair of \n",
+       "the [Earth Charter\\](/wiki/Earth_Charter \"Earth Charter\") International \n",
+       "Commission.\\n\\nAwards\\n------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=2 \"Edit section: \n",
+       "Awards\")]\\n\\nSosa won the [Latin Grammy Award for Best Folk Album\\](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \n",
+       "\"Latin Grammy Award for Best Folk Album\") in 2000 (*Misa Criolla*),[[25\\]](#cite_note-25) 2003 \n",
+       "(*Acústico*),[[26\\]](#cite_note-26) 2006 (*Corazón Libre*),[[27\\]](#cite_note-27) 2009 (*[Cantora \n",
+       "1\\](/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\")*, which also won [Best Recording \n",
+       "Package\\](/wiki/Latin_Grammy_Award_for_Best_Recording_Package \"Latin Grammy Award for Best Recording Package\") and \n",
+       "was nominated for [Album of the Year\\](/wiki/Latin_Grammy_Award_for_Album_of_the_Year \"Latin Grammy Award for Album\n",
+       "of the Year\")),[[28\\]](#cite_note-28) and 2011 (*Deja La Vida Volar*),[[29\\]](#cite_note-29) as well as several \n",
+       "international awards.\\n\\nIn 1995, [Konex Foundation\\](/wiki/Konex_Foundation \"Konex Foundation\") from Argentina \n",
+       "granted her the Diamond [Konex Award\\](/wiki/Konex_Award \"Konex Award\"), one of the most prestigious awards in \n",
+       "Argentina, as the most important personality in the popular music of her country in the last \n",
+       "decade.[[30\\]](#cite_note-30)\\n\\nDeath\\n-----\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=3 \"Edit \n",
+       "section: \n",
+       "Death\")]\\n\\n[![\\](//upload.wikimedia.org/wikipedia/commons/thumb/5/56/Funeral_de_Mercedes_Sosa.jpg/250px-Funeral_de\n",
+       "_Mercedes_Sosa.jpg)](/wiki/File:Funeral_de_Mercedes_Sosa.jpg)\\n\\nMercedes Sosa lying in repose, with her family and\n",
+       "President [Cristina Fernández de Kirchner\\](/wiki/Cristina_Fern%C3%A1ndez_de_Kirchner \"Cristina Fernández de \n",
+       "Kirchner\") viewing\\n\\nSuffering from recurrent [endocrine\\](/wiki/Endocrine_system \"Endocrine system\") and \n",
+       "[respiratory\\](/wiki/Respiratory_system \"Respiratory system\") problems in later years, the 74-year-old Sosa was \n",
+       "hospitalized in Buenos Aires on 18 September 2009.[[31\\]](#cite_note-31) She died from [multiple organ \n",
+       "failure\\](/wiki/Multiple_organ_failure \"Multiple organ failure\") on 4 October 2009, at 5:15 \n",
+       "am.[[12\\]](#cite_note-ap-12) She is survived by one son, Fabián Matus, born of her first \n",
+       "marriage.[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8)[[32\\]](#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_\n",
+       "Latin_America,\\'_dies_at_74-32) He said: \"She lived her 74 years to the fullest. She had done practically \n",
+       "everything she wanted, she didn\\'t have any type of barrier or any type of fear that limited \n",
+       "her\".[[32\\]](#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74-32) The hospital \n",
+       "expressed its sympathies to her relatives.[[33\\]](#cite_note-Argentine_folk_legend_Mercedes_Sosa_dead_at_74-33) Her\n",
+       "website featured the following: \"Her undisputed talent, her honesty and her profound convictions leave a great \n",
+       "legacy to future generations\".[[34\\]](#cite_note-Argentine_folk_icon_Sosa_dies_at_74-34)\\n\\nHer body was placed on \n",
+       "display at the [National Congress\\](/wiki/Argentine_National_Congress \"Argentine National Congress\") building in \n",
+       "Buenos Aires for the public to pay their respects, and President Fernández de Kirchner ordered three days of \n",
+       "national \n",
+       "mourning.[[32\\]](#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74-32)[[35\\]](#cite\n",
+       "_note-35) Thousands had queued by the end of the \n",
+       "day.[[34\\]](#cite_note-Argentine_folk_icon_Sosa_dies_at_74-34)[[36\\]](#cite_note-Argentine_singer_Mercedes_Sosa_die\n",
+       "s_at_74-36)\\n\\nSosa\\'s obituary in *[The Daily Telegraph\\](/wiki/The_Daily_Telegraph \"The Daily Telegraph\")* said \n",
+       "she was \"an unrivalled interpreter of works by her compatriot, the Argentine [Atahualpa \n",
+       "Yupanqui\\](/wiki/Atahualpa_Yupanqui \"Atahualpa Yupanqui\"), and Chile\\'s [Violeta Parra\\](/wiki/Violeta_Parra \n",
+       "\"Violeta Parra\")\".[[8\\]](#cite_note-Mercedes_Sosa:_Obituary-8) Helen Popper of [Reuters\\](/wiki/Reuters \"Reuters\") \n",
+       "reported her death by saying she \"fought South America\\'s dictators with her voice and became a giant of \n",
+       "contemporary Latin American music\".[[36\\]](#cite_note-Argentine_singer_Mercedes_Sosa_dies_at_74-36) Sosa received \n",
+       "three [Latin Grammy\\](/wiki/Latin_Grammy \"Latin Grammy\") nominations for her album, in 2009 . She went on to win \n",
+       "Best Folk Album about a month after her \n",
+       "death.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[10\\]](#cite_note-Latin_artist_Mercedes_S\n",
+       "osa_dies-10)\\n\\nTributes\\n--------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=4 \"Edit section: \n",
+       "Tributes\")]\\n\\nIn 2019, Sosa was celebrated by a [Google Doodle\\](/wiki/Google_Doodle \"Google Doodle\"). The doodle \n",
+       "was showcased in [Argentina\\](/wiki/Argentina \"Argentina\"), [Chile\\](/wiki/Chile \"Chile\"), [Uruguay\\](/wiki/Uruguay\n",
+       "\"Uruguay\"), [Paraguay\\](/wiki/Paraguay \"Paraguay\"), [Bolivia\\](/wiki/Bolivia \"Bolivia\"), [Peru\\](/wiki/Peru \n",
+       "\"Peru\"), [Ecuador\\](/wiki/Ecuador \"Ecuador\"), [Cuba\\](/wiki/Cuba \"Cuba\"), [Iceland\\](/wiki/Iceland \"Iceland\"), \n",
+       "Sweden, [Serbia\\](/wiki/Serbia \"Serbia\"), [Greece\\](/wiki/Greece \"Greece\"), [Israel\\](/wiki/Israel \"Israel\") and \n",
+       "[Vietnam\\](/wiki/Vietnam \"Vietnam\").[[37\\]](#cite_note-37)\\n\\nIn 2023, *[Rolling Stone\\](/wiki/Rolling_Stone \n",
+       "\"Rolling Stone\")* ranked Sosa at number 160 on its list of the 200 Greatest Singers of All \n",
+       "Time.[[38\\]](#cite_note-38)\\n\\nDiscography\\n-----------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=5\n",
+       "\"Edit section: \n",
+       "Discography\")]\\n\\n[![\\](//upload.wikimedia.org/wikipedia/commons/thumb/9/93/Mercedes_sosa.jpg/250px-Mercedes_sosa.j\n",
+       "pg)](/wiki/File:Mercedes_sosa.jpg)\\n\\nSosa in 2005, with Argentina\\'s then-First Lady (later president from 2007 to\n",
+       "2015), Cristina Fernández de Kirchner\\n\\nSosa recorded forty \n",
+       "albums.[[4\\]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[10\\]](#cite_note-Latin_artist_Mercedes_\n",
+       "Sosa_dies-10)\\n\\n### Studio albums\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=6 \"Edit section: \n",
+       "Studio albums\")]\\n\\n| Year | Album details |\\n| --- | --- |\\n| 1962 | [La Voz De La \n",
+       "Zafra\\](/wiki/La_Voz_De_La_Zafra \"La Voz De La Zafra\")  * Label: RCA |\\n| 1965 | Canciones Con Fundamento  * Label:\n",
+       "El Grillo |\\n| 1966 | Hermano  * Label: Philips |\\n| 1966 | Yo No Canto Por Cantar  * Label: Philips |\\n| 1967 | \n",
+       "Para Cantarle A Mi Gente  * Label: Philips |\\n| 1968 | Con Sabor A Mercedes Sosa  * Label: Philips |\\n| 1969 | \n",
+       "Mujeres Argentinas  * Label: Philips |\\n| 1970 | El Grito De La Tierra  * Label: Philips |\\n| 1970 | Navidad Con \n",
+       "Mercedes Sosa  * Label: Philips |\\n| 1971 | [Homenaje a Violeta Parra\\](/wiki/Homenaje_a_Violeta_Parra \"Homenaje a \n",
+       "Violeta Parra\")  * Label: Philips |\\n| 1972 | Hasta La Victoria  * Label: Philips |\\n| 1972 | Cantata Sudamericana \n",
+       "* Label: Philips |\\n| 1973 | Traigo Un Pueblo En Mi Voz  * Label: Philips |\\n| 1975 | A Que Florezca Mi Pueblo  * \n",
+       "Label: Philips |\\n| 1976 | En Dirección Del Viento  * Label: Philips |\\n| 1977 | Mercedes Sosa Interpreta A \n",
+       "Atahualpa Yupanqui  * Label: Philips |\\n| 1979 | Serenata Para La Tierra De Uno  * Label: Philips |\\n| 1981 | A \n",
+       "Quien Doy / Cuando Me Acuerdo de Mi País  * Label: Philips |\\n| 1982 | Como Un Pájaro Libre  * Label: Philips |\\n| \n",
+       "1983 | Mercedes Sosa  * Label: Philips |\\n| 1984 | ¿Será Posible El Sur?  * Label: Philips |\\n| 1985 | Vengo A \n",
+       "Ofrecer Mi Corazón  * Label: Philips |\\n| 1986 | Mercedes Sosa \\'86  * Label: Philips |\\n| 1987 | Mercedes Sosa \n",
+       "\\'87  * Label: Philips |\\n| 1993 | Sino  * Label: Philips/Polygram |\\n| 1994 | Gestos De Amor  * Label: Polydor \n",
+       "|\\n| 1996 | Escondido En Mi País  * Label: Polydor |\\n| 1997 | Alta Fidelidad (w/[Charly \n",
+       "García\\](/wiki/Charly_Garc%C3%ADa \"Charly García\"))  * Label: Mercury |\\n| 1998 | Al Despertar  * Label: Mercury \n",
+       "|\\n| 1999 | Misa Criolla  * Label: Mercury |\\n| 2005 | Corazón Libre  * Label: Edge |\\n| 2009 | [Cantora \n",
+       "1\\](/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\") (w/various artists)  * Label: RCA |\\n| 2009 | \n",
+       "[Cantora 2\\](/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\") (w/various artists)  * Label: RCA |\\n|\n",
+       "2011 | Censurada  * Label: Philips |\\n| 2015 | Lucerito  * Label: RCA |\\n\\n### \n",
+       "EPs\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=7 \"Edit section: EPs\")]\\n\\n| Year | EP details |\\n| \n",
+       "--- | --- |\\n| 1975 | Niño De Mañana  * Label: Philips |\\n\\n### Live \n",
+       "albums\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=8 \"Edit section: Live albums\")]\\n\\n| Year | Album \n",
+       "details |\\n| --- | --- |\\n| 1973 | Si Se Calla El Cantor (with Gloria Martin)  * Label: Philips |\\n| 1980 | Gravado\n",
+       "Ao Vivo No Brasil  * Label: Philips |\\n| 1982 | [Mercedes Sosa en Argentina\\](/wiki/Mercedes_Sosa_en_Argentina \n",
+       "\"Mercedes Sosa en Argentina\")  * Label: Phonogram/Philips |\\n| 1985 | Corazón Americano (with [Milton \n",
+       "Nascimento\\](/wiki/Milton_Nascimento \"Milton Nascimento\") & [León Gieco\\](/wiki/Le%C3%B3n_Gieco \"León Gieco\"))  * \n",
+       "Label: Philips |\\n| 1989 | Live in Europe  * Label: Tropical Music/Polygram Argentina |\\n| 1991 | De Mí  * Label: \n",
+       "Philips |\\n| 2002 | Acústico En Vivo  * Label: Sony Music Argentina |\\n| 2003 | Argentina Quiere Cantar (with \n",
+       "[Víctor Heredia\\](/wiki/V%C3%ADctor_Heredia \"Víctor Heredia\") & [León Gieco\\](/wiki/Le%C3%B3n_Gieco \"León Gieco\")) \n",
+       "* Label: Odeon/EMI |\\n| 2010 | Deja La Vida Volar (En Gira)  * Label: RCA |\\n| 2014 | Angel  * Label: Universal \n",
+       "Music |\\n| 2024 | En vivo en el Gran Rex 2006  * Label: INAMU Discos |\\n| Mercedes Sosa en Nueva York, 1974  * \n",
+       "Label: Sony Music Argentina |\\n\\n### Compilation albums\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=9\n",
+       "\"Edit section: Compilation albums\")]\\n\\n| Year | Album details |\\n| --- | --- |\\n| 1975 | Disco De Oro  * Label: \n",
+       "Philips |\\n| 1983 | Recital  * Label: Philips |\\n| 1988 | Amigos Míos  * Label: Philips |\\n| 1993 | 30 Años  * \n",
+       "Label: Polygram Argentina |\\n| 1995 | Oro  * Label: Polygram |\\n| 1997 | The Best Of Mercedes Sosa  * Label: \n",
+       "Mercury |\\n| 2013 | Siempre En Ti  * Label: Universal Music \n",
+       "|\\n\\nFilmography\\n-----------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=10 \"Edit section: \n",
+       "Filmography\")]\\n\\n* *[Güemes, la tierra en armas\\](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en \n",
+       "armas\")* (1971)\\n* *[Argentinísima\\](/wiki/Argentin%C3%ADsima \"Argentinísima\")* (1972)\\n* *[Esta es mi \n",
+       "Argentina\\](/w/index.php?title=Esta_es_mi_Argentina&action=edit&redlink=1 \"Esta es mi Argentina (page does not \n",
+       "exist)\")* (1974)\\n* *[Mercedes Sosa, como un pájaro libre\\](/wiki/Mercedes_Sosa:_como_un_pajaro_libre \"Mercedes \n",
+       "Sosa: como un pajaro libre\")* (1983)\\n* *[Será possible el sur: Mercedes \n",
+       "Sosa\\](/w/index.php?title=Ser%C3%A1_possible_el_sur:_Mercedes_Sosa&action=edit&redlink=1 \"Será possible el sur: \n",
+       "Mercedes Sosa (page does not exist)\")* (1985)\\n* *[Historias de Argentina en \n",
+       "vivo\\](/w/index.php?title=Historias_de_Argentina_en_vivo&action=edit&redlink=1 \"Historias de Argentina en vivo \n",
+       "(page does not exist)\")* (2001)\\n\\nFurther \n",
+       "reading\\n---------------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=11 \"Edit section: Further \n",
+       "reading\")]\\n\\n* Christensen, Anette (2019). *Mercedes Sosa - The Voice of Hope*. Denmark: Tribute2life Publishing. \n",
+       "[ISBN\\](/wiki/ISBN_(identifier) \"ISBN \n",
+       "(identifier)\")\\xa0[978-87-998216-5-5\\](/wiki/Special:BookSources/978-87-998216-5-5 \n",
+       "\"Special:BookSources/978-87-998216-5-5\").\\n* Christensen, Anette (2019). *Mercedes Sosa - More Than a Song*. \n",
+       "Denmark: Tribute2life Publishing. [ISBN\\](/wiki/ISBN_(identifier) \"ISBN \n",
+       "(identifier)\")\\xa0[978-87-998216-7-9\\](/wiki/Special:BookSources/978-87-998216-7-9 \n",
+       "\"Special:BookSources/978-87-998216-7-9\"). (Abridged version of Mercedes Sosa - The Voice of Hope)\\n* Braceli, \n",
+       "Rodolfo (2010). *Mercedes Sosa. La Negra* (in Spanish). Italy: Perrone. [ISBN\\](/wiki/ISBN_(identifier) \"ISBN \n",
+       "(identifier)\")\\xa0[978-88-6004-347-4\\](/wiki/Special:BookSources/978-88-6004-347-4 \n",
+       "\"Special:BookSources/978-88-6004-347-4\").\\n* Matus, Fabián (2016). *Mercedes Sosa. La Mami* (in Spanish). \n",
+       "Argentina: Planeta. [ISBN\\](/wiki/ISBN_(identifier) \"ISBN \n",
+       "(identifier)\")\\xa0[978-950-49-5247-3\\](/wiki/Special:BookSources/978-950-49-5247-3 \n",
+       "\"Special:BookSources/978-950-49-5247-3\").\\n\\nReferences\\n----------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=ed\n",
+       "it&section=12 \"Edit section: References\")]\\n\\n1. **[^\\](#cite_ref-birth_1-0)** [Mercedes \n",
+       "Sosa\\](http://www.brainyhistory.com/events/1935/july_9_1935_93941.html) at BrainyHistory.com\\n2. \n",
+       "**[^\\](#cite_ref-tmc_2-0)** [\"Singer Mercedes Sosa: The voice of the \\'voiceless ones\\' outlasts South American \n",
+       "dictatorships\"\\](http://www.tmcnet.com/usubmit/2007/12/08/3150199.htm).\\n3. **[^\\](#cite_ref-3)** Heckman, Don (29 \n",
+       "October 1995). [\"POP MUSIC\\xa0: The Voice Heard Round the World\\xa0: Mercedes Sosa, a compelling figure in world \n",
+       "music and a social activist, will make a rare L.A. \n",
+       "appearance\"\\](https://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html). *Los Angeles Times*. \n",
+       "Retrieved 5 December 2023.\\n4. ^ [***a***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-0) \n",
+       "[***b***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-1) \n",
+       "[***c***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-2) \n",
+       "[***d***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-3) \n",
+       "[***e***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-4) \n",
+       "[***f***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-5) \n",
+       "[***g***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-6) \n",
+       "[***h***\\](#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-7) [\"Legendary folk singer Mercedes Sosa dies\n",
+       "at \n",
+       "74\"\\](http://www.france24.com/en/20091004-legendary-folk-singer-mercedes-sosa-dies-74-argentina-entertainment-music\n",
+       "). [France 24\\](/wiki/France_24 \"France 24\"). 4 October 2009. Retrieved 5 October 2009.\\n5. ^ \n",
+       "[***a***\\](#cite_ref-:0_5-0) [***b***\\](#cite_ref-:0_5-1) [***c***\\](#cite_ref-:0_5-2) [***d***\\](#cite_ref-:0_5-3)\n",
+       "Bernstein, Adam (5 October 2009). [\"Argentine folk singer who championed social \n",
+       "justice\"\\](https://www.latimes.com/archives/la-xpm-2009-oct-05-me-mercedes-sosa5-story.html). *Los Angeles Times*. \n",
+       "Retrieved 8 March 2025.\\n6. **[^\\](#cite_ref-6)** Heckman, Don (29 October 1995). [\"POP MUSIC\\xa0: The Voice Heard \n",
+       "Round the World\\xa0: Mercedes Sosa, a compelling figure in world music and a social activist, will make a rare L.A.\n",
+       "appearance\"\\](https://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html). *Los Angeles Times*. \n",
+       "Retrieved 5 December 2023.\\n7. **[^\\](#cite_ref-7)** *Mercedes Sosa: The Voice of Latin America*. Dir. Rodrigo H. \n",
+       "Villa. First Run Features, 2013. Web.\\n8. ^ [***a***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-0) \n",
+       "[***b***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-1) [***c***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-2) \n",
+       "[***d***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-3) [***e***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-4) \n",
+       "[***f***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-5) [***g***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-6) \n",
+       "[***h***\\](#cite_ref-Mercedes_Sosa:_Obituary_8-7) [\"Mercedes Sosa: \n",
+       "Obituary\"\\](https://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/6259898/Mercedes-Sosa.h\n",
+       "tml). *[The Daily Telegraph\\](/wiki/The_Daily_Telegraph \"The Daily Telegraph\")*. 4 October 2009. Retrieved 5 \n",
+       "October 2009.\\n9. **[^\\](#cite_ref-test_9-0)** [The presentation by Jorge Cafrune and the song Mercedes Sosa \n",
+       "sang\\](https://www.youtube.com/watch?v=QzwL8C2hE6c) on [YouTube\\](/wiki/YouTube_video_(identifier) \"YouTube video \n",
+       "(identifier)\"). Retrieved 3 March 2010.\\n10. ^ [***a***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-0) \n",
+       "[***b***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-1) \n",
+       "[***c***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-2) \n",
+       "[***d***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-3) \n",
+       "[***e***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-4) \n",
+       "[***f***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-5) \n",
+       "[***g***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-6) \n",
+       "[***h***\\](#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-7) [\"Latin artist Mercedes Sosa \n",
+       "dies\"\\](http://news.bbc.co.uk/2/hi/entertainment/8289370.stm). [BBC\\](/wiki/BBC \"BBC\"). 4 October 2009. Retrieved 5\n",
+       "October 2009.\\n11. **[^\\](#cite_ref-11)** Karush, Matthew (2017). *Musicians in Transit: Argentina and the \n",
+       "Globalization of Popular Music*. Duke. p.\\xa0168. [ISBN\\](/wiki/ISBN_(identifier) \"ISBN \n",
+       "(identifier)\")\\xa0[978-0-8223-7377-3\\](/wiki/Special:BookSources/978-0-8223-7377-3 \n",
+       "\"Special:BookSources/978-0-8223-7377-3\").\\n12. ^ [***a***\\](#cite_ref-ap_12-0) [***b***\\](#cite_ref-ap_12-1) \n",
+       "[Associated \n",
+       "Press\\](https://www.google.com/hostednews/ap/article/ALeqM5iBSb5ZdEJ8MI6_qzWccZNZQITnMAD9B47Q8G1)[*(/wiki/Wikipedia\n",
+       ":Link_rot \"Wikipedia:Link rot\")*]\\n13. ^ [***a***\\](#cite_ref-:2_13-0) [***b***\\](#cite_ref-:2_13-1) \n",
+       "[\"Biografía\"\\](https://www.mercedessosa.org/biografia/). *Fundación Mercedes Sosa* (in Spanish). Retrieved 8 March \n",
+       "2025.\\n14. **[^\\](#cite_ref-14)** Argentina, Cadena 3. [\"El folclore argentino llora la muerte de Daniel Toro - \n",
+       "Notas - Viva la \n",
+       "Radio\"\\](https://www.cadena3.com/noticia/viva-la-radio/murio-daniel-toro-icono-del-folclore-argentino_359018). \n",
+       "*Cadena 3 Argentina* (in Spanish). Retrieved 14 March 2025.`{{cite web}}`: CS1 maint: numeric names: authors list \n",
+       "([link\\](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 maint: numeric names: authors \n",
+       "list\"))\\n15. **[^\\](#cite_ref-15)** Nilsson, Leopoldo Torre (7 April 1971), [*Güemes - la tierra en \n",
+       "armas*\\](https://www.imdb.com/title/tt0067165/?ref_=nm_knf_t_2) (Drama, History), Alfredo Alcón, Norma Aleandro, \n",
+       "Gabriela Gili, Producciones Cinematográficas Cerrillos, retrieved 8 March 2025\\n16. **[^\\](#cite_ref-16)** Rodrigo \n",
+       "(10 September 2020). [\"Patricio Manns: Cuando me acuerdo de mi país (1983) | PERRERAC: La canción, un arma de la \n",
+       "revolución\"\\](https://perrerac.org/album/patricio-manns-cuando-me-acuerdo-de-mi-pais-1983/13772/) (in Spanish). \n",
+       "Retrieved 14 March 2025.\\n17. ^ [***a***\\](#cite_ref-:1_17-0) [***b***\\](#cite_ref-:1_17-1) Lopez, Vicente F. (18 \n",
+       "January 1983). [\"ARTISTAS EXILIADOS HAN REGRESADO A \n",
+       "ARGENTINA\"\\](https://infoweb.newsbank.com/apps/news/openurl?ctx_ver=z39.88-2004&rft_id=info%3Asid/infoweb.newsbank.\n",
+       "com&svc_dat=WORLDNEWS&req_dat=0D1C15DBC6335C60&rft_val_format=info%3Aofi/fmt%3Akev%3Amtx%3Actx&rft_dat=document_id%\n",
+       "3Anews%252F0EB960FAFAAF7A0F). *El Nuevo Herald*. p.\\xa08. Retrieved 7 March 2025.`{{cite news}}`: CS1 maint: \n",
+       "url-status ([link\\](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\"))\\n18. \n",
+       "**[^\\](#cite_ref-18)** Drosdoff, Daniel (30 October 1983). [\"ARGENTINIAN VOTE TO END DICTATORSHIP PERONIST AND \n",
+       "RADICAL IN LEAD FOR \n",
+       "PRESIDENCY\"\\](https://infoweb.newsbank.com/apps/news/openurl?ctx_ver=z39.88-2004&rft_id=info%3Asid/infoweb.newsbank\n",
+       ".com&svc_dat=WORLDNEWS&req_dat=0D1C15DBC6335C60&rft_val_format=info%3Aofi/fmt%3Akev%3Amtx%3Actx&rft_dat=document_id\n",
+       "%3Anews%252F0EB35DEF2EAA1BC5). *Miami Herald*. pp.\\xa016A. Retrieved 7 March 2025.`{{cite news}}`: CS1 maint: \n",
+       "url-status ([link\\](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\"))\\n19. \n",
+       "**[^\\](#cite_ref-19)** [Interview with Mercedes \n",
+       "Sosa\\](http://www.berlinonline.de/berliner-zeitung/archiv/.bin/dump.fcgi/2003/1025/magazin/0001/) \n",
+       "[Archived\\](https://web.archive.org/web/20091016201953/http://www.berlinonline.de/berliner-zeitung/archiv/.bin/dump\n",
+       ".fcgi/2003/1025/magazin/0001/) 16 October 2009 at the [Wayback Machine\\](/wiki/Wayback_Machine \"Wayback Machine\"), \n",
+       "*Magazin Berliner Zeitung*, 25 October 2003. (in German)\\n20. **[^\\](#cite_ref-20)** [Mercedes Sosa in \n",
+       "concert\\](http://chicago.cervantes.es/Cultura/Fichas/Ficha41728_47_2.htm) \n",
+       "[Archived\\](https://web.archive.org/web/20080104200631/http://chicago.cervantes.es/Cultura/Fichas/Ficha41728_47_2.h\n",
+       "tm) 4 January 2008 at the [Wayback Machine\\](/wiki/Wayback_Machine \"Wayback Machine\")\\n21. **[^\\](#cite_ref-21)** \n",
+       "Heckman, Don (29 October 1995). [\"POP MUSIC\\xa0: The Voice Heard Round the World\\xa0: Mercedes Sosa, a compelling \n",
+       "figure in world music and a social activist, will make a rare L.A. \n",
+       "appearance\"\\](https://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html). *Los Angeles Times*. \n",
+       "Retrieved 5 December 2023.\\n22. **[^\\](#cite_ref-22)** Meyer, Bill (7 October 2009). [\"A U.S. musician pays tribute\n",
+       "to Mercedes Sosa\"\\](https://www.peoplesworld.org/article/a-u-s-musician-pays-tribute-to-mercedes-sosa/). *People\\'s\n",
+       "World*. Retrieved 5 December 2023.\\n23. **[^\\](#cite_ref-23)** [\"In Profile: Mercedes \n",
+       "Sosa\"\\](https://soundsandcolours.com/articles/argentina/in-profile-mercedes-sosa-1761/). *soundsandcolours.com*. 26\n",
+       "August 2010. Retrieved 27 March 2018.\\n24. **[^\\](#cite_ref-24)** [*Balderrama* by Mercedes \n",
+       "Sosa\\](https://www.youtube.com/watch?v=k4LJDTlviKw) on [YouTube\\](/wiki/YouTube_video_(identifier) \"YouTube video \n",
+       "(identifier)\") – a tribute to [Che Guevara\\](/wiki/Che_Guevara \"Che Guevara\")\\n25. **[^\\](#cite_ref-25)** [\"Latin \n",
+       "Grammys: Ganadores – Años Anteriores \n",
+       "(2000)\"\\](https://www.latingrammy.com/es/nominees/search?artist=&field_nominee_work_value=&year=2000&genre=All). \n",
+       "*Latin Grammys* (in Spanish). The Latin Recording Academy. Retrieved 7 July 2021.\\n26. **[^\\](#cite_ref-26)** \n",
+       "[\"Latin Grammys: Ganadores – Años Anteriores \n",
+       "(2003)\"\\](https://www.latingrammy.com/es/nominees/search?artist=&field_nominee_work_value=&year=2003&genre=All). \n",
+       "*Latin Grammys* (in Spanish). The Latin Recording Academy. Retrieved 7 July 2021.\\n27. **[^\\](#cite_ref-27)** \n",
+       "[\"Latin Grammys: Ganadores – Años Anteriores \n",
+       "(2006)\"\\](https://www.latingrammy.com/es/nominees/search?artist=&field_nominee_work_value=&year=2006&genre=All). \n",
+       "*Latin Grammys* (in Spanish). The Latin Recording Academy. Retrieved 7 July 2021.\\n28. **[^\\](#cite_ref-28)** \n",
+       "[\"Latin Grammys: Ganadores – Años Anteriores \n",
+       "(2009)\"\\](https://www.latingrammy.com/es/nominees/search?artist=&field_nominee_work_value=&year=2009&genre=All). \n",
+       "*Latin Grammys* (in Spanish). The Latin Recording Academy. Retrieved 7 July 2021.\\n29. **[^\\](#cite_ref-29)** \n",
+       "[\"Latin Grammys: Ganadores – Años Anteriores \n",
+       "(2011)\"\\](https://www.latingrammy.com/es/nominees/search?artist=&field_nominee_work_value=&year=2011&genre=All). \n",
+       "*Latin Grammys* (in Spanish). The Latin Recording Academy. Retrieved 7 July 2021.\\n30. **[^\\](#cite_ref-30)** \n",
+       "[\"Premios Konex 1995: Música Popular\"\\](https://www.fundacionkonex.org/premios1995-musica-popular). *Fundación \n",
+       "Konex* (in Spanish). Retrieved 7 July 2021.\\n31. **[^\\](#cite_ref-31)** [\"\"En ningún momento sufrió\", dijo el hijo \n",
+       "de Mercedes \n",
+       "Sosa\"\\](https://web.archive.org/web/20091004144610/http://www.clarin.com/diario/2009/10/01/um/m-02010016.htm) (in \n",
+       "Spanish). October 2009. Archived from [the original\\](http://www.clarin.com/diario/2009/10/01/um/m-02010016.htm) on\n",
+       "4 October 2009. Retrieved 1 October 2009.\\n32. ^ \n",
+       "[***a***\\](#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-0) \n",
+       "[***b***\\](#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-1) \n",
+       "[***c***\\](#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-2) Javier Doberti (4\n",
+       "October 2009). [\"Argentine singer Mercedes Sosa, \\'voice of Latin America,\\' dies at \n",
+       "74\"\\](http://edition.cnn.com/2009/SHOWBIZ/Music/10/04/obit.mercedes.sosa/). [CNN\\](/wiki/CNN \"CNN\"). Retrieved 5 \n",
+       "October 2009.\\n33. **[^\\](#cite_ref-Argentine_folk_legend_Mercedes_Sosa_dead_at_74_33-0)** [\"Argentine folk legend \n",
+       "Mercedes Sosa dead at \n",
+       "74\"\\](http://www.bangkokpost.com/news/world/156066/argentine-folk-legend-mercedes-sosa-dead-at-74). *[Bangkok \n",
+       "Post\\](/wiki/Bangkok_Post \"Bangkok Post\")*. 4 October 2009. Retrieved 5 October 2009.\\n34. ^ \n",
+       "[***a***\\](#cite_ref-Argentine_folk_icon_Sosa_dies_at_74_34-0) \n",
+       "[***b***\\](#cite_ref-Argentine_folk_icon_Sosa_dies_at_74_34-1) [\"Argentine folk icon Sosa dies at \n",
+       "74\"\\](http://english.aljazeera.net/news/americas/2009/10/200910421057755554.html#). [Al \n",
+       "Jazeera\\](/wiki/Al_Jazeera_Arabic \"Al Jazeera Arabic\"). 4 October 2009. Retrieved 5 October 2009.\\n35. \n",
+       "**[^\\](#cite_ref-35)** [\"Continúa la procesión en el Congreso para despedir a Mercedes \n",
+       "Sosa\"\\](http://www.lanacion.com.ar/nota.asp?nota_id=1182377&pid=7460859&toi=6255).\\n36. ^ \n",
+       "[***a***\\](#cite_ref-Argentine_singer_Mercedes_Sosa_dies_at_74_36-0) \n",
+       "[***b***\\](#cite_ref-Argentine_singer_Mercedes_Sosa_dies_at_74_36-1) Helen Popper (4 October 2009). [\"Argentine \n",
+       "singer Mercedes Sosa dies at \n",
+       "74\"\\](https://web.archive.org/web/20091011000305/http://in.reuters.com/article/hollywood/idINTRE5931S220091004). \n",
+       "*[Reuters\\](/wiki/Reuters \"Reuters\")*. Archived from [the \n",
+       "original\\](http://in.reuters.com/article/hollywood/idINTRE5931S220091004) on 11 October 2009. Retrieved 5 October \n",
+       "2009.\\n37. **[^\\](#cite_ref-37)** [\"Celebrating Mercedes \n",
+       "Sosa\"\\](https://doodles.google/doodle/celebrating-mercedes-sosa/). *Doodles Archive, Google*. 31 January 2019.\\n38.\n",
+       "**[^\\](#cite_ref-38)** [\"The 200 Greatest Singers of All \n",
+       "Time\"\\](https://www.rollingstone.com/music/music-lists/best-singers-all-time-1234642307/mercedes-sosa-1234642917/).\n",
+       "*[Rolling Stone\\](/wiki/Rolling_Stone \"Rolling Stone\")*. 1 January 2023. Retrieved 9 March 2023.\\n\\nExternal \n",
+       "links\\n--------------\\n\\n[(/w/index.php?title=Mercedes_Sosa&action=edit&section=13 \"Edit section: External \n",
+       "links\")]\\n\\n[![\\](//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/40px-Wikiquote-logo.svg.pn\n",
+       "g)](/wiki/File:Wikiquote-logo.svg)\\n\\nWikiquote has quotations related to ***[Mercedes \n",
+       "Sosa\\](https://en.wikiquote.org/wiki/Special:Search/Mercedes_Sosa \"q:Special:Search/Mercedes \n",
+       "Sosa\")***.\\n\\n[![\\](//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png)](/wi\n",
+       "ki/File:Commons-logo.svg)\\n\\nWikimedia Commons has media related to [Mercedes \n",
+       "Sosa\\](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa \"commons:Category:Mercedes Sosa\").\\n\\n* [Tribute \n",
+       "to Mercedes \n",
+       "Sosa\\](https://web.archive.org/web/20120913073615/http://tragaseushow.com.br/8-tributo-a-mercedes-sosa-em-porto-ale\n",
+       "gre) (in Portuguese BR)\\n* [Mercedes Sosa\\'s website\\](http://www.mercedessosa.com.ar/) (in Spanish)\\n* [Mercedes \n",
+       "Sosa\\'s News\\](http://noticiasmercedessosa.blogspot.com/) (in Spanish)\\n* [Mercedes \n",
+       "Sosa\\](https://www.imdb.com/name/nm0815302/) at [IMDb\\](/wiki/IMDb_(identifier) \"IMDb (identifier)\")\\n* [Mercedes \n",
+       "Sosa\\'s Discography\\](https://www.discogs.com/artist/333361-Mercedes-Sosa) on \n",
+       "[Discogs.com\\](https://www.discogs.com/)\\n\\n| * [v\\](/wiki/Template:Mercedes_Sosa \"Template:Mercedes Sosa\") * \n",
+       "[t\\](/wiki/Template_talk:Mercedes_Sosa \"Template talk:Mercedes Sosa\") * \n",
+       "[e\\](/wiki/Special:EditPage/Template:Mercedes_Sosa \"Special:EditPage/Template:Mercedes Sosa\")  Mercedes Sosa | |\\n|\n",
+       "--- | --- |\\n| Songs | * \"[La Maza\\](/wiki/La_Maza \"La Maza\")\" |\\n| Albums | * *[La Voz De La \n",
+       "Zafra\\](/wiki/La_Voz_De_La_Zafra \"La Voz De La Zafra\")* (1962) * *[Canciones Con \n",
+       "Fundamento\\](/w/index.php?title=Canciones_Con_Fundamento&action=edit&redlink=1 \"Canciones Con Fundamento (page does\n",
+       "not exist)\")* (1965) * *[Yo No Canto Por Cantar\\](/w/index.php?title=Yo_No_Canto_Por_Cantar&action=edit&redlink=1 \n",
+       "\"Yo No Canto Por Cantar (page does not exist)\")* (1966) * \n",
+       "*[Hermano\\](/w/index.php?title=Hermano_(Mercedes_Sosa_album)&action=edit&redlink=1 \"Hermano (Mercedes Sosa album) \n",
+       "(page does not exist)\")* (1966) * *[Para Cantarle A Mi \n",
+       "Gente\\](/w/index.php?title=Para_Cantarle_A_Mi_Gente&action=edit&redlink=1 \"Para Cantarle A Mi Gente (page does not \n",
+       "exist)\")* (1967) * *[Con Sabor A Mercedes Sosa\\](/w/index.php?title=Con_Sabor_A_Mercedes_Sosa&action=edit&redlink=1\n",
+       "\"Con Sabor A Mercedes Sosa (page does not exist)\")* (1968) * *[Mujeres \n",
+       "Argentinas\\](/w/index.php?title=Mujeres_Argentinas&action=edit&redlink=1 \"Mujeres Argentinas (page does not \n",
+       "exist)\")* (1969) * *[El Grito De La Tierra\\](/w/index.php?title=El_Grito_De_La_Tierra&action=edit&redlink=1 \"El \n",
+       "Grito De La Tierra (page does not exist)\")* (1970) * *[Navidad Con Mercedes \n",
+       "Sosa\\](/w/index.php?title=Navidad_Con_Mercedes_Sosa&action=edit&redlink=1 \"Navidad Con Mercedes Sosa (page does not\n",
+       "exist)\")* (1970) * *[Homenaje a Violeta Parra\\](/wiki/Homenaje_a_Violeta_Parra \"Homenaje a Violeta Parra\")* (1971) \n",
+       "* *[Hasta La Victoria\\](/w/index.php?title=Hasta_La_Victoria&action=edit&redlink=1 \"Hasta La Victoria (page does \n",
+       "not exist)\")* (1972) * *[Cantata Sudamericana\\](/w/index.php?title=Cantata_Sudamericana&action=edit&redlink=1 \n",
+       "\"Cantata Sudamericana (page does not exist)\")* (1972) * *[Traigo Un Pueblo En Mi \n",
+       "Voz\\](/w/index.php?title=Traigo_Un_Pueblo_En_Mi_Voz&action=edit&redlink=1 \"Traigo Un Pueblo En Mi Voz (page does \n",
+       "not exist)\")* (1973) * *[A Que Florezca Mi \n",
+       "Pueblo\\](/w/index.php?title=A_Que_Florezca_Mi_Pueblo&action=edit&redlink=1 \"A Que Florezca Mi Pueblo (page does not\n",
+       "exist)\")* (1975) * *[En Dirección Del \n",
+       "Viento\\](/w/index.php?title=En_Direcci%C3%B3n_Del_Viento&action=edit&redlink=1 \"En Dirección Del Viento (page does \n",
+       "not exist)\")* (1976) * *[Mercedes Sosa Interpreta A Atahualpa \n",
+       "Yupanqui\\](/w/index.php?title=Mercedes_Sosa_Interpreta_A_Atahualpa_Yupanqui&action=edit&redlink=1 \"Mercedes Sosa \n",
+       "Interpreta A Atahualpa Yupanqui (page does not exist)\")* (1977) * *[Mercedes Sosa en \n",
+       "Argentina\\](/wiki/Mercedes_Sosa_en_Argentina \"Mercedes Sosa en Argentina\")* (1982) * *[Cantora 1 & \n",
+       "2\\](/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\")* (2009) |\\n| Related articles | * [Nueva \n",
+       "canción\\](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\\n\\n| * \n",
+       "[v\\](/wiki/Template:Latin_Grammy_Lifetime_Achievement_Award \"Template:Latin Grammy Lifetime Achievement Award\") * \n",
+       "[t\\](/wiki/Template_talk:Latin_Grammy_Lifetime_Achievement_Award \"Template talk:Latin Grammy Lifetime Achievement \n",
+       "Award\") * [e\\](/wiki/Special:EditPage/Template:Latin_Grammy_Lifetime_Achievement_Award \n",
+       "\"Special:EditPage/Template:Latin Grammy Lifetime Achievement Award\")  [Latin Grammy Lifetime Achievement \n",
+       "Award\\](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") | |\\n| --- | --- \n",
+       "|\\n| 2000s | * 2004: [Antonio Aguilar\\](/wiki/Antonio_Aguilar \"Antonio Aguilar\") / [Roberto \n",
+       "Carlos\\](/wiki/Roberto_Carlos_(singer) \"Roberto Carlos (singer)\") / [Willie Colón\\](/wiki/Willie_Col%C3%B3n \"Willie\n",
+       "Colón\") / [José José\\](/wiki/Jos%C3%A9_Jos%C3%A9 \"José José\") / Mercedes Sosa * 2005: [Rocío \n",
+       "Dúrcal\\](/wiki/Roc%C3%ADo_D%C3%BArcal \"Rocío Dúrcal\") / [Generoso Jiménez\\](/wiki/Generoso_Jim%C3%A9nez \"Generoso \n",
+       "Jiménez\") / [Jorge Ben Jor\\](/wiki/Jorge_Ben \"Jorge Ben\") / [Sérgio Mendes\\](/wiki/S%C3%A9rgio_Mendes \"Sérgio \n",
+       "Mendes\") / [Johnny Pacheco\\](/wiki/Johnny_Pacheco \"Johnny Pacheco\") / [Sandro\\](/wiki/Sandro_de_Am%C3%A9rica \n",
+       "\"Sandro de América\") * 2006: [León Gieco\\](/wiki/Le%C3%B3n_Gieco \"León Gieco\") / [Graciela\\](/wiki/Graciela \n",
+       "\"Graciela\") / [César Camargo Mariano\\](/wiki/C%C3%A9sar_Camargo_Mariano \"César Camargo Mariano\") / [Richie Ray & \n",
+       "Bobby Cruz\\](/wiki/Richie_Ray_%26_Bobby_Cruz \"Richie Ray & Bobby Cruz\") / [Paloma San \n",
+       "Basilio\\](/wiki/Paloma_San_Basilio \"Paloma San Basilio\") / [Alberto Vázquez\\](/wiki/Alberto_V%C3%A1zquez_(singer) \n",
+       "\"Alberto Vázquez (singer)\") / [Johnny Ventura\\](/wiki/Johnny_Ventura \"Johnny Ventura\") * 2007: [Alberto \n",
+       "Cortez\\](/wiki/Alberto_Cortez \"Alberto Cortez\") / [Lucho Gatica\\](/wiki/Lucho_Gatica \"Lucho Gatica\") / [Olga \n",
+       "Guillot\\](/wiki/Olga_Guillot \"Olga Guillot\") / [Os Paralamas do Sucesso\\](/wiki/Os_Paralamas_do_Sucesso \"Os \n",
+       "Paralamas do Sucesso\") / [Los Tigres del Norte\\](/wiki/Los_Tigres_del_Norte \"Los Tigres del Norte\") / [Chavela \n",
+       "Vargas\\](/wiki/Chavela_Vargas \"Chavela Vargas\") * 2008: [Vikki Carr\\](/wiki/Vikki_Carr \"Vikki Carr\") / [Cheo \n",
+       "Feliciano\\](/wiki/Cheo_Feliciano \"Cheo Feliciano\") / [Astrud Gilberto\\](/wiki/Astrud_Gilberto \"Astrud Gilberto\") / \n",
+       "[Angélica María\\](/wiki/Ang%C3%A9lica_Mar%C3%ADa \"Angélica María\") / [María Dolores \n",
+       "Pradera\\](/wiki/Mar%C3%ADa_Dolores_Pradera \"María Dolores Pradera\") / [Estela Raval\\](/wiki/Estela_Raval \"Estela \n",
+       "Raval\") * 2009: [Cándido Camero\\](/wiki/C%C3%A1ndido_Camero \"Cándido Camero\") / [Beth \n",
+       "Carvalho\\](/wiki/Beth_Carvalho \"Beth Carvalho\") / [Charly García\\](/wiki/Charly_Garc%C3%ADa \"Charly García\") / \n",
+       "[Tania Libertad\\](/wiki/Tania_Libertad \"Tania Libertad\") / [Marco Antonio Muñiz\\](/wiki/Marco_Antonio_Mu%C3%B1iz \n",
+       "\"Marco Antonio Muñiz\") / Juan Romero |\\n| 2010s | * 2010: [João Donato\\](/wiki/Jo%C3%A3o_Donato \"João Donato\") / \n",
+       "Las Hermanas Márquez / [Armando Manzanero\\](/wiki/Armando_Manzanero \"Armando Manzanero\") / Joseíto Mateo / [Jorge \n",
+       "Oñate\\](/wiki/Jorge_O%C3%B1ate \"Jorge Oñate\") / [Susana Rinaldi\\](/wiki/Susana_Rinaldi \"Susana Rinaldi\") * 2011: \n",
+       "[Joe Arroyo\\](/wiki/Joe_Arroyo \"Joe Arroyo\") / [Gal Costa\\](/wiki/Gal_Costa \"Gal Costa\") / [José \n",
+       "Feliciano\\](/wiki/Jos%C3%A9_Feliciano \"José Feliciano\") / [Álex Lora\\](/wiki/%C3%81lex_Lora \"Álex Lora\") / [Les \n",
+       "Luthiers\\](/wiki/Les_Luthiers \"Les Luthiers\") / [Rubén Rada\\](/wiki/Rub%C3%A9n_Rada \"Rubén Rada\") / [Linda \n",
+       "Ronstadt\\](/wiki/Linda_Ronstadt \"Linda Ronstadt\") * 2012: [Luz Casal\\](/wiki/Luz_Casal \"Luz Casal\") / [Leo \n",
+       "Dan\\](/wiki/Leo_Dan \"Leo Dan\") / [Rita Moreno\\](/wiki/Rita_Moreno \"Rita Moreno\") / [Milton \n",
+       "Nascimento\\](/wiki/Milton_Nascimento \"Milton Nascimento\") / [Daniela Romo\\](/wiki/Daniela_Romo \"Daniela Romo\") / \n",
+       "[Poncho Sanchez\\](/wiki/Poncho_Sanchez \"Poncho Sanchez\") / [Toquinho\\](/wiki/Toquinho \"Toquinho\") * 2013: [Oscar \n",
+       "D\\'León\\](/wiki/Oscar_D%27Le%C3%B3n \"Oscar D\\'León\") / [Juan Formell\\](/wiki/Juan_Formell \"Juan Formell\") / \n",
+       "[Roberto Menescal\\](/wiki/Roberto_Menescal \"Roberto Menescal\") / [Totó la Momposina\\](/wiki/Tot%C3%B3_la_Momposina \n",
+       "\"Totó la Momposina\") / [Palito Ortega\\](/wiki/Palito_Ortega \"Palito Ortega\") / [Eddie \n",
+       "Palmieri\\](/wiki/Eddie_Palmieri \"Eddie Palmieri\") / [Miguel Ríos\\](/wiki/Miguel_R%C3%ADos \"Miguel Ríos\") * 2014: \n",
+       "[Willy Chirino\\](/wiki/Willy_Chirino \"Willy Chirino\") / [César Costa\\](/wiki/C%C3%A9sar_Costa \"César Costa\") / \n",
+       "[Carlos do Carmo\\](/wiki/Carlos_do_Carmo \"Carlos do Carmo\") / [Dúo Dinámico\\](/wiki/D%C3%BAo_Din%C3%A1mico \"Dúo \n",
+       "Dinámico\") / [Los Lobos\\](/wiki/Los_Lobos \"Los Lobos\") / [Valeria Lynch\\](/wiki/Valeria_Lynch \"Valeria Lynch\") / \n",
+       "[Ney Matogrosso\\](/wiki/Ney_Matogrosso \"Ney Matogrosso\") * 2015: [Gato Barbieri\\](/wiki/Gato_Barbieri \"Gato \n",
+       "Barbieri\") / [Ana Belén\\](/wiki/Ana_Bel%C3%A9n \"Ana Belén\") / [Ángela Carrasco\\](/wiki/%C3%81ngela_Carrasco \"Ángela\n",
+       "Carrasco\") / [Djavan\\](/wiki/Djavan \"Djavan\") / [El Gran Combo de Puerto Rico\\](/wiki/El_Gran_Combo_de_Puerto_Rico \n",
+       "\"El Gran Combo de Puerto Rico\") / [Víctor Manuel\\](/wiki/V%C3%ADctor_Manuel \"Víctor Manuel\") / [Pablo \n",
+       "Milanés\\](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") * 2016: [El Consorcio\\](/wiki/El_Consorcio \"El Consorcio\") / \n",
+       "[Eugenia León\\](/wiki/Eugenia_Le%C3%B3n \"Eugenia León\") / [Ricardo Montaner\\](/wiki/Ricardo_Montaner \"Ricardo \n",
+       "Montaner\") / [Ednita Nazario\\](/wiki/Ednita_Nazario \"Ednita Nazario\") / [Piero\\](/wiki/Piero_de_Benedictis \"Piero \n",
+       "de Benedictis\") * 2017: [Lucecita Benítez\\](/wiki/Lucecita_Ben%C3%ADtez \"Lucecita Benítez\") / [João \n",
+       "Bosco\\](/wiki/Jo%C3%A3o_Bosco \"João Bosco\") / [Ilan Chester\\](/wiki/Ilan_Chester \"Ilan Chester\") / [Víctor \n",
+       "Heredia\\](/wiki/Victor_Heredia \"Victor Heredia\") / [Los del Río\\](/wiki/Los_del_R%C3%ADo \"Los del Río\") / \n",
+       "[Guadalupe Pineda\\](/wiki/Guadalupe_Pineda \"Guadalupe Pineda\") / [Cuco Valoy\\](/wiki/Cuco_Valoy \"Cuco Valoy\") * \n",
+       "2018: [Erasmo Carlos\\](/wiki/Erasmo_Carlos \"Erasmo Carlos\") / [Dyango\\](/wiki/Dyango \"Dyango\") / [Andy \n",
+       "Montañez\\](/wiki/Andy_Monta%C3%B1ez \"Andy Montañez\") / [José María \n",
+       "Napoleón\\](/wiki/Jos%C3%A9_Mar%C3%ADa_Napole%C3%B3n \"José María Napoleón\") / [Chucho \n",
+       "Valdés\\](/wiki/Chucho_Vald%C3%A9s \"Chucho Valdés\") / [Wilfrido Vargas\\](/wiki/Wilfrido_Vargas \"Wilfrido Vargas\") / \n",
+       "[Yuri\\](/wiki/Yuri_(Mexican_singer) \"Yuri (Mexican singer)\") * 2019: [Eva Ayllón\\](/wiki/Eva_Ayll%C3%B3n \"Eva \n",
+       "Ayllón\") / [Joan Baez\\](/wiki/Joan_Baez \"Joan Baez\") / [José Cid\\](/wiki/Jos%C3%A9_Cid \"José Cid\") / [Lupita \n",
+       "D\\'Alessio\\](/wiki/Lupita_D%27Alessio \"Lupita D\\'Alessio\") / [Hugo Fattoruso\\](/wiki/Hugo_Fattoruso \"Hugo \n",
+       "Fattoruso\") / [Pimpinela\\](/wiki/Pimpinela \"Pimpinela\") / [Omara Portuondo\\](/wiki/Omara_Portuondo \"Omara \n",
+       "Portuondo\") / [José Luis Rodríguez\\](/wiki/Jos%C3%A9_Luis_Rodr%C3%ADguez_(singer) \"José Luis Rodríguez (singer)\") \n",
+       "|\\n| 2020s | * ~~2020~~ * 2021: [Martinho da Vila\\](/wiki/Martinho_da_Vila \"Martinho da Vila\") / \n",
+       "[Emmanuel\\](/wiki/Emmanuel_(singer) \"Emmanuel (singer)\") / [Pete Escovedo\\](/wiki/Pete_Escovedo \"Pete Escovedo\") / \n",
+       "[Sheila E.\\](/wiki/Sheila_E. \"Sheila E.\") / [Fito Páez\\](/wiki/Fito_P%C3%A1ez \"Fito Páez\") / [Milly \n",
+       "Quezada\\](/wiki/Milly_Quezada \"Milly Quezada\") / [Joaquín Sabina\\](/wiki/Joaqu%C3%ADn_Sabina \"Joaquín Sabina\") / \n",
+       "[Gilberto Santa Rosa\\](/wiki/Gilberto_Santa_Rosa \"Gilberto Santa Rosa\") * 2022: [Rosario \n",
+       "Flores\\](/wiki/Rosario_Flores \"Rosario Flores\") / [Myriam Hernández\\](/wiki/Myriam_Hern%C3%A1ndez \"Myriam \n",
+       "Hernández\") / [Rita Lee\\](/wiki/Rita_Lee \"Rita Lee\") / [Amanda Miguel\\](/wiki/Amanda_Miguel \"Amanda Miguel\") / \n",
+       "[Yordano\\](/wiki/Yordano \"Yordano\") * 2023: [Carmen Linares\\](/wiki/Carmen_Linares \"Carmen Linares\") / [Manuel \n",
+       "Mijares\\](/wiki/Manuel_Mijares \"Manuel Mijares\") / [Arturo Sandoval\\](/wiki/Arturo_Sandoval \"Arturo Sandoval\") / \n",
+       "[Simone\\](/wiki/Simone_Bittencourt_de_Oliveira \"Simone Bittencourt de Oliveira\") / [Soda Stereo\\](/wiki/Soda_Stereo\n",
+       "\"Soda Stereo\") / [Ana Torroja\\](/wiki/Ana_Torroja \"Ana Torroja\") * 2024: [Albita\\](/wiki/Albita_Rodr%C3%ADguez \n",
+       "\"Albita Rodríguez\") / [Lolita Flores\\](/wiki/Lolita_Flores \"Lolita Flores\") / [Alejandro \n",
+       "Lerner\\](/wiki/Alejandro_Lerner \"Alejandro Lerner\") / [Los Ángeles Azules\\](/wiki/Los_%C3%81ngeles_Azules \"Los \n",
+       "Ángeles Azules\") / [Draco Rosa\\](/wiki/Draco_Rosa \"Draco Rosa\") / [Lulu Santos\\](/wiki/Lulu_Santos \"Lulu Santos\") \n",
+       "|\\n\\n| * [v\\](/wiki/Template:Order_of_Cultural_Merit \"Template:Order of Cultural Merit\") * \n",
+       "[t\\](/wiki/Template_talk:Order_of_Cultural_Merit \"Template talk:Order of Cultural Merit\") * \n",
+       "[e\\](/wiki/Special:EditPage/Template:Order_of_Cultural_Merit \"Special:EditPage/Template:Order of Cultural Merit\")  \n",
+       "[Order of Cultural Merit\\](/wiki/Ordem_do_M%C3%A9rito_Cultural \"Ordem do Mérito Cultural\") (Brazil) | |\\n| --- | \n",
+       "--- |\\n| 1995 | * [Antônio Carlos Magalhães\\](/wiki/Ant%C3%B4nio_Carlos_Magalh%C3%A3es \"Antônio Carlos Magalhães\") \n",
+       "* [Celso Furtado\\](/wiki/Celso_Furtado \"Celso Furtado\") * [Fernanda Montenegro\\](/wiki/Fernanda_Montenegro \n",
+       "\"Fernanda Montenegro\") * [Joãosinho Trinta\\](/wiki/Jo%C3%A3osinho_Trinta \"Joãosinho Trinta\") * [Jorge \n",
+       "Amado\\](/wiki/Jorge_Amado \"Jorge Amado\") * [José Mindlin\\](/wiki/Jos%C3%A9_Mindlin \"José Mindlin\") * [José \n",
+       "Sarney\\](/wiki/Jos%C3%A9_Sarney \"José Sarney\") * [Nascimento \n",
+       "Brito\\](/w/index.php?title=Manuel_Francisco_do_Nascimento_Brito&action=edit&redlink=1 \"Manuel Francisco do \n",
+       "Nascimento Brito (page does not exist)\") * [Nise da Silveira\\](/wiki/Nise_da_Silveira \"Nise da Silveira\") * [Pietro\n",
+       "Maria Bardi\\](/wiki/Pietro_Maria_Bardi \"Pietro Maria Bardi\") * [Ricardo \n",
+       "Gribel\\](/w/index.php?title=Ricardo_Gribel&action=edit&redlink=1 \"Ricardo Gribel (page does not exist)\") * [Roberto\n",
+       "Marinho\\](/wiki/Roberto_Marinho \"Roberto Marinho\") |\\n| 1996 | * [Athos Bulcão\\](/wiki/Athos_Bulc%C3%A3o \"Athos \n",
+       "Bulcão\") * [Bibi Ferreira\\](/wiki/Bibi_Ferreira \"Bibi Ferreira\") * [Carybé\\](/wiki/Caryb%C3%A9 \"Carybé\") * [Carlos \n",
+       "Eduardo Moreira Ferreira\\](/wiki/Carlos_Eduardo_Moreira_Ferreira \"Carlos Eduardo Moreira Ferreira\") * [Edemar Cid \n",
+       "Ferreira\\](/wiki/Edemar_Cid_Ferreira \"Edemar Cid Ferreira\") * [Francisco Brennand\\](/wiki/Francisco_Brennand \n",
+       "\"Francisco Brennand\") * [Franco Montoro\\](/wiki/Andr%C3%A9_Franco_Montoro \"André Franco Montoro\") * [Jens \n",
+       "Olesen\\](/w/index.php?title=Jens_Olesen&action=edit&redlink=1 \"Jens Olesen (page does not exist)\") * [Joel Mendes \n",
+       "Rennó\\](/w/index.php?title=Joel_Mendes_Renn%C3%B3&action=edit&redlink=1 \"Joel Mendes Rennó (page does not exist)\") \n",
+       "* [Max Justo Guedes\\](/w/index.php?title=Max_Justo_Guedes&action=edit&redlink=1 \"Max Justo Guedes (page does not \n",
+       "exist)\") * [Mestre Didi\\](/w/index.php?title=Deosc%C3%B3redes_Maximiliano_dos_Santos&action=edit&redlink=1 \n",
+       "\"Deoscóredes Maximiliano dos Santos (page does not exist)\") * [Nélida Piñon\\](/wiki/N%C3%A9lida_Pi%C3%B1on \"Nélida \n",
+       "Piñon\") * [Olavo Setúbal\\](/wiki/Olavo_Set%C3%BAbal \"Olavo Setúbal\") * [Padre \n",
+       "Vaz\\](/w/index.php?title=Henrique_Cl%C3%A1udio_de_Lima_Vaz&action=edit&redlink=1 \"Henrique Cláudio de Lima Vaz \n",
+       "(page does not exist)\") * [Sérgio Motta\\](/w/index.php?title=S%C3%A9rgio_Motta&action=edit&redlink=1 \"Sérgio Motta \n",
+       "(page does not exist)\") * [Walter Salles\\](/wiki/Walter_Salles \"Walter Salles\") |\\n| 1997 | * [Adélia \n",
+       "Prado\\](/wiki/Ad%C3%A9lia_Prado \"Adélia Prado\") * [Antônio \n",
+       "Poteiro\\](/w/index.php?title=Ant%C3%B4nio_Poteiro&action=edit&redlink=1 \"Antônio Poteiro (page does not exist)\") * \n",
+       "[Antônio Salgado\\](/w/index.php?title=Ant%C3%B4nio_Salgado&action=edit&redlink=1 \"Antônio Salgado (page does not \n",
+       "exist)\") * [Braguinha\\](/wiki/Braguinha_(composer) \"Braguinha (composer)\") * [David \n",
+       "Assayag\\](/w/index.php?title=David_Assayag&action=edit&redlink=1 \"David Assayag (page does not exist)\") * [Diogo \n",
+       "Pacheco\\](/wiki/Diogo_Pacheco \"Diogo Pacheco\") * [Dona \n",
+       "Lenoca\\](/w/index.php?title=Estelita_Rodrigues_Borralho&action=edit&redlink=1 \"Estelita Rodrigues Borralho (page \n",
+       "does not exist)\") * [Fayga Ostrower\\](/wiki/Fayga_Ostrower \"Fayga Ostrower\") * [Gilberto \n",
+       "Chateaubriand\\](/w/index.php?title=Gilberto_Chateaubriand&action=edit&redlink=1 \"Gilberto Chateaubriand (page does \n",
+       "not exist)\") * [Gilberto Ferrez\\](/w/index.php?title=Gilberto_Ferrez&action=edit&redlink=1 \"Gilberto Ferrez (page \n",
+       "does not exist)\") * [Helena Severo\\](/w/index.php?title=Helena_Severo&action=edit&redlink=1 \"Helena Severo (page \n",
+       "does not exist)\") * [Hilda Hilst\\](/wiki/Hilda_Hilst \"Hilda Hilst\") * [Jorge da Cunha \n",
+       "Lima\\](/w/index.php?title=Jorge_da_Cunha_Lima&action=edit&redlink=1 \"Jorge da Cunha Lima (page does not exist)\") * \n",
+       "[Jorge Gerdau\\](/w/index.php?title=Jorge_Gerdau&action=edit&redlink=1 \"Jorge Gerdau (page does not exist)\") * [José\n",
+       "Ermírio de Moraes\\](/w/index.php?title=Jos%C3%A9_Erm%C3%ADrio_de_Moraes&action=edit&redlink=1 \"José Ermírio de \n",
+       "Moraes (page does not exist)\") * [José Safra\\](/w/index.php?title=Jos%C3%A9_Safra&action=edit&redlink=1 \"José Safra\n",
+       "(page does not exist)\") * [Lúcio Costa\\](/wiki/L%C3%BAcio_Costa \"Lúcio Costa\") * [Luís Carlos \n",
+       "Barreto\\](/w/index.php?title=Lu%C3%ADs_Carlos_Barreto&action=edit&redlink=1 \"Luís Carlos Barreto (page does not \n",
+       "exist)\") * [Mãe Olga do Alaketu\\](/w/index.php?title=Olga_Francisca_R%C3%A9gis&action=edit&redlink=1 \"Olga \n",
+       "Francisca Régis (page does not exist)\") * [Marcos \n",
+       "Vilaça\\](/w/index.php?title=Marcos_Vila%C3%A7a&action=edit&redlink=1 \"Marcos Vilaça (page does not exist)\") * \n",
+       "[Maria Clara Machado\\](/wiki/Maria_Clara_Machado \"Maria Clara Machado\") * [Robert \n",
+       "Broughton\\](/w/index.php?title=Robert_Anthony_Broughton&action=edit&redlink=1 \"Robert Anthony Broughton (page does \n",
+       "not exist)\") * [Ubiratan Aguiar\\](/w/index.php?title=Ubiratan_Aguiar&action=edit&redlink=1 \"Ubiratan Aguiar (page \n",
+       "does not exist)\") * [Wladimir Murtinho\\](/w/index.php?title=Wladimir_Murtinho&action=edit&redlink=1 \"Wladimir \n",
+       "Murtinho (page does not exist)\") |\\n| 1998 | * [Abram \n",
+       "Szajman\\](/w/index.php?title=Abram_Szajman&action=edit&redlink=1 \"Abram Szajman (page does not exist)\") * [Altamiro\n",
+       "Carrilho\\](/wiki/Altamiro_Carrilho \"Altamiro Carrilho\") * [Antônio Britto\\](/wiki/Ant%C3%B4nio_Britto \"Antônio \n",
+       "Britto\") * [Ariano Suassuna\\](/wiki/Ariano_Suassuna \"Ariano Suassuna\") * [Carlos Diegues\\](/wiki/Carlos_Diegues \n",
+       "\"Carlos Diegues\") * [Décio de Almeida Prado\\](/w/index.php?title=D%C3%A9cio_de_Almeida_Prado&action=edit&redlink=1 \n",
+       "\"Décio de Almeida Prado (page does not exist)\") * [Franz Weissmann\\](/wiki/Franz_Weissmann \"Franz Weissmann\") * \n",
+       "[João Carlos Martins\\](/wiki/Jo%C3%A3o_Carlos_Martins \"João Carlos Martins\") * [José Hugo \n",
+       "Celidônio\\](/w/index.php?title=Jos%C3%A9_Hugo_Celid%C3%B4nio&action=edit&redlink=1 \"José Hugo Celidônio (page does \n",
+       "not exist)\") * [Lily Marinho\\](/wiki/Lily_Marinho \"Lily Marinho\") * [Mãe Cleusa \n",
+       "Millet\\](/wiki/M%C3%A3e_Cleusa_Millet \"Mãe Cleusa Millet\") * [Milu \n",
+       "Villela\\](/w/index.php?title=Milu_Villela&action=edit&redlink=1 \"Milu Villela (page does not exist)\") * [Miguel \n",
+       "Jorge\\](/wiki/Miguel_Jorge \"Miguel Jorge\") * [Dona \n",
+       "Neuma\\](/w/index.php?title=Neuma_Gon%C3%A7alves_da_Silva&action=edit&redlink=1 \"Neuma Gonçalves da Silva (page does\n",
+       "not exist)\") * [Octavio Frias\\](/w/index.php?title=Oct%C3%A1vio_Frias_de_Oliveira&action=edit&redlink=1 \"Octávio \n",
+       "Frias de Oliveira (page does not exist)\") * [Olavo Monteiro de \n",
+       "Carvalho\\](/w/index.php?title=Olavo_Egydio_Monteiro_de_Carvalho&action=edit&redlink=1 \"Olavo Egydio Monteiro de \n",
+       "Carvalho (page does not exist)\") * [Paulo Autran\\](/wiki/Paulo_Autran \"Paulo Autran\") * [Paulo César \n",
+       "Ximenes\\](/wiki/Paulo_C%C3%A9sar_Ximenes \"Paulo César Ximenes\") * [Roseana Sarney\\](/wiki/Roseana_Sarney \"Roseana \n",
+       "Sarney\") * [Ruth Rocha\\](/wiki/Ruth_Rocha \"Ruth Rocha\") * [Ruy \n",
+       "Mesquita\\](/w/index.php?title=Ruy_Mesquita&action=edit&redlink=1 \"Ruy Mesquita (page does not exist)\") * [Sebastião\n",
+       "Salgado\\](/wiki/Sebasti%C3%A3o_Salgado \"Sebastião Salgado\") * [Walter Hugo Khouri\\](/wiki/Walter_Hugo_Khouri \n",
+       "\"Walter Hugo Khouri\") * [Zenildo Gonzaga Zoroastro de \n",
+       "Lucena\\](/w/index.php?title=Zenildo_Gonzaga_Zoroastro_de_Lucena&action=edit&redlink=1 \"Zenildo Gonzaga Zoroastro de\n",
+       "Lucena (page does not exist)\") |\\n| 1999 | * [Abraham \n",
+       "Koogan\\](/w/index.php?title=Abraham_Koogan&action=edit&redlink=1 \"Abraham Koogan (page does not exist)\") * [Almir \n",
+       "Gabriel\\](/wiki/Almir_Gabriel \"Almir Gabriel\") * [Aloysio Faria\\](/wiki/Aloysio_de_Andrade_Faria \"Aloysio de \n",
+       "Andrade Faria\") * [Ana Maria Diniz\\](/w/index.php?title=Ana_Maria_Diniz&action=edit&redlink=1 \"Ana Maria Diniz \n",
+       "(page does not exist)\") * [Angel Vianna\\](/w/index.php?title=Angel_Vianna&action=edit&redlink=1 \"Angel Vianna (page\n",
+       "does not exist)\") * [Antônio Houaiss\\](/wiki/Ant%C3%B4nio_Houaiss \"Antônio Houaiss\") * [Beatriz Pimenta \n",
+       "Camargo\\](/w/index.php?title=Beatriz_Pimenta_Camargo&action=edit&redlink=1 \"Beatriz Pimenta Camargo (page does not \n",
+       "exist)\") * [Ecyla Brandão\\](/w/index.php?title=Ecyla_Brand%C3%A3o&action=edit&redlink=1 \"Ecyla Brandão (page does \n",
+       "not exist)\") * [Enrique Iglesias\\](/wiki/Enrique_Iglesias \"Enrique Iglesias\") * [Esther \n",
+       "Bertoletti\\](/w/index.php?title=Esther_Bertoletti&action=edit&redlink=1 \"Esther Bertoletti (page does not exist)\") \n",
+       "* [Hélio Jaguaribe\\](/wiki/H%C3%A9lio_Jaguaribe \"Hélio Jaguaribe\") * [Hermínio Bello de \n",
+       "Carvalho\\](/w/index.php?title=Herm%C3%ADnio_Bello_de_Carvalho&action=edit&redlink=1 \"Hermínio Bello de Carvalho \n",
+       "(page does not exist)\") * [J. Borges\\](/wiki/Jos%C3%A9_Francisco_Borges \"José Francisco Borges\") * [João \n",
+       "Antunes\\](/wiki/Jo%C3%A3o_Antunes \"João Antunes\") * [Mãe Stella de \n",
+       "Oxóssi\\](/w/index.php?title=Maria_Stella_de_Azevedo_Santos&action=edit&redlink=1 \"Maria Stella de Azevedo Santos \n",
+       "(page does not exist)\") * [Maria Cecília Geyer\\](/w/index.php?title=Maria_Cec%C3%ADlia_Geyer&action=edit&redlink=1 \n",
+       "\"Maria Cecília Geyer (page does not exist)\") * [Maria Delith \n",
+       "Balaban\\](/w/index.php?title=Maria_Delith_Balaban&action=edit&redlink=1 \"Maria Delith Balaban (page does not \n",
+       "exist)\") * [Mário Covas\\](/wiki/M%C3%A1rio_Covas \"Mário Covas\") * [Paixão \n",
+       "Côrtes\\](/w/index.php?title=Jo%C3%A3o_Carlos_D%27%C3%81vila_Paix%C3%A3o_C%C3%B4rtes&action=edit&redlink=1 \"João \n",
+       "Carlos D\\'Ávila Paixão Côrtes (page does not exist)\") * [Paulo Fontainha \n",
+       "Geyer\\](/w/index.php?title=Paulo_Fontainha_Geyer&action=edit&redlink=1 \"Paulo Fontainha Geyer (page does not \n",
+       "exist)\") * [Romero Magalhães\\](/w/index.php?title=Romero_Magalh%C3%A3es&action=edit&redlink=1 \"Romero Magalhães \n",
+       "(page does not exist)\") * [Washington Novaes\\](/w/index.php?title=Washington_Novaes&action=edit&redlink=1 \n",
+       "\"Washington Novaes (page does not exist)\") |\\n| 2000 | * [Ana Maria Machado\\](/wiki/Ana_Maria_Machado \"Ana Maria \n",
+       "Machado\") * [Angela Gutierrez\\](/w/index.php?title=Angela_Gutierrez&action=edit&redlink=1 \"Angela Gutierrez (page \n",
+       "does not exist)\") * [Dom Geraldo\\](/w/index.php?title=Argemiro_Geraldo_de_Barros_Wanderley&action=edit&redlink=1 \n",
+       "\"Argemiro Geraldo de Barros Wanderley (page does not exist)\") * [Dalal Achcar\\](/wiki/Dalal_Achcar \"Dalal Achcar\") \n",
+       "* [Edino Krieger\\](/wiki/Edino_Krieger \"Edino Krieger\") * [Elizabeth D\\'Angelo \n",
+       "Serra\\](/w/index.php?title=Elizabeth_D%27Angelo_Serra&action=edit&redlink=1 \"Elizabeth D\\'Angelo Serra (page does \n",
+       "not exist)\") * [Firmino Ferreira Sampaio \n",
+       "Neto\\](/w/index.php?title=Firmino_Ferreira_Sampaio_Neto&action=edit&redlink=1 \"Firmino Ferreira Sampaio Neto (page \n",
+       "does not exist)\") * [Siron Franco\\](/wiki/Siron_Franco \"Siron Franco\") * [Gianfrancesco \n",
+       "Guarnieri\\](/wiki/Gianfrancesco_Guarnieri \"Gianfrancesco Guarnieri\") * [Gilberto Gil\\](/wiki/Gilberto_Gil \"Gilberto\n",
+       "Gil\") * [José Alves Antunes Filho\\](/w/index.php?title=Jos%C3%A9_Alves_Antunes_Filho&action=edit&redlink=1 \"José \n",
+       "Alves Antunes Filho (page does not exist)\") * [Luiz Henrique da Silveira\\](/wiki/Luiz_Henrique_da_Silveira \"Luiz \n",
+       "Henrique da Silveira\") * [Luiz Sponchiato\\](/w/index.php?title=Luiz_Sponchiato&action=edit&redlink=1 \"Luiz \n",
+       "Sponchiato (page does not exist)\") * [Maria João Bustorff\\](/wiki/Maria_Jo%C3%A3o_Bustorff \"Maria João Bustorff\") *\n",
+       "[Mário Miguel Nicola Garófalo\\](/w/index.php?title=M%C3%A1rio_Miguel_Nicola_Gar%C3%B3falo&action=edit&redlink=1 \n",
+       "\"Mário Miguel Nicola Garófalo (page does not exist)\") * [Martinho da Vila\\](/wiki/Martinho_da_Vila \"Martinho da \n",
+       "Vila\") * [Nelson José Pinto Freire\\](/wiki/Nelson_Jos%C3%A9_Pinto_Freire \"Nelson José Pinto Freire\") * [Paulo Tarso\n",
+       "Flecha de Lima\\](/wiki/Paulo_Tarso_Flecha_de_Lima \"Paulo Tarso Flecha de Lima\") * [Plínio \n",
+       "Pacheco\\](/w/index.php?title=Pl%C3%ADnio_Pacheco&action=edit&redlink=1 \"Plínio Pacheco (page does not exist)\") * \n",
+       "[Rodrigo Pederneiras Barbosa\\](/w/index.php?title=Rodrigo_Pederneiras_Barbosa&action=edit&redlink=1 \"Rodrigo \n",
+       "Pederneiras Barbosa (page does not exist)\") * [Ruth Escobar\\](/wiki/Ruth_Escobar \"Ruth Escobar\") * [Sabine \n",
+       "Lovatelli\\](/w/index.php?title=Sabine_Lovatelli&action=edit&redlink=1 \"Sabine Lovatelli (page does not exist)\") * \n",
+       "[Sérgio Paulo Rouanet\\](/wiki/S%C3%A9rgio_Paulo_Rouanet \"Sérgio Paulo Rouanet\") * [Sérgio \n",
+       "Amaral\\](/w/index.php?title=S%C3%A9rgio_Silva_do_Amaral&action=edit&redlink=1 \"Sérgio Silva do Amaral (page does \n",
+       "not exist)\") * [Thomaz Farkas\\](/wiki/Thomaz_Farkas \"Thomaz Farkas\") * [Tizuka Yamasaki\\](/wiki/Tizuka_Yamasaki \n",
+       "\"Tizuka Yamasaki\") * [Zezé Motta\\](/wiki/Zez%C3%A9_Motta \"Zezé Motta\") |\\n| 2001 | * [Arthur Moreira \n",
+       "Lima\\](/wiki/Arthur_Moreira_Lima \"Arthur Moreira Lima\") * [Catherine Tasca\\](/wiki/Catherine_Tasca \"Catherine \n",
+       "Tasca\") * [Célia Procópio de Araújo \n",
+       "Carvalho\\](/w/index.php?title=C%C3%A9lia_Proc%C3%B3pio_de_Ara%C3%BAjo_Carvalho&action=edit&redlink=1 \"Célia \n",
+       "Procópio de Araújo Carvalho (page does not exist)\") * [Euclides Menezes \n",
+       "Ferreira\\](/w/index.php?title=Euclides_Menezes_Ferreira&action=edit&redlink=1 \"Euclides Menezes Ferreira (page does\n",
+       "not exist)\") * [Dona Zica\\](/w/index.php?title=Euz%C3%A9bia_Silva_de_Oliveira&action=edit&redlink=1 \"Euzébia Silva \n",
+       "de Oliveira (page does not exist)\") * [Fernando Faro\\](/w/index.php?title=Fernando_Faro&action=edit&redlink=1 \n",
+       "\"Fernando Faro (page does not exist)\") * [G.R.E.S. Império Serrano\\](/wiki/Imp%C3%A9rio_Serrano \"Império Serrano\") \n",
+       "* [G.R.E.S. Portela\\](/wiki/Portela_(samba_school) \"Portela (samba school)\") * [G.R.E.S. Vila \n",
+       "Isabel\\](/wiki/Unidos_de_Vila_Isabel \"Unidos de Vila Isabel\") * [G.R.E.S. \n",
+       "Mangueira\\](/wiki/Esta%C3%A7%C3%A3o_Primeira_de_Mangueira \"Estação Primeira de Mangueira\") * [Haroldo \n",
+       "Costa\\](/w/index.php?title=Haroldo_Costa&action=edit&redlink=1 \"Haroldo Costa (page does not exist)\") * [Hermínio \n",
+       "Bello de Carvalho\\](/w/index.php?title=Herm%C3%ADnio_Bello_de_Carvalho&action=edit&redlink=1 \"Hermínio Bello de \n",
+       "Carvalho (page does not exist)\") * [Henri Philippe \n",
+       "Reichstul\\](/w/index.php?title=Henri_Philippe_Reichstul&action=edit&redlink=1 \"Henri Philippe Reichstul (page does \n",
+       "not exist)\") * [Hildmar Diniz\\](/w/index.php?title=Hildmar_Diniz&action=edit&redlink=1 \"Hildmar Diniz (page does \n",
+       "not exist)\") * [Ivo Abrahão Nesralla\\](/w/index.php?title=Ivo_Abrah%C3%A3o_Nesralla&action=edit&redlink=1 \"Ivo \n",
+       "Abrahão Nesralla (page does not exist)\") * [Jamelão\\](/wiki/Jamel%C3%A3o \"Jamelão\") * [João Câmara \n",
+       "Filho\\](/w/index.php?title=Jo%C3%A3o_C%C3%A2mara_Filho&action=edit&redlink=1 \"João Câmara Filho (page does not \n",
+       "exist)\") * [Luciana Stegagno Picchio\\](/w/index.php?title=Luciana_Stegagno_Picchio&action=edit&redlink=1 \"Luciana \n",
+       "Stegagno Picchio (page does not exist)\") * [Luís Antônio \n",
+       "Viana\\](/w/index.php?title=Lu%C3%ADs_Ant%C3%B4nio_Viana&action=edit&redlink=1 \"Luís Antônio Viana (page does not \n",
+       "exist)\") * [Lygia Fagundes Telles\\](/wiki/Lygia_Fagundes_Telles \"Lygia Fagundes Telles\") * [Manuel Salustiano \n",
+       "Soares\\](/w/index.php?title=Manuel_Salustiano_Soares&action=edit&redlink=1 \"Manuel Salustiano Soares (page does not\n",
+       "exist)\") * [Milton Gonçalves\\](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Milton \n",
+       "Nascimento\\](/wiki/Milton_Nascimento \"Milton Nascimento\") * [Paulinho da Viola\\](/wiki/Paulinho_da_Viola \"Paulinho \n",
+       "da Viola\") * [Pilar del Castillo\\](/wiki/Pilar_del_Castillo \"Pilar del Castillo\") * [Purificación Carpinteyro \n",
+       "Calderón\\](/wiki/Purificaci%C3%B3n_Carpinteyro_Calder%C3%B3n \"Purificación Carpinteyro Calderón\") * [Sari \n",
+       "Bermúdez\\](/w/index.php?title=Sari_Berm%C3%BAdez&action=edit&redlink=1 \"Sari Bermúdez (page does not exist)\") * \n",
+       "[Sheila Copps\\](/wiki/Sheila_Copps \"Sheila Copps\") * [Synésio Scofano \n",
+       "Fernandes\\](/w/index.php?title=Syn%C3%A9sio_Scofano_Fernandes&action=edit&redlink=1 \"Synésio Scofano Fernandes \n",
+       "(page does not exist)\") * [Thiago de Mello\\](/wiki/Thiago_de_Mello \"Thiago de Mello\") * [Yvonne Lara da \n",
+       "Costa\\](/wiki/Dona_Ivone_Lara \"Dona Ivone Lara\") |\\n| 2002 | * [Alberto Alves da \n",
+       "Silva\\](/w/index.php?title=Alberto_Alves_da_Silva&action=edit&redlink=1 \"Alberto Alves da Silva (page does not \n",
+       "exist)\") * [Ana Botafogo\\](/wiki/Ana_Botafogo \"Ana Botafogo\") * [Candace Slater\\](/wiki/Candace_Slater \"Candace \n",
+       "Slater\") * [Carlos Roberto Faccina\\](/w/index.php?title=Carlos_Roberto_Faccina&action=edit&redlink=1 \"Carlos \n",
+       "Roberto Faccina (page does not exist)\") * [Centro Cultural Pró-Música\\](/wiki/Federal_University_of_Juiz_de_Fora \n",
+       "\"Federal University of Juiz de Fora\") * [Dalva Lazaroni\\](/w/index.php?title=Dalva_Lazaroni&action=edit&redlink=1 \n",
+       "\"Dalva Lazaroni (page does not exist)\") * [Dominguinhos\\](/wiki/Dominguinhos \"Dominguinhos\") * [Dona \n",
+       "Lucinha\\](/w/index.php?title=Maria_Lucia_Clementino_Nunes&action=edit&redlink=1 \"Maria Lucia Clementino Nunes (page\n",
+       "does not exist)\") * [EDUSP\\](/w/index.php?title=Editora_da_Universidade_de_S%C3%A3o_Paulo&action=edit&redlink=1 \n",
+       "\"Editora da Universidade de São Paulo (page does not exist)\") * [Eduardo Baptista \n",
+       "Vianna\\](/w/index.php?title=Eduardo_Baptista_Vianna&action=edit&redlink=1 \"Eduardo Baptista Vianna (page does not \n",
+       "exist)\") * [Frances Marinho\\](/w/index.php?title=Francisca_Clara_Reynolds_Marinho&action=edit&redlink=1 \"Francisca \n",
+       "Clara Reynolds Marinho (page does not exist)\") * [George Savalla Gomes\\](/wiki/George_Savalla_Gomes \"George Savalla\n",
+       "Gomes\") * [Guillermo O\\'Donnell\\](/wiki/Guillermo_O%27Donnell \"Guillermo O\\'Donnell\") * [G.R.E.S. Camisa Verde e \n",
+       "Branco\\](/w/index.php?title=Camisa_Verde_e_Branco&action=edit&redlink=1 \"Camisa Verde e Branco (page does not \n",
+       "exist)\") * [G.R.E.S. Vai Vai\\](/wiki/Vai-Vai \"Vai-Vai\") * [Henry Sobel\\](/wiki/Henry_Sobel \"Henry Sobel\") * [Jack \n",
+       "Leon Terpins\\](/w/index.php?title=Jack_Leon_Terpins&action=edit&redlink=1 \"Jack Leon Terpins (page does not \n",
+       "exist)\") * [João Filgueiras\\](/w/index.php?title=Jo%C3%A3o_Filgueiras&action=edit&redlink=1 \"João Filgueiras (page \n",
+       "does not exist)\") * [Jon M. Tolman\\](/w/index.php?title=Jon_M._Tolman&action=edit&redlink=1 \"Jon M. Tolman (page \n",
+       "does not exist)\") * [Júlio Neves\\](/w/index.php?title=J%C3%BAlio_Neves&action=edit&redlink=1 \"Júlio Neves (page \n",
+       "does not exist)\") * [Julio Landmann\\](/w/index.php?title=Julio_Landmann&action=edit&redlink=1 \"Julio Landmann (page\n",
+       "does not exist)\") * [Kabengele Munanga\\](/wiki/Kabengele_Munanga \"Kabengele Munanga\") * [Lima \n",
+       "Duarte\\](/wiki/Lima_Duarte \"Lima Duarte\") * [Maria Della Costa\\](/wiki/Maria_Della_Costa \"Maria Della Costa\") * \n",
+       "[Marlui Miranda\\](/wiki/Marlui_Miranda \"Marlui Miranda\") * [Mestre \n",
+       "Juca\\](/w/index.php?title=Jos%C3%A9_Raimundo_Pereira&action=edit&redlink=1 \"José Raimundo Pereira (page does not \n",
+       "exist)\") * [Niède Guidon\\](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * [Paulo Evaristo \n",
+       "Arns\\](/wiki/Paulo_Evaristo_Arns \"Paulo Evaristo Arns\") * [Renato Borghetti\\](/wiki/Renato_Borghetti \"Renato \n",
+       "Borghetti\") * [Roberto Carlos\\](/wiki/Roberto_Carlos_(singer) \"Roberto Carlos (singer)\") * [Roberto \n",
+       "DaMatta\\](/wiki/Roberto_DaMatta \"Roberto DaMatta\") * [Sergio \n",
+       "Kobayashi\\](/w/index.php?title=Sergio_Kobayashi&action=edit&redlink=1 \"Sergio Kobayashi (page does not exist)\") * \n",
+       "[Silvio Barbato\\](/wiki/Silvio_Barbato \"Silvio Barbato\") * \n",
+       "[SBB\\](/w/index.php?title=Sociedade_B%C3%ADblica_do_Brasil&action=edit&redlink=1 \"Sociedade Bíblica do Brasil (page\n",
+       "does not exist)\") * [Tania Mariza Kuchenbecker \n",
+       "Rösing\\](/w/index.php?title=Tania_Mariza_Kuchenbecker_R%C3%B6sing&action=edit&redlink=1 \"Tania Mariza Kuchenbecker \n",
+       "Rösing (page does not exist)\") * [Vitae – Apoio à Cultura, Educação e Promoção Social\\](/wiki/FAPESP \"FAPESP\") |\\n|\n",
+       "2003 | * [Afro Reggae\\](/wiki/Afro_Reggae \"Afro Reggae\") * [Agostinho da Silva\\](/wiki/Agostinho_da_Silva \n",
+       "\"Agostinho da Silva\") * [Aloísio Magalhães\\](/wiki/Alo%C3%ADsio_Magalh%C3%A3es \"Aloísio Magalhães\") * [Antônio \n",
+       "Nóbrega\\](/wiki/Antonio_N%C3%B3brega \"Antonio Nóbrega\") * [Ary Barroso\\](/wiki/Ary_Barroso \"Ary Barroso\") * \n",
+       "[ABC-SERRA\\](/w/index.php?title=Associa%C3%A7%C3%A3o_de_Bandas_Congo_da_Serra&action=edit&redlink=1 \"Associação de \n",
+       "Bandas Congo da Serra (page does not exist)\") * [Bené \n",
+       "Fonteles\\](/w/index.php?title=Ben%C3%A9_Fonteles&action=edit&redlink=1 \"Bené Fonteles (page does not exist)\") * \n",
+       "[Benedito Nunes\\](/wiki/Benedito_Nunes \"Benedito Nunes\") * [Boi \n",
+       "Caprichoso\\](/w/index.php?title=Boi_Caprichoso&action=edit&redlink=1 \"Boi Caprichoso (page does not exist)\") * [Boi\n",
+       "Garantido\\](/w/index.php?title=Boi_Garantido&action=edit&redlink=1 \"Boi Garantido (page does not exist)\") * \n",
+       "[Candido Portinari\\](/wiki/Candido_Portinari \"Candido Portinari\") * [Carmen Costa\\](/wiki/Carmen_Costa \"Carmen \n",
+       "Costa\") * [Casseta & Planeta\\](/wiki/Casseta_%26_Planeta \"Casseta & Planeta\") * [Chico Buarque de \n",
+       "Holanda\\](/wiki/Chico_Buarque_de_Holanda \"Chico Buarque de Holanda\") * [Coral dos \n",
+       "Guarani\\](/w/index.php?title=Coral_dos_Guarani&action=edit&redlink=1 \"Coral dos Guarani (page does not exist)\") * \n",
+       "[Dorival Caymmi\\](/wiki/Dorival_Caymmi \"Dorival Caymmi\") * [Eduardo Bueno\\](/wiki/Eduardo_Bueno \"Eduardo Bueno\") * \n",
+       "[Gilberto Mendes\\](/wiki/Gilberto_Mendes \"Gilberto Mendes\") * [Grupo Ponto de Partida e o coro Meninos de \n",
+       "Araçuaí\\](/w/index.php?title=Grupo_Ponto_de_Partida_e_o_coro_Meninos_de_Ara%C3%A7ua%C3%AD&action=edit&redlink=1 \n",
+       "\"Grupo Ponto de Partida e o coro Meninos de Araçuaí (page does not exist)\") * [Haroldo de \n",
+       "Campos\\](/wiki/Haroldo_de_Campos \"Haroldo de Campos\") * [Herbert Vianna\\](/wiki/Herbert_Vianna \"Herbert Vianna\") * \n",
+       "[João Pequeno\\](/wiki/Jo%C3%A3o_Pequeno \"João Pequeno\") * [Jongo da \n",
+       "Serrinha\\](/w/index.php?title=Jongo_da_Serrinha&action=edit&redlink=1 \"Jongo da Serrinha (page does not exist)\") * \n",
+       "[Jorge Mautner\\](/wiki/Jorge_Mautner \"Jorge Mautner\") * [Maria Judith Zuzarte \n",
+       "Cortesão\\](/wiki/Maria_Judith_Zuzarte_Cortes%C3%A3o \"Maria Judith Zuzarte Cortesão\") * [Luiz Costa \n",
+       "Lima\\](/w/index.php?title=Luiz_Costa_Lima&action=edit&redlink=1 \"Luiz Costa Lima (page does not exist)\") * \n",
+       "[Mangueira do Amanhã\\](/w/index.php?title=Mangueira_do_Amanh%C3%A3&action=edit&redlink=1 \"Mangueira do Amanhã (page\n",
+       "does not exist)\") * [Manoel de Barros\\](/wiki/Manoel_de_Barros \"Manoel de Barros\") * [Marília \n",
+       "Pêra\\](/wiki/Mar%C3%ADlia_P%C3%AAra \"Marília Pêra\") * [Milton Santos\\](/wiki/Milton_Santos \"Milton Santos\") * \n",
+       "[Moacyr Scliar\\](/wiki/Moacyr_Scliar \"Moacyr Scliar\") * [Nelson Pereira dos \n",
+       "Santos\\](/wiki/Nelson_Pereira_dos_Santos \"Nelson Pereira dos Santos\") * [Projeto \n",
+       "Axé\\](/w/index.php?title=Projeto_Ax%C3%A9&action=edit&redlink=1 \"Projeto Axé (page does not exist)\") * [Projeto \n",
+       "Guri\\](/w/index.php?title=Projeto_Guri&action=edit&redlink=1 \"Projeto Guri (page does not exist)\") * [Rita \n",
+       "Lee\\](/wiki/Rita_Lee \"Rita Lee\") * [Roberto Farias\\](/wiki/Roberto_Farias \"Roberto Farias\") * [Rogério \n",
+       "Sganzerla\\](/wiki/Rog%C3%A9rio_Sganzerla \"Rogério Sganzerla\") * [Rubinho do \n",
+       "Vale\\](/w/index.php?title=Rubinho_do_Vale&action=edit&redlink=1 \"Rubinho do Vale (page does not exist)\") * [Velha \n",
+       "Guarda da Portela\\](/w/index.php?title=Velha_Guarda_da_Portela&action=edit&redlink=1 \"Velha Guarda da Portela (page\n",
+       "does not exist)\") * [Zezé Di Camargo & Luciano\\](/wiki/Zez%C3%A9_Di_Camargo_%26_Luciano \"Zezé Di Camargo & \n",
+       "Luciano\") |\\n| 2004 | * [Alberto da Costa e Silva\\](/wiki/Alberto_da_Costa_e_Silva \"Alberto da Costa e Silva\") * \n",
+       "[Angeli\\](/wiki/Arnaldo_Angeli_Filho \"Arnaldo Angeli Filho\") * [Arnaldo \n",
+       "Carrilho\\](/w/index.php?title=Arnaldo_Carrilho&action=edit&redlink=1 \"Arnaldo Carrilho (page does not exist)\") * \n",
+       "[Caetano Veloso\\](/wiki/Caetano_Veloso \"Caetano Veloso\") * [Candombe do \n",
+       "Açude\\](/w/index.php?title=Candombe_do_A%C3%A7ude&action=edit&redlink=1 \"Candombe do Açude (page does not exist)\") \n",
+       "* [Companhia Barrica\\](/w/index.php?title=Companhia_Barrica&action=edit&redlink=1 \"Companhia Barrica (page does not\n",
+       "exist)\") * [Cordão da Bola Preta\\](/wiki/Cord%C3%A3o_da_Bola_Preta \"Cordão da Bola Preta\") * [Danilo \n",
+       "Miranda\\](/wiki/Danilo_Miranda \"Danilo Miranda\") * [Fernando Sabino\\](/wiki/Fernando_Sabino \"Fernando Sabino\") * \n",
+       "[Frans Krajcberg\\](/wiki/Frans_Krajcberg \"Frans Krajcberg\") * [Franco Fontana\\](/wiki/Franco_Fontana \"Franco \n",
+       "Fontana\") * [Fundação Casa Grande\\](/w/index.php?title=Funda%C3%A7%C3%A3o_Casa_Grande&action=edit&redlink=1 \n",
+       "\"Fundação Casa Grande (page does not exist)\") * [Geraldo Sarno\\](/wiki/Geraldo_Sarno \"Geraldo Sarno\") * [Inezita \n",
+       "Barroso\\](/wiki/Inezita_Barroso \"Inezita Barroso\") * [João Donato\\](/wiki/Jo%C3%A3o_Donato \"João Donato\") * [José \n",
+       "Júlio Pereira Cordeiro \n",
+       "Blanco\\](/w/index.php?title=Jos%C3%A9_J%C3%BAlio_Pereira_Cordeiro_Blanco&action=edit&redlink=1 \"José Júlio Pereira \n",
+       "Cordeiro Blanco (page does not exist)\") * [Lia de \n",
+       "Itamaracá\\](/w/index.php?title=Maria_Madalena_Correia_do_Nascimento&action=edit&redlink=1 \"Maria Madalena Correia \n",
+       "do Nascimento (page does not exist)\") * [Liz Calder\\](/wiki/Liz_Calder \"Liz Calder\") * [Márcia \n",
+       "Haydée\\](/w/index.php?title=M%C3%A1rcia_Hayd%C3%A9e&action=edit&redlink=1 \"Márcia Haydée (page does not exist)\") * \n",
+       "[Mauricio de Sousa\\](/wiki/Mauricio_de_Sousa \"Mauricio de Sousa\") * [Movimento Arte contra a \n",
+       "Barbárie\\](/w/index.php?title=Movimento_Arte_contra_a_Barb%C3%A1rie&action=edit&redlink=1 \"Movimento Arte contra a \n",
+       "Barbárie (page does not exist)\") * [Odete Lara\\](/wiki/Odete_Lara \"Odete Lara\") * [Olga Praguer \n",
+       "Coelho\\](/wiki/Olga_Praguer_Coelho \"Olga Praguer Coelho\") * [Orlando \n",
+       "Villas-Bôas\\](/w/index.php?title=Orlando_Villas-B%C3%B4as&action=edit&redlink=1 \"Orlando Villas-Bôas (page does not\n",
+       "exist)\") * [Ozualdo Candeias\\](/w/index.php?title=Ozualdo_Candeias&action=edit&redlink=1 \"Ozualdo Candeias (page \n",
+       "does not exist)\") * [Paulo José\\](/wiki/Paulo_Jos%C3%A9 \"Paulo José\") * [Paulo Mendes da \n",
+       "Rocha\\](/wiki/Paulo_Mendes_da_Rocha \"Paulo Mendes da Rocha\") * [Pelé\\](/wiki/Pel%C3%A9 \"Pelé\") * [Povo Panará, Mato\n",
+       "Grosso e Pará\\](/w/index.php?title=Povo_Panar%C3%A1,_Mato_Grosso_e_Par%C3%A1&action=edit&redlink=1 \"Povo Panará, \n",
+       "Mato Grosso e Pará (page does not exist)\") * \n",
+       "[Pracatum\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Pracatum_A%C3%A7%C3%A3o_Social&action=edit&redlink=1 \n",
+       "\"Associação Pracatum Ação Social (page does not exist)\") * [Projeto Dança \n",
+       "Comunidade\\](/w/index.php?title=Projeto_Dan%C3%A7a_Comunidade&action=edit&redlink=1 \"Projeto Dança Comunidade (page\n",
+       "does not exist)\") * [Pulsar Companhia de \n",
+       "Dança\\](/w/index.php?title=Pulsar_Companhia_de_Dan%C3%A7a&action=edit&redlink=1 \"Pulsar Companhia de Dança (page \n",
+       "does not exist)\") * [Rachel de Queiroz\\](/wiki/Rachel_de_Queiroz \"Rachel de Queiroz\") * [Renato \n",
+       "Russo\\](/wiki/Renato_Russo \"Renato Russo\") * [As Ceguinhas de Campina \n",
+       "Grande\\](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n",
+       "(page does not exist)\") * [Teatro Oficina\\](/wiki/Teatro_Oficina \"Teatro Oficina\") * [Violeta \n",
+       "Arraes\\](/w/index.php?title=Violeta_Arraes&action=edit&redlink=1 \"Violeta Arraes (page does not exist)\") * [Vó \n",
+       "Maria\\](/w/index.php?title=Maria_das_Dores_dos_Santos&action=edit&redlink=1 \"Maria das Dores dos Santos (page does \n",
+       "not exist)\") * [Walter Firmo\\](/w/index.php?title=Walter_Firmo&action=edit&redlink=1 \"Walter Firmo (page does not \n",
+       "exist)\") * [Waly Salomão\\](/wiki/Waly_Salom%C3%A3o \"Waly Salomão\") |\\n| 2005 | * [Alfredo Bosi\\](/wiki/Alfredo_Bosi\n",
+       "\"Alfredo Bosi\") * [Ana das Carrancas\\](/w/index.php?title=Ana_Leopoldina_dos_Santos&action=edit&redlink=1 \"Ana \n",
+       "Leopoldina dos Santos (page does not exist)\") * [Antonio Jerônimo de Meneses \n",
+       "Neto\\](/w/index.php?title=Antonio_Jer%C3%B4nimo_de_Meneses_Neto&action=edit&redlink=1 \"Antonio Jerônimo de Meneses \n",
+       "Neto (page does not exist)\") * [Antonio Manuel Lima \n",
+       "Dias\\](/w/index.php?title=Antonio_Manuel_Lima_Dias&action=edit&redlink=1 \"Antonio Manuel Lima Dias (page does not \n",
+       "exist)\") * [Augusto Boal\\](/wiki/Augusto_Boal \"Augusto Boal\") * [Augusto Carlos da Silva \n",
+       "Teles\\](/w/index.php?title=Augusto_Carlos_da_Silva_Teles&action=edit&redlink=1 \"Augusto Carlos da Silva Teles (page\n",
+       "does not exist)\") * [Pinduca\\](/w/index.php?title=Aurino_Quirino_Gon%C3%A7alves&action=edit&redlink=1 \"Aurino \n",
+       "Quirino Gonçalves (page does not exist)\") * [Ballet \n",
+       "Stagium\\](/w/index.php?title=Ballet_Stagium&action=edit&redlink=1 \"Ballet Stagium (page does not exist)\") * [Carlos\n",
+       "Lopes\\](/wiki/Carlos_Lopes \"Carlos Lopes\") * [CUCA/UNE\\](/wiki/Uni%C3%A3o_Nacional_dos_Estudantes \"União Nacional \n",
+       "dos Estudantes\") * [Cleyde Yáconis\\](/wiki/Cleyde_Y%C3%A1conis \"Cleyde Yáconis\") * [Clóvis \n",
+       "Moura\\](/w/index.php?title=Cl%C3%B3vis_Moura&action=edit&redlink=1 \"Clóvis Moura (page does not exist)\") * [Darcy \n",
+       "Ribeiro\\](/wiki/Darcy_Ribeiro \"Darcy Ribeiro\") * [Eduardo Coutinho\\](/wiki/Eduardo_Coutinho \"Eduardo Coutinho\") * \n",
+       "[Egberto Gismonti\\](/wiki/Egberto_Gismonti \"Egberto Gismonti\") * [Eliane Lage\\](/wiki/Eliane_Lage \"Eliane Lage\") * \n",
+       "[Grupo Bandolins de Oeiras\\](/w/index.php?title=Grupo_Bandolins_de_Oeiras&action=edit&redlink=1 \"Grupo Bandolins de\n",
+       "Oeiras (page does not exist)\") * [Henri Salvador\\](/wiki/Henri_Salvador \"Henri Salvador\") * [Isabel Mendes da \n",
+       "Cunha\\](/w/index.php?title=Isabel_Mendes_da_Cunha&action=edit&redlink=1 \"Isabel Mendes da Cunha (page does not \n",
+       "exist)\") * [João Gilberto\\](/wiki/Jo%C3%A3o_Gilberto \"João Gilberto\") * [José Antônio de Almeida \n",
+       "Prado\\](/wiki/Almeida_Prado \"Almeida Prado\") * [José Mojica Marins\\](/wiki/Jos%C3%A9_Mojica_Marins \"José Mojica \n",
+       "Marins\") * [Lino Rojas\\](/w/index.php?title=Lino_Rojas&action=edit&redlink=1 \"Lino Rojas (page does not exist)\") * \n",
+       "[Manuel dos Reis Machado\\](/wiki/Manuel_dos_Reis_Machado \"Manuel dos Reis Machado\") * [Maria \n",
+       "Bethânia\\](/wiki/Maria_Beth%C3%A2nia \"Maria Bethânia\") * [Mario Augusto de Berredo \n",
+       "Carneiro\\](/w/index.php?title=M%C3%A1rio_Carneiro&action=edit&redlink=1 \"Mário Carneiro (page does not exist)\") * \n",
+       "[Maurice Capovilla\\](/wiki/Maurice_Capovilla \"Maurice Capovilla\") * [Dona \n",
+       "Militana\\](/wiki/Militana_Salustino_do_Nascimento \"Militana Salustino do Nascimento\") * [Movimento \n",
+       "Manguebeat\\](/wiki/Manguebeat \"Manguebeat\") * [Museu Casa do \n",
+       "Pontal\\](/w/index.php?title=Museu_Casa_do_Pontal&action=edit&redlink=1 \"Museu Casa do Pontal (page does not \n",
+       "exist)\") * [Nei Lopes\\](/wiki/Nei_Lopes \"Nei Lopes\") * [Nino \n",
+       "Fernandes\\](/w/index.php?title=Nino_Fernandes&action=edit&redlink=1 \"Nino Fernandes (page does not exist)\") * \n",
+       "[Olivério Ferreira\\](/w/index.php?title=Xang%C3%B4_da_Mangueira&action=edit&redlink=1 \"Xangô da Mangueira (page \n",
+       "does not exist)\") * [Paulo Linhares\\](/w/index.php?title=Paulo_Linhares&action=edit&redlink=1 \"Paulo Linhares (page\n",
+       "does not exist)\") * [Roger Avanzi\\](/w/index.php?title=Roger_Avanzi&action=edit&redlink=1 \"Roger Avanzi (page does \n",
+       "not exist)\") * [Ruth de Souza\\](/wiki/Ruth_de_Souza \"Ruth de Souza\") * [Silviano Santiago\\](/wiki/Silviano_Santiago\n",
+       "\"Silviano Santiago\") * [Vicente Joaquim Ferreira Pastinha\\](/wiki/Mestre_Pastinha \"Mestre Pastinha\") * \n",
+       "[Ziraldo\\](/wiki/Ziraldo \"Ziraldo\") |\\n| 2006 | * [Amir Haddad\\](/wiki/Amir_Haddad \"Amir Haddad\") * [Banda de \n",
+       "Pífanos de Caruaru\\](/w/index.php?title=Banda_de_P%C3%ADfanos_de_Caruaru&action=edit&redlink=1 \"Banda de Pífanos de\n",
+       "Caruaru (page does not exist)\") * [Berthold Zilly\\](/w/index.php?title=Berthold_Zilly&action=edit&redlink=1 \n",
+       "\"Berthold Zilly (page does not exist)\") * [Casa de Cultura \n",
+       "Tainã\\](/w/index.php?title=Casa_de_Cultura_Tain%C3%A3&action=edit&redlink=1 \"Casa de Cultura Tainã (page does not \n",
+       "exist)\") * \n",
+       "[CEASM\\](/w/index.php?title=Centro_de_Estudos_e_A%C3%A7%C3%B5es_Solid%C3%A1rias_da_Mar%C3%A9&action=edit&redlink=1 \n",
+       "\"Centro de Estudos e Ações Solidárias da Maré (page does not exist)\") * [Conselho Internacional de \n",
+       "Museus\\](/wiki/International_Council_of_Museums \"International Council of Museums\") * [Cora \n",
+       "Coralina\\](/wiki/Cora_Coralina \"Cora Coralina\") * [Curt Meyer-Clason\\](/wiki/Curt_Meyer-Clason \"Curt Meyer-Clason\")\n",
+       "* [Daniel Munduruku\\](/wiki/Daniel_Munduruku \"Daniel Munduruku\") * [Dino Garcia \n",
+       "Carrera\\](/w/index.php?title=Dino_Garcia_Carrera&action=edit&redlink=1 \"Dino Garcia Carrera (page does not exist)\")\n",
+       "* [Dona Teté Cacuriá\\](/w/index.php?title=Almerice_da_Silva_Santos&action=edit&redlink=1 \"Almerice da Silva Santos \n",
+       "(page does not exist)\") * [Emmanuel Nassar\\](/w/index.php?title=Emmanuel_Nassar&action=edit&redlink=1 \"Emmanuel \n",
+       "Nassar (page does not exist)\") * [Escola de Museologia da \n",
+       "UniRio\\](/wiki/Universidade_Federal_do_Estado_do_Rio_de_Janeiro \"Universidade Federal do Estado do Rio de Janeiro\")\n",
+       "* [Feira do Livro de Porto Alegre\\](/w/index.php?title=Feira_do_Livro_de_Porto_Alegre&action=edit&redlink=1 \"Feira \n",
+       "do Livro de Porto Alegre (page does not exist)\") * [Fernando Birri\\](/wiki/Fernando_Birri \"Fernando Birri\") * \n",
+       "[Grupo Corpo\\](/wiki/Grupo_Corpo \"Grupo Corpo\") * [Henry \n",
+       "Thorau\\](/w/index.php?title=Henry_Thorau&action=edit&redlink=1 \"Henry Thorau (page does not exist)\") * [Intrépida \n",
+       "Trupe\\](/w/index.php?title=Intr%C3%A9pida_Trupe&action=edit&redlink=1 \"Intrépida Trupe (page does not exist)\") * \n",
+       "[Johannes Odenthal\\](/w/index.php?title=Johannes_Odenthal_(Brazil)&action=edit&redlink=1 \"Johannes Odenthal \n",
+       "(Brazil) (page does not exist)\") * [José Mindlin\\](/wiki/Jos%C3%A9_Mindlin \"José Mindlin\") * [Josué de \n",
+       "Castro\\](/wiki/Josu%C3%A9_de_Castro \"Josué de Castro\") * [Júlio Bressane\\](/wiki/J%C3%BAlio_Bressane \"Júlio \n",
+       "Bressane\") * [Laura Cardoso\\](/wiki/Laura_Cardoso \"Laura Cardoso\") * [Lauro César \n",
+       "Muniz\\](/w/index.php?title=Lauro_C%C3%A9sar_Muniz&action=edit&redlink=1 \"Lauro César Muniz (page does not exist)\") \n",
+       "* [Lygia Martins Costa\\](/w/index.php?title=Lygia_Martins_Costa&action=edit&redlink=1 \"Lygia Martins Costa (page \n",
+       "does not exist)\") * [Luiz Phelipe de Carvalho Castro \n",
+       "Andrés\\](/w/index.php?title=Luiz_Phelipe_de_Carvalho_Castro_Andr%C3%A9s&action=edit&redlink=1 \"Luiz Phelipe de \n",
+       "Carvalho Castro Andrés (page does not exist)\") * [Mário Cravo Neto\\](/wiki/M%C3%A1rio_Cravo_Neto \"Mário Cravo \n",
+       "Neto\") * [Mário de Andrade\\](/wiki/M%C3%A1rio_de_Andrade \"Mário de Andrade\") * [Mário \n",
+       "Pedrosa\\](/wiki/M%C3%A1rio_Pedrosa \"Mário Pedrosa\") * [Mestre \n",
+       "Eugênio\\](/w/index.php?title=Mestre_Eug%C3%AAnio&action=edit&redlink=1 \"Mestre Eugênio (page does not exist)\") * \n",
+       "[Mestre Verequete\\](/w/index.php?title=Augusto_Gomes_Rodrigues&action=edit&redlink=1 \"Augusto Gomes Rodrigues (page\n",
+       "does not exist)\") * [Ministerio de Educación, Cultura y \n",
+       "Deporte\\](/wiki/Ministry_of_Education,_Culture_and_Sport_(Spain) \"Ministry of Education, Culture and Sport \n",
+       "(Spain)\") * [Moacir Santos\\](/wiki/Moacir_Santos \"Moacir Santos\") * \n",
+       "[MAX\\](/w/index.php?title=Museu_de_Arqueologia_de_Xing%C3%B3&action=edit&redlink=1 \"Museu de Arqueologia de Xingó \n",
+       "(page does not exist)\") * [Paulo César Saraceni\\](/wiki/Paulo_C%C3%A9sar_Saraceni \"Paulo César Saraceni\") * [Pompeu\n",
+       "Christovam de Pina\\](/w/index.php?title=Pompeu_Christovam_de_Pina&action=edit&redlink=1 \"Pompeu Christovam de Pina \n",
+       "(page does not exist)\") * [Racionais MC\\'s\\](/wiki/Racionais_MC%27s \"Racionais MC\\'s\") * [Ray-Güde \n",
+       "Mertin\\](/w/index.php?title=Ray-G%C3%BCde_Mertin&action=edit&redlink=1 \"Ray-Güde Mertin (page does not exist)\") * \n",
+       "[Rodrigo Melo Franco\\](/wiki/Rodrigo_Melo_Franco \"Rodrigo Melo Franco\") * [Sábato \n",
+       "Magaldi\\](/wiki/S%C3%A1bato_Magaldi \"Sábato Magaldi\") * [Santos Dumont\\](/wiki/Santos_Dumont \"Santos Dumont\") * \n",
+       "[Sivuca\\](/wiki/Sivuca \"Sivuca\") * [Tânia Andrade \n",
+       "Lima\\](/w/index.php?title=T%C3%A2nia_Andrade_Lima&action=edit&redlink=1 \"Tânia Andrade Lima (page does not exist)\")\n",
+       "* [Teodoro Freire\\](/w/index.php?title=Teodoro_Freire&action=edit&redlink=1 \"Teodoro Freire (page does not exist)\")\n",
+       "* [Tomie Ohtake\\](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Vladimir \n",
+       "Carvalho\\](/w/index.php?title=Vladimir_Carvalho&action=edit&redlink=1 \"Vladimir Carvalho (page does not exist)\") \n",
+       "|\\n| 2007 | * [Abdias Nascimento\\](/wiki/Abdias_Nascimento \"Abdias Nascimento\") * [Álvaro Siza \n",
+       "Vieira\\](/wiki/%C3%81lvaro_Siza_Vieira \"Álvaro Siza Vieira\") * [Antônio Carlos \n",
+       "Jobim\\](/wiki/Ant%C3%B4nio_Carlos_Jobim \"Antônio Carlos Jobim\") * [Associação Cultural \n",
+       "Cachuera\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Cultural_Cachuera&action=edit&redlink=1 \"Associação Cultural \n",
+       "Cachuera (page does not exist)\") * [Banda Cabaçal dos Irmãos \n",
+       "Aniceto\\](/w/index.php?title=Banda_Caba%C3%A7al_dos_Irm%C3%A3os_Aniceto&action=edit&redlink=1 \"Banda Cabaçal dos \n",
+       "Irmãos Aniceto (page does not exist)\") * [Bárbara \n",
+       "Heliodora\\](/w/index.php?title=Heliodora_Carneiro_de_Mendon%C3%A7a&action=edit&redlink=1 \"Heliodora Carneiro de \n",
+       "Mendonça (page does not exist)\") * [Cacique Raoni\\](/wiki/Raoni_Metuktire \"Raoni Metuktire\") * \n",
+       "[Cartola\\](/wiki/Cartola \"Cartola\") * [Celine Imbert\\](/w/index.php?title=Celine_Imbert&action=edit&redlink=1 \n",
+       "\"Celine Imbert (page does not exist)\") * [Cildo Meireles\\](/wiki/Cildo_Meireles \"Cildo Meireles\") * [Castelo \n",
+       "Rá-Tim-Bum\\](/wiki/Castelo_R%C3%A1-Tim-Bum \"Castelo Rá-Tim-Bum\") * [Claude \n",
+       "Lévi-Strauss\\](/wiki/Claude_L%C3%A9vi-Strauss \"Claude Lévi-Strauss\") * [Clube do Choro de \n",
+       "Brasília\\](/w/index.php?title=Clube_do_Choro_de_Bras%C3%ADlia&action=edit&redlink=1 \"Clube do Choro de Brasília \n",
+       "(page does not exist)\") * [Dodô e Osmar\\](/w/index.php?title=Dod%C3%B4_e_Osmar&action=edit&redlink=1 \"Dodô e Osmar \n",
+       "(page does not exist)\") * [Escola de Circo \n",
+       "Picolino\\](/w/index.php?title=Escola_Picolino_de_Artes_do_Circo&action=edit&redlink=1 \"Escola Picolino de Artes do \n",
+       "Circo (page does not exist)\") * [Glauber Rocha\\](/wiki/Glauber_Rocha \"Glauber Rocha\") * [Grande \n",
+       "Otelo\\](/wiki/Grande_Otelo \"Grande Otelo\") * [Grupo Nós do \n",
+       "Morro\\](/w/index.php?title=Grupo_N%C3%B3s_do_Morro&action=edit&redlink=1 \"Grupo Nós do Morro (page does not \n",
+       "exist)\") * [Hermilo Borba Filho\\](/w/index.php?title=Hermilo_Borba_Filho&action=edit&redlink=1 \"Hermilo Borba Filho\n",
+       "(page does not exist)\") * [Lina Bo Bardi\\](/wiki/Lina_Bo_Bardi \"Lina Bo Bardi\") * [Lia \n",
+       "Robatto\\](/w/index.php?title=Lia_Robatto&action=edit&redlink=1 \"Lia Robatto (page does not exist)\") * [Luiz \n",
+       "Gonzaga\\](/wiki/Luiz_Gonzaga \"Luiz Gonzaga\") * [Luiz Otavio Souza \n",
+       "Santos\\](/w/index.php?title=Luiz_Otavio_Souza_Santos&action=edit&redlink=1 \"Luiz Otavio Souza Santos (page does not\n",
+       "exist)\") * [Luiz Mott\\](/wiki/Luiz_Mott \"Luiz Mott\") * [José Aparecido de \n",
+       "Oliveira\\](/w/index.php?title=Jos%C3%A9_Aparecido_de_Oliveira&action=edit&redlink=1 \"José Aparecido de Oliveira \n",
+       "(page does not exist)\") * [Jean-Claude Bernardet\\](/w/index.php?title=Jean-Claude_Bernardet&action=edit&redlink=1 \n",
+       "\"Jean-Claude Bernardet (page does not exist)\") * [Jorge Benjor\\](/wiki/Jorge_Benjor \"Jorge Benjor\") * [Judith \n",
+       "Malina\\](/wiki/Judith_Malina \"Judith Malina\") * [Kanuá \n",
+       "Kamayurá\\](/w/index.php?title=Kanu%C3%A1_Kamayur%C3%A1&action=edit&redlink=1 \"Kanuá Kamayurá (page does not \n",
+       "exist)\") * [Marcelo Grassmann\\](/wiki/Marcelo_Grassmann \"Marcelo Grassmann\") * [Moniz \n",
+       "Bandeira\\](/wiki/Moniz_Bandeira \"Moniz Bandeira\") * [Museu Paraense Emílio \n",
+       "Goeldi\\](/wiki/Museu_Paraense_Em%C3%ADlio_Goeldi \"Museu Paraense Emílio Goeldi\") * [Orides \n",
+       "Fontela\\](/wiki/Orides_de_Lourdes_Teixeira_Fontela \"Orides de Lourdes Teixeira Fontela\") * [Oscar \n",
+       "Niemeyer\\](/wiki/Oscar_Niemeyer \"Oscar Niemeyer\") * [Ronaldo \n",
+       "Fraga\\](/w/index.php?title=Ronaldo_Fraga&action=edit&redlink=1 \"Ronaldo Fraga (page does not exist)\") * [Selma do \n",
+       "Coco\\](/w/index.php?title=Selma_do_Coco&action=edit&redlink=1 \"Selma do Coco (page does not exist)\") * [Sérgio \n",
+       "Britto\\](/wiki/S%C3%A9rgio_Britto_(actor) \"Sérgio Britto (actor)\") * [Solano Trindade\\](/wiki/Solano_Trindade \n",
+       "\"Solano Trindade\") * [Tônia Carrero\\](/wiki/T%C3%B4nia_Carrero \"Tônia Carrero\") * [Tostão\\](/wiki/Tost%C3%A3o \n",
+       "\"Tostão\") * [Vânia Toledo\\](/w/index.php?title=V%C3%A2nia_Toledo&action=edit&redlink=1 \"Vânia Toledo (page does not\n",
+       "exist)\") * [Walter Smetak\\](/wiki/Walter_Smetak \"Walter Smetak\") |\\n| 2008 | * [Ailton Krenak\\](/wiki/Ailton_Krenak\n",
+       "\"Ailton Krenak\") * [Altemar Dutra\\](/w/index.php?title=Altemar_Dutra&action=edit&redlink=1 \"Altemar Dutra (page \n",
+       "does not exist)\") * [Anselmo Duarte\\](/wiki/Anselmo_Duarte \"Anselmo Duarte\") * [Athos \n",
+       "Bulcão\\](/wiki/Athos_Bulc%C3%A3o \"Athos Bulcão\") * [Benedito Ruy \n",
+       "Barbosa\\](/w/index.php?title=Benedito_Ruy_Barbosa&action=edit&redlink=1 \"Benedito Ruy Barbosa (page does not \n",
+       "exist)\") * [Bule-Bule\\](/w/index.php?title=Bule-Bule&action=edit&redlink=1 \"Bule-Bule (page does not exist)\") * \n",
+       "[Carlos Lyra\\](/wiki/Carlos_Lyra \"Carlos Lyra\") * [Claudia Andujar\\](/wiki/Claudia_Andujar \"Claudia Andujar\") * \n",
+       "[Dulcina de Moraes\\](/wiki/Dulcina_de_Moraes \"Dulcina de Moraes\") * [Edu Lobo\\](/wiki/Edu_Lobo \"Edu Lobo\") * \n",
+       "[Efigênia Ramos Rolim\\](/w/index.php?title=Efig%C3%AAnia_Ramos_Rolim&action=edit&redlink=1 \"Efigênia Ramos Rolim \n",
+       "(page does not exist)\") * [Eva Todor\\](/wiki/Eva_Todor \"Eva Todor\") * [Goiandira do \n",
+       "Couto\\](/w/index.php?title=Goiandira_do_Couto&action=edit&redlink=1 \"Goiandira do Couto (page does not exist)\") * \n",
+       "[Guimarães Rosa\\](/wiki/Guimar%C3%A3es_Rosa \"Guimarães Rosa\") * [Hans-Joachim \n",
+       "Koellreutter\\](/wiki/Hans-Joachim_Koellreutter \"Hans-Joachim Koellreutter\") * [João Candido \n",
+       "Portinari\\](/wiki/Jo%C3%A3o_Candido_Portinari \"João Candido Portinari\") * [Johnny Alf\\](/wiki/Johnny_Alf \"Johnny \n",
+       "Alf\") * [Leonardo Villar\\](/wiki/Leonardo_Villar \"Leonardo Villar\") * [Maria \n",
+       "Bonomi\\](/w/index.php?title=Maria_Bonomi&action=edit&redlink=1 \"Maria Bonomi (page does not exist)\") * \n",
+       "[Marlene\\](/w/index.php?title=Marlene_(singer)&action=edit&redlink=1 \"Marlene (singer) (page does not exist)\") * \n",
+       "Mercedes Sosa * [Milton Hatoum\\](/wiki/Milton_Hatoum \"Milton Hatoum\") * [Nelson \n",
+       "Triunfo\\](/w/index.php?title=Nelson_Triunfo&action=edit&redlink=1 \"Nelson Triunfo (page does not exist)\") * \n",
+       "[Marcantônio Vilaça\\](/w/index.php?title=Marcant%C3%B4nio_Vila%C3%A7a&action=edit&redlink=1 \"Marcantônio Vilaça \n",
+       "(page does not exist)\") * [Otávio Afonso\\](/w/index.php?title=Ot%C3%A1vio_Afonso&action=edit&redlink=1 \"Otávio \n",
+       "Afonso (page does not exist)\") * [Orlando Miranda\\](/w/index.php?title=Orlando_Miranda&action=edit&redlink=1 \n",
+       "\"Orlando Miranda (page does not exist)\") * [Paulo Emílio Sales Gomes\\](/wiki/Paulo_Em%C3%ADlio_Sales_Gomes \"Paulo \n",
+       "Emílio Sales Gomes\") * [Paulo Moura\\](/wiki/Paulo_Moura \"Paulo Moura\") * [Pixinguinha\\](/wiki/Pixinguinha \n",
+       "\"Pixinguinha\") * [Roberto Corrêa\\](/w/index.php?title=Roberto_Corr%C3%AAa&action=edit&redlink=1 \"Roberto Corrêa \n",
+       "(page does not exist)\") * [Ruy Guerra\\](/wiki/Ruy_Guerra \"Ruy Guerra\") * [Sérgio \n",
+       "Ricardo\\](/wiki/S%C3%A9rgio_Ricardo_(director) \"Sérgio Ricardo (director)\") * [Tatiana \n",
+       "Belinky\\](/wiki/Tatiana_Belinky \"Tatiana Belinky\") * [Teresa \n",
+       "Aguiar\\](/w/index.php?title=Teresa_Aguiar&action=edit&redlink=1 \"Teresa Aguiar (page does not exist)\") * [Vicente \n",
+       "Salles\\](/w/index.php?title=Vicente_Salles&action=edit&redlink=1 \"Vicente Salles (page does not exist)\") * [Zabé da\n",
+       "Loca\\](/w/index.php?title=Zab%C3%A9_da_Loca&action=edit&redlink=1 \"Zabé da Loca (page does not exist)\") * \n",
+       "[Apiwtxa\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Ashaninka_do_Rio_Am%C3%B4nia&action=edit&redlink=1 \"Associação \n",
+       "Ashaninka do Rio Amônia (page does not exist)\") * \n",
+       "[ABGLT\\](/wiki/Associa%C3%A7%C3%A3o_Brasileira_de_Gays,_L%C3%A9sbicas,_Bissexuais,_Travestis,_Transexuais_e_Interse\n",
+       "xos \"Associação Brasileira de Gays, Lésbicas, Bissexuais, Travestis, Transexuais e Intersexos\") * \n",
+       "[ABI\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Brasileira_de_Imprensa&action=edit&redlink=1 \"Associação Brasileira \n",
+       "de Imprensa (page does not exist)\") * [Associação Comunidade \n",
+       "Yuba\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Comunidade_Yuba&action=edit&redlink=1 \"Associação Comunidade Yuba \n",
+       "(page does not exist)\") * [Centro Cultural \n",
+       "Piollin\\](/w/index.php?title=Centro_Cultural_Piollin&action=edit&redlink=1 \"Centro Cultural Piollin (page does not \n",
+       "exist)\") * [Coletivo Nacional de Cultura do MST\\](/wiki/Movimento_dos_Trabalhadores_Rurais_Sem_Terra \"Movimento dos\n",
+       "Trabalhadores Rurais Sem Terra\") * [Giramundo Teatro de \n",
+       "Bonecos\\](/w/index.php?title=Giramundo_Teatro_de_Bonecos&action=edit&redlink=1 \"Giramundo Teatro de Bonecos (page \n",
+       "does not exist)\") * [Instituto Baccarelli\\](/w/index.php?title=Instituto_Baccarelli&action=edit&redlink=1 \n",
+       "\"Instituto Baccarelli (page does not exist)\") * [Mestres da \n",
+       "Guitarrada\\](/w/index.php?title=Mestres_da_Guitarrada&action=edit&redlink=1 \"Mestres da Guitarrada (page does not \n",
+       "exist)\") * [Música no Museu\\](/w/index.php?title=M%C3%BAsica_no_Museu&action=edit&redlink=1 \"Música no Museu (page \n",
+       "does not exist)\") * [Quasar Cia de Dança\\](/w/index.php?title=Quasar_Cia_de_Dan%C3%A7a&action=edit&redlink=1 \n",
+       "\"Quasar Cia de Dança (page does not exist)\") |\\n| 2009 | * [Aderbal Freire Filho\\](/wiki/Aderbal_Freire_Filho \n",
+       "\"Aderbal Freire Filho\") * Afoxé [Filhos de Gandhy\\](/w/index.php?title=Filhos_de_Gandhy&action=edit&redlink=1 \n",
+       "\"Filhos de Gandhy (page does not exist)\") * [Alexandre \n",
+       "Wollner\\](/w/index.php?title=Alexandre_Wollner&action=edit&redlink=1 \"Alexandre Wollner (page does not exist)\") * \n",
+       "[Ângela Maria\\](/wiki/%C3%82ngela_Maria \"Ângela Maria\") * [Ataulfo Alves\\](/wiki/Ataulfo_Alves \"Ataulfo Alves\") * \n",
+       "[Balé Popular do Recife\\](/w/index.php?title=Bal%C3%A9_Popular_do_Recife&action=edit&redlink=1 \"Balé Popular do \n",
+       "Recife (page does not exist)\") * [Beatriz Sarlo\\](/wiki/Beatriz_Sarlo \"Beatriz Sarlo\") * [Bispo do \n",
+       "Rosário\\](/w/index.php?title=Bispo_do_Ros%C3%A1rio&action=edit&redlink=1 \"Bispo do Rosário (page does not exist)\") \n",
+       "* [Boaventura de Sousa Santos\\](/wiki/Boaventura_de_Sousa_Santos \"Boaventura de Sousa Santos\") * [Carlos \n",
+       "Manga\\](/wiki/Carlos_Manga \"Carlos Manga\") * [Carmen Miranda\\](/wiki/Carmen_Miranda \"Carmen Miranda\") * [Chico \n",
+       "Anysio\\](/wiki/Chico_Anysio \"Chico Anysio\") * [Deborah Colker\\](/wiki/Deborah_Colker \"Deborah Colker\") * [Davi \n",
+       "Kopenawa Yanomami\\](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Elifas \n",
+       "Andreato\\](/w/index.php?title=Elifas_Andreato&action=edit&redlink=1 \"Elifas Andreato (page does not exist)\") * \n",
+       "[Fernanda Abreu\\](/wiki/Fernanda_Abreu \"Fernanda Abreu\") * [Fernando \n",
+       "Peixoto\\](/w/index.php?title=Fernando_Peixoto&action=edit&redlink=1 \"Fernando Peixoto (page does not exist)\") * \n",
+       "Fundação [Iberê Camargo\\](/wiki/Iber%C3%AA_Camargo \"Iberê Camargo\") * [Gerson King Combo\\](/wiki/Gerson_King_Combo \n",
+       "\"Gerson King Combo\") * [Gilvan Samico\\](/wiki/Gilvan_Samico \"Gilvan Samico\") * [Heleny \n",
+       "Guariba\\](/w/index.php?title=Heleny_Guariba&action=edit&redlink=1 \"Heleny Guariba (page does not exist)\") * \n",
+       "[Instituto Olga Kos de Inclusão \n",
+       "Cultural\\](/w/index.php?title=Instituto_Olga_Kos_de_Inclus%C3%A3o_Cultural&action=edit&redlink=1 \"Instituto Olga \n",
+       "Kos de Inclusão Cultural (page does not exist)\") * [Ivaldo Bertazzo\\](/wiki/Ivaldo_Bertazzo \"Ivaldo Bertazzo\") * \n",
+       "[José Eduardo Agualusa\\](/wiki/Jos%C3%A9_Eduardo_Agualusa \"José Eduardo Agualusa\") * [José Miguel \n",
+       "Wisnik\\](/wiki/Jos%C3%A9_Miguel_Wisnik \"José Miguel Wisnik\") * [Laerte Coutinho\\](/wiki/Laerte_Coutinho \"Laerte \n",
+       "Coutinho\") * [Luiz Olimecha\\](/w/index.php?title=Luiz_Olimecha&action=edit&redlink=1 \"Luiz Olimecha (page does not \n",
+       "exist)\") * [Lydia Hortélio\\](/w/index.php?title=Lydia_Hort%C3%A9lio&action=edit&redlink=1 \"Lydia Hortélio (page \n",
+       "does not exist)\") * [Mamulengo Só-Riso\\](/w/index.php?title=Mamulengo_S%C3%B3-Riso&action=edit&redlink=1 \"Mamulengo\n",
+       "Só-Riso (page does not exist)\") * [Manoel de Oliveira\\](/wiki/Manoel_de_Oliveira \"Manoel de Oliveira\") * [Maria \n",
+       "Lúcia Godoy\\](/w/index.php?title=Maria_L%C3%BAcia_Godoy&action=edit&redlink=1 \"Maria Lúcia Godoy (page does not \n",
+       "exist)\") * [Maracatu Estrela de Ouro de \n",
+       "Aliança\\](/w/index.php?title=Maracatu_Estrela_de_Ouro_de_Alian%C3%A7a&action=edit&redlink=1 \"Maracatu Estrela de \n",
+       "Ouro de Aliança (page does not exist)\") * [Mestre \n",
+       "Vitalino\\](/w/index.php?title=Mestre_Vitalino&action=edit&redlink=1 \"Mestre Vitalino (page does not exist)\") * [Mia\n",
+       "Couto\\](/wiki/Mia_Couto \"Mia Couto\") * [Miguel Rio Branco\\](/wiki/Miguel_Rio_Branco \"Miguel Rio Branco\") * \n",
+       "[Nathalia Timberg\\](/wiki/Nathalia_Timberg \"Nathalia Timberg\") * [Ney Matogrosso\\](/wiki/Ney_Matogrosso \"Ney \n",
+       "Matogrosso\") * [Noca da Portela\\](/w/index.php?title=Noca_da_Portela&action=edit&redlink=1 \"Noca da Portela (page \n",
+       "does not exist)\") * [Os Gêmeos\\](/wiki/Os_G%C3%AAmeos \"Os Gêmeos\") * [Patativa do \n",
+       "Assaré\\](/wiki/Patativa_do_Assar%C3%A9 \"Patativa do Assaré\") * [Paulo Vanzolini\\](/wiki/Paulo_Vanzolini \"Paulo \n",
+       "Vanzolini\") * [Paulo Bruscky\\](/w/index.php?title=Paulo_Bruscky&action=edit&redlink=1 \"Paulo Bruscky (page does not\n",
+       "exist)\") * [Raul Seixas\\](/wiki/Raul_Seixas \"Raul Seixas\") * [Roberto Burle Marx\\](/wiki/Roberto_Burle_Marx \n",
+       "\"Roberto Burle Marx\") * [Sérgio Rodrigues\\](/wiki/S%C3%A9rgio_Rodrigues_(architect) \"Sérgio Rodrigues (architect)\")\n",
+       "* [Teatro Vila Velha\\](/w/index.php?title=Teatro_Vila_Velha&action=edit&redlink=1 \"Teatro Vila Velha (page does not\n",
+       "exist)\") * ONG [Video nas Aldeias\\](/w/index.php?title=Video_nas_Aldeias&action=edit&redlink=1 \"Video nas Aldeias \n",
+       "(page does not exist)\") * [Walmor Chagas\\](/wiki/Walmor_Chagas \"Walmor Chagas\") * [Zeca \n",
+       "Pagodinho\\](/wiki/Zeca_Pagodinho \"Zeca Pagodinho\") |\\n| 2010 | * [Andrea \n",
+       "Tonacci\\](/w/index.php?title=Andrea_Tonacci&action=edit&redlink=1 \"Andrea Tonacci (page does not exist)\") * [Anna \n",
+       "Bella Geiger\\](/wiki/Anna_Bella_Geiger \"Anna Bella Geiger\") * [Armando Nogueira\\](/wiki/Armando_Nogueira \"Armando \n",
+       "Nogueira\") * [Azelene Kaingang\\](/w/index.php?title=Azelene_Kaingang&action=edit&redlink=1 \"Azelene Kaingang (page \n",
+       "does not exist)\") * [Cândido Mendes de \n",
+       "Almeida\\](/w/index.php?title=C%C3%A2ndido_Mendes_de_Almeida_(writer)&action=edit&redlink=1 \"Cândido Mendes de \n",
+       "Almeida (writer) (page does not exist)\") * [Carlos Drummond de Andrade\\](/wiki/Carlos_Drummond_de_Andrade \"Carlos \n",
+       "Drummond de Andrade\") * [Carlota Albuquerque\\](/w/index.php?title=Carlota_Albuquerque&action=edit&redlink=1 \n",
+       "\"Carlota Albuquerque (page does not exist)\") * [Cazuza\\](/wiki/Cazuza \"Cazuza\") * [Cesária \n",
+       "Évora\\](/wiki/Ces%C3%A1ria_%C3%89vora \"Cesária Évora\") * [Companhia de Danças Folclóricas \n",
+       "Aruanda\\](/w/index.php?title=Companhia_de_Dan%C3%A7as_Folcl%C3%B3ricas_Aruanda&action=edit&redlink=1 \"Companhia de \n",
+       "Danças Folclóricas Aruanda (page does not exist)\") * [Demônios da Garoa\\](/wiki/Dem%C3%B4nios_da_Garoa \"Demônios da\n",
+       "Garoa\") * [Denise Stoklos\\](/w/index.php?title=Denise_Stoklos&action=edit&redlink=1 \"Denise Stoklos (page does not \n",
+       "exist)\") * [Época de Ouro\\](/w/index.php?title=%C3%89poca_de_Ouro&action=edit&redlink=1 \"Época de Ouro (page does \n",
+       "not exist)\") * [Escuela Internacional de Cine y Televisión\\](/wiki/Escuela_Internacional_de_Cine_y_Televisi%C3%B3n \n",
+       "\"Escuela Internacional de Cine y Televisión\") * [Gal Costa\\](/wiki/Gal_Costa \"Gal Costa\") * [Glória \n",
+       "Pires\\](/wiki/Gl%C3%B3ria_Pires \"Glória Pires\") * [Hermeto Pascoal\\](/wiki/Hermeto_Pascoal \"Hermeto Pascoal\") * \n",
+       "[Ilo Krugli\\](/w/index.php?title=Ilo_Krugli&action=edit&redlink=1 \"Ilo Krugli (page does not exist)\") * [Ismael \n",
+       "Ivo\\](/w/index.php?title=Ismael_Ivo&action=edit&redlink=1 \"Ismael Ivo (page does not exist)\") * [Ítalo \n",
+       "Rossi\\](/w/index.php?title=%C3%8Dtalo_Rossi&action=edit&redlink=1 \"Ítalo Rossi (page does not exist)\") * \n",
+       "[Jaguar\\](/wiki/Jaguar_(cartoonist) \"Jaguar (cartoonist)\") * [João Cabral de Melo \n",
+       "Neto\\](/wiki/Jo%C3%A3o_Cabral_de_Melo_Neto \"João Cabral de Melo Neto\") * [João Carlos de Souza \n",
+       "Gomes\\](/w/index.php?title=Jo%C3%A3o_Carlos_de_Souza_Gomes&action=edit&redlink=1 \"João Carlos de Souza Gomes (page \n",
+       "does not exist)\") * [Joaquim Nabuco\\](/wiki/Joaquim_Nabuco \"Joaquim Nabuco\") * [Joênia \n",
+       "Wapixana\\](/wiki/Jo%C3%AAnia_Wapixana \"Joênia Wapixana\") * [Lavadeiras de \n",
+       "Almenara\\](/w/index.php?title=Lavadeiras_de_Almenara&action=edit&redlink=1 \"Lavadeiras de Almenara (page does not \n",
+       "exist)\") * [Leon Cakoff\\](/w/index.php?title=Leon_Cakoff&action=edit&redlink=1 \"Leon Cakoff (page does not exist)\")\n",
+       "* [Leonardo Boff\\](/wiki/Leonardo_Boff \"Leonardo Boff\") * [Lira \n",
+       "Ceciliana\\](/w/index.php?title=Lira_Ceciliana&action=edit&redlink=1 \"Lira Ceciliana (page does not exist)\") * \n",
+       "[Maracatu Estrela Brilhante de \n",
+       "Igarassú\\](/w/index.php?title=Maracatu_Estrela_Brilhante_de_Igarass%C3%BA&action=edit&redlink=1 \"Maracatu Estrela \n",
+       "Brilhante de Igarassú (page does not exist)\") * [Mário Gruber \n",
+       "Correia\\](/w/index.php?title=M%C3%A1rio_Gruber_Correia&action=edit&redlink=1 \"Mário Gruber Correia (page does not \n",
+       "exist)\") * [Maureen Bisilliat\\](/wiki/Maureen_Bisilliat \"Maureen Bisilliat\") * [Maurício \n",
+       "Segall\\](/w/index.php?title=Maur%C3%ADcio_Segall&action=edit&redlink=1 \"Maurício Segall (page does not exist)\") * \n",
+       "[Mestre Alberto da Paz\\](/w/index.php?title=Mestre_Alberto_da_Paz&action=edit&redlink=1 \"Mestre Alberto da Paz \n",
+       "(page does not exist)\") * [Moacir Werneck de \n",
+       "Castro\\](/w/index.php?title=Moacir_Werneck_de_Castro&action=edit&redlink=1 \"Moacir Werneck de Castro (page does not\n",
+       "exist)\") * [Nelson Rodrigues\\](/wiki/Nelson_Rodrigues \"Nelson Rodrigues\") * [Pedro \n",
+       "Casaldáliga\\](/wiki/Pedro_Casald%C3%A1liga \"Pedro Casaldáliga\") * [Rogério \n",
+       "Duarte\\](/w/index.php?title=Rog%C3%A9rio_Duarte&action=edit&redlink=1 \"Rogério Duarte (page does not exist)\") * \n",
+       "[Tonico\\](/wiki/Tonico_%26_Tinoco \"Tonico & Tinoco\") * [Vinicius de Moraes\\](/wiki/Vinicius_de_Moraes \"Vinicius de \n",
+       "Moraes\") |\\n| 2011 | * [Academia Brasileira de Letras\\](/wiki/Academia_Brasileira_de_Letras \"Academia Brasileira de\n",
+       "Letras\") * [Adriana Varejão\\](/wiki/Adriana_Varej%C3%A3o \"Adriana Varejão\") * [Afonso \n",
+       "Borges\\](/w/index.php?title=Afonso_Borges&action=edit&redlink=1 \"Afonso Borges (page does not exist)\") * [Ana \n",
+       "Montenegro\\](/wiki/Ana_Montenegro \"Ana Montenegro\") * [Antônio \n",
+       "Nóbrega\\](/w/index.php?title=Ant%C3%B4nio_N%C3%B3brega&action=edit&redlink=1 \"Antônio Nóbrega (page does not \n",
+       "exist)\") * [Antônio Pitanga\\](/wiki/Ant%C3%B4nio_Pitanga \"Antônio Pitanga\") * [Apolônio \n",
+       "Melônio\\](/w/index.php?title=Apol%C3%B4nio_Mel%C3%B4nio&action=edit&redlink=1 \"Apolônio Melônio (page does not \n",
+       "exist)\") * [Associação Capão \n",
+       "Cidadão\\](/w/index.php?title=Associa%C3%A7%C3%A3o_Cap%C3%A3o_Cidad%C3%A3o&action=edit&redlink=1 \"Associação Capão \n",
+       "Cidadão (page does not exist)\") * [Associação dos Artesãos de Santana do \n",
+       "Araçuaí\\](/w/index.php?title=Associa%C3%A7%C3%A3o_dos_Artes%C3%A3os_de_Santana_do_Ara%C3%A7ua%C3%AD&action=edit&red\n",
+       "link=1 \"Associação dos Artesãos de Santana do Araçuaí (page does not exist)\") * [Beth \n",
+       "Carvalho\\](/wiki/Beth_Carvalho \"Beth Carvalho\") * [Campos de Carvalho\\](/wiki/Campos_de_Carvalho \"Campos de \n",
+       "Carvalho\") * [Capiba\\](/w/index.php?title=Capiba&action=edit&redlink=1 \"Capiba (page does not exist)\") * [Casa de \n",
+       "Produtos Indígenas Wariró\\](/w/index.php?title=Casa_de_Produtos_Ind%C3%ADgenas_Warir%C3%B3&action=edit&redlink=1 \n",
+       "\"Casa de Produtos Indígenas Wariró (page does not exist)\") * [Central Única das \n",
+       "Favelas\\](/wiki/Central_%C3%9Anica_das_Favelas \"Central Única das Favelas\") * [Clarice \n",
+       "Lispector\\](/wiki/Clarice_Lispector \"Clarice Lispector\") * [Claudett de Jesus \n",
+       "Ribeiro\\](/wiki/Claudett_de_Jesus_Ribeiro \"Claudett de Jesus Ribeiro\") * [Dançando para não \n",
+       "dançar\\](/w/index.php?title=Dan%C3%A7ando_para_n%C3%A3o_dan%C3%A7ar&action=edit&redlink=1 \"Dançando para não dançar\n",
+       "(page does not exist)\") * [Dzi Croquettes\\](/wiki/Dzi_Croquettes \"Dzi Croquettes\") * [Espedito \n",
+       "Seleiro\\](/w/index.php?title=Espedito_Seleiro&action=edit&redlink=1 \"Espedito Seleiro (page does not exist)\") * \n",
+       "[Evando dos Santos\\](/w/index.php?title=Evando_dos_Santos&action=edit&redlink=1 \"Evando dos Santos (page does not \n",
+       "exist)\") * [Festival de Dança de \n",
+       "Joinville\\](/w/index.php?title=Festival_de_Dan%C3%A7a_de_Joinville&action=edit&redlink=1 \"Festival de Dança de \n",
+       "Joinville (page does not exist)\") * [Festival Santista de \n",
+       "Teatro\\](/w/index.php?title=Festival_Santista_de_Teatro&action=edit&redlink=1 \"Festival Santista de Teatro (page \n",
+       "does not exist)\") * [Glênio Bianchetti\\](/w/index.php?title=Gl%C3%AAnio_Bianchetti&action=edit&redlink=1 \"Glênio \n",
+       "Bianchetti (page does not exist)\") * [Grupo Galpão\\](/w/index.php?title=Grupo_Galp%C3%A3o&action=edit&redlink=1 \n",
+       "\"Grupo Galpão (page does not exist)\") * [Gustavo Dahl\\](/w/index.php?title=Gustavo_Dahl&action=edit&redlink=1 \n",
+       "\"Gustavo Dahl (page does not exist)\") * [Héctor Babenco\\](/wiki/H%C3%A9ctor_Babenco \"Héctor Babenco\") * [Helena \n",
+       "Kolody\\](/wiki/Helena_Kolody \"Helena Kolody\") * [Herbert de \n",
+       "Sousa\\](/w/index.php?title=Herbert_de_Sousa&action=edit&redlink=1 \"Herbert de Sousa (page does not exist)\") * \n",
+       "[Ítala Nandi\\](/wiki/%C3%8Dtala_Nandi \"Ítala Nandi\") * [Jair Rodrigues\\](/wiki/Jair_Rodrigues \"Jair Rodrigues\") * \n",
+       "[João do Vale\\](/w/index.php?title=Jo%C3%A3o_do_Vale&action=edit&redlink=1 \"João do Vale (page does not exist)\") * \n",
+       "[João das Neves\\](/w/index.php?title=Jo%C3%A3o_das_Neves&action=edit&redlink=1 \"João das Neves (page does not \n",
+       "exist)\") * [José Renato Pécora\\](/w/index.php?title=Jos%C3%A9_Renato_P%C3%A9cora&action=edit&redlink=1 \"José Renato\n",
+       "Pécora (page does not exist)\") * [Leila Diniz\\](/wiki/Leila_Diniz \"Leila Diniz\") * [Lélia \n",
+       "Abramo\\](/wiki/L%C3%A9lia_Abramo \"Lélia Abramo\") * [Luiz Melodia\\](/wiki/Luiz_Melodia \"Luiz Melodia\") * [Lygia \n",
+       "Bojunga Nunes\\](/wiki/Lygia_Bojunga_Nunes \"Lygia Bojunga Nunes\") * [Maracatu Estrela de \n",
+       "Tracunhaém\\](/w/index.php?title=Maracatu_Estrela_de_Tracunha%C3%A9m&action=edit&redlink=1 \"Maracatu Estrela de \n",
+       "Tracunhaém (page does not exist)\") * [Mário Lago\\](/wiki/M%C3%A1rio_Lago \"Mário Lago\") * [Memorial Jesuíta \n",
+       "Unisinos\\](/wiki/Unisinos \"Unisinos\") * [Nelson Cavaquinho\\](/wiki/Nelson_Cavaquinho \"Nelson Cavaquinho\") * [Paulo \n",
+       "Freire\\](/wiki/Paulo_Freire \"Paulo Freire\") * [Paulo Gracindo\\](/wiki/Paulo_Gracindo \"Paulo Gracindo\") * [Quinteto \n",
+       "Violado\\](/w/index.php?title=Quinteto_Violado&action=edit&redlink=1 \"Quinteto Violado (page does not exist)\") * \n",
+       "[Samba de Cumbuca\\](/w/index.php?title=Samba_de_Cumbuca&action=edit&redlink=1 \"Samba de Cumbuca (page does not \n",
+       "exist)\") * [Teatro Tablado\\](/w/index.php?title=Teatro_Tablado&action=edit&redlink=1 \"Teatro Tablado (page does not\n",
+       "exist)\") * [Tereza Costa Rêgo\\](/wiki/Tereza_Costa_R%C3%AAgo \"Tereza Costa Rêgo\") * [Vik Muniz\\](/wiki/Vik_Muniz \n",
+       "\"Vik Muniz\") * [Valdemar de Oliveira\\](/w/index.php?title=Valdemar_de_Oliveira&action=edit&redlink=1 \"Valdemar de \n",
+       "Oliveira (page does not exist)\") * [Zuzu Angel\\](/wiki/Zuzu_Angel \"Zuzu Angel\") |\\n| 2012 | * [Abelardo da \n",
+       "Hora\\](/w/index.php?title=Abelardo_da_Hora&action=edit&redlink=1 \"Abelardo da Hora (page does not exist)\") * \n",
+       "[Aguinaldo Silva\\](/wiki/Aguinaldo_Silva \"Aguinaldo Silva\") * [Alceu Valença\\](/wiki/Alceu_Valen%C3%A7a \"Alceu \n",
+       "Valença\") * [Almir Narayamoga Suruí\\](/w/index.php?title=Almir_Narayamoga_Suru%C3%AD&action=edit&redlink=1 \"Almir \n",
+       "Narayamoga Suruí (page does not exist)\") * [Amácio Mazzaropi\\](/wiki/Am%C3%A1cio_Mazzaropi \"Amácio Mazzaropi\") * \n",
+       "[Anna Muylaert\\](/wiki/Anna_Muylaert \"Anna Muylaert\") * Associação Carnavalesca Bloco Afro Olodum * [Autran \n",
+       "Dourado\\](/wiki/Autran_Dourado \"Autran Dourado\") * [Breno Silveira\\](/wiki/Breno_Silveira \"Breno Silveira\") * \n",
+       "[Carlos Alberto Cerqueira Lemos\\](/w/index.php?title=Carlos_Alberto_Cerqueira_Lemos&action=edit&redlink=1 \"Carlos \n",
+       "Alberto Cerqueira Lemos (page does not exist)\") * [Cleodes Maria Piazza Julio \n",
+       "Ribeiro\\](/w/index.php?title=Cleodes_Maria_Piazza_Julio_Ribeiro&action=edit&redlink=1 \"Cleodes Maria Piazza Julio \n",
+       "Ribeiro (page does not exist)\") * [Dener Pamplona de \n",
+       "Abreu\\](/w/index.php?title=Dener_Pamplona_de_Abreu&action=edit&redlink=1 \"Dener Pamplona de Abreu (page does not \n",
+       "exist)\") * [Elba Ramalho\\](/wiki/Elba_Ramalho \"Elba Ramalho\") * [Fafá de Belém\\](/wiki/Faf%C3%A1_de_Bel%C3%A9m \n",
+       "\"Fafá de Belém\") * [Felipe Schaedler\\](/w/index.php?title=Felipe_Schaedler&action=edit&redlink=1 \"Felipe Schaedler \n",
+       "(page does not exist)\") * [Hebe Camargo\\](/wiki/Hebe_Camargo \"Hebe Camargo\") * [Herivelto \n",
+       "Martins\\](/wiki/Herivelto_Martins \"Herivelto Martins\") * [Humberto Piva Campana and Fernando Piva \n",
+       "Campana\\](/wiki/Campana_brothers \"Campana brothers\") * [Escola de Dança e Integração Social Para Criança e \n",
+       "Adolescente\\](/w/index.php?title=Escola_de_Dan%C3%A7a_e_Integra%C3%A7%C3%A3o_Social_Para_Crian%C3%A7a_e_Adolescente\n",
+       "&action=edit&redlink=1 \"Escola de Dança e Integração Social Para Criança e Adolescente (page does not exist)\") * \n",
+       "Fundação Municipal de Artes de Montenegro * [Ifigênia Rosa de \n",
+       "Oliveira\\](/w/index.php?title=Ifig%C3%AAnia_Rosa_de_Oliveira&action=edit&redlink=1 \"Ifigênia Rosa de Oliveira (page\n",
+       "does not exist)\") * [Isay Weinfeld\\](/w/index.php?title=Isay_Weinfeld&action=edit&redlink=1 \"Isay Weinfeld (page \n",
+       "does not exist)\") * [Ismail Xavier\\](/w/index.php?title=Ismail_Xavier&action=edit&redlink=1 \"Ismail Xavier (page \n",
+       "does not exist)\") * [Jorge Amado\\](/wiki/Jorge_Amado \"Jorge Amado\") * [José Sarney\\](/wiki/Jos%C3%A9_Sarney \"José \n",
+       "Sarney\") * [Marieta Severo\\](/wiki/Marieta_Severo \"Marieta Severo\") * [Mário Schenberg\\](/wiki/M%C3%A1rio_Schenberg\n",
+       "\"Mário Schenberg\") * [Martha Medeiros\\](/wiki/Martha_Medeiros \"Martha Medeiros\") * [Miguel \n",
+       "Chikaoka\\](/w/index.php?title=Miguel_Chikaoka&action=edit&redlink=1 \"Miguel Chikaoka (page does not exist)\") * \n",
+       "[Milton Guran\\](/w/index.php?title=Milton_Guran&action=edit&redlink=1 \"Milton Guran (page does not exist)\") * \n",
+       "[Movimento Gay de Minas\\](/w/index.php?title=Movimento_Gay_de_Minas&action=edit&redlink=1 \"Movimento Gay de Minas \n",
+       "(page does not exist)\") * [Museu de Valores do Banco \n",
+       "Central\\](/w/index.php?title=Museu_de_Valores_do_Banco_Central&action=edit&redlink=1 \"Museu de Valores do Banco \n",
+       "Central (page does not exist)\") * [Museu Histórico Nacional\\](/wiki/National_Historical_Museum_(Brazil) \"National \n",
+       "Historical Museum (Brazil)\") * [Orquestra Popular da Bomba do \n",
+       "Hemetério\\](/w/index.php?title=Bomba_do_Hemet%C3%A9rio&action=edit&redlink=1 \"Bomba do Hemetério (page does not \n",
+       "exist)\") * [Orlando Orfei\\](/w/index.php?title=Orlando_Orfei&action=edit&redlink=1 \"Orlando Orfei (page does not \n",
+       "exist)\") * [Paulo Goulart\\](/wiki/Paulo_Goulart \"Paulo Goulart\") * [Plínio Marcos\\](/wiki/Pl%C3%ADnio_Marcos \n",
+       "\"Plínio Marcos\") * [Raquel Trindade\\](/wiki/Raquel_Trindade \"Raquel Trindade\") * [Regina \n",
+       "Casé\\](/wiki/Regina_Cas%C3%A9 \"Regina Casé\") * [Rose Marie Muraro\\](/wiki/Rose_Marie_Muraro \"Rose Marie Muraro\") * \n",
+       "[Senor Abravanel\\](/wiki/Silvio_Santos \"Silvio Santos\") |\\n| 2013 | * [Antônio \n",
+       "Abujamra\\](/wiki/Ant%C3%B4nio_Abujamra \"Antônio Abujamra\") * [Antônio Fagundes\\](/wiki/Ant%C3%B4nio_Fagundes \n",
+       "\"Antônio Fagundes\") * [Antunes Filho\\](/w/index.php?title=Antunes_Filho&action=edit&redlink=1 \"Antunes Filho (page \n",
+       "does not exist)\") * [Associação de Sambadores e Sambadeiras do Estado da \n",
+       "Bahia\\](/w/index.php?title=Associa%C3%A7%C3%A3o_de_Sambadores_e_Sambadeiras_do_Estado_da_Bahia&action=edit&redlink=\n",
+       "1 \"Associação de Sambadores e Sambadeiras do Estado da Bahia (page does not exist)\") * [Bárbara \n",
+       "Paz\\](/wiki/B%C3%A1rbara_Paz \"Bárbara Paz\") * [Carlos Diegues\\](/wiki/Carlos_Diegues \"Carlos Diegues\") * [Daniel \n",
+       "Munduruku\\](/wiki/Daniel_Munduruku \"Daniel Munduruku\") * [Dona Zica\\](/wiki/Dona_Zica \"Dona Zica\") * [Eleazar de \n",
+       "Carvalho\\](/wiki/Eleazar_de_Carvalho \"Eleazar de Carvalho\") * [Erasmo Carlos\\](/wiki/Erasmo_Carlos \"Erasmo Carlos\")\n",
+       "* Grupo de Dança [Primeiro Ato\\](/w/index.php?title=Primeiro_Ato&action=edit&redlink=1 \"Primeiro Ato (page does not\n",
+       "exist)\") * [Grupo Gay da Bahia\\](/w/index.php?title=Grupo_Gay_da_Bahia&action=edit&redlink=1 \"Grupo Gay da Bahia \n",
+       "(page does not exist)\") * [Hélio Cabral\\](/w/index.php?title=H%C3%A9lio_Cabral&action=edit&redlink=1 \"Hélio Cabral \n",
+       "(page does not exist)\") * [Henfil\\](/wiki/Henfil \"Henfil\") * [Ilê \n",
+       "ayê\\](/w/index.php?title=Il%C3%AA_ay%C3%AA&action=edit&redlink=1 \"Ilê ayê (page does not exist)\") * [Ivan \n",
+       "Lins\\](/wiki/Ivan_Lins \"Ivan Lins\") * [Laerte Coutinho\\](/wiki/Laerte \"Laerte\") * [Lucy \n",
+       "Barreto\\](/w/index.php?title=Lucy_Barreto&action=edit&redlink=1 \"Lucy Barreto (page does not exist)\") * \n",
+       "[Maracambuco\\](/w/index.php?title=Maracambuco&action=edit&redlink=1 \"Maracambuco (page does not exist)\") * [Maria \n",
+       "Adelaide Amaral\\](/wiki/Maria_Adelaide_Amaral \"Maria Adelaide Amaral\") * [Maria Cândido\\](/wiki/Maria_C%C3%A2ndido \n",
+       "\"Maria Cândido\") * [Marlos Nobre\\](/wiki/Marlos_Nobre \"Marlos Nobre\") * [Maurice \n",
+       "Capovilla\\](/wiki/Maurice_Capovilla \"Maurice Capovilla\") * [Mira \n",
+       "Haar\\](/w/index.php?title=Mira_Haar&action=edit&redlink=1 \"Mira Haar (page does not exist)\") * [Naná \n",
+       "Vasconcelos\\](/wiki/Nan%C3%A1_Vasconcelos \"Naná Vasconcelos\") * [Nilcemar \n",
+       "Nogueira\\](/w/index.php?title=Nilcemar_Nogueira&action=edit&redlink=1 \"Nilcemar Nogueira (page does not exist)\") * \n",
+       "[Paulo Archias Mendes da Rocha\\](/wiki/Paulo_Archias_Mendes_da_Rocha \"Paulo Archias Mendes da Rocha\") * [Paulo \n",
+       "Borges\\](/wiki/Paulo_Borges \"Paulo Borges\") * [Roberto \n",
+       "Pires\\](/w/index.php?title=Roberto_Pires&action=edit&redlink=1 \"Roberto Pires (page does not exist)\") * [Ronaldo \n",
+       "Correia de Brito\\](/w/index.php?title=Ronaldo_Correia_de_Brito&action=edit&redlink=1 \"Ronaldo Correia de Brito \n",
+       "(page does not exist)\") * [Rosa Maria dos Santos \n",
+       "Alves\\](/w/index.php?title=Rosa_Maria_dos_Santos_Alves&action=edit&redlink=1 \"Rosa Maria dos Santos Alves (page \n",
+       "does not exist)\") * [Rubem Braga\\](/wiki/Rubem_Braga \"Rubem Braga\") * [Sérgio Mamberti\\](/wiki/S%C3%A9rgio_Mamberti\n",
+       "\"Sérgio Mamberti\") * [Sociedade Junina Bumba Meu Boi da \n",
+       "Liberdade\\](/w/index.php?title=Sociedade_Junina_Bumba_Meu_Boi_da_Liberdade&action=edit&redlink=1 \"Sociedade Junina \n",
+       "Bumba Meu Boi da Liberdade (page does not exist)\") * [Tomie Ohtake\\](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Walda \n",
+       "Marques\\](/w/index.php?title=Walda_Marques&action=edit&redlink=1 \"Walda Marques (page does not exist)\") * [Walter \n",
+       "Pinto\\](/w/index.php?title=Walter_Pinto&action=edit&redlink=1 \"Walter Pinto (page does not exist)\") |\\n| 2014 | * \n",
+       "[Alex Atala\\](/wiki/Alex_Atala \"Alex Atala\") * [Alexandre Herchcovitch\\](/wiki/Alexandre_Herchcovitch \"Alexandre \n",
+       "Herchcovitch\") * [Bernardo Paz\\](/wiki/Bernardo_Paz \"Bernardo Paz\") * [Bruno e Marrone\\](/wiki/Bruno_e_Marrone \n",
+       "\"Bruno e Marrone\") * [Celso Frateschi\\](/wiki/Celso_Frateschi \"Celso Frateschi\") * [Chico de \n",
+       "Assis\\](/w/index.php?title=Chico_de_Assis&action=edit&redlink=1 \"Chico de Assis (page does not exist)\") * [Eliane \n",
+       "Potiguara\\](/w/index.php?title=Eliane_Potiguara&action=edit&redlink=1 \"Eliane Potiguara (page does not exist)\") * \n",
+       "[Henricredo Coelho\\](/w/index.php?title=Henricredo_Coelho&action=edit&redlink=1 \"Henricredo Coelho (page does not \n",
+       "exist)\") * [Hermano Vianna\\](/w/index.php?title=Hermano_Vianna&action=edit&redlink=1 \"Hermano Vianna (page does not\n",
+       "exist)\") * [Jenner Augusto\\](/w/index.php?title=Jenner_Augusto&action=edit&redlink=1 \"Jenner Augusto (page does not\n",
+       "exist)\") * [José Carlos Meirelles\\](/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\") * [Júlio \n",
+       "Medaglia\\](/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\") * [Mano Brown\\](/wiki/Mano_Brown \"Mano Brown\") * [Marisa \n",
+       "Monte\\](/wiki/Marisa_Monte \"Marisa Monte\") * [Matheus Nachtergaele\\](/wiki/Matheus_Nachtergaele \"Matheus \n",
+       "Nachtergaele\") * [Ogã Bangbala\\](/w/index.php?title=Og%C3%A3_Bangbala&action=edit&redlink=1 \"Ogã Bangbala (page \n",
+       "does not exist)\") * [Orlando Senna\\](/w/index.php?title=Orlando_Senna&action=edit&redlink=1 \"Orlando Senna (page \n",
+       "does not exist)\") * [Oskar Metsavaht\\](/wiki/Oskar_Metsavaht \"Oskar Metsavaht\") * [Patrícia \n",
+       "Pillar\\](/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\") * Paulo Martins * [Tião \n",
+       "Oleiro\\](/w/index.php?title=Ti%C3%A3o_Oleiro&action=edit&redlink=1 \"Tião Oleiro (page does not exist)\") * [Vange \n",
+       "Leonel\\](/wiki/Vange_Leonel \"Vange Leonel\") |\\n| 2015 | * [Adylson \n",
+       "Godoy\\](/w/index.php?title=Adylson_Godoy&action=edit&redlink=1 \"Adylson Godoy (page does not exist)\") * [Ailton \n",
+       "Krenak\\](/wiki/Ailton_Krenak \"Ailton Krenak\") * [Aldyr Schlee\\](/wiki/Aldyr_Schlee \"Aldyr Schlee\") * [Antônio \n",
+       "Araújo\\](/w/index.php?title=Ant%C3%B4nio_Ara%C3%BAjo&action=edit&redlink=1 \"Antônio Araújo (page does not exist)\") \n",
+       "* [Arnaldo Antunes\\](/wiki/Arnaldo_Antunes \"Arnaldo Antunes\") * [As Ceguinhas de Campina \n",
+       "Grande\\](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n",
+       "(page does not exist)\") * [Augusto de Campos\\](/wiki/Augusto_de_Campos \"Augusto de Campos\") * [Casa de Cinema de \n",
+       "Porto Alegre\\](/w/index.php?title=Casa_de_Cinema_de_Porto_Alegre&action=edit&redlink=1 \"Casa de Cinema de Porto \n",
+       "Alegre (page does not exist)\") * [Centro de Memória do \n",
+       "Circo\\](/w/index.php?title=Centro_de_Mem%C3%B3ria_do_Circo&action=edit&redlink=1 \"Centro de Memória do Circo (page \n",
+       "does not exist)\") * [Cesare La Rocca\\](/w/index.php?title=Cesare_La_Rocca&action=edit&redlink=1 \"Cesare La Rocca \n",
+       "(page does not exist)\") * [Comissão Guarani \n",
+       "Yvyrupa\\](/w/index.php?title=Comiss%C3%A3o_Guarani_Yvyrupa&action=edit&redlink=1 \"Comissão Guarani Yvyrupa (page \n",
+       "does not exist)\") * [Daniela Mercury\\](/wiki/Daniela_Mercury \"Daniela Mercury\") * [Davi Kopenawa \n",
+       "Yanomami\\](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Eva \n",
+       "Schul\\](/w/index.php?title=Eva_Schul&action=edit&redlink=1 \"Eva Schul (page does not exist)\") * [Humberto \n",
+       "Teixeira\\](/wiki/Humberto_Teixeira \"Humberto Teixeira\") * [Italo \n",
+       "Campofiorito\\](/w/index.php?title=Italo_Campofiorito&action=edit&redlink=1 \"Italo Campofiorito (page does not \n",
+       "exist)\") * Mestre [João Grande\\](/wiki/Jo%C3%A3o_Grande \"João Grande\") * [José \n",
+       "Mourão\\](/w/index.php?title=Jos%C3%A9_Mour%C3%A3o&action=edit&redlink=1 \"José Mourão (page does not exist)\") * \n",
+       "[Luís Humberto\\](/w/index.php?title=Lu%C3%ADs_Humberto&action=edit&redlink=1 \"Luís Humberto (page does not exist)\")\n",
+       "* Mãe [Beth de Oxum\\](/w/index.php?title=Beth_de_Oxum&action=edit&redlink=1 \"Beth de Oxum (page does not exist)\") *\n",
+       "[Marcelo Yuka\\](/wiki/Marcelo_Yuka \"Marcelo Yuka\") * [Niède Guidon\\](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * \n",
+       "[Paulo Herkenhoff\\](/w/index.php?title=Paulo_Herkenhoff&action=edit&redlink=1 \"Paulo Herkenhoff (page does not \n",
+       "exist)\") * [Rolando Boldrin\\](/wiki/Rolando_Boldrin \"Rolando Boldrin\") * [Ruy \n",
+       "Cezar\\](/w/index.php?title=Ruy_Cezar&action=edit&redlink=1 \"Ruy Cezar (page does not exist)\") * [Sociedade Musical \n",
+       "Curica\\](/w/index.php?title=Curica_(band)&action=edit&redlink=1 \"Curica (band) (page does not exist)\") * [Sônia \n",
+       "Guajajara\\](/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\") * [Tribo de \n",
+       "Atuadores\\](/w/index.php?title=Tribo_de_Atuadores&action=edit&redlink=1 \"Tribo de Atuadores (page does not exist)\")\n",
+       "* [Uruhu Mehinako\\](/w/index.php?title=Uruhu_Mehinako&action=edit&redlink=1 \"Uruhu Mehinako (page does not exist)\")\n",
+       "* [Vanisa Santiago\\](/w/index.php?title=Vanisa_Santiago&action=edit&redlink=1 \"Vanisa Santiago (page does not \n",
+       "exist)\") * [Vera Tostes\\](/w/index.php?title=Vera_Tostes&action=edit&redlink=1 \"Vera Tostes (page does not exist)\")\n",
+       "* [Walter Carvalho\\](/wiki/Walter_Carvalho \"Walter Carvalho\") |\\n| 2016 | * [Abel \n",
+       "Gomes\\](/w/index.php?title=Abel_Gomes&action=edit&redlink=1 \"Abel Gomes (page does not exist)\") * [Alcymar \n",
+       "Monteiro\\](/w/index.php?title=Alcymar_Monteiro&action=edit&redlink=1 \"Alcymar Monteiro (page does not exist)\") * \n",
+       "[Ana Mae Barbosa\\](/w/index.php?title=Ana_Mae_Barbosa&action=edit&redlink=1 \"Ana Mae Barbosa (page does not \n",
+       "exist)\") * [Andrucha Waddington\\](/wiki/Andrucha_Waddington \"Andrucha Waddington\") * [Beatriz \n",
+       "Milhazes\\](/wiki/Beatriz_Milhazes \"Beatriz Milhazes\") * [Carlinhos de \n",
+       "Jesus\\](/w/index.php?title=Carlinhos_de_Jesus&action=edit&redlink=1 \"Carlinhos de Jesus (page does not exist)\") * \n",
+       "[Carlos Alberto Serpa de Oliveira\\](/w/index.php?title=Carlos_Alberto_Serpa_de_Oliveira&action=edit&redlink=1 \n",
+       "\"Carlos Alberto Serpa de Oliveira (page does not exist)\") * [Carlos Vereza\\](/wiki/Carlos_Vereza \"Carlos Vereza\") *\n",
+       "[Clementina de Jesus\\](/wiki/Clementina_de_Jesus \"Clementina de Jesus\") * [Dona Ivone Lara\\](/wiki/Dona_Ivone_Lara \n",
+       "\"Dona Ivone Lara\") * [Donga\\](/wiki/Donga_(musician) \"Donga (musician)\") * [Fernando \n",
+       "Meirelles\\](/wiki/Fernando_Meirelles \"Fernando Meirelles\") * [Ferreira Gullar\\](/wiki/Ferreira_Gullar \"Ferreira \n",
+       "Gullar\") * [Focus Cia. De Dança\\](/w/index.php?title=Focus_Cia._De_Dan%C3%A7a&action=edit&redlink=1 \"Focus Cia. De \n",
+       "Dança (page does not exist)\") * [Fred Gelli\\](/w/index.php?title=Fred_Gelli&action=edit&redlink=1 \"Fred Gelli (page\n",
+       "does not exist)\") * [Fundação Darcy \n",
+       "Ribeiro\\](/w/index.php?title=Funda%C3%A7%C3%A3o_Darcy_Ribeiro&action=edit&redlink=1 \"Fundação Darcy Ribeiro (page \n",
+       "does not exist)\") * [Grupo Teatro da Laje\\](/w/index.php?title=Grupo_Teatro_da_Laje&action=edit&redlink=1 \"Grupo \n",
+       "Teatro da Laje (page does not exist)\") * [Instituto Ricardo Brennand\\](/wiki/Ricardo_Brennand_Institute \"Ricardo \n",
+       "Brennand Institute\") * [Isaurinha Garcia\\](/w/index.php?title=Isaurinha_Garcia&action=edit&redlink=1 \"Isaurinha \n",
+       "Garcia (page does not exist)\") * [Ismael Silva\\](/wiki/Ismael_Silva_(musician) \"Ismael Silva (musician)\") * [Jorge \n",
+       "Aragão\\](/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\") * [Jovelina Pérola Negra\\](/wiki/Jovelina_P%C3%A9rola_Negra \n",
+       "\"Jovelina Pérola Negra\") * [Maracatu Feminino Coração \n",
+       "Nazareno\\](/w/index.php?title=Maracatu_Feminino_Cora%C3%A7%C3%A3o_Nazareno&action=edit&redlink=1 \"Maracatu Feminino\n",
+       "Coração Nazareno (page does not exist)\") * [Marcus \n",
+       "Faustini\\](/w/index.php?title=Marcus_Faustini&action=edit&redlink=1 \"Marcus Faustini (page does not exist)\") * \n",
+       "[Mauro Mendonça\\](/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\") * [Museu do \n",
+       "Samba\\](/w/index.php?title=Centro_Cultural_Cartola&action=edit&redlink=1 \"Centro Cultural Cartola (page does not \n",
+       "exist)\") * [Neguinho da Beija-Flor\\](/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\") * [Nelson \n",
+       "Sargento\\](/wiki/Nelson_Sargento \"Nelson Sargento\") * [Noel Rosa\\](/wiki/Noel_Rosa \"Noel Rosa\") * \n",
+       "[Papete\\](/w/index.php?title=Papete&action=edit&redlink=1 \"Papete (page does not exist)\") * [Ricardo Cravo \n",
+       "Albin\\](/w/index.php?title=Ricardo_Cravo_Albin&action=edit&redlink=1 \"Ricardo Cravo Albin (page does not exist)\") *\n",
+       "[Rildo Hora\\](/w/index.php?title=Rildo_Hora&action=edit&redlink=1 \"Rildo Hora (page does not exist)\") * [Rosa \n",
+       "Magalhães\\](/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\") * [Rosa Maria \n",
+       "Araújo\\](/w/index.php?title=Rosa_Maria_Ara%C3%BAjo&action=edit&redlink=1 \"Rosa Maria Araújo (page does not exist)\")\n",
+       "* [Silas de Oliveira\\](/w/index.php?title=Silas_de_Oliveira&action=edit&redlink=1 \"Silas de Oliveira (page does not\n",
+       "exist)\") * [Vik Muniz\\](/wiki/Vik_Muniz \"Vik Muniz\") |\\n| 2017 | * [Afonso \n",
+       "Oliveira\\](/w/index.php?title=Afonso_Oliveira&action=edit&redlink=1 \"Afonso Oliveira (page does not exist)\") * [Ana\n",
+       "Maria Nobrega Miranda\\](/w/index.php?title=Ana_Maria_Nobrega_Miranda&action=edit&redlink=1 \"Ana Maria Nobrega \n",
+       "Miranda (page does not exist)\") * [Augusto \n",
+       "Marzagão\\](/w/index.php?title=Augusto_Marzag%C3%A3o&action=edit&redlink=1 \"Augusto Marzagão (page does not exist)\")\n",
+       "* [Beto Kelner\\](/w/index.php?title=Beto_Kelner&action=edit&redlink=1 \"Beto Kelner (page does not exist)\") * \n",
+       "[Boni\\](/w/index.php?title=Jos%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&action=edit&redlink=1 \"José Bonifácio de \n",
+       "Oliveira Sobrinho (page does not exist)\") * [Carla Camurati\\](/wiki/Carla_Camurati \"Carla Camurati\") * [Carlos \n",
+       "Tufvesson\\](/wiki/Carlos_Tufvesson \"Carlos Tufvesson\") * [Cláudia Costin\\](/wiki/Cl%C3%A1udia_Costin \"Cláudia \n",
+       "Costin\") * [Domingo Alzugaray\\](/wiki/Domingo_Alzugaray \"Domingo Alzugaray\") * [Dona Onete\\](/wiki/Dona_Onete \"Dona\n",
+       "Onete\") * [Eduardo Portella\\](/wiki/Eduardo_Portella \"Eduardo Portella\") * [Eduardo Saron \n",
+       "Nunes\\](/w/index.php?title=Eduardo_Saron_Nunes&action=edit&redlink=1 \"Eduardo Saron Nunes (page does not exist)\") *\n",
+       "[Fernando Alterio\\](/w/index.php?title=Fernando_Alterio&action=edit&redlink=1 \"Fernando Alterio (page does not \n",
+       "exist)\") * [Galo da Madrugada\\](/wiki/Galo_da_Madrugada \"Galo da Madrugada\") * [Genival \n",
+       "Lacerda\\](/wiki/Genival_Lacerda \"Genival Lacerda\") * [Ivo \n",
+       "Barroso\\](/w/index.php?title=Ivo_Barroso&action=edit&redlink=1 \"Ivo Barroso (page does not exist)\") * [Jair de \n",
+       "Souza\\](/w/index.php?title=Jair_de_Souza&action=edit&redlink=1 \"Jair de Souza (page does not exist)\") * [Luciane \n",
+       "Gorgulho\\](/w/index.php?title=Luciane_Gorgulho&action=edit&redlink=1 \"Luciane Gorgulho (page does not exist)\") * \n",
+       "[Luis Severiano Ribeiro\\](/w/index.php?title=Luis_Severiano_Ribeiro&action=edit&redlink=1 \"Luis Severiano Ribeiro \n",
+       "(page does not exist)\") * [Luiz Calainho\\](/w/index.php?title=Luiz_Calainho&action=edit&redlink=1 \"Luiz Calainho \n",
+       "(page does not exist)\") * [Marcelo Bertini\\](/w/index.php?title=Marcelo_Bertini&action=edit&redlink=1 \"Marcelo \n",
+       "Bertini (page does not exist)\") * [Marcelo Bratke\\](/wiki/Marcelo_Bratke \"Marcelo Bratke\") * [Marcelo \n",
+       "Dantas\\](/w/index.php?title=Marcelo_Dantas&action=edit&redlink=1 \"Marcelo Dantas (page does not exist)\") * [Maria \n",
+       "Ignez Mantovani\\](/w/index.php?title=Maria_Ignez_Mantovani&action=edit&redlink=1 \"Maria Ignez Mantovani (page does \n",
+       "not exist)\") * [Moeller & Botelho Produções \n",
+       "Artísticas\\](/w/index.php?title=Moeller_%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&action=edit&redlink=1 \n",
+       "\"Moeller & Botelho Produções Artísticas (page does not exist)\") * Mãe [Neide Oyá \n",
+       "D´Oxum\\](/w/index.php?title=Neide_Oy%C3%A1_D%C2%B4Oxum&action=edit&redlink=1 \"Neide Oyá D´Oxum (page does not \n",
+       "exist)\") * [Paulo Cruz\\](/w/index.php?title=Paulo_Cruz&action=edit&redlink=1 \"Paulo Cruz (page does not exist)\") * \n",
+       "[Pierre André Mantovani\\](/w/index.php?title=Pierre_Andr%C3%A9_Mantovani&action=edit&redlink=1 \"Pierre André \n",
+       "Mantovani (page does not exist)\") * [Renato Aragão\\](/wiki/Renato_Arag%C3%A3o \"Renato Aragão\") * [Ricardo \n",
+       "Amaral\\](/w/index.php?title=Ricardo_Amaral&action=edit&redlink=1 \"Ricardo Amaral (page does not exist)\") * [Roberto\n",
+       "Minczuk\\](/wiki/Roberto_Minczuk \"Roberto Minczuk\") * [Roberto Santucci\\](/wiki/Roberto_Santucci \"Roberto Santucci\")\n",
+       "|\\n| 2018 | * [Abelardo Barbosa\\](/wiki/Chacrinha \"Chacrinha\") * [Antonio \n",
+       "Mazzafera\\](/w/index.php?title=Antonio_Mazzafera&action=edit&redlink=1 \"Antonio Mazzafera (page does not exist)\") *\n",
+       "[Biblioteca Oliveira Lima\\](/w/index.php?title=Biblioteca_Oliveira_Lima&action=edit&redlink=1 \"Biblioteca Oliveira \n",
+       "Lima (page does not exist)\") * [Bruno Wainer\\](/w/index.php?title=Bruno_Wainer&action=edit&redlink=1 \"Bruno Wainer \n",
+       "(page does not exist)\") * [Carlos Saldanha\\](/wiki/Carlos_Saldanha \"Carlos Saldanha\") * [Carlos \n",
+       "Vereza\\](/wiki/Carlos_Vereza \"Carlos Vereza\") * [Dedé Santana\\](/wiki/Ded%C3%A9_Santana \"Dedé Santana\") * [Eva \n",
+       "Sopher\\](/wiki/Eva_Sopher \"Eva Sopher\") * [Eva Wilma\\](/wiki/Eva_Wilma \"Eva Wilma\") * [Festival Villa \n",
+       "Mix\\](/w/index.php?title=Festival_Villa_Mix&action=edit&redlink=1 \"Festival Villa Mix (page does not exist)\") * \n",
+       "[Guilherme Fiuza\\](/w/index.php?title=Guilherme_Fiuza&action=edit&redlink=1 \"Guilherme Fiuza (page does not \n",
+       "exist)\") * [Instituto Histórico e Geográfico \n",
+       "Brasileiro\\](/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \"Instituto Histórico e Geográfico \n",
+       "Brasileiro\") * [Jorge Caldeira\\](/w/index.php?title=Jorge_Caldeira&action=edit&redlink=1 \"Jorge Caldeira (page does\n",
+       "not exist)\") * [José Bonifácio\\](/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\") * [Kati Almeida \n",
+       "Braga\\](/w/index.php?title=Kati_Almeida_Braga&action=edit&redlink=1 \"Kati Almeida Braga (page does not exist)\") * \n",
+       "[King\\'s Brazil Institute\\](/w/index.php?title=King%27s_Brazil_Institute&action=edit&redlink=1 \"King\\'s Brazil \n",
+       "Institute (page does not exist)\") * [Luiz Oscar \n",
+       "Niemeyer\\](/w/index.php?title=Luiz_Oscar_Niemeyer&action=edit&redlink=1 \"Luiz Oscar Niemeyer (page does not \n",
+       "exist)\") * [Marcelo Castello Branco\\](/w/index.php?title=Marcelo_Castello_Branco&action=edit&redlink=1 \"Marcelo \n",
+       "Castello Branco (page does not exist)\") * [Marcio \n",
+       "Fraccaroli\\](/w/index.php?title=Marcio_Fraccaroli&action=edit&redlink=1 \"Marcio Fraccaroli (page does not exist)\") \n",
+       "* [Martim Vasques da Cunha\\](/w/index.php?title=Martim_Vasques_da_Cunha&action=edit&redlink=1 \"Martim Vasques da \n",
+       "Cunha (page does not exist)\") * [Milton Gonçalves\\](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Monah \n",
+       "Delacy\\](/w/index.php?title=Monah_Delacy&action=edit&redlink=1 \"Monah Delacy (page does not exist)\") * [Museu de \n",
+       "Arte de São Paulo\\](/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\") * [Museu de Arte Moderna do\n",
+       "Rio de Janeiro\\](/w/index.php?title=Museu_de_Arte_Moderna_do_Rio_de_Janeiro&action=edit&redlink=1 \"Museu de Arte \n",
+       "Moderna do Rio de Janeiro (page does not exist)\") * [Museu de Arte Moderna de São \n",
+       "Paulo\\](/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\") * [Museu da Gente \n",
+       "Sergipana\\](/w/index.php?title=Museu_da_Gente_Sergipana&action=edit&redlink=1 \"Museu da Gente Sergipana (page does \n",
+       "not exist)\") * [Orquestra Filarmônica de Minas \n",
+       "Gerais\\](/w/index.php?title=Orquestra_Filarm%C3%B4nica_de_Minas_Gerais&action=edit&redlink=1 \"Orquestra Filarmônica\n",
+       "de Minas Gerais (page does not exist)\") * [Roberto Teixeira da \n",
+       "Costa\\](/w/index.php?title=Roberto_Teixeira_da_Costa&action=edit&redlink=1 \"Roberto Teixeira da Costa (page does \n",
+       "not exist)\") * [Saulo Ferreira\\](/w/index.php?title=Saulo_Ferreira&action=edit&redlink=1 \"Saulo Ferreira (page does\n",
+       "not exist)\") * [Sérgio Mendes\\](/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\") * [Sérgio \n",
+       "Mielniczenko\\](/w/index.php?title=S%C3%A9rgio_Mielniczenko&action=edit&redlink=1 \"Sérgio Mielniczenko (page does \n",
+       "not exist)\") * [Thiago Soares\\](/wiki/Thiago_Soares \"Thiago Soares\") * [Trio \n",
+       "Roraimeira\\](/w/index.php?title=Trio_Roraimeira&action=edit&redlink=1 \"Trio Roraimeira (page does not exist)\") * \n",
+       "[Vó Mera\\](/w/index.php?title=V%C3%B3_Mera&action=edit&redlink=1 \"Vó Mera (page does not exist)\") * [Wanda \n",
+       "Sá\\](/wiki/Wanda_S%C3%A1 \"Wanda Sá\") |\\n\\n| [Authority control databases\\](/wiki/Help:Authority_control \n",
+       "\"Help:Authority control\") [Edit this at Wikidata\\](https://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at \n",
+       "Wikidata\") | |\\n| --- | --- |\\n| International | * [ISNI\\](https://isni.org/isni/0000000114681685) * \n",
+       "[VIAF\\](https://viaf.org/viaf/14968654) * [FAST\\](http://id.worldcat.org/fast/206968/) * \n",
+       "[WorldCat\\](https://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3) |\\n| National | * \n",
+       "[Germany\\](https://d-nb.info/gnd/119022249) * [United States\\](https://id.loc.gov/authorities/n87117284) * \n",
+       "[France\\](https://catalogue.bnf.fr/ark:/12148/cb13999885k) * [BnF \n",
+       "data\\](https://data.bnf.fr/ark:/12148/cb13999885k) * [Italy\\](https://opac.sbn.it/nome/UBOV850079) * \n",
+       "[Spain\\](https://datos.bne.es/resource/XX1088218) * [Netherlands\\](http://data.bibliotheken.nl/id/thes/p071981608) \n",
+       "* [Norway\\](https://authority.bibsys.no/authority/rest/authorities/html/9050316) * \n",
+       "[Chile\\](http://www.bncatalogo.cl/F?func=direct&local_base=red10&doc_number=000157687) * \n",
+       "[Argentina\\](https://catalogo.bn.gov.ar/F/?func=direct&local_base=BNA10&doc_number=000042426) * \n",
+       "[Korea\\](https://lod.nl.go.kr/resource/KAC2020N6852) * \n",
+       "[Israel\\](https://www.nli.org.il/en/authorities/987007594420405171) * \n",
+       "[Catalonia\\](https://cantic.bnc.cat/registre/981058518702206706) |\\n| Artists | * \n",
+       "[MusicBrainz\\](https://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577) |\\n| People | * [Deutsche \n",
+       "Biographie\\](https://www.deutsche-biographie.de/119022249.html?language=en) * \n",
+       "[DDB\\](https://www.deutsche-digitale-bibliothek.de/person/gnd/119022249) |\\n| Other | * \n",
+       "[IdRef\\](https://www.idref.fr/08071613X) * [SNAC\\](https://snaccooperative.org/ark:/99166/w67n4hns) \n",
+       "|\\n\\n[Portals\\](/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"):\\n\\n* \n",
+       "![flag\\](//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png) \n",
+       "[Argentina\\](/wiki/Portal:Argentina \"Portal:Argentina\")\\n* \n",
+       "![](//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png) [Latin \n",
+       "music\\](/wiki/Portal:Latin_music \"Portal:Latin \n",
+       "music\")\\n\\n![](https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1&usesul3=1)\\n\\nRetrieved from \n",
+       "\"<https://en.wikipedia.org/w/index.php?title=Mercedes_Sosa&oldid=1281260319>\"\\n\\n[Categories\\](/wiki/Help:Category \n",
+       "\"Help:Category\"):\\n\\n* [1935 births\\](/wiki/Category:1935_births \"Category:1935 births\")\\n* [2009 \n",
+       "deaths\\](/wiki/Category:2009_deaths \"Category:2009 deaths\")\\n* [Latin Grammy Award \n",
+       "winners\\](/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\")\\n* [20th-century \n",
+       "Argentine women singers\\](/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century Argentine \n",
+       "women singers\")\\n* [Argentine activists\\](/wiki/Category:Argentine_activists \"Category:Argentine activists\")\\n* \n",
+       "[Argentine women activists\\](/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\")\\n* \n",
+       "[Argentine people of French descent\\](/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people \n",
+       "of French descent\")\\n* [Argentine people of Diaguita descent\\](/wiki/Category:Argentine_people_of_Diaguita_descent \n",
+       "\"Category:Argentine people of Diaguita descent\")\\n* [Argentine people of Quechua \n",
+       "descent\\](/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine people of Quechua descent\")\\n* \n",
+       "[Deaths from kidney failure in Argentina\\](/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths \n",
+       "from kidney failure in Argentina\")\\n* [People from San Miguel de \n",
+       "Tucumán\\](/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from San Miguel de Tucumán\")\\n* \n",
+       "[Nueva canción musicians\\](/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\")\\n* \n",
+       "[Bombo legüero players\\](/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\")\\n* [Latin \n",
+       "Grammy Lifetime Achievement Award winners\\](/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \n",
+       "\"Category:Latin Grammy Lifetime Achievement Award winners\")\\n* [Recipients of the Order of Cultural Merit \n",
+       "(Brazil)\\](/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_(Brazil) \"Category:Recipients of the Order of \n",
+       "Cultural Merit (Brazil)\")\\n* [20th-century drummers\\](/wiki/Category:20th-century_drummers \"Category:20th-century \n",
+       "drummers\")\\n* [Women in Latin music\\](/wiki/Category:Women_in_Latin_music \"Category:Women in Latin \n",
+       "music\")\\n\\nHidden categories:\\n\\n* [All articles with dead external \n",
+       "links\\](/wiki/Category:All_articles_with_dead_external_links \"Category:All articles with dead external links\")\\n* \n",
+       "[Articles with dead external links from June 2024\\](/wiki/Category:Articles_with_dead_external_links_from_June_2024\n",
+       "\"Category:Articles with dead external links from June 2024\")\\n* [CS1 Spanish-language sources \n",
+       "(es)\\](/wiki/Category:CS1_Spanish-language_sources_(es) \"Category:CS1 Spanish-language sources (es)\")\\n* [CS1 \n",
+       "maint: numeric names: authors list\\](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 maint: \n",
+       "numeric names: authors list\")\\n* [CS1 maint: url-status\\](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint:\n",
+       "url-status\")\\n* [Webarchive template wayback links\\](/wiki/Category:Webarchive_template_wayback_links \n",
+       "\"Category:Webarchive template wayback links\")\\n* [Articles with German-language sources \n",
+       "(de)\\](/wiki/Category:Articles_with_German-language_sources_(de) \"Category:Articles with German-language sources \n",
+       "(de)\")\\n* [Articles with short description\\](/wiki/Category:Articles_with_short_description \"Category:Articles with\n",
+       "short description\")\\n* [Short description is different from \n",
+       "Wikidata\\](/wiki/Category:Short_description_is_different_from_Wikidata \"Category:Short description is different \n",
+       "from Wikidata\")\\n* [Use dmy dates from July 2023\\](/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy \n",
+       "dates from July 2023\")\\n* [Wikipedia indefinitely move-protected \n",
+       "pages\\](/wiki/Category:Wikipedia_indefinitely_move-protected_pages \"Category:Wikipedia indefinitely move-protected \n",
+       "pages\")\\n* [Articles with hCards\\](/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\")\\n* [Pages \n",
+       "with Latin American Spanish IPA\\](/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with Latin \n",
+       "American Spanish IPA\")\\n* [All articles with unsourced \n",
+       "statements\\](/wiki/Category:All_articles_with_unsourced_statements \"Category:All articles with unsourced \n",
+       "statements\")\\n* [Articles with unsourced statements from December \n",
+       "2023\\](/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \n",
+       "statements from December 2023\")\\n* [Commons category link is on \n",
+       "Wikidata\\](/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons category link is on \n",
+       "Wikidata\")\\n\\n* This page was last edited on 19 March 2025, at 08:35\\xa0(UTC).\\n* Text is available under the \n",
+       "[Creative Commons Attribution-ShareAlike 4.0 \n",
+       "License\\](/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \n",
+       "\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\");\\n  additional terms may\n",
+       "apply. By using this site, you agree to the [Terms of \n",
+       "Use\\](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \n",
+       "\"foundation:Special:MyLanguage/Policy:Terms of Use\") and [Privacy \n",
+       "Policy\\](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \n",
+       "\"foundation:Special:MyLanguage/Policy:Privacy policy\"). Wikipedia® is a registered trademark of the [Wikimedia \n",
+       "Foundation, Inc.\\](https://wikimediafoundation.org/), a non-profit organization.\\n\\n* [Privacy \n",
+       "policy\\](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy)\\n* [About \n",
+       "Wikipedia\\](/wiki/Wikipedia:About)\\n* [Disclaimers\\](/wiki/Wikipedia:General_disclaimer)\\n* [Contact \n",
+       "Wikipedia\\](//en.wikipedia.org/wiki/Wikipedia:Contact_us)\\n* [Code of \n",
+       "Conduct\\](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct)\\n* \n",
+       "[Developers\\](https://developer.wikimedia.org)\\n* [Statistics\\](https://stats.wikimedia.org/#/en.wikipedia.org)\\n* \n",
+       "[Cookie statement\\](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement)\\n* [Mobile \n",
+       "view\\](//en.m.wikipedia.org/w/index.php?title=Mercedes_Sosa&mobileaction=toggle_view_mobile)\\n\\n* [![Wikimedia \n",
+       "Foundation\\](/static/images/footer/wikimedia.svg)](https://www.wikimedia.org/)\\n* [![Powered by \n",
+       "MediaWiki\\](/w/resources/assets/mediawiki_compact.svg)](https://www.mediawiki.org/)\\n\\nSearch\\n\\nSearch\\n\\nToggle \n",
+       "the table of contents\\n\\nMercedes Sosa\\n\\n49 languages\\n[Add topic\\](#)'] with '1': IndexError: list index out of \n",
+       "range\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;31mCode execution failed at line \u001b[0m\u001b[32m'discography_section = page_content.split\u001b[0m\u001b[32m(\u001b[0m\u001b[32m\"== Discography ==\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m1\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m'\u001b[0m\u001b[1;31m due to: \u001b[0m\n", + "\u001b[1;31mInterpreterError: Could not index \u001b[0m\u001b[1;31m[\u001b[0m\u001b[32m'Mercedes Sosa - Wikipedia\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mJump to content\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#bodyContent\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nMain \u001b[0m\n", + "\u001b[32mmenu\\n\\nMain menu\\n\\nmove to sidebar\\nhide\\n\\nNavigation\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMain page\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Main_Page \"Visit the main page \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mContents\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCurrent \u001b[0m\n", + "\u001b[32mevents\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Portal:Current_events \"Articles related to current events\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRandom \u001b[0m\n", + "\u001b[32marticle\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:Random \"Visit a randomly selected article \u001b[0m\u001b[32m[\u001b[0m\u001b[32mx\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbout \u001b[0m\n", + "\u001b[32mWikipedia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mContact \u001b[0m\n", + "\u001b[32mus\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nContribute\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mHelp\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLearn to \u001b[0m\n", + "\u001b[32medit\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:Introduction \"Learn how to edit Wikipedia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCommunity \u001b[0m\n", + "\u001b[32mportal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:Community_portal \"The hub for editors\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRecent changes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:RecentChanges \u001b[0m\n", + "\u001b[32m\"A list of recent changes to Wikipedia \u001b[0m\u001b[32m[\u001b[0m\u001b[32mr\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUpload file\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:File_upload_wizard \"Add images or \u001b[0m\n", + "\u001b[32mother media for use on Wikipedia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSpecial \u001b[0m\n", + "\u001b[32mpages\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:SpecialPages\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/static/images/icons/wikipedia.png\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n!\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikipedia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/static/images/mo\u001b[0m\n", + "\u001b[32mbile/copyright/wikipedia-wordmark-en.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n!\u001b[0m\u001b[32m[\u001b[0m\u001b[32mThe Free \u001b[0m\n", + "\u001b[32mEncyclopedia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/static/images/mobile/copyright/wikipedia-tagline-en.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Main_Page\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mSearch\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Speci\u001b[0m\n", + "\u001b[32mal:Search \"Search Wikipedia \u001b[0m\u001b[32m[\u001b[0m\u001b[32mf\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSearch\\n\\nAppearance\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDonate\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://donate.wikimedia.org/?\u001b[0m\u001b[32mwmf_source\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdonate\u001b[0m\u001b[32m&\u001b[0m\u001b[32mwmf_medium\u001b[0m\u001b[32m=\u001b[0m\u001b[32msidebar\u001b[0m\u001b[32m&\u001b[0m\u001b[32mwmf_campaign\u001b[0m\u001b[32m=\u001b[0m\u001b[32men\u001b[0m\u001b[32m.wikipedia.org&\u001b[0m\u001b[32muselang\u001b[0m\u001b[32m=\u001b[0m\n", + "\u001b[32men\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCreate account\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:CreateAccount&\u001b[0m\u001b[32mreturnto\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes\u001b[0m\u001b[32m+Sosa \"You are encouraged to \u001b[0m\n", + "\u001b[32mcreate an account and log in; however, it is not mandatory\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLog \u001b[0m\n", + "\u001b[32min\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:UserLogin&\u001b[0m\u001b[32mreturnto\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes\u001b[0m\u001b[32m+Sosa \"You\\'re encouraged to log in; however, it\\'s not \u001b[0m\n", + "\u001b[32mmandatory. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nPersonal tools\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDonate\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://donate.wikimedia.org/?\u001b[0m\u001b[32mwmf_source\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdonate\u001b[0m\u001b[32m&\u001b[0m\u001b[32mwmf_medium\u001b[0m\u001b[32m=\u001b[0m\u001b[32msidebar\u001b[0m\u001b[32m&\u001b[0m\u001b[32mwmf_campaign\u001b[0m\u001b[32m=\u001b[0m\u001b[32men\u001b[0m\u001b[32m.wikipedia.org&\u001b[0m\u001b[32muselang\u001b[0m\u001b[32m=\u001b[0m\n", + "\u001b[32men\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCreate account\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:CreateAccount&\u001b[0m\u001b[32mreturnto\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes\u001b[0m\u001b[32m+Sosa \"You are encouraged to \u001b[0m\n", + "\u001b[32mcreate an account and log in; however, it is not mandatory\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLog \u001b[0m\n", + "\u001b[32min\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:UserLogin&\u001b[0m\u001b[32mreturnto\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes\u001b[0m\u001b[32m+Sosa \"You\\'re encouraged to log in; however, it\\'s not \u001b[0m\n", + "\u001b[32mmandatory. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nPages for logged out editors \u001b[0m\u001b[32m[\u001b[0m\u001b[32mlearn more\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:Introduction\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mContributions\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:MyContributions \"A list of edits made from this IP address \u001b[0m\u001b[32m[\u001b[0m\u001b[32my\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTalk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:MyTalk \"Discussion about edits from this IP address \u001b[0m\u001b[32m[\u001b[0m\u001b[32mn\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nContents\\n--------\\n\\nmove to \u001b[0m\n", + "\u001b[32msidebar\\nhide\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32mTop\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m1\\n Life\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Life\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m2\\n Awards\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Awards\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m3\\n Death\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Death\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\n \u001b[0m\n", + "\u001b[32mTributes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Tributes\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m5\\n Discography\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Discography\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n Toggle Discography subsection\\n + \u001b[0m\u001b[32m[\u001b[0m\u001b[32m5.1\\n Studio\u001b[0m\n", + "\u001b[32malbums\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Studio_albums\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n + \u001b[0m\u001b[32m[\u001b[0m\u001b[32m5.2\\n EPs\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#EPs\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n + \u001b[0m\u001b[32m[\u001b[0m\u001b[32m5.3\\n Live albums\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Live_albums\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n + \u001b[0m\u001b[32m[\u001b[0m\u001b[32m5.4\\n \u001b[0m\n", + "\u001b[32mCompilation albums\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Compilation_albums\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m6\\n Filmography\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Filmography\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m7\\n Further \u001b[0m\n", + "\u001b[32mreading\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#Further_reading\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\n References\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#References\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m9\\n External links\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#External_links\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nToggle\u001b[0m\n", + "\u001b[32mthe table of contents\\n\\nMercedes Sosa\\\u001b[0m\u001b[32mn\u001b[0m\u001b[32m=============\\n\\n49 languages\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mالعربية\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا\u001b[0m\n", + "\u001b[32m– Arabic\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAymar aru\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mتۆرکجه\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \u001b[0m\n", + "\u001b[32mSouth Azerbaijani\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mবাংলা\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%\u001b[0m\n", + "\u001b[32mB8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mБеларуская \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mтарашкевіца\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%\u001b[0m\n", + "\u001b[32mD1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian \u001b[0m\u001b[32m(\u001b[0m\u001b[32mTaraškievica orthography\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mБългарски\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\u001b[0m\n", + "\u001b[32m0 \"Мерседес Соса – Bulgarian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBrezhoneg\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \u001b[0m\n", + "\u001b[32mBreton\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCatalà\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mČeština\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDansk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDeutsch\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mΕλληνικά\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1\u001b[0m\n", + "\u001b[32m\"Μερσέδες Σόσα – Greek\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEspañol\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEsperanto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEuskara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mفارسی\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \u001b[0m\n", + "\u001b[32mPersian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFrançais\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGalego\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m한국어\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \u001b[0m\n", + "\u001b[32m\"메르세데스 소사 – Korean\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mՀայերեն\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1 \u001b[0m\n", + "\u001b[32m\"Մերսեդես Սոսա – Armenian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHrvatski\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \u001b[0m\n", + "\u001b[32mCroatian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIdo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBahasa \u001b[0m\n", + "\u001b[32mIndonesia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mItaliano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mעברית\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \u001b[0m\n", + "\u001b[32mHebrew\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mLëtzebuergesch\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMagyar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mമലയാളം\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B\u001b[0m\n", + "\u001b[32m4%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്\\u200cസിഡസ് സോസ – Malayalam\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mمصرى\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا –\u001b[0m\n", + "\u001b[32mEgyptian Arabic\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNederlands\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m日本語\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3\u001b[0m\n", + "\u001b[32m%82%B5 \"メルセデス・ソーサ – Japanese\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNorsk bokmål\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes \u001b[0m\n", + "\u001b[32mSosa – Norwegian Bokmål\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOccitan\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPolski\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPortuguês\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuna \u001b[0m\n", + "\u001b[32mSimi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mРусский\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81\u001b[0m\n", + "\u001b[32m\"Соса, Мерседес – Russian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mScots\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSimple English\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSlovenščina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSuomi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSvenska\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTagalog\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTürkçe\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mУкраїнська\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%\u001b[0m\n", + "\u001b[32mB0 \"Мерседес Соса – Ukrainian\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTiếng Việt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – \u001b[0m\n", + "\u001b[32mVietnamese\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZazaki\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m中文\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 –\u001b[0m\n", + "\u001b[32mChinese\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdit links\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit \u001b[0m\n", + "\u001b[32minterlanguage links\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArticle\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa \"View the content page \u001b[0m\u001b[32m[\u001b[0m\u001b[32mc\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTalk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page \u001b[0m\u001b[32m[\u001b[0m\u001b[32mt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nEnglish\\n\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mRead\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdit\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m \"Edit this page \u001b[0m\u001b[32m[\u001b[0m\u001b[32me\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mView history\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32mhistory\u001b[0m\u001b[32m \"Past revisions of this page \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mh\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nTools\\n\\nTools\\n\\nmove to sidebar\\nhide\\n\\nActions\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRead\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEdit\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m \"Edit this page \u001b[0m\u001b[32m[\u001b[0m\u001b[32me\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mView \u001b[0m\n", + "\u001b[32mhistory\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32mhistory\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nGeneral\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWhat links \u001b[0m\n", + "\u001b[32mhere\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links to this page\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mj\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRelated changes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from \u001b[0m\n", + "\u001b[32mthis page \u001b[0m\u001b[32m[\u001b[0m\u001b[32mk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUpload file\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files \u001b[0m\u001b[32m[\u001b[0m\u001b[32mu\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPermanent link\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32moldid\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1281260319\u001b[0m\u001b[32m \"Permanent link to this revision of this \u001b[0m\n", + "\u001b[32mpage\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPage information\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32minfo\u001b[0m\u001b[32m \"More information about this page\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCite this \u001b[0m\n", + "\u001b[32mpage\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:CiteThisPage&\u001b[0m\u001b[32mpage\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32mid\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1281260319\u001b[0m\u001b[32m&\u001b[0m\u001b[32mwpFormIdentifier\u001b[0m\u001b[32m=\u001b[0m\u001b[32mtitleform\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Information on how to cite this page\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGet shortened \u001b[0m\n", + "\u001b[32mURL\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:UrlShortener&\u001b[0m\u001b[32murl\u001b[0m\u001b[32m=\u001b[0m\u001b[32mhttps\u001b[0m\u001b[32m%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDownload QR \u001b[0m\n", + "\u001b[32mcode\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:QrCode&\u001b[0m\u001b[32murl\u001b[0m\u001b[32m=\u001b[0m\u001b[32mhttps\u001b[0m\u001b[32m%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nPrint/export\u001b[0m\n", + "\u001b[32m\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDownload as PDF\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSpecial\u001b[0m\u001b[32m:DownloadAsPdf&\u001b[0m\u001b[32mpage\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32mshow\u001b[0m\u001b[32m-download-screen \u001b[0m\n", + "\u001b[32m\"Download this page as a PDF file\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPrintable version\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32mprintable\u001b[0m\u001b[32m=\u001b[0m\u001b[32myes\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Printable version of this page \u001b[0m\u001b[32m[\u001b[0m\u001b[32mp\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nIn other projects\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikimedia \u001b[0m\n", + "\u001b[32mCommons\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://commons.wikimedia.org/wiki/Category:Mercedes_Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikidata \u001b[0m\n", + "\u001b[32mitem\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by Wikidata \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mg\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nAppearance\\n\\nmove to sidebar\\nhide\\n\\nFrom Wikipedia, the free encyclopedia\\n\\nArgentine singer \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m1935–2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nNot to be confused with \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sola\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sola \"Mercedes Sola\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n\\n| Mercedes Sosa | \u001b[0m\n", + "\u001b[32m|\\n| --- | --- |\\n| Portrait by \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAnnemarie Heinrich\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, 1960s | |\\n| \u001b[0m\n", + "\u001b[32mBorn | Haydée Mercedes Sosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1935-07-09\u001b[0m\u001b[32m)\u001b[0m\u001b[32m9 July 1935 \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSan Miguel de Tucumán\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/San_Miguel_de_Tucum%C3%A1n \u001b[0m\n", + "\u001b[32m\"San Miguel de Tucumán\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, Tucumán, Argentina |\\n| Died | 4 October 2009\u001b[0m\u001b[32m(\u001b[0m\u001b[32m2009-10-04\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32maged\\xa074\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBuenos \u001b[0m\n", + "\u001b[32mAires\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Buenos_Aires \"Buenos Aires\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, Argentina |\\n| Occupation | Singer |\\n| Years\\xa0active | 1950–2009 \u001b[0m\n", + "\u001b[32m|\\n| **Musical career** | |\\n| Genres | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFolk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Folk_music \"Folk music\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mnueva \u001b[0m\n", + "\u001b[32mcanción\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nueva_canci%C3%B3n \"Nueva canción\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| Instruments | Vocals |\\n| Musical artist | |\\n\\n**Haydée \u001b[0m\n", + "\u001b[32mMercedes** \"**La Negra**\" **Sosa** \u001b[0m\u001b[32m(\u001b[0m\u001b[32mLatin American Spanish: \u001b[0m\u001b[32m[\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:IPA/Spanish \"Help:IPA/Spanish\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m; 9 July \u001b[0m\n", + "\u001b[32m1935\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m1\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-birth-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m – 4 October 2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m was an \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentine\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Argentines \"Argentines\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m singer who was \u001b[0m\n", + "\u001b[32mpopular throughout \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin America\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_America \"Latin America\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and many countries outside the region. \u001b[0m\n", + "\u001b[32mWith her roots in \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentine folk music\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Folk_music_of_Argentina \"Folk music of Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, Sosa became one\u001b[0m\n", + "\u001b[32mof the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written by many Latin American \u001b[0m\n", + "\u001b[32msongwriters. Her music made people hail her as the \"voice of the voiceless ones\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m2\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-tmc-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She was \u001b[0m\n", + "\u001b[32moften called \"the conscience of Latin America\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m3\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa performed in venues such as the \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mLincoln Center\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lincoln_Center \"Lincoln Center\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in New York City, the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mThéâtre \u001b[0m\n", + "\u001b[32mMogador\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in Paris, the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSistine Chapel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sistine_Chapel \u001b[0m\n", + "\u001b[32m\"Sistine Chapel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in Vatican City, as well as sold-out shows in New York\\'s \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarnegie Hall\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carnegie_Hall \u001b[0m\n", + "\u001b[32m\"Carnegie Hall\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and the Roman \u001b[0m\u001b[32m[\u001b[0m\u001b[32mColosseum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Colosseum \"Colosseum\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m during her final decade of life. Her \u001b[0m\n", + "\u001b[32mcareer spanned four decades and she was the recipient of six \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy \"Latin Grammy\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32mawards \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2000, 2003, 2004, 2006, 2009, 2011\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, including a \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy Lifetime Achievement \u001b[0m\n", + "\u001b[32mAward\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in 2004 and two \u001b[0m\n", + "\u001b[32mposthumous \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy Award for Best Folk Album\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \u001b[0m\n", + "\u001b[32mAward for Best Folk Album\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in 2009 and 2011. She won the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPremio Gardel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Premios_Gardel \"Premios Gardel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32min 2000, the main musical award in Argentina. She served as an ambassador for \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUNICEF\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/UNICEF \u001b[0m\n", + "\u001b[32m\"UNICEF\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n\\nLife\\n----\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Edit section: Life\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\nSosa\u001b[0m\n", + "\u001b[32mwas born on 9 July 1935, in \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSan Miguel de Tucumán\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, in \u001b[0m\n", + "\u001b[32mthe \u001b[0m\u001b[32m[\u001b[0m\u001b[32mnorthwestern Argentine\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Argentine_Northwest \"Argentine Northwest\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m province of \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTucumán\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mmestizo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mestizo \"Mestizo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m ancestry. She \u001b[0m\n", + "\u001b[32mwas of French, Spanish and \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDiaguita\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Diaguita \"Diaguita\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32mdescent.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Her nickname \"la negra\", which is a \u001b[0m\n", + "\u001b[32mcommon nickname in Argentina for people with darker complexion, is a reference to her indigenous \u001b[0m\n", + "\u001b[32mheritage.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m5\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:0-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Her parents, a day laborer and a washerwoman,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m6\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-6\u001b[0m\u001b[32m)\u001b[0m\u001b[32m were \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPeronists\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Peronism \"Peronism\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, although they never registered in the party, and she started her career as\u001b[0m\n", + "\u001b[32ma singer for the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPeronist Party\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Peronist_Party \"Peronist Party\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTucuman\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tucum%C3%A1n_Province\u001b[0m\n", + "\u001b[32m\"Tucumán Province\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m under the name Gladys Osorio.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m7\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-7\u001b[0m\u001b[32m)\u001b[0m\u001b[32m In 1950, at age fifteen, she won a singing \u001b[0m\n", + "\u001b[32mcompetition organized by a local radio station and was given a contract to perform for two \u001b[0m\n", + "\u001b[32mmonths.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She recorded her first album, *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mLa Voz de la \u001b[0m\n", + "\u001b[32mZafra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/La_voz_de_la_zafra \"La voz de la zafra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*, in 1959.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m A \u001b[0m\n", + "\u001b[32mperformance at the 1965 \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCosquín National Folklore Festival\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m—where\u001b[0m\n", + "\u001b[32mshe was introduced and brought to the stage while sitting in the audience by fellow folk singer \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge \u001b[0m\n", + "\u001b[32mCafrune\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Cafrune \"Jorge Cafrune\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m—\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m9\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-test-9\u001b[0m\u001b[32m)\u001b[0m\u001b[32m brought her to the attention of the \u001b[0m\n", + "\u001b[32mArgentine public.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Sosa and her first husband, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mManuel Oscar \u001b[0m\n", + "\u001b[32mMatus\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mManuel_Oscar_Matus\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Manuel Oscar Matus \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32mwith whom she had one son, were key players in the mid-60s *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mnueva canción\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nueva_canci%C3%B3n \"Nueva \u001b[0m\n", + "\u001b[32mcanción\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* movement \u001b[0m\u001b[32m(\u001b[0m\u001b[32mwhich was called *nuevo cancionero* in \u001b[0m\n", + "\u001b[32mArgentina\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Her second record was *Canciones con Fundamento*,\u001b[0m\n", + "\u001b[32ma collection of Argentine folk \u001b[0m\n", + "\u001b[32msongs.\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3\u001b[0m\n", + "\u001b[32m%ADrez.jpg/250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Mercedes_Sosa,_F%C3%A9lix_L\u001b[0m\n", + "\u001b[32muna_y_Ariel_Ram%C3%ADrez.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa with \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFélix Luna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/F%C3%A9lix_Luna \"Félix Luna\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAriel \u001b[0m\n", + "\u001b[32mRamírez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mat the piano\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa \"spent the late 1960s building her \u001b[0m\n", + "\u001b[32maudience in Europe and among the cosmopolitan middle class in Buenos Aires, becoming in the process a much bigger \u001b[0m\n", + "\u001b[32mstar\" than her contemporaries.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m11\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-11\u001b[0m\u001b[32m)\u001b[0m\u001b[32mIn 1967, Sosa toured the United States and Europe with great \u001b[0m\n", + "\u001b[32msuccess.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m*\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation needed\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*\u001b[0m\u001b[32m]\u001b[0m\u001b[32m In later years, she performed and \u001b[0m\n", + "\u001b[32mrecorded extensively, broadening her repertoire to include material from throughout Latin America.\\n\\nIn the early \u001b[0m\n", + "\u001b[32m1970s, Sosa released two concept albums in collaboration with composer \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAriel Ramírez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ariel_Ram%C3%ADrez \u001b[0m\n", + "\u001b[32m\"Ariel Ramírez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and lyricist \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFélix Luna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/F%C3%A9lix_Luna \"Félix Luna\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m: *Cantata Sudamericana* and \u001b[0m\n", + "\u001b[32m*Mujeres Argentinas* \u001b[0m\u001b[32m(\u001b[0m\u001b[32mArgentine Women\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. She also recorded a tribute to Chilean musician \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVioleta \u001b[0m\n", + "\u001b[32mParra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Violeta_Parra \"Violeta Parra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in 1971, including what was to become one of Sosa\\'s signature songs, \u001b[0m\n", + "\u001b[32m*\u001b[0m\u001b[32m[\u001b[0m\u001b[32mGracias a la vida\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gracias_a_la_vida \"Gracias a la \u001b[0m\n", + "\u001b[32mvida\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m12\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-ap-12\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She further \u001b[0m\n", + "\u001b[32mpopularized of songs written by \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Nascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Nascimento \"Milton Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m of Brazil and \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPablo Milanés\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSilvio Rodríguez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Silvio_Rodr%C3%ADguez \u001b[0m\n", + "\u001b[32m\"Silvio Rodríguez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m both from \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCuba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cuba \u001b[0m\n", + "\u001b[32m\"Cuba\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Throughout the decade, she released \u001b[0m\n", + "\u001b[32malbums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \u001b[0m\n", + "\u001b[32m\"Cuando tenga la tierra\", written by \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAriel Petrocelli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAriel_Petrocelli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Ariel Petrocelli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and Daniel Toro, which tackles political and social issues like wealth \u001b[0m\n", + "\u001b[32mand land inequality.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m13\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:2-13\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m14\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-14\u001b[0m\u001b[32m)\u001b[0m\u001b[32m During the 1970s she was a part of two films by\u001b[0m\n", + "\u001b[32mthe director \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeopoldo Torre Nilsson\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m: *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mEl Santo de la \u001b[0m\n", + "\u001b[32mEspada\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* in 1970 and *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mGüemes, la tierra en \u001b[0m\n", + "\u001b[32marmas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* in 1971, in which she portrayed \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJuana\u001b[0m\n", + "\u001b[32mAzurduy de Padilla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, the guerrilla military leader who \u001b[0m\n", + "\u001b[32mfought for Argentine \u001b[0m\n", + "\u001b[32mindependence.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m13\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:2-13\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m15\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-15\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thum\u001b[0m\n", + "\u001b[32mb/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Mercedes_Sosa_2.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa in 1972\\n\\nAfter the\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mmilitary junta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/National_Reorganization_Process \"National Reorganization Process\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge \u001b[0m\n", + "\u001b[32mVidela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Videla \"Jorge Videla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m came to power in 1976, the atmosphere in Argentina grew increasingly \u001b[0m\n", + "\u001b[32moppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \u001b[0m\n", + "\u001b[32mcountry. At a concert in \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLa Plata\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/La_Plata \"La Plata\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in 1979, Sosa was searched and arrested on stage, \u001b[0m\n", + "\u001b[32malong with all those attending the concert.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Their release \u001b[0m\n", + "\u001b[32mcame about through international intervention.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Despite attempts to hold\u001b[0m\n", + "\u001b[32mmore concerts, she was officially barred from performing by the military regime.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m5\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:0-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Banned in \u001b[0m\n", + "\u001b[32mher own country, she moved to Paris and then to \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMadrid\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Madrid \u001b[0m\n", + "\u001b[32m\"Madrid\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32mShe has\u001b[0m\n", + "\u001b[32mspoken publicly about her artistic and emotional struggles during this period of her life.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m5\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:0-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32mWhile in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\u001b[0m\n", + "\u001b[32mAcuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPatricio \u001b[0m\n", + "\u001b[32mManns\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Patricio_Manns \"Patricio Manns\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The song, which he wrote while also in political exile, expresses \u001b[0m\n", + "\u001b[32mthe sorrow he felt from being separated from his homeland.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m16\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-16\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She related to this feeling and \u001b[0m\n", + "\u001b[32mstruggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\u001b[0m\n", + "\u001b[32mproblem, a problem of morale...It wasn’t my throat, or anything physical\". \u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m5\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:0-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa returned\u001b[0m\n", + "\u001b[32mto Argentina from her exile in Europe in February of \u001b[0m\n", + "\u001b[32m1982,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m17\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:1-17\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m several months before the \u001b[0m\n", + "\u001b[32mmilitary regime collapsed as a result of the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFalklands War\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Falklands_War \"Falklands War\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, and gave a \u001b[0m\n", + "\u001b[32mseries of concerts at the *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeatro Ópera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Teatro_Opera \"Teatro Opera\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* in Buenos Aires, where she invited \u001b[0m\n", + "\u001b[32mmany of her younger colleagues to share the stage. A double album of recordings from these performances became an \u001b[0m\n", + "\u001b[32minstant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\u001b[0m\n", + "\u001b[32mlargely ignored by mainstream media in the country.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m17\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-:1-17\u001b[0m\u001b[32m)\u001b[0m\u001b[32m In subsequent years, Sosa continued to\u001b[0m\n", + "\u001b[32mtour both in Argentina and abroad, performing in such venues as the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLincoln Center\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lincoln_Center \"Lincoln\u001b[0m\n", + "\u001b[32mCenter\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in New York City and the *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mThéâtre Mogador\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* in Paris.\u001b[0m\n", + "\u001b[32mIn poor health for much of the 1990s, she performed a comeback show in Argentina in \u001b[0m\n", + "\u001b[32m1998.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m In 1994, she played in the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSistine Chapel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sistine_Chapel\u001b[0m\n", + "\u001b[32m\"Sistine Chapel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in Vatican City.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m In 2002, she \u001b[0m\n", + "\u001b[32msold out both \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarnegie Hall\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carnegie_Hall \"Carnegie Hall\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in New York and the \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mColosseum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Colosseum \"Colosseum\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in Rome in the same \u001b[0m\n", + "\u001b[32myear.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/\u001b[0m\n", + "\u001b[32mcommons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Mercedes_Sosa.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa in 1973\\n\\nA \u001b[0m\n", + "\u001b[32msupporter of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPerón\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Juan_Per%C3%B3n \"Juan Perón\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, she favored leftist causes throughout her life. She \u001b[0m\n", + "\u001b[32msupported President \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRaul Alfonsin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in the election of 1983 which \u001b[0m\n", + "\u001b[32mmarked the return of democracy in Argentina following the dictatorship. She referred to this election as \u001b[0m\n", + "\u001b[32m\"Argentina\\'s Spring\"\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m18\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-18\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She opposed President \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Menem\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Menem \"Carlos \u001b[0m\n", + "\u001b[32mMenem\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, who was in office from 1989 to 1999, and supported the election of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNéstor \u001b[0m\n", + "\u001b[32mKirchner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/N%C3%A9stor_Kirchner \"Néstor Kirchner\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, who became president in 2003.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m19\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-19\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\nSosa\u001b[0m\n", + "\u001b[32mwas a \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUNESCO Goodwill Ambassador\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m for Latin \u001b[0m\n", + "\u001b[32mAmerica and the Caribbean.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m20\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-20\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa \u001b[0m\n", + "\u001b[32mdisliked being identified as a protest singer.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m21\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-21\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m22\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-22\u001b[0m\u001b[32m)\u001b[0m\u001b[32m While she was outright \u001b[0m\n", + "\u001b[32min her political stances, Sosa said the following on the position of the artist:\\n\\n> “An artist isn’t political in\u001b[0m\n", + "\u001b[32mthe party political sense – they have a constituency, which is their public – it is the poetry that matters most of\u001b[0m\n", + "\u001b[32mall.”\\n\\nIn a career spanning four decades, she worked with performers across several genres and generations, folk,\u001b[0m\n", + "\u001b[32mopera, pop, rock, including \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMartha Argerich\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Martha_Argerich \"Martha Argerich\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAndrea \u001b[0m\n", + "\u001b[32mBocelli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Andrea_Bocelli \"Andrea Bocelli\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDavid Broza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/David_Broza \"David Broza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFranco \u001b[0m\n", + "\u001b[32mBattiato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Franco_Battiato \"Franco Battiato\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJaime Roos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jaime_Roos \"Jaime Roos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoan \u001b[0m\n", + "\u001b[32mBaez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Joan_Baez \"Joan Baez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFrancis Cabrel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Francis_Cabrel \"Francis Cabrel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGal \u001b[0m\n", + "\u001b[32mCosta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gal_Costa \"Gal Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuz Casal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luz_Casal \"Luz Casal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLila Downs\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lila_Downs \u001b[0m\n", + "\u001b[32m\"Lila Downs\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLucio Dalla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lucio_Dalla \"Lucio Dalla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Farantouri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Farantouri \"Maria \u001b[0m\n", + "\u001b[32mFarantouri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLucecita Benitez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lucecita_Benitez \"Lucecita Benitez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNilda \u001b[0m\n", + "\u001b[32mFernández\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCharly Garcia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Charly_Garcia \"Charly Garcia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mLeón Gieco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Le%C3%B3n_Gieco \"León Gieco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGian Marco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gian_Marco \"Gian Marco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNana \u001b[0m\n", + "\u001b[32mMouskouri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nana_Mouskouri \"Nana Mouskouri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPablo Milanés\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mHolly Near\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Holly_Near \"Holly Near\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Nascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Nascimento \"Milton Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPata Negra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pata_Negra \"Pata Negra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFito Páez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fito_P%C3%A1ez \"Fito Páez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFranco De \u001b[0m\n", + "\u001b[32mVita\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Franco_De_Vita \"Franco De Vita\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLourdes Pérez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuciano\u001b[0m\n", + "\u001b[32mPavarotti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSilvio Rodríguez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Silvio_Rodr%C3%ADguez \"Silvio \u001b[0m\n", + "\u001b[32mRodríguez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsmael Serrano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ismael_Serrano \"Ismael Serrano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mShakira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Shakira \"Shakira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSting\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sting_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Sting \u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCaetano Veloso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Caetano_Veloso \"Caetano \u001b[0m\n", + "\u001b[32mVeloso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJulieta \u001b[0m\n", + "\u001b[32mVenegas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Julieta_Venegas \"Julieta Venegas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGustavo Cerati\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gustavo_Cerati \"Gustavo Cerati\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mKonstantin Wecker\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Konstantin_Wecker \"Konstantin \u001b[0m\n", + "\u001b[32mWecker\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_Sosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa participated in a 1999 production of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAriel \u001b[0m\n", + "\u001b[32mRamírez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\'s *Misa Criolla*.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m23\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-23\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Her song *Balderrama* \u001b[0m\n", + "\u001b[32mis featured in the 2008 movie *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mChe\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Che_\u001b[0m\u001b[32m(\u001b[0m\u001b[32m2008_film\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Che \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2008 film\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*, starring \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBenicio del \u001b[0m\n", + "\u001b[32mToro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Benicio_del_Toro \"Benicio del Toro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m as the Argentine \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarxist\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marxist \"Marxist\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32mrevolutionary \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChe Guevara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Che_Guevara \"Che Guevara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m24\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-24\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa was the co-chair of \u001b[0m\n", + "\u001b[32mthe \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEarth Charter\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Earth_Charter \"Earth Charter\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m International \u001b[0m\n", + "\u001b[32mCommission.\\n\\nAwards\\n------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2\u001b[0m\u001b[32m \"Edit section: \u001b[0m\n", + "\u001b[32mAwards\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\nSosa won the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy Award for Best Folk Album\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Award_for_Best_Folk_Album \u001b[0m\n", + "\u001b[32m\"Latin Grammy Award for Best Folk Album\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m in 2000 \u001b[0m\u001b[32m(\u001b[0m\u001b[32m*Misa Criolla*\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m25\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-25\u001b[0m\u001b[32m)\u001b[0m\u001b[32m 2003 \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m*Acústico*\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m26\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-26\u001b[0m\u001b[32m)\u001b[0m\u001b[32m 2006 \u001b[0m\u001b[32m(\u001b[0m\u001b[32m*Corazón Libre*\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m27\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-27\u001b[0m\u001b[32m)\u001b[0m\u001b[32m 2009 \u001b[0m\u001b[32m(\u001b[0m\u001b[32m*\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCantora \u001b[0m\n", + "\u001b[32m1\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*, which also won \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBest Recording \u001b[0m\n", + "\u001b[32mPackage\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Award_for_Best_Recording_Package \"Latin Grammy Award for Best Recording Package\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\n", + "\u001b[32mwas nominated for \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlbum of the Year\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Award_for_Album_of_the_Year \"Latin Grammy Award for Album\u001b[0m\n", + "\u001b[32mof the Year\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m28\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-28\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and 2011 \u001b[0m\u001b[32m(\u001b[0m\u001b[32m*Deja La Vida Volar*\u001b[0m\u001b[32m)\u001b[0m\u001b[32m,\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m29\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-29\u001b[0m\u001b[32m)\u001b[0m\u001b[32m as well as several \u001b[0m\n", + "\u001b[32minternational awards.\\n\\nIn 1995, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mKonex Foundation\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Konex_Foundation \"Konex Foundation\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m from Argentina \u001b[0m\n", + "\u001b[32mgranted her the Diamond \u001b[0m\u001b[32m[\u001b[0m\u001b[32mKonex Award\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Konex_Award \"Konex Award\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, one of the most prestigious awards in \u001b[0m\n", + "\u001b[32mArgentina, as the most important personality in the popular music of her country in the last \u001b[0m\n", + "\u001b[32mdecade.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m30\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-30\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nDeath\\n-----\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m3\u001b[0m\u001b[32m \"Edit \u001b[0m\n", + "\u001b[32msection: \u001b[0m\n", + "\u001b[32mDeath\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/5/56/Funeral_de_Mercedes_Sosa.jpg/250px-Funeral_de\u001b[0m\n", + "\u001b[32m_Mercedes_Sosa.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Funeral_de_Mercedes_Sosa.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nMercedes Sosa lying in repose, with her family and\u001b[0m\n", + "\u001b[32mPresident \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCristina Fernández de Kirchner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cristina_Fern%C3%A1ndez_de_Kirchner \"Cristina Fernández de \u001b[0m\n", + "\u001b[32mKirchner\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m viewing\\n\\nSuffering from recurrent \u001b[0m\u001b[32m[\u001b[0m\u001b[32mendocrine\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Endocrine_system \"Endocrine system\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mrespiratory\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Respiratory_system \"Respiratory system\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m problems in later years, the 74-year-old Sosa was \u001b[0m\n", + "\u001b[32mhospitalized in Buenos Aires on 18 September 2009.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m31\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-31\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She died from \u001b[0m\u001b[32m[\u001b[0m\u001b[32mmultiple organ \u001b[0m\n", + "\u001b[32mfailure\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Multiple_organ_failure \"Multiple organ failure\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on 4 October 2009, at 5:15 \u001b[0m\n", + "\u001b[32mam.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m12\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-ap-12\u001b[0m\u001b[32m)\u001b[0m\u001b[32m She is survived by one son, Fabián Matus, born of her first \u001b[0m\n", + "\u001b[32mmarriage.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m32\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_\u001b[0m\n", + "\u001b[32mLatin_America,\\'_dies_at_74-32\u001b[0m\u001b[32m)\u001b[0m\u001b[32m He said: \"She lived her 74 years to the fullest. She had done practically \u001b[0m\n", + "\u001b[32meverything she wanted, she didn\\'t have any type of barrier or any type of fear that limited \u001b[0m\n", + "\u001b[32mher\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m32\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74-32\u001b[0m\u001b[32m)\u001b[0m\u001b[32m The hospital \u001b[0m\n", + "\u001b[32mexpressed its sympathies to her relatives.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m33\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_folk_legend_Mercedes_Sosa_dead_at_74-33\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Her\u001b[0m\n", + "\u001b[32mwebsite featured the following: \"Her undisputed talent, her honesty and her profound convictions leave a great \u001b[0m\n", + "\u001b[32mlegacy to future generations\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m34\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_folk_icon_Sosa_dies_at_74-34\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nHer body was placed on \u001b[0m\n", + "\u001b[32mdisplay at the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNational Congress\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Argentine_National_Congress \"Argentine National Congress\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m building in \u001b[0m\n", + "\u001b[32mBuenos Aires for the public to pay their respects, and President Fernández de Kirchner ordered three days of \u001b[0m\n", + "\u001b[32mnational \u001b[0m\n", + "\u001b[32mmourning.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m32\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74-32\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m35\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite\u001b[0m\n", + "\u001b[32m_note-35\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Thousands had queued by the end of the \u001b[0m\n", + "\u001b[32mday.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m34\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_folk_icon_Sosa_dies_at_74-34\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m36\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_singer_Mercedes_Sosa_die\u001b[0m\n", + "\u001b[32ms_at_74-36\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa\\'s obituary in *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mThe Daily Telegraph\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/The_Daily_Telegraph \"The Daily Telegraph\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* said \u001b[0m\n", + "\u001b[32mshe was \"an unrivalled interpreter of works by her compatriot, the Argentine \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAtahualpa \u001b[0m\n", + "\u001b[32mYupanqui\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Atahualpa_Yupanqui \"Atahualpa Yupanqui\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, and Chile\\'s \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVioleta Parra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Violeta_Parra \u001b[0m\n", + "\u001b[32m\"Violeta Parra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m8\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Mercedes_Sosa:_Obituary-8\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Helen Popper of \u001b[0m\u001b[32m[\u001b[0m\u001b[32mReuters\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Reuters \"Reuters\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32mreported her death by saying she \"fought South America\\'s dictators with her voice and became a giant of \u001b[0m\n", + "\u001b[32mcontemporary Latin American music\".\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m36\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Argentine_singer_Mercedes_Sosa_dies_at_74-36\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Sosa received \u001b[0m\n", + "\u001b[32mthree \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy \"Latin Grammy\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m nominations for her album, in 2009 . She went on to win \u001b[0m\n", + "\u001b[32mBest Folk Album about a month after her \u001b[0m\n", + "\u001b[32mdeath.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_S\u001b[0m\n", + "\u001b[32mosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nTributes\\n--------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m4\u001b[0m\u001b[32m \"Edit section: \u001b[0m\n", + "\u001b[32mTributes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\nIn 2019, Sosa was celebrated by a \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGoogle Doodle\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Google_Doodle \"Google Doodle\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The doodle \u001b[0m\n", + "\u001b[32mwas showcased in \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Argentina \"Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChile\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chile \"Chile\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUruguay\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Uruguay\u001b[0m\n", + "\u001b[32m\"Uruguay\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mParaguay\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paraguay \"Paraguay\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBolivia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Bolivia \"Bolivia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPeru\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Peru \u001b[0m\n", + "\u001b[32m\"Peru\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEcuador\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ecuador \"Ecuador\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCuba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cuba \"Cuba\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIceland\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Iceland \"Iceland\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32mSweden, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSerbia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Serbia \"Serbia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGreece\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Greece \"Greece\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsrael\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Israel \"Israel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mVietnam\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vietnam \"Vietnam\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m37\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-37\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nIn 2023, *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mRolling Stone\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rolling_Stone \u001b[0m\n", + "\u001b[32m\"Rolling Stone\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* ranked Sosa at number 160 on its list of the 200 Greatest Singers of All \u001b[0m\n", + "\u001b[32mTime.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m38\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-38\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nDiscography\\n-----------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m5\u001b[0m\n", + "\u001b[32m\"Edit section: \u001b[0m\n", + "\u001b[32mDiscography\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/9/93/Mercedes_sosa.jpg/250px-Mercedes_sosa.j\u001b[0m\n", + "\u001b[32mpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Mercedes_sosa.jpg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSosa in 2005, with Argentina\\'s then-First Lady \u001b[0m\u001b[32m(\u001b[0m\u001b[32mlater president from 2007 to\u001b[0m\n", + "\u001b[32m2015\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, Cristina Fernández de Kirchner\\n\\nSosa recorded forty \u001b[0m\n", + "\u001b[32malbums.\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m[\u001b[0m\u001b[32m10\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_note-Latin_artist_Mercedes_\u001b[0m\n", + "\u001b[32mSosa_dies-10\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n### Studio albums\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m6\u001b[0m\u001b[32m \"Edit section: \u001b[0m\n", + "\u001b[32mStudio albums\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n| Year | Album details |\\n| --- | --- |\\n| 1962 | \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLa Voz De La \u001b[0m\n", + "\u001b[32mZafra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/La_Voz_De_La_Zafra \"La Voz De La Zafra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: RCA |\\n| 1965 | Canciones Con Fundamento * Label:\u001b[0m\n", + "\u001b[32mEl Grillo |\\n| 1966 | Hermano * Label: Philips |\\n| 1966 | Yo No Canto Por Cantar * Label: Philips |\\n| 1967 | \u001b[0m\n", + "\u001b[32mPara Cantarle A Mi Gente * Label: Philips |\\n| 1968 | Con Sabor A Mercedes Sosa * Label: Philips |\\n| 1969 | \u001b[0m\n", + "\u001b[32mMujeres Argentinas * Label: Philips |\\n| 1970 | El Grito De La Tierra * Label: Philips |\\n| 1970 | Navidad Con \u001b[0m\n", + "\u001b[32mMercedes Sosa * Label: Philips |\\n| 1971 | \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHomenaje a Violeta Parra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Homenaje_a_Violeta_Parra \"Homenaje a \u001b[0m\n", + "\u001b[32mVioleta Parra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: Philips |\\n| 1972 | Hasta La Victoria * Label: Philips |\\n| 1972 | Cantata Sudamericana \u001b[0m\n", + "\u001b[32m* Label: Philips |\\n| 1973 | Traigo Un Pueblo En Mi Voz * Label: Philips |\\n| 1975 | A Que Florezca Mi Pueblo * \u001b[0m\n", + "\u001b[32mLabel: Philips |\\n| 1976 | En Dirección Del Viento * Label: Philips |\\n| 1977 | Mercedes Sosa Interpreta A \u001b[0m\n", + "\u001b[32mAtahualpa Yupanqui * Label: Philips |\\n| 1979 | Serenata Para La Tierra De Uno * Label: Philips |\\n| 1981 | A \u001b[0m\n", + "\u001b[32mQuien Doy / Cuando Me Acuerdo de Mi País * Label: Philips |\\n| 1982 | Como Un Pájaro Libre * Label: Philips |\\n| \u001b[0m\n", + "\u001b[32m1983 | Mercedes Sosa * Label: Philips |\\n| 1984 | ¿Será Posible El Sur? * Label: Philips |\\n| 1985 | Vengo A \u001b[0m\n", + "\u001b[32mOfrecer Mi Corazón * Label: Philips |\\n| 1986 | Mercedes Sosa \\'86 * Label: Philips |\\n| 1987 | Mercedes Sosa \u001b[0m\n", + "\u001b[32m\\'87 * Label: Philips |\\n| 1993 | Sino * Label: Philips/Polygram |\\n| 1994 | Gestos De Amor * Label: Polydor \u001b[0m\n", + "\u001b[32m|\\n| 1996 | Escondido En Mi País * Label: Polydor |\\n| 1997 | Alta Fidelidad \u001b[0m\u001b[32m(\u001b[0m\u001b[32mw/\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCharly \u001b[0m\n", + "\u001b[32mGarcía\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Charly_Garc%C3%ADa \"Charly García\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: Mercury |\\n| 1998 | Al Despertar * Label: Mercury \u001b[0m\n", + "\u001b[32m|\\n| 1999 | Misa Criolla * Label: Mercury |\\n| 2005 | Corazón Libre * Label: Edge |\\n| 2009 | \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCantora \u001b[0m\n", + "\u001b[32m1\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mw/various artists\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: RCA |\\n| 2009 | \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCantora 2\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mw/various artists\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: RCA |\\n|\u001b[0m\n", + "\u001b[32m2011 | Censurada * Label: Philips |\\n| 2015 | Lucerito * Label: RCA |\\n\\n### \u001b[0m\n", + "\u001b[32mEPs\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m7\u001b[0m\u001b[32m \"Edit section: EPs\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n| Year | EP details |\\n| \u001b[0m\n", + "\u001b[32m--- | --- |\\n| 1975 | Niño De Mañana * Label: Philips |\\n\\n### Live \u001b[0m\n", + "\u001b[32malbums\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m8\u001b[0m\u001b[32m \"Edit section: Live albums\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n| Year | Album \u001b[0m\n", + "\u001b[32mdetails |\\n| --- | --- |\\n| 1973 | Si Se Calla El Cantor \u001b[0m\u001b[32m(\u001b[0m\u001b[32mwith Gloria Martin\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: Philips |\\n| 1980 | Gravado\u001b[0m\n", + "\u001b[32mAo Vivo No Brasil * Label: Philips |\\n| 1982 | \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa en Argentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa_en_Argentina \u001b[0m\n", + "\u001b[32m\"Mercedes Sosa en Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: Phonogram/Philips |\\n| 1985 | Corazón Americano \u001b[0m\u001b[32m(\u001b[0m\u001b[32mwith \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton \u001b[0m\n", + "\u001b[32mNascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Nascimento \"Milton Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m & \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeón Gieco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Le%C3%B3n_Gieco \"León Gieco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32mLabel: Philips |\\n| 1989 | Live in Europe * Label: Tropical Music/Polygram Argentina |\\n| 1991 | De Mí * Label: \u001b[0m\n", + "\u001b[32mPhilips |\\n| 2002 | Acústico En Vivo * Label: Sony Music Argentina |\\n| 2003 | Argentina Quiere Cantar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mwith \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mVíctor Heredia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/V%C3%ADctor_Heredia \"Víctor Heredia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m & \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeón Gieco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Le%C3%B3n_Gieco \"León Gieco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* Label: Odeon/EMI |\\n| 2010 | Deja La Vida Volar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mEn Gira\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Label: RCA |\\n| 2014 | Angel * Label: Universal \u001b[0m\n", + "\u001b[32mMusic |\\n| 2024 | En vivo en el Gran Rex 2006 * Label: INAMU Discos |\\n| Mercedes Sosa en Nueva York, 1974 * \u001b[0m\n", + "\u001b[32mLabel: Sony Music Argentina |\\n\\n### Compilation albums\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m9\u001b[0m\n", + "\u001b[32m\"Edit section: Compilation albums\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n| Year | Album details |\\n| --- | --- |\\n| 1975 | Disco De Oro * Label: \u001b[0m\n", + "\u001b[32mPhilips |\\n| 1983 | Recital * Label: Philips |\\n| 1988 | Amigos Míos * Label: Philips |\\n| 1993 | 30 Años * \u001b[0m\n", + "\u001b[32mLabel: Polygram Argentina |\\n| 1995 | Oro * Label: Polygram |\\n| 1997 | The Best Of Mercedes Sosa * Label: \u001b[0m\n", + "\u001b[32mMercury |\\n| 2013 | Siempre En Ti * Label: Universal Music \u001b[0m\n", + "\u001b[32m|\\n\\nFilmography\\n-----------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m10\u001b[0m\u001b[32m \"Edit section: \u001b[0m\n", + "\u001b[32mFilmography\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mGüemes, la tierra en armas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en \u001b[0m\n", + "\u001b[32marmas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1971\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentinísima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Argentin%C3%ADsima \"Argentinísima\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1972\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mEsta es mi \u001b[0m\n", + "\u001b[32mArgentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEsta_es_mi_Argentina\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Esta es mi Argentina \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1974\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa, como un pájaro libre\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa:_como_un_pajaro_libre \"Mercedes \u001b[0m\n", + "\u001b[32mSosa: como un pajaro libre\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1983\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mSerá possible el sur: Mercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSer\u001b[0m\u001b[32m%C3%A1_possible_el_sur:_Mercedes_Sosa&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Será possible el sur: \u001b[0m\n", + "\u001b[32mMercedes Sosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1985\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mHistorias de Argentina en \u001b[0m\n", + "\u001b[32mvivo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHistorias_de_Argentina_en_vivo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Historias de Argentina en vivo \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2001\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nFurther \u001b[0m\n", + "\u001b[32mreading\\n---------------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m11\u001b[0m\u001b[32m \"Edit section: Further \u001b[0m\n", + "\u001b[32mreading\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n* Christensen, Anette \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2019\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Mercedes Sosa - The Voice of Hope*. Denmark: Tribute2life Publishing. \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mISBN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/ISBN_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"ISBN \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\xa0\u001b[0m\u001b[32m[\u001b[0m\u001b[32m978-87-998216-5-5\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:BookSources/978-87-998216-5-5 \u001b[0m\n", + "\u001b[32m\"Special:BookSources/978-87-998216-5-5\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n* Christensen, Anette \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2019\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Mercedes Sosa - More Than a Song*. \u001b[0m\n", + "\u001b[32mDenmark: Tribute2life Publishing. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mISBN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/ISBN_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"ISBN \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\xa0\u001b[0m\u001b[32m[\u001b[0m\u001b[32m978-87-998216-7-9\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:BookSources/978-87-998216-7-9 \u001b[0m\n", + "\u001b[32m\"Special:BookSources/978-87-998216-7-9\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m(\u001b[0m\u001b[32mAbridged version of Mercedes Sosa - The Voice of Hope\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* Braceli, \u001b[0m\n", + "\u001b[32mRodolfo \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2010\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Mercedes Sosa. La Negra* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Italy: Perrone. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mISBN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/ISBN_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"ISBN \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\xa0\u001b[0m\u001b[32m[\u001b[0m\u001b[32m978-88-6004-347-4\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:BookSources/978-88-6004-347-4 \u001b[0m\n", + "\u001b[32m\"Special:BookSources/978-88-6004-347-4\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n* Matus, Fabián \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2016\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Mercedes Sosa. La Mami* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32mArgentina: Planeta. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mISBN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/ISBN_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"ISBN \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\xa0\u001b[0m\u001b[32m[\u001b[0m\u001b[32m978-950-49-5247-3\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:BookSources/978-950-49-5247-3 \u001b[0m\n", + "\u001b[32m\"Special:BookSources/978-950-49-5247-3\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n\\nReferences\\n----------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32med\u001b[0m\n", + "\u001b[32mit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m12\u001b[0m\u001b[32m \"Edit section: References\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n1. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-birth_1-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.brainyhistory.com/events/1935/july_9_1935_93941.html\u001b[0m\u001b[32m)\u001b[0m\u001b[32m at BrainyHistory.com\\n2. \u001b[0m\n", + "\u001b[32m**\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-tmc_2-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Singer Mercedes Sosa: The voice of the \\'voiceless ones\\' outlasts South American \u001b[0m\n", + "\u001b[32mdictatorships\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.tmcnet.com/usubmit/2007/12/08/3150199.htm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n3. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Heckman, Don \u001b[0m\u001b[32m(\u001b[0m\u001b[32m29 \u001b[0m\n", + "\u001b[32mOctober 1995\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"POP MUSIC\\xa0: The Voice Heard Round the World\\xa0: Mercedes Sosa, a compelling figure in world \u001b[0m\n", + "\u001b[32mmusic and a social activist, will make a rare L.A. \u001b[0m\n", + "\u001b[32mappearance\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Los Angeles Times*. \u001b[0m\n", + "\u001b[32mRetrieved 5 December 2023.\\n4. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***c***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***d***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***e***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***f***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***g***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-6\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***h***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Legendary_folk_singer_Mercedes_Sosa_dies_at_74_4-7\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Legendary folk singer Mercedes Sosa dies\u001b[0m\n", + "\u001b[32mat \u001b[0m\n", + "\u001b[32m74\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.france24.com/en/20091004-legendary-folk-singer-mercedes-sosa-dies-74-argentina-entertainment-music\u001b[0m\n", + "\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFrance 24\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/France_24 \"France 24\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. 4 October 2009. Retrieved 5 October 2009.\\n5. ^ \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:0_5-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:0_5-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***c***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:0_5-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***d***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:0_5-3\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32mBernstein, Adam \u001b[0m\u001b[32m(\u001b[0m\u001b[32m5 October 2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Argentine folk singer who championed social \u001b[0m\n", + "\u001b[32mjustice\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latimes.com/archives/la-xpm-2009-oct-05-me-mercedes-sosa5-story.html\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Los Angeles Times*. \u001b[0m\n", + "\u001b[32mRetrieved 8 March 2025.\\n6. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-6\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Heckman, Don \u001b[0m\u001b[32m(\u001b[0m\u001b[32m29 October 1995\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"POP MUSIC\\xa0: The Voice Heard \u001b[0m\n", + "\u001b[32mRound the World\\xa0: Mercedes Sosa, a compelling figure in world music and a social activist, will make a rare L.A.\u001b[0m\n", + "\u001b[32mappearance\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Los Angeles Times*. \u001b[0m\n", + "\u001b[32mRetrieved 5 December 2023.\\n7. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-7\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** *Mercedes Sosa: The Voice of Latin America*. Dir. Rodrigo H. \u001b[0m\n", + "\u001b[32mVilla. First Run Features, 2013. Web.\\n8. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***c***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***d***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***e***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***f***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***g***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-6\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***h***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Mercedes_Sosa:_Obituary_8-7\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Mercedes Sosa: \u001b[0m\n", + "\u001b[32mObituary\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/6259898/Mercedes-Sosa.h\u001b[0m\n", + "\u001b[32mtml\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mThe Daily Telegraph\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/The_Daily_Telegraph \"The Daily Telegraph\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*. 4 October 2009. Retrieved 5 \u001b[0m\n", + "\u001b[32mOctober 2009.\\n9. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-test_9-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32mThe presentation by Jorge Cafrune and the song Mercedes Sosa \u001b[0m\n", + "\u001b[32msang\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.youtube.com/watch?\u001b[0m\u001b[32mv\u001b[0m\u001b[32m=\u001b[0m\u001b[32mQzwL8C2hE6c\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYouTube\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/YouTube_video_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"YouTube video \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Retrieved 3 March 2010.\\n10. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***c***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***d***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***e***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-4\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***f***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***g***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-6\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***h***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Latin_artist_Mercedes_Sosa_dies_10-7\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Latin artist Mercedes Sosa \u001b[0m\n", + "\u001b[32mdies\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://news.bbc.co.uk/2/hi/entertainment/8289370.stm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBBC\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/BBC \"BBC\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. 4 October 2009. Retrieved 5\u001b[0m\n", + "\u001b[32mOctober 2009.\\n11. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-11\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Karush, Matthew \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2017\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Musicians in Transit: Argentina and the \u001b[0m\n", + "\u001b[32mGlobalization of Popular Music*. Duke. p.\\xa0168. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mISBN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/ISBN_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"ISBN \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\xa0\u001b[0m\u001b[32m[\u001b[0m\u001b[32m978-0-8223-7377-3\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:BookSources/978-0-8223-7377-3 \u001b[0m\n", + "\u001b[32m\"Special:BookSources/978-0-8223-7377-3\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n12. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-ap_12-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-ap_12-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAssociated \u001b[0m\n", + "\u001b[32mPress\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.google.com/hostednews/ap/article/ALeqM5iBSb5ZdEJ8MI6_qzWccZNZQITnMAD9B47Q8G1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m[\u001b[0m\u001b[32m*\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia\u001b[0m\n", + "\u001b[32m:Link_rot \"Wikipedia:Link rot\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n13. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:2_13-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:2_13-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Biografía\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.mercedessosa.org/biografia/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Fundación Mercedes Sosa* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Retrieved 8 March \u001b[0m\n", + "\u001b[32m2025.\\n14. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-14\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Argentina, Cadena 3. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"El folclore argentino llora la muerte de Daniel Toro - \u001b[0m\n", + "\u001b[32mNotas - Viva la \u001b[0m\n", + "\u001b[32mRadio\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.cadena3.com/noticia/viva-la-radio/murio-daniel-toro-icono-del-folclore-argentino_359018\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Cadena 3 Argentina* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Retrieved 14 March 2025.`\u001b[0m\u001b[32m{\u001b[0m\u001b[32m{\u001b[0m\u001b[32mcite web\u001b[0m\u001b[32m}\u001b[0m\u001b[32m}\u001b[0m\u001b[32m`: CS1 maint: numeric names: authors list \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m[\u001b[0m\u001b[32mlink\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 maint: numeric names: authors \u001b[0m\n", + "\u001b[32mlist\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n15. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-15\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Nilsson, Leopoldo Torre \u001b[0m\u001b[32m(\u001b[0m\u001b[32m7 April 1971\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\u001b[32m[\u001b[0m\u001b[32m*Güemes - la tierra en \u001b[0m\n", + "\u001b[32marmas*\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.imdb.com/title/tt0067165/?\u001b[0m\u001b[32mref_\u001b[0m\u001b[32m=\u001b[0m\u001b[32mnm_knf_t_2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mDrama, History\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, Alfredo Alcón, Norma Aleandro, \u001b[0m\n", + "\u001b[32mGabriela Gili, Producciones Cinematográficas Cerrillos, retrieved 8 March 2025\\n16. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-16\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Rodrigo \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m10 September 2020\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Patricio Manns: Cuando me acuerdo de mi país \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1983\u001b[0m\u001b[32m)\u001b[0m\u001b[32m | PERRERAC: La canción, un arma de la \u001b[0m\n", + "\u001b[32mrevolución\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://perrerac.org/album/patricio-manns-cuando-me-acuerdo-de-mi-pais-1983/13772/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32mRetrieved 14 March 2025.\\n17. ^ \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:1_17-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-:1_17-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Lopez, Vicente F. \u001b[0m\u001b[32m(\u001b[0m\u001b[32m18 \u001b[0m\n", + "\u001b[32mJanuary 1983\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"ARTISTAS EXILIADOS HAN REGRESADO A \u001b[0m\n", + "\u001b[32mARGENTINA\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://infoweb.newsbank.com/apps/news/openurl?\u001b[0m\u001b[32mctx_ver\u001b[0m\u001b[32m=\u001b[0m\u001b[32mz39\u001b[0m\u001b[32m.88-2004&\u001b[0m\u001b[32mrft_id\u001b[0m\u001b[32m=\u001b[0m\u001b[32minfo\u001b[0m\u001b[32m%3Asid/infoweb.newsbank.\u001b[0m\n", + "\u001b[32mcom&\u001b[0m\u001b[32msvc_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWORLDNEWS\u001b[0m\u001b[32m&\u001b[0m\u001b[32mreq_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32m0D1C15DBC6335C60\u001b[0m\u001b[32m&\u001b[0m\u001b[32mrft_val_format\u001b[0m\u001b[32m=\u001b[0m\u001b[32minfo\u001b[0m\u001b[32m%3Aofi/fmt%3Akev%3Amtx%3Actx&\u001b[0m\u001b[32mrft_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdocument_id\u001b[0m\u001b[32m%\u001b[0m\n", + "\u001b[32m3Anews%252F0EB960FAFAAF7A0F\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *El Nuevo Herald*. p.\\xa08. Retrieved 7 March 2025.`\u001b[0m\u001b[32m{\u001b[0m\u001b[32m{\u001b[0m\u001b[32mcite news\u001b[0m\u001b[32m}\u001b[0m\u001b[32m}\u001b[0m\u001b[32m`: CS1 maint: \u001b[0m\n", + "\u001b[32murl-status \u001b[0m\u001b[32m(\u001b[0m\u001b[32m[\u001b[0m\u001b[32mlink\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n18. \u001b[0m\n", + "\u001b[32m**\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-18\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Drosdoff, Daniel \u001b[0m\u001b[32m(\u001b[0m\u001b[32m30 October 1983\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"ARGENTINIAN VOTE TO END DICTATORSHIP PERONIST AND \u001b[0m\n", + "\u001b[32mRADICAL IN LEAD FOR \u001b[0m\n", + "\u001b[32mPRESIDENCY\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://infoweb.newsbank.com/apps/news/openurl?\u001b[0m\u001b[32mctx_ver\u001b[0m\u001b[32m=\u001b[0m\u001b[32mz39\u001b[0m\u001b[32m.88-2004&\u001b[0m\u001b[32mrft_id\u001b[0m\u001b[32m=\u001b[0m\u001b[32minfo\u001b[0m\u001b[32m%3Asid/infoweb.newsbank\u001b[0m\n", + "\u001b[32m.com&\u001b[0m\u001b[32msvc_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWORLDNEWS\u001b[0m\u001b[32m&\u001b[0m\u001b[32mreq_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32m0D1C15DBC6335C60\u001b[0m\u001b[32m&\u001b[0m\u001b[32mrft_val_format\u001b[0m\u001b[32m=\u001b[0m\u001b[32minfo\u001b[0m\u001b[32m%3Aofi/fmt%3Akev%3Amtx%3Actx&\u001b[0m\u001b[32mrft_dat\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdocument_id\u001b[0m\n", + "\u001b[32m%3Anews%252F0EB35DEF2EAA1BC5\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Miami Herald*. pp.\\xa016A. Retrieved 7 March 2025.`\u001b[0m\u001b[32m{\u001b[0m\u001b[32m{\u001b[0m\u001b[32mcite news\u001b[0m\u001b[32m}\u001b[0m\u001b[32m}\u001b[0m\u001b[32m`: CS1 maint: \u001b[0m\n", + "\u001b[32murl-status \u001b[0m\u001b[32m(\u001b[0m\u001b[32m[\u001b[0m\u001b[32mlink\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n19. \u001b[0m\n", + "\u001b[32m**\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-19\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32mInterview with Mercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.berlinonline.de/berliner-zeitung/archiv/.bin/dump.fcgi/2003/1025/magazin/0001/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArchived\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://web.archive.org/web/20091016201953/http://www.berlinonline.de/berliner-zeitung/archiv/.bin/dump\u001b[0m\n", + "\u001b[32m.fcgi/2003/1025/magazin/0001/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m 16 October 2009 at the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWayback Machine\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wayback_Machine \"Wayback Machine\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, \u001b[0m\n", + "\u001b[32m*Magazin Berliner Zeitung*, 25 October 2003. \u001b[0m\u001b[32m(\u001b[0m\u001b[32min German\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n20. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-20\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa in \u001b[0m\n", + "\u001b[32mconcert\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://chicago.cervantes.es/Cultura/Fichas/Ficha41728_47_2.htm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArchived\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://web.archive.org/web/20080104200631/http://chicago.cervantes.es/Cultura/Fichas/Ficha41728_47_2.h\u001b[0m\n", + "\u001b[32mtm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m 4 January 2008 at the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWayback Machine\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wayback_Machine \"Wayback Machine\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n21. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-21\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32mHeckman, Don \u001b[0m\u001b[32m(\u001b[0m\u001b[32m29 October 1995\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"POP MUSIC\\xa0: The Voice Heard Round the World\\xa0: Mercedes Sosa, a compelling \u001b[0m\n", + "\u001b[32mfigure in world music and a social activist, will make a rare L.A. \u001b[0m\n", + "\u001b[32mappearance\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latimes.com/archives/la-xpm-1995-10-29-ca-62462-story.html\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Los Angeles Times*. \u001b[0m\n", + "\u001b[32mRetrieved 5 December 2023.\\n22. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-22\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** Meyer, Bill \u001b[0m\u001b[32m(\u001b[0m\u001b[32m7 October 2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"A U.S. musician pays tribute\u001b[0m\n", + "\u001b[32mto Mercedes Sosa\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.peoplesworld.org/article/a-u-s-musician-pays-tribute-to-mercedes-sosa/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *People\\'s\u001b[0m\n", + "\u001b[32mWorld*. Retrieved 5 December 2023.\\n23. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-23\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"In Profile: Mercedes \u001b[0m\n", + "\u001b[32mSosa\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://soundsandcolours.com/articles/argentina/in-profile-mercedes-sosa-1761/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *soundsandcolours.com*. 26\u001b[0m\n", + "\u001b[32mAugust 2010. Retrieved 27 March 2018.\\n24. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-24\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m*Balderrama* by Mercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.youtube.com/watch?\u001b[0m\u001b[32mv\u001b[0m\u001b[32m=\u001b[0m\u001b[32mk4LJDTlviKw\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYouTube\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/YouTube_video_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"YouTube video \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m – a tribute to \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChe Guevara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Che_Guevara \"Che Guevara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n25. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-25\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Latin \u001b[0m\n", + "\u001b[32mGrammys: Ganadores – Años Anteriores \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m2000\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latingrammy.com/es/nominees/search?\u001b[0m\u001b[32martist\u001b[0m\u001b[32m=&\u001b[0m\u001b[32mfield_nominee_work_value\u001b[0m\u001b[32m=&\u001b[0m\u001b[32myear\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2000\u001b[0m\u001b[32m&\u001b[0m\u001b[32mgenre\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAll\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Latin Grammys* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The Latin Recording Academy. Retrieved 7 July 2021.\\n26. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-26\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Latin Grammys: Ganadores – Años Anteriores \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m2003\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latingrammy.com/es/nominees/search?\u001b[0m\u001b[32martist\u001b[0m\u001b[32m=&\u001b[0m\u001b[32mfield_nominee_work_value\u001b[0m\u001b[32m=&\u001b[0m\u001b[32myear\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2003\u001b[0m\u001b[32m&\u001b[0m\u001b[32mgenre\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAll\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Latin Grammys* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The Latin Recording Academy. Retrieved 7 July 2021.\\n27. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-27\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Latin Grammys: Ganadores – Años Anteriores \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m2006\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latingrammy.com/es/nominees/search?\u001b[0m\u001b[32martist\u001b[0m\u001b[32m=&\u001b[0m\u001b[32mfield_nominee_work_value\u001b[0m\u001b[32m=&\u001b[0m\u001b[32myear\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2006\u001b[0m\u001b[32m&\u001b[0m\u001b[32mgenre\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAll\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Latin Grammys* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The Latin Recording Academy. Retrieved 7 July 2021.\\n28. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-28\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Latin Grammys: Ganadores – Años Anteriores \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latingrammy.com/es/nominees/search?\u001b[0m\u001b[32martist\u001b[0m\u001b[32m=&\u001b[0m\u001b[32mfield_nominee_work_value\u001b[0m\u001b[32m=&\u001b[0m\u001b[32myear\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2009\u001b[0m\u001b[32m&\u001b[0m\u001b[32mgenre\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAll\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Latin Grammys* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The Latin Recording Academy. Retrieved 7 July 2021.\\n29. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-29\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Latin Grammys: Ganadores – Años Anteriores \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32m2011\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.latingrammy.com/es/nominees/search?\u001b[0m\u001b[32martist\u001b[0m\u001b[32m=&\u001b[0m\u001b[32mfield_nominee_work_value\u001b[0m\u001b[32m=&\u001b[0m\u001b[32myear\u001b[0m\u001b[32m=\u001b[0m\u001b[32m2011\u001b[0m\u001b[32m&\u001b[0m\u001b[32mgenre\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAll\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*Latin Grammys* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. The Latin Recording Academy. Retrieved 7 July 2021.\\n30. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-30\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m\"Premios Konex 1995: Música Popular\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.fundacionkonex.org/premios1995-musica-popular\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Fundación \u001b[0m\n", + "\u001b[32mKonex* \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Retrieved 7 July 2021.\\n31. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-31\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"\"En ningún momento sufrió\", dijo el hijo \u001b[0m\n", + "\u001b[32mde Mercedes \u001b[0m\n", + "\u001b[32mSosa\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://web.archive.org/web/20091004144610/http://www.clarin.com/diario/2009/10/01/um/m-02010016.htm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32min \u001b[0m\n", + "\u001b[32mSpanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. October 2009. Archived from \u001b[0m\u001b[32m[\u001b[0m\u001b[32mthe original\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.clarin.com/diario/2009/10/01/um/m-02010016.htm\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on\u001b[0m\n", + "\u001b[32m4 October 2009. Retrieved 1 October 2009.\\n32. ^ \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***c***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_singer_Mercedes_Sosa,_\\'voice_of_Latin_America,\\'_dies_at_74_32-2\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Javier Doberti \u001b[0m\u001b[32m(\u001b[0m\u001b[32m4\u001b[0m\n", + "\u001b[32mOctober 2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Argentine singer Mercedes Sosa, \\'voice of Latin America,\\' dies at \u001b[0m\n", + "\u001b[32m74\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://edition.cnn.com/2009/SHOWBIZ/Music/10/04/obit.mercedes.sosa/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCNN\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/CNN \"CNN\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Retrieved 5 \u001b[0m\n", + "\u001b[32mOctober 2009.\\n33. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_folk_legend_Mercedes_Sosa_dead_at_74_33-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Argentine folk legend \u001b[0m\n", + "\u001b[32mMercedes Sosa dead at \u001b[0m\n", + "\u001b[32m74\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.bangkokpost.com/news/world/156066/argentine-folk-legend-mercedes-sosa-dead-at-74\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mBangkok \u001b[0m\n", + "\u001b[32mPost\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Bangkok_Post \"Bangkok Post\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*. 4 October 2009. Retrieved 5 October 2009.\\n34. ^ \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_folk_icon_Sosa_dies_at_74_34-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_folk_icon_Sosa_dies_at_74_34-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Argentine folk icon Sosa dies at \u001b[0m\n", + "\u001b[32m74\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://english.aljazeera.net/news/americas/2009/10/200910421057755554.html#\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAl \u001b[0m\n", + "\u001b[32mJazeera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Al_Jazeera_Arabic \"Al Jazeera Arabic\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. 4 October 2009. Retrieved 5 October 2009.\\n35. \u001b[0m\n", + "\u001b[32m**\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-35\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Continúa la procesión en el Congreso para despedir a Mercedes \u001b[0m\n", + "\u001b[32mSosa\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.lanacion.com.ar/nota.asp?\u001b[0m\u001b[32mnota_id\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1182377\u001b[0m\u001b[32m&\u001b[0m\u001b[32mpid\u001b[0m\u001b[32m=\u001b[0m\u001b[32m7460859\u001b[0m\u001b[32m&\u001b[0m\u001b[32mtoi\u001b[0m\u001b[32m=\u001b[0m\u001b[32m6255\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n36. ^ \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***a***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_singer_Mercedes_Sosa_dies_at_74_36-0\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32m***b***\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-Argentine_singer_Mercedes_Sosa_dies_at_74_36-1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Helen Popper \u001b[0m\u001b[32m(\u001b[0m\u001b[32m4 October 2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Argentine \u001b[0m\n", + "\u001b[32msinger Mercedes Sosa dies at \u001b[0m\n", + "\u001b[32m74\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://web.archive.org/web/20091011000305/http://in.reuters.com/article/hollywood/idINTRE5931S220091004\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. \u001b[0m\n", + "\u001b[32m*\u001b[0m\u001b[32m[\u001b[0m\u001b[32mReuters\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Reuters \"Reuters\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*. Archived from \u001b[0m\u001b[32m[\u001b[0m\u001b[32mthe \u001b[0m\n", + "\u001b[32moriginal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://in.reuters.com/article/hollywood/idINTRE5931S220091004\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on 11 October 2009. Retrieved 5 October \u001b[0m\n", + "\u001b[32m2009.\\n37. **\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-37\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"Celebrating Mercedes \u001b[0m\n", + "\u001b[32mSosa\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://doodles.google/doodle/celebrating-mercedes-sosa/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. *Doodles Archive, Google*. 31 January 2019.\\n38.\u001b[0m\n", + "\u001b[32m**\u001b[0m\u001b[32m[\u001b[0m\u001b[32m^\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#cite_ref-38\u001b[0m\u001b[32m)\u001b[0m\u001b[32m** \u001b[0m\u001b[32m[\u001b[0m\u001b[32m\"The 200 Greatest Singers of All \u001b[0m\n", + "\u001b[32mTime\"\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.rollingstone.com/music/music-lists/best-singers-all-time-1234642307/mercedes-sosa-1234642917/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\u001b[0m\n", + "\u001b[32m*\u001b[0m\u001b[32m[\u001b[0m\u001b[32mRolling Stone\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rolling_Stone \"Rolling Stone\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m*. 1 January 2023. Retrieved 9 March 2023.\\n\\nExternal \u001b[0m\n", + "\u001b[32mlinks\\n--------------\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32msection\u001b[0m\u001b[32m=\u001b[0m\u001b[32m13\u001b[0m\u001b[32m \"Edit section: External \u001b[0m\n", + "\u001b[32mlinks\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/40px-Wikiquote-logo.svg.pn\u001b[0m\n", + "\u001b[32mg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/File:Wikiquote-logo.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nWikiquote has quotations related to ***\u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://en.wikiquote.org/wiki/Special:Search/Mercedes_Sosa \"q:Special:Search/Mercedes \u001b[0m\n", + "\u001b[32mSosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m***.\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wi\u001b[0m\n", + "\u001b[32mki/File:Commons-logo.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nWikimedia Commons has media related to \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://commons.wikimedia.org/wiki/Category:Mercedes_Sosa \"commons:Category:Mercedes Sosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTribute \u001b[0m\n", + "\u001b[32mto Mercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://web.archive.org/web/20120913073615/http://tragaseushow.com.br/8-tributo-a-mercedes-sosa-em-porto-ale\u001b[0m\n", + "\u001b[32mgre\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Portuguese BR\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa\\'s website\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.mercedessosa.com.ar/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\'s News\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://noticiasmercedessosa.blogspot.com/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32min Spanish\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.imdb.com/name/nm0815302/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m at \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIMDb\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/IMDb_\u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"IMDb \u001b[0m\u001b[32m(\u001b[0m\u001b[32midentifier\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes \u001b[0m\n", + "\u001b[32mSosa\\'s Discography\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.discogs.com/artist/333361-Mercedes-Sosa\u001b[0m\u001b[32m)\u001b[0m\u001b[32m on \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDiscogs.com\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.discogs.com/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n| * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mv\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template:Mercedes_Sosa \"Template:Mercedes Sosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template_talk:Mercedes_Sosa \"Template talk:Mercedes Sosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32me\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:EditPage/Template:Mercedes_Sosa \"Special:EditPage/Template:Mercedes Sosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m Mercedes Sosa | |\\n|\u001b[0m\n", + "\u001b[32m--- | --- |\\n| Songs | * \"\u001b[0m\u001b[32m[\u001b[0m\u001b[32mLa Maza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/La_Maza \"La Maza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\" |\\n| Albums | * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mLa Voz De La \u001b[0m\n", + "\u001b[32mZafra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/La_Voz_De_La_Zafra \"La Voz De La Zafra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1962\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCanciones Con \u001b[0m\n", + "\u001b[32mFundamento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCanciones_Con_Fundamento\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Canciones Con Fundamento \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does\u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1965\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mYo No Canto Por Cantar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mYo_No_Canto_Por_Cantar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Yo No Canto Por Cantar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1966\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m*\u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHermano_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mMercedes_Sosa_album\u001b[0m\u001b[32m)\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hermano \u001b[0m\u001b[32m(\u001b[0m\u001b[32mMercedes Sosa album\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1966\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mPara Cantarle A Mi \u001b[0m\n", + "\u001b[32mGente\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPara_Cantarle_A_Mi_Gente\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Para Cantarle A Mi Gente \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1967\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCon Sabor A Mercedes Sosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCon_Sabor_A_Mercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\n", + "\u001b[32m\"Con Sabor A Mercedes Sosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1968\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mMujeres \u001b[0m\n", + "\u001b[32mArgentinas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMujeres_Argentinas\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mujeres Argentinas \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1969\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mEl Grito De La Tierra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEl_Grito_De_La_Tierra\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"El \u001b[0m\n", + "\u001b[32mGrito De La Tierra \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1970\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mNavidad Con Mercedes \u001b[0m\n", + "\u001b[32mSosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNavidad_Con_Mercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Navidad Con Mercedes Sosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1970\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mHomenaje a Violeta Parra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Homenaje_a_Violeta_Parra \"Homenaje a Violeta Parra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1971\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mHasta La Victoria\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHasta_La_Victoria\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hasta La Victoria \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1972\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCantata Sudamericana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCantata_Sudamericana\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Cantata Sudamericana \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1972\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mTraigo Un Pueblo En Mi \u001b[0m\n", + "\u001b[32mVoz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTraigo_Un_Pueblo_En_Mi_Voz\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Traigo Un Pueblo En Mi Voz \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1973\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mA Que Florezca Mi \u001b[0m\n", + "\u001b[32mPueblo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mA_Que_Florezca_Mi_Pueblo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"A Que Florezca Mi Pueblo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1975\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mEn Dirección Del \u001b[0m\n", + "\u001b[32mViento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEn_Direcci\u001b[0m\u001b[32m%C3%B3n_Del_Viento&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"En Dirección Del Viento \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1976\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa Interpreta A Atahualpa \u001b[0m\n", + "\u001b[32mYupanqui\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa_Interpreta_A_Atahualpa_Yupanqui\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mercedes Sosa \u001b[0m\n", + "\u001b[32mInterpreta A Atahualpa Yupanqui \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1977\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mMercedes Sosa en \u001b[0m\n", + "\u001b[32mArgentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mercedes_Sosa_en_Argentina \"Mercedes Sosa en Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m1982\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * *\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCantora 1 & \u001b[0m\n", + "\u001b[32m2\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cantora,_un_Viaje_%C3%8Dntimo \"Cantora, un Viaje Íntimo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m* \u001b[0m\u001b[32m(\u001b[0m\u001b[32m2009\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| Related articles | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNueva \u001b[0m\n", + "\u001b[32mcanción\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nueva_canci%C3%B3n \"Nueva canción\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n\\n| * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mv\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template:Latin_Grammy_Lifetime_Achievement_Award \"Template:Latin Grammy Lifetime Achievement Award\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template_talk:Latin_Grammy_Lifetime_Achievement_Award \"Template talk:Latin Grammy Lifetime Achievement \u001b[0m\n", + "\u001b[32mAward\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32me\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:EditPage/Template:Latin_Grammy_Lifetime_Achievement_Award \u001b[0m\n", + "\u001b[32m\"Special:EditPage/Template:Latin Grammy Lifetime Achievement Award\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy Lifetime Achievement \u001b[0m\n", + "\u001b[32mAward\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m | |\\n| --- | --- \u001b[0m\n", + "\u001b[32m|\\n| 2000s | * 2004: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntonio Aguilar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Antonio_Aguilar \"Antonio Aguilar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto \u001b[0m\n", + "\u001b[32mCarlos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Carlos_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Roberto Carlos \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWillie Colón\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Willie_Col%C3%B3n \"Willie\u001b[0m\n", + "\u001b[32mColón\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé José\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Jos%C3%A9 \"José José\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / Mercedes Sosa * 2005: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRocío \u001b[0m\n", + "\u001b[32mDúrcal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roc%C3%ADo_D%C3%BArcal \"Rocío Dúrcal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGeneroso Jiménez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Generoso_Jim%C3%A9nez \"Generoso \u001b[0m\n", + "\u001b[32mJiménez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge Ben Jor\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Ben \"Jorge Ben\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio Mendes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Mendes \"Sérgio \u001b[0m\n", + "\u001b[32mMendes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJohnny Pacheco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Johnny_Pacheco \"Johnny Pacheco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSandro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sandro_de_Am%C3%A9rica \u001b[0m\n", + "\u001b[32m\"Sandro de América\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2006: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeón Gieco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Le%C3%B3n_Gieco \"León Gieco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGraciela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Graciela \u001b[0m\n", + "\u001b[32m\"Graciela\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCésar Camargo Mariano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/C%C3%A9sar_Camargo_Mariano \"César Camargo Mariano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRichie Ray & \u001b[0m\n", + "\u001b[32mBobby Cruz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Richie_Ray_%26_Bobby_Cruz \"Richie Ray & Bobby Cruz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaloma San \u001b[0m\n", + "\u001b[32mBasilio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paloma_San_Basilio \"Paloma San Basilio\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlberto Vázquez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alberto_V%C3%A1zquez_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Alberto Vázquez \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJohnny Ventura\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Johnny_Ventura \"Johnny Ventura\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2007: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlberto \u001b[0m\n", + "\u001b[32mCortez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alberto_Cortez \"Alberto Cortez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLucho Gatica\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lucho_Gatica \"Lucho Gatica\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOlga \u001b[0m\n", + "\u001b[32mGuillot\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Olga_Guillot \"Olga Guillot\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOs Paralamas do Sucesso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Os_Paralamas_do_Sucesso \"Os \u001b[0m\n", + "\u001b[32mParalamas do Sucesso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLos Tigres del Norte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Los_Tigres_del_Norte \"Los Tigres del Norte\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChavela \u001b[0m\n", + "\u001b[32mVargas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chavela_Vargas \"Chavela Vargas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2008: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVikki Carr\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vikki_Carr \"Vikki Carr\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCheo \u001b[0m\n", + "\u001b[32mFeliciano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cheo_Feliciano \"Cheo Feliciano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAstrud Gilberto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Astrud_Gilberto \"Astrud Gilberto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAngélica María\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ang%C3%A9lica_Mar%C3%ADa \"Angélica María\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaría Dolores \u001b[0m\n", + "\u001b[32mPradera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mar%C3%ADa_Dolores_Pradera \"María Dolores Pradera\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEstela Raval\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Estela_Raval \"Estela \u001b[0m\n", + "\u001b[32mRaval\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2009: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCándido Camero\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/C%C3%A1ndido_Camero \"Cándido Camero\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeth \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Beth_Carvalho \"Beth Carvalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCharly García\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Charly_Garc%C3%ADa \"Charly García\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTania Libertad\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tania_Libertad \"Tania Libertad\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarco Antonio Muñiz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marco_Antonio_Mu%C3%B1iz \u001b[0m\n", + "\u001b[32m\"Marco Antonio Muñiz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / Juan Romero |\\n| 2010s | * 2010: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Donato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Donato \"João Donato\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32mLas Hermanas Márquez / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArmando Manzanero\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Armando_Manzanero \"Armando Manzanero\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / Joseíto Mateo / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge \u001b[0m\n", + "\u001b[32mOñate\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_O%C3%B1ate \"Jorge Oñate\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSusana Rinaldi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Susana_Rinaldi \"Susana Rinaldi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2011: \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJoe Arroyo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Joe_Arroyo \"Joe Arroyo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGal Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gal_Costa \"Gal Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé \u001b[0m\n", + "\u001b[32mFeliciano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Feliciano \"José Feliciano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mÁlex Lora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/%C3%81lex_Lora \"Álex Lora\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLes \u001b[0m\n", + "\u001b[32mLuthiers\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Les_Luthiers \"Les Luthiers\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRubén Rada\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rub%C3%A9n_Rada \"Rubén Rada\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLinda \u001b[0m\n", + "\u001b[32mRonstadt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Linda_Ronstadt \"Linda Ronstadt\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2012: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuz Casal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luz_Casal \"Luz Casal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeo \u001b[0m\n", + "\u001b[32mDan\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Leo_Dan \"Leo Dan\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRita Moreno\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rita_Moreno \"Rita Moreno\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton \u001b[0m\n", + "\u001b[32mNascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Nascimento \"Milton Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDaniela Romo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Daniela_Romo \"Daniela Romo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPoncho Sanchez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Poncho_Sanchez \"Poncho Sanchez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mToquinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Toquinho \"Toquinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2013: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOscar \u001b[0m\n", + "\u001b[32mD\\'León\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Oscar_D%27Le%C3%B3n \"Oscar D\\'León\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJuan Formell\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Juan_Formell \"Juan Formell\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mRoberto Menescal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Menescal \"Roberto Menescal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTotó la Momposina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tot%C3%B3_la_Momposina \u001b[0m\n", + "\u001b[32m\"Totó la Momposina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPalito Ortega\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Palito_Ortega \"Palito Ortega\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEddie \u001b[0m\n", + "\u001b[32mPalmieri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eddie_Palmieri \"Eddie Palmieri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMiguel Ríos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Miguel_R%C3%ADos \"Miguel Ríos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2014: \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mWilly Chirino\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Willy_Chirino \"Willy Chirino\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCésar Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/C%C3%A9sar_Costa \"César Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCarlos do Carmo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_do_Carmo \"Carlos do Carmo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDúo Dinámico\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/D%C3%BAo_Din%C3%A1mico \"Dúo \u001b[0m\n", + "\u001b[32mDinámico\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLos Lobos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Los_Lobos \"Los Lobos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mValeria Lynch\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Valeria_Lynch \"Valeria Lynch\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mNey Matogrosso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ney_Matogrosso \"Ney Matogrosso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2015: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGato Barbieri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gato_Barbieri \"Gato \u001b[0m\n", + "\u001b[32mBarbieri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna Belén\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ana_Bel%C3%A9n \"Ana Belén\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mÁngela Carrasco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/%C3%81ngela_Carrasco \"Ángela\u001b[0m\n", + "\u001b[32mCarrasco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDjavan\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Djavan \"Djavan\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEl Gran Combo de Puerto Rico\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/El_Gran_Combo_de_Puerto_Rico \u001b[0m\n", + "\u001b[32m\"El Gran Combo de Puerto Rico\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVíctor Manuel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/V%C3%ADctor_Manuel \"Víctor Manuel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPablo \u001b[0m\n", + "\u001b[32mMilanés\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2016: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEl Consorcio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/El_Consorcio \"El Consorcio\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEugenia León\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eugenia_Le%C3%B3n \"Eugenia León\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRicardo Montaner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ricardo_Montaner \"Ricardo \u001b[0m\n", + "\u001b[32mMontaner\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdnita Nazario\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ednita_Nazario \"Ednita Nazario\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPiero\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Piero_de_Benedictis \"Piero \u001b[0m\n", + "\u001b[32mde Benedictis\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2017: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLucecita Benítez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lucecita_Ben%C3%ADtez \"Lucecita Benítez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão \u001b[0m\n", + "\u001b[32mBosco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Bosco \"João Bosco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIlan Chester\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ilan_Chester \"Ilan Chester\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVíctor \u001b[0m\n", + "\u001b[32mHeredia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Victor_Heredia \"Victor Heredia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLos del Río\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Los_del_R%C3%ADo \"Los del Río\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGuadalupe Pineda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Guadalupe_Pineda \"Guadalupe Pineda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCuco Valoy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cuco_Valoy \"Cuco Valoy\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m2018: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mErasmo Carlos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Erasmo_Carlos \"Erasmo Carlos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDyango\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dyango \"Dyango\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAndy \u001b[0m\n", + "\u001b[32mMontañez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Andy_Monta%C3%B1ez \"Andy Montañez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé María \u001b[0m\n", + "\u001b[32mNapoleón\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Mar%C3%ADa_Napole%C3%B3n \"José María Napoleón\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChucho \u001b[0m\n", + "\u001b[32mValdés\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chucho_Vald%C3%A9s \"Chucho Valdés\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWilfrido Vargas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wilfrido_Vargas \"Wilfrido Vargas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mYuri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Yuri_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mMexican_singer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Yuri \u001b[0m\u001b[32m(\u001b[0m\u001b[32mMexican singer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2019: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEva Ayllón\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eva_Ayll%C3%B3n \"Eva \u001b[0m\n", + "\u001b[32mAyllón\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoan Baez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Joan_Baez \"Joan Baez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Cid\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Cid \"José Cid\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLupita \u001b[0m\n", + "\u001b[32mD\\'Alessio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lupita_D%27Alessio \"Lupita D\\'Alessio\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHugo Fattoruso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Hugo_Fattoruso \"Hugo \u001b[0m\n", + "\u001b[32mFattoruso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPimpinela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pimpinela \"Pimpinela\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOmara Portuondo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Omara_Portuondo \"Omara \u001b[0m\n", + "\u001b[32mPortuondo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Luis Rodríguez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Luis_Rodr%C3%ADguez_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"José Luis Rodríguez \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m|\\n| 2020s | * ~~2020~~ * 2021: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMartinho da Vila\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Martinho_da_Vila \"Martinho da Vila\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEmmanuel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Emmanuel_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Emmanuel \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPete Escovedo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pete_Escovedo \"Pete Escovedo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSheila E.\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sheila_E. \"Sheila E.\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFito Páez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fito_P%C3%A1ez \"Fito Páez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilly \u001b[0m\n", + "\u001b[32mQuezada\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milly_Quezada \"Milly Quezada\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoaquín Sabina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Joaqu%C3%ADn_Sabina \"Joaquín Sabina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGilberto Santa Rosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gilberto_Santa_Rosa \"Gilberto Santa Rosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2022: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRosario \u001b[0m\n", + "\u001b[32mFlores\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rosario_Flores \"Rosario Flores\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMyriam Hernández\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Myriam_Hern%C3%A1ndez \"Myriam \u001b[0m\n", + "\u001b[32mHernández\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRita Lee\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rita_Lee \"Rita Lee\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAmanda Miguel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Amanda_Miguel \"Amanda Miguel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mYordano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Yordano \"Yordano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2023: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarmen Linares\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carmen_Linares \"Carmen Linares\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mManuel \u001b[0m\n", + "\u001b[32mMijares\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Manuel_Mijares \"Manuel Mijares\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArturo Sandoval\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Arturo_Sandoval \"Arturo Sandoval\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSimone\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Simone_Bittencourt_de_Oliveira \"Simone Bittencourt de Oliveira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSoda Stereo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Soda_Stereo\u001b[0m\n", + "\u001b[32m\"Soda Stereo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna Torroja\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ana_Torroja \"Ana Torroja\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * 2024: \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlbita\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Albita_Rodr%C3%ADguez \u001b[0m\n", + "\u001b[32m\"Albita Rodríguez\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLolita Flores\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lolita_Flores \"Lolita Flores\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlejandro \u001b[0m\n", + "\u001b[32mLerner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alejandro_Lerner \"Alejandro Lerner\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLos Ángeles Azules\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Los_%C3%81ngeles_Azules \"Los \u001b[0m\n", + "\u001b[32mÁngeles Azules\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDraco Rosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Draco_Rosa \"Draco Rosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m / \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLulu Santos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lulu_Santos \"Lulu Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m|\\n\\n| * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mv\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template:Order_of_Cultural_Merit \"Template:Order of Cultural Merit\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mt\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Template_talk:Order_of_Cultural_Merit \"Template talk:Order of Cultural Merit\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32me\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Special:EditPage/Template:Order_of_Cultural_Merit \"Special:EditPage/Template:Order of Cultural Merit\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mOrder of Cultural Merit\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ordem_do_M%C3%A9rito_Cultural \"Ordem do Mérito Cultural\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m | |\\n| --- | \u001b[0m\n", + "\u001b[32m--- |\\n| 1995 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Carlos Magalhães\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Carlos_Magalh%C3%A3es \"Antônio Carlos Magalhães\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCelso Furtado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Celso_Furtado \"Celso Furtado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernanda Montenegro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fernanda_Montenegro \u001b[0m\n", + "\u001b[32m\"Fernanda Montenegro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoãosinho Trinta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3osinho_Trinta \"Joãosinho Trinta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge \u001b[0m\n", + "\u001b[32mAmado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Amado \"Jorge Amado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Mindlin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Mindlin \"José Mindlin\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé \u001b[0m\n", + "\u001b[32mSarney\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Sarney \"José Sarney\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNascimento \u001b[0m\n", + "\u001b[32mBrito\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mManuel_Francisco_do_Nascimento_Brito\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Manuel Francisco do \u001b[0m\n", + "\u001b[32mNascimento Brito \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNise da Silveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nise_da_Silveira \"Nise da Silveira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPietro\u001b[0m\n", + "\u001b[32mMaria Bardi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pietro_Maria_Bardi \"Pietro Maria Bardi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRicardo \u001b[0m\n", + "\u001b[32mGribel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRicardo_Gribel\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ricardo Gribel \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto\u001b[0m\n", + "\u001b[32mMarinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Marinho \"Roberto Marinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 1996 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAthos Bulcão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Athos_Bulc%C3%A3o \"Athos \u001b[0m\n", + "\u001b[32mBulcão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBibi Ferreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Bibi_Ferreira \"Bibi Ferreira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarybé\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Caryb%C3%A9 \"Carybé\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos \u001b[0m\n", + "\u001b[32mEduardo Moreira Ferreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Eduardo_Moreira_Ferreira \"Carlos Eduardo Moreira Ferreira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdemar Cid \u001b[0m\n", + "\u001b[32mFerreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Edemar_Cid_Ferreira \"Edemar Cid Ferreira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFrancisco Brennand\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Francisco_Brennand \u001b[0m\n", + "\u001b[32m\"Francisco Brennand\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFranco Montoro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Andr%C3%A9_Franco_Montoro \"André Franco Montoro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJens \u001b[0m\n", + "\u001b[32mOlesen\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJens_Olesen\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jens Olesen \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoel Mendes \u001b[0m\n", + "\u001b[32mRennó\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJoel_Mendes_Renn\u001b[0m\u001b[32m%C3%B3&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Joel Mendes Rennó \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMax Justo Guedes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMax_Justo_Guedes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Max Justo Guedes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMestre Didi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDeosc\u001b[0m\u001b[32m%C3%B3redes_Maximiliano_dos_Santos&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Deoscóredes Maximiliano dos Santos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNélida Piñon\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/N%C3%A9lida_Pi%C3%B1on \"Nélida \u001b[0m\n", + "\u001b[32mPiñon\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOlavo Setúbal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Olavo_Set%C3%BAbal \"Olavo Setúbal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPadre \u001b[0m\n", + "\u001b[32mVaz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHenrique_Cl\u001b[0m\u001b[32m%C3%A1udio_de_Lima_Vaz&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Henrique Cláudio de Lima Vaz \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio Motta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mS\u001b[0m\u001b[32m%C3%A9rgio_Motta&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sérgio Motta \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter Salles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Walter_Salles \"Walter Salles\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 1997 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAdélia \u001b[0m\n", + "\u001b[32mPrado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ad%C3%A9lia_Prado \"Adélia Prado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio \u001b[0m\n", + "\u001b[32mPoteiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAnt\u001b[0m\u001b[32m%C3%B4nio_Poteiro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antônio Poteiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAntônio Salgado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAnt\u001b[0m\u001b[32m%C3%B4nio_Salgado&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antônio Salgado \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBraguinha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Braguinha_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mcomposer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Braguinha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mcomposer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDavid \u001b[0m\n", + "\u001b[32mAssayag\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDavid_Assayag\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"David Assayag \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDiogo \u001b[0m\n", + "\u001b[32mPacheco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Diogo_Pacheco \"Diogo Pacheco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona \u001b[0m\n", + "\u001b[32mLenoca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEstelita_Rodrigues_Borralho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Estelita Rodrigues Borralho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFayga Ostrower\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fayga_Ostrower \"Fayga Ostrower\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGilberto \u001b[0m\n", + "\u001b[32mChateaubriand\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGilberto_Chateaubriand\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Gilberto Chateaubriand \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGilberto Ferrez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGilberto_Ferrez\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Gilberto Ferrez \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHelena Severo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHelena_Severo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Helena Severo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHilda Hilst\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Hilda_Hilst \"Hilda Hilst\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge da Cunha \u001b[0m\n", + "\u001b[32mLima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJorge_da_Cunha_Lima\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jorge da Cunha Lima \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJorge Gerdau\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJorge_Gerdau\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jorge Gerdau \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé\u001b[0m\n", + "\u001b[32mErmírio de Moraes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Erm%C3%ADrio_de_Moraes&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Ermírio de \u001b[0m\n", + "\u001b[32mMoraes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Safra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Safra&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Safra\u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLúcio Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/L%C3%BAcio_Costa \"Lúcio Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuís Carlos \u001b[0m\n", + "\u001b[32mBarreto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLu\u001b[0m\u001b[32m%C3%ADs_Carlos_Barreto&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luís Carlos Barreto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMãe Olga do Alaketu\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOlga_Francisca_R\u001b[0m\u001b[32m%C3%A9gis&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Olga \u001b[0m\n", + "\u001b[32mFrancisca Régis \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcos \u001b[0m\n", + "\u001b[32mVilaça\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcos_Vila\u001b[0m\u001b[32m%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcos Vilaça \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMaria Clara Machado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Clara_Machado \"Maria Clara Machado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRobert \u001b[0m\n", + "\u001b[32mBroughton\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRobert_Anthony_Broughton\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Robert Anthony Broughton \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUbiratan Aguiar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mUbiratan_Aguiar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ubiratan Aguiar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWladimir Murtinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWladimir_Murtinho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Wladimir \u001b[0m\n", + "\u001b[32mMurtinho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 1998 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbram \u001b[0m\n", + "\u001b[32mSzajman\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAbram_Szajman\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Abram Szajman \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAltamiro\u001b[0m\n", + "\u001b[32mCarrilho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Altamiro_Carrilho \"Altamiro Carrilho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Britto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Britto \"Antônio \u001b[0m\n", + "\u001b[32mBritto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAriano Suassuna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ariano_Suassuna \"Ariano Suassuna\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Diegues\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Diegues \u001b[0m\n", + "\u001b[32m\"Carlos Diegues\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDécio de Almeida Prado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mD\u001b[0m\u001b[32m%C3%A9cio_de_Almeida_Prado&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Décio de Almeida Prado \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFranz Weissmann\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Franz_Weissmann \"Franz Weissmann\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJoão Carlos Martins\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Carlos_Martins \"João Carlos Martins\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Hugo \u001b[0m\n", + "\u001b[32mCelidônio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Hugo_Celid%C3%B4nio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Hugo Celidônio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLily Marinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lily_Marinho \"Lily Marinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMãe Cleusa \u001b[0m\n", + "\u001b[32mMillet\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A3e_Cleusa_Millet \"Mãe Cleusa Millet\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilu \u001b[0m\n", + "\u001b[32mVillela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMilu_Villela\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Milu Villela \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMiguel \u001b[0m\n", + "\u001b[32mJorge\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Miguel_Jorge \"Miguel Jorge\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona \u001b[0m\n", + "\u001b[32mNeuma\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNeuma_Gon\u001b[0m\u001b[32m%C3%A7alves_da_Silva&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Neuma Gonçalves da Silva \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does\u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOctavio Frias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOct\u001b[0m\u001b[32m%C3%A1vio_Frias_de_Oliveira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Octávio \u001b[0m\n", + "\u001b[32mFrias de Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOlavo Monteiro de \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOlavo_Egydio_Monteiro_de_Carvalho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Olavo Egydio Monteiro de \u001b[0m\n", + "\u001b[32mCarvalho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Autran\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Autran \"Paulo Autran\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo César \u001b[0m\n", + "\u001b[32mXimenes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_C%C3%A9sar_Ximenes \"Paulo César Ximenes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoseana Sarney\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roseana_Sarney \"Roseana \u001b[0m\n", + "\u001b[32mSarney\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuth Rocha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ruth_Rocha \"Ruth Rocha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuy \u001b[0m\n", + "\u001b[32mMesquita\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRuy_Mesquita\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ruy Mesquita \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSebastião\u001b[0m\n", + "\u001b[32mSalgado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sebasti%C3%A3o_Salgado \"Sebastião Salgado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter Hugo Khouri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Walter_Hugo_Khouri \u001b[0m\n", + "\u001b[32m\"Walter Hugo Khouri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZenildo Gonzaga Zoroastro de \u001b[0m\n", + "\u001b[32mLucena\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mZenildo_Gonzaga_Zoroastro_de_Lucena\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Zenildo Gonzaga Zoroastro de\u001b[0m\n", + "\u001b[32mLucena \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 1999 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbraham \u001b[0m\n", + "\u001b[32mKoogan\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAbraham_Koogan\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Abraham Koogan \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlmir \u001b[0m\n", + "\u001b[32mGabriel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Almir_Gabriel \"Almir Gabriel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAloysio Faria\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Aloysio_de_Andrade_Faria \"Aloysio de \u001b[0m\n", + "\u001b[32mAndrade Faria\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna Maria Diniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAna_Maria_Diniz\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ana Maria Diniz \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAngel Vianna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAngel_Vianna\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Angel Vianna \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Houaiss\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Houaiss \"Antônio Houaiss\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeatriz Pimenta \u001b[0m\n", + "\u001b[32mCamargo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBeatriz_Pimenta_Camargo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Beatriz Pimenta Camargo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEcyla Brandão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEcyla_Brand\u001b[0m\u001b[32m%C3%A3o&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ecyla Brandão \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEnrique Iglesias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Enrique_Iglesias \"Enrique Iglesias\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEsther \u001b[0m\n", + "\u001b[32mBertoletti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEsther_Bertoletti\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Esther Bertoletti \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHélio Jaguaribe\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/H%C3%A9lio_Jaguaribe \"Hélio Jaguaribe\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermínio Bello de \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHerm\u001b[0m\u001b[32m%C3%ADnio_Bello_de_Carvalho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hermínio Bello de Carvalho \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJ. Borges\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Francisco_Borges \"José Francisco Borges\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão \u001b[0m\n", + "\u001b[32mAntunes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Antunes \"João Antunes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMãe Stella de \u001b[0m\n", + "\u001b[32mOxóssi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Stella_de_Azevedo_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Stella de Azevedo Santos \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Cecília Geyer\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Cec\u001b[0m\u001b[32m%C3%ADlia_Geyer&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Maria Cecília Geyer \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Delith \u001b[0m\n", + "\u001b[32mBalaban\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Delith_Balaban\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Delith Balaban \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário Covas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_Covas \"Mário Covas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaixão \u001b[0m\n", + "\u001b[32mCôrtes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_Carlos_D%27%C3%81vila_Paix%C3%A3o_C%C3%B4rtes&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João \u001b[0m\n", + "\u001b[32mCarlos D\\'Ávila Paixão Côrtes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Fontainha \u001b[0m\n", + "\u001b[32mGeyer\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPaulo_Fontainha_Geyer\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Paulo Fontainha Geyer \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRomero Magalhães\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRomero_Magalh\u001b[0m\u001b[32m%C3%A3es&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Romero Magalhães \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWashington Novaes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWashington_Novaes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Washington Novaes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2000 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna Maria Machado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ana_Maria_Machado \"Ana Maria \u001b[0m\n", + "\u001b[32mMachado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAngela Gutierrez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAngela_Gutierrez\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Angela Gutierrez \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDom Geraldo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mArgemiro_Geraldo_de_Barros_Wanderley\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Argemiro Geraldo de Barros Wanderley \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDalal Achcar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dalal_Achcar \"Dalal Achcar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdino Krieger\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Edino_Krieger \"Edino Krieger\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mElizabeth D\\'Angelo \u001b[0m\n", + "\u001b[32mSerra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mElizabeth_D\u001b[0m\u001b[32m%27Angelo_Serra&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Elizabeth D\\'Angelo Serra \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFirmino Ferreira Sampaio \u001b[0m\n", + "\u001b[32mNeto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFirmino_Ferreira_Sampaio_Neto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Firmino Ferreira Sampaio Neto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSiron Franco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Siron_Franco \"Siron Franco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGianfrancesco \u001b[0m\n", + "\u001b[32mGuarnieri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gianfrancesco_Guarnieri \"Gianfrancesco Guarnieri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGilberto Gil\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gilberto_Gil \"Gilberto\u001b[0m\n", + "\u001b[32mGil\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Alves Antunes Filho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Alves_Antunes_Filho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José \u001b[0m\n", + "\u001b[32mAlves Antunes Filho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Henrique da Silveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luiz_Henrique_da_Silveira \"Luiz \u001b[0m\n", + "\u001b[32mHenrique da Silveira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Sponchiato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Sponchiato\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz \u001b[0m\n", + "\u001b[32mSponchiato \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria João Bustorff\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Jo%C3%A3o_Bustorff \"Maria João Bustorff\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMário Miguel Nicola Garófalo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mM\u001b[0m\u001b[32m%C3%A1rio_Miguel_Nicola_Gar%C3%B3falo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Mário Miguel Nicola Garófalo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMartinho da Vila\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Martinho_da_Vila \"Martinho da \u001b[0m\n", + "\u001b[32mVila\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson José Pinto Freire\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nelson_Jos%C3%A9_Pinto_Freire \"Nelson José Pinto Freire\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Tarso\u001b[0m\n", + "\u001b[32mFlecha de Lima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Tarso_Flecha_de_Lima \"Paulo Tarso Flecha de Lima\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPlínio \u001b[0m\n", + "\u001b[32mPacheco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPl\u001b[0m\u001b[32m%C3%ADnio_Pacheco&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Plínio Pacheco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mRodrigo Pederneiras Barbosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRodrigo_Pederneiras_Barbosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rodrigo \u001b[0m\n", + "\u001b[32mPederneiras Barbosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuth Escobar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ruth_Escobar \"Ruth Escobar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSabine \u001b[0m\n", + "\u001b[32mLovatelli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSabine_Lovatelli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sabine Lovatelli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSérgio Paulo Rouanet\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Paulo_Rouanet \"Sérgio Paulo Rouanet\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio \u001b[0m\n", + "\u001b[32mAmaral\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mS\u001b[0m\u001b[32m%C3%A9rgio_Silva_do_Amaral&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sérgio Silva do Amaral \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mThomaz Farkas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Thomaz_Farkas \"Thomaz Farkas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTizuka Yamasaki\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tizuka_Yamasaki \u001b[0m\n", + "\u001b[32m\"Tizuka Yamasaki\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZezé Motta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Zez%C3%A9_Motta \"Zezé Motta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2001 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArthur Moreira \u001b[0m\n", + "\u001b[32mLima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Arthur_Moreira_Lima \"Arthur Moreira Lima\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCatherine Tasca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Catherine_Tasca \"Catherine \u001b[0m\n", + "\u001b[32mTasca\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCélia Procópio de Araújo \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mC\u001b[0m\u001b[32m%C3%A9lia_Proc%C3%B3pio_de_Ara%C3%BAjo_Carvalho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Célia \u001b[0m\n", + "\u001b[32mProcópio de Araújo Carvalho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEuclides Menezes \u001b[0m\n", + "\u001b[32mFerreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEuclides_Menezes_Ferreira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Euclides Menezes Ferreira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does\u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona Zica\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEuz\u001b[0m\u001b[32m%C3%A9bia_Silva_de_Oliveira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Euzébia Silva \u001b[0m\n", + "\u001b[32mde Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernando Faro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFernando_Faro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Fernando Faro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. Império Serrano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Imp%C3%A9rio_Serrano \"Império Serrano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. Portela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Portela_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msamba_school\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Portela \u001b[0m\u001b[32m(\u001b[0m\u001b[32msamba school\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. Vila \u001b[0m\n", + "\u001b[32mIsabel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Unidos_de_Vila_Isabel \"Unidos de Vila Isabel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. \u001b[0m\n", + "\u001b[32mMangueira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Esta%C3%A7%C3%A3o_Primeira_de_Mangueira \"Estação Primeira de Mangueira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHaroldo \u001b[0m\n", + "\u001b[32mCosta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHaroldo_Costa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Haroldo Costa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermínio \u001b[0m\n", + "\u001b[32mBello de Carvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHerm\u001b[0m\u001b[32m%C3%ADnio_Bello_de_Carvalho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hermínio Bello de \u001b[0m\n", + "\u001b[32mCarvalho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHenri Philippe \u001b[0m\n", + "\u001b[32mReichstul\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHenri_Philippe_Reichstul\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Henri Philippe Reichstul \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHildmar Diniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHildmar_Diniz\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hildmar Diniz \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIvo Abrahão Nesralla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIvo_Abrah\u001b[0m\u001b[32m%C3%A3o_Nesralla&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ivo \u001b[0m\n", + "\u001b[32mAbrahão Nesralla \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJamelão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jamel%C3%A3o \"Jamelão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Câmara \u001b[0m\n", + "\u001b[32mFilho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_C%C3%A2mara_Filho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João Câmara Filho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuciana Stegagno Picchio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuciana_Stegagno_Picchio\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luciana \u001b[0m\n", + "\u001b[32mStegagno Picchio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuís Antônio \u001b[0m\n", + "\u001b[32mViana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLu\u001b[0m\u001b[32m%C3%ADs_Ant%C3%B4nio_Viana&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luís Antônio Viana \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLygia Fagundes Telles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lygia_Fagundes_Telles \"Lygia Fagundes Telles\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mManuel Salustiano \u001b[0m\n", + "\u001b[32mSoares\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mManuel_Salustiano_Soares\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Manuel Salustiano Soares \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Gonçalves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton \u001b[0m\n", + "\u001b[32mNascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Nascimento \"Milton Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulinho da Viola\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulinho_da_Viola \"Paulinho \u001b[0m\n", + "\u001b[32mda Viola\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPilar del Castillo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pilar_del_Castillo \"Pilar del Castillo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPurificación Carpinteyro \u001b[0m\n", + "\u001b[32mCalderón\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Purificaci%C3%B3n_Carpinteyro_Calder%C3%B3n \"Purificación Carpinteyro Calderón\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSari \u001b[0m\n", + "\u001b[32mBermúdez\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSari_Berm\u001b[0m\u001b[32m%C3%BAdez&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sari Bermúdez \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSheila Copps\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sheila_Copps \"Sheila Copps\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSynésio Scofano \u001b[0m\n", + "\u001b[32mFernandes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSyn\u001b[0m\u001b[32m%C3%A9sio_Scofano_Fernandes&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Synésio Scofano Fernandes \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mThiago de Mello\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Thiago_de_Mello \"Thiago de Mello\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mYvonne Lara da \u001b[0m\n", + "\u001b[32mCosta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dona_Ivone_Lara \"Dona Ivone Lara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2002 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlberto Alves da \u001b[0m\n", + "\u001b[32mSilva\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAlberto_Alves_da_Silva\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Alberto Alves da Silva \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna Botafogo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ana_Botafogo \"Ana Botafogo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCandace Slater\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Candace_Slater \"Candace \u001b[0m\n", + "\u001b[32mSlater\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Roberto Faccina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCarlos_Roberto_Faccina\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Carlos \u001b[0m\n", + "\u001b[32mRoberto Faccina \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCentro Cultural Pró-Música\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Federal_University_of_Juiz_de_Fora \u001b[0m\n", + "\u001b[32m\"Federal University of Juiz de Fora\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDalva Lazaroni\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDalva_Lazaroni\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Dalva Lazaroni \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDominguinhos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dominguinhos \"Dominguinhos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona \u001b[0m\n", + "\u001b[32mLucinha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Lucia_Clementino_Nunes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Lucia Clementino Nunes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEDUSP\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEditora_da_Universidade_de_S\u001b[0m\u001b[32m%C3%A3o_Paulo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Editora da Universidade de São Paulo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEduardo Baptista \u001b[0m\n", + "\u001b[32mVianna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEduardo_Baptista_Vianna\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Eduardo Baptista Vianna \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFrances Marinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFrancisca_Clara_Reynolds_Marinho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Francisca \u001b[0m\n", + "\u001b[32mClara Reynolds Marinho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGeorge Savalla Gomes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/George_Savalla_Gomes \"George Savalla\u001b[0m\n", + "\u001b[32mGomes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGuillermo O\\'Donnell\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Guillermo_O%27Donnell \"Guillermo O\\'Donnell\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. Camisa Verde e \u001b[0m\n", + "\u001b[32mBranco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCamisa_Verde_e_Branco\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Camisa Verde e Branco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mG.R.E.S. Vai Vai\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vai-Vai \"Vai-Vai\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHenry Sobel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Henry_Sobel \"Henry Sobel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJack \u001b[0m\n", + "\u001b[32mLeon Terpins\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJack_Leon_Terpins\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jack Leon Terpins \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Filgueiras\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_Filgueiras&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João Filgueiras \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJon M. Tolman\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJon_M\u001b[0m\u001b[32m._Tolman&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jon M. Tolman \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJúlio Neves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJ\u001b[0m\u001b[32m%C3%BAlio_Neves&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Júlio Neves \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJulio Landmann\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJulio_Landmann\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Julio Landmann \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mKabengele Munanga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Kabengele_Munanga \"Kabengele Munanga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLima \u001b[0m\n", + "\u001b[32mDuarte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lima_Duarte \"Lima Duarte\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Della Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Della_Costa \"Maria Della Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMarlui Miranda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marlui_Miranda \"Marlui Miranda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMestre \u001b[0m\n", + "\u001b[32mJuca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Raimundo_Pereira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Raimundo Pereira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNiède Guidon\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Evaristo \u001b[0m\n", + "\u001b[32mArns\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Evaristo_Arns \"Paulo Evaristo Arns\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRenato Borghetti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Renato_Borghetti \"Renato \u001b[0m\n", + "\u001b[32mBorghetti\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Carlos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Carlos_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Roberto Carlos \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto \u001b[0m\n", + "\u001b[32mDaMatta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_DaMatta \"Roberto DaMatta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSergio \u001b[0m\n", + "\u001b[32mKobayashi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSergio_Kobayashi\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sergio Kobayashi \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSilvio Barbato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Silvio_Barbato \"Silvio Barbato\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSBB\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSociedade_B\u001b[0m\u001b[32m%C3%ADblica_do_Brasil&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sociedade Bíblica do Brasil \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTania Mariza Kuchenbecker \u001b[0m\n", + "\u001b[32mRösing\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTania_Mariza_Kuchenbecker_R\u001b[0m\u001b[32m%C3%B6sing&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Tania Mariza Kuchenbecker \u001b[0m\n", + "\u001b[32mRösing \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVitae – Apoio à Cultura, Educação e Promoção Social\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/FAPESP \"FAPESP\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n|\u001b[0m\n", + "\u001b[32m2003 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAfro Reggae\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Afro_Reggae \"Afro Reggae\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAgostinho da Silva\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Agostinho_da_Silva \u001b[0m\n", + "\u001b[32m\"Agostinho da Silva\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAloísio Magalhães\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alo%C3%ADsio_Magalh%C3%A3es \"Aloísio Magalhães\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio \u001b[0m\n", + "\u001b[32mNóbrega\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Antonio_N%C3%B3brega \"Antonio Nóbrega\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAry Barroso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ary_Barroso \"Ary Barroso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mABC-SERRA\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_de_Bandas_Congo_da_Serra&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação de \u001b[0m\n", + "\u001b[32mBandas Congo da Serra \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBené \u001b[0m\n", + "\u001b[32mFonteles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBen\u001b[0m\u001b[32m%C3%A9_Fonteles&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Bené Fonteles \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mBenedito Nunes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Benedito_Nunes \"Benedito Nunes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBoi \u001b[0m\n", + "\u001b[32mCaprichoso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBoi_Caprichoso\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Boi Caprichoso \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBoi\u001b[0m\n", + "\u001b[32mGarantido\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBoi_Garantido\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Boi Garantido \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCandido Portinari\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Candido_Portinari \"Candido Portinari\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarmen Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carmen_Costa \"Carmen \u001b[0m\n", + "\u001b[32mCosta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCasseta & Planeta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Casseta_%26_Planeta \"Casseta & Planeta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChico Buarque de \u001b[0m\n", + "\u001b[32mHolanda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chico_Buarque_de_Holanda \"Chico Buarque de Holanda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCoral dos \u001b[0m\n", + "\u001b[32mGuarani\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCoral_dos_Guarani\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Coral dos Guarani \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDorival Caymmi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dorival_Caymmi \"Dorival Caymmi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEduardo Bueno\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eduardo_Bueno \"Eduardo Bueno\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGilberto Mendes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gilberto_Mendes \"Gilberto Mendes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrupo Ponto de Partida e o coro Meninos de \u001b[0m\n", + "\u001b[32mAraçuaí\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_Ponto_de_Partida_e_o_coro_Meninos_de_Ara\u001b[0m\u001b[32m%C3%A7ua%C3%AD&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Grupo Ponto de Partida e o coro Meninos de Araçuaí \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHaroldo de \u001b[0m\n", + "\u001b[32mCampos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Haroldo_de_Campos \"Haroldo de Campos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHerbert Vianna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Herbert_Vianna \"Herbert Vianna\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJoão Pequeno\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Pequeno \"João Pequeno\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJongo da \u001b[0m\n", + "\u001b[32mSerrinha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJongo_da_Serrinha\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jongo da Serrinha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJorge Mautner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Mautner \"Jorge Mautner\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Judith Zuzarte \u001b[0m\n", + "\u001b[32mCortesão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Judith_Zuzarte_Cortes%C3%A3o \"Maria Judith Zuzarte Cortesão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Costa \u001b[0m\n", + "\u001b[32mLima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Costa_Lima\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Costa Lima \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMangueira do Amanhã\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMangueira_do_Amanh\u001b[0m\u001b[32m%C3%A3&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mangueira do Amanhã \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mManoel de Barros\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Manoel_de_Barros \"Manoel de Barros\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarília \u001b[0m\n", + "\u001b[32mPêra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mar%C3%ADlia_P%C3%AAra \"Marília Pêra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Santos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Santos \"Milton Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMoacyr Scliar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Moacyr_Scliar \"Moacyr Scliar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson Pereira dos \u001b[0m\n", + "\u001b[32mSantos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nelson_Pereira_dos_Santos \"Nelson Pereira dos Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mProjeto \u001b[0m\n", + "\u001b[32mAxé\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mProjeto_Ax\u001b[0m\u001b[32m%C3%A9&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Projeto Axé \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mProjeto \u001b[0m\n", + "\u001b[32mGuri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mProjeto_Guri\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Projeto Guri \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRita \u001b[0m\n", + "\u001b[32mLee\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rita_Lee \"Rita Lee\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Farias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Farias \"Roberto Farias\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRogério \u001b[0m\n", + "\u001b[32mSganzerla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rog%C3%A9rio_Sganzerla \"Rogério Sganzerla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRubinho do \u001b[0m\n", + "\u001b[32mVale\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRubinho_do_Vale\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rubinho do Vale \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVelha \u001b[0m\n", + "\u001b[32mGuarda da Portela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVelha_Guarda_da_Portela\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Velha Guarda da Portela \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZezé Di Camargo & Luciano\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Zez%C3%A9_Di_Camargo_%26_Luciano \"Zezé Di Camargo & \u001b[0m\n", + "\u001b[32mLuciano\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2004 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlberto da Costa e Silva\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alberto_da_Costa_e_Silva \"Alberto da Costa e Silva\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAngeli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Arnaldo_Angeli_Filho \"Arnaldo Angeli Filho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArnaldo \u001b[0m\n", + "\u001b[32mCarrilho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mArnaldo_Carrilho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Arnaldo Carrilho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCaetano Veloso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Caetano_Veloso \"Caetano Veloso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCandombe do \u001b[0m\n", + "\u001b[32mAçude\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCandombe_do_A\u001b[0m\u001b[32m%C3%A7ude&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Candombe do Açude \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCompanhia Barrica\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCompanhia_Barrica\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Companhia Barrica \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCordão da Bola Preta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cord%C3%A3o_da_Bola_Preta \"Cordão da Bola Preta\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDanilo \u001b[0m\n", + "\u001b[32mMiranda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Danilo_Miranda \"Danilo Miranda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernando Sabino\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fernando_Sabino \"Fernando Sabino\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mFrans Krajcberg\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Frans_Krajcberg \"Frans Krajcberg\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFranco Fontana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Franco_Fontana \"Franco \u001b[0m\n", + "\u001b[32mFontana\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFundação Casa Grande\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFunda\u001b[0m\u001b[32m%C3%A7%C3%A3o_Casa_Grande&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Fundação Casa Grande \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGeraldo Sarno\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Geraldo_Sarno \"Geraldo Sarno\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mInezita \u001b[0m\n", + "\u001b[32mBarroso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Inezita_Barroso \"Inezita Barroso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Donato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Donato \"João Donato\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé \u001b[0m\n", + "\u001b[32mJúlio Pereira Cordeiro \u001b[0m\n", + "\u001b[32mBlanco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_J%C3%BAlio_Pereira_Cordeiro_Blanco&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Júlio Pereira \u001b[0m\n", + "\u001b[32mCordeiro Blanco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLia de \u001b[0m\n", + "\u001b[32mItamaracá\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Madalena_Correia_do_Nascimento\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Madalena Correia \u001b[0m\n", + "\u001b[32mdo Nascimento \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLiz Calder\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Liz_Calder \"Liz Calder\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMárcia \u001b[0m\n", + "\u001b[32mHaydée\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mM\u001b[0m\u001b[32m%C3%A1rcia_Hayd%C3%A9e&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Márcia Haydée \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMauricio de Sousa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mauricio_de_Sousa \"Mauricio de Sousa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMovimento Arte contra a \u001b[0m\n", + "\u001b[32mBarbárie\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMovimento_Arte_contra_a_Barb\u001b[0m\u001b[32m%C3%A1rie&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Movimento Arte contra a \u001b[0m\n", + "\u001b[32mBarbárie \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOdete Lara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Odete_Lara \"Odete Lara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOlga Praguer \u001b[0m\n", + "\u001b[32mCoelho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Olga_Praguer_Coelho \"Olga Praguer Coelho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrlando \u001b[0m\n", + "\u001b[32mVillas-Bôas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOrlando_Villas\u001b[0m\u001b[32m-B%C3%B4as&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Orlando Villas-Bôas \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOzualdo Candeias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOzualdo_Candeias\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ozualdo Candeias \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo José\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Jos%C3%A9 \"Paulo José\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Mendes da \u001b[0m\n", + "\u001b[32mRocha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Mendes_da_Rocha \"Paulo Mendes da Rocha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPelé\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pel%C3%A9 \"Pelé\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPovo Panará, Mato\u001b[0m\n", + "\u001b[32mGrosso e Pará\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPovo_Panar\u001b[0m\u001b[32m%C3%A1,_Mato_Grosso_e_Par%C3%A1&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Povo Panará, \u001b[0m\n", + "\u001b[32mMato Grosso e Pará \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPracatum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Pracatum_A%C3%A7%C3%A3o_Social&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Associação Pracatum Ação Social \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mProjeto Dança \u001b[0m\n", + "\u001b[32mComunidade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mProjeto_Dan\u001b[0m\u001b[32m%C3%A7a_Comunidade&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Projeto Dança Comunidade \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPulsar Companhia de \u001b[0m\n", + "\u001b[32mDança\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPulsar_Companhia_de_Dan\u001b[0m\u001b[32m%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Pulsar Companhia de Dança \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRachel de Queiroz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rachel_de_Queiroz \"Rachel de Queiroz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRenato \u001b[0m\n", + "\u001b[32mRusso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Renato_Russo \"Renato Russo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAs Ceguinhas de Campina \u001b[0m\n", + "\u001b[32mGrande\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAs_Ceguinhas_de_Campina_Grande\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"As Ceguinhas de Campina Grande \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeatro Oficina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Teatro_Oficina \"Teatro Oficina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVioleta \u001b[0m\n", + "\u001b[32mArraes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVioleta_Arraes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Violeta Arraes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVó \u001b[0m\n", + "\u001b[32mMaria\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_das_Dores_dos_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria das Dores dos Santos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter Firmo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWalter_Firmo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Walter Firmo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWaly Salomão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Waly_Salom%C3%A3o \"Waly Salomão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2005 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlfredo Bosi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alfredo_Bosi\u001b[0m\n", + "\u001b[32m\"Alfredo Bosi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna das Carrancas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAna_Leopoldina_dos_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ana \u001b[0m\n", + "\u001b[32mLeopoldina dos Santos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntonio Jerônimo de Meneses \u001b[0m\n", + "\u001b[32mNeto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAntonio_Jer\u001b[0m\u001b[32m%C3%B4nimo_de_Meneses_Neto&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antonio Jerônimo de Meneses \u001b[0m\n", + "\u001b[32mNeto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntonio Manuel Lima \u001b[0m\n", + "\u001b[32mDias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAntonio_Manuel_Lima_Dias\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antonio Manuel Lima Dias \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAugusto Boal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Augusto_Boal \"Augusto Boal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAugusto Carlos da Silva \u001b[0m\n", + "\u001b[32mTeles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAugusto_Carlos_da_Silva_Teles\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Augusto Carlos da Silva Teles \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPinduca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAurino_Quirino_Gon\u001b[0m\u001b[32m%C3%A7alves&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Aurino \u001b[0m\n", + "\u001b[32mQuirino Gonçalves \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBallet \u001b[0m\n", + "\u001b[32mStagium\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBallet_Stagium\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ballet Stagium \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos\u001b[0m\n", + "\u001b[32mLopes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Lopes \"Carlos Lopes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCUCA/UNE\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Uni%C3%A3o_Nacional_dos_Estudantes \"União Nacional \u001b[0m\n", + "\u001b[32mdos Estudantes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCleyde Yáconis\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cleyde_Y%C3%A1conis \"Cleyde Yáconis\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClóvis \u001b[0m\n", + "\u001b[32mMoura\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCl\u001b[0m\u001b[32m%C3%B3vis_Moura&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Clóvis Moura \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDarcy \u001b[0m\n", + "\u001b[32mRibeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Darcy_Ribeiro \"Darcy Ribeiro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEduardo Coutinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eduardo_Coutinho \"Eduardo Coutinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEgberto Gismonti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Egberto_Gismonti \"Egberto Gismonti\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEliane Lage\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eliane_Lage \"Eliane Lage\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGrupo Bandolins de Oeiras\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_Bandolins_de_Oeiras\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Grupo Bandolins de\u001b[0m\n", + "\u001b[32mOeiras \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHenri Salvador\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Henri_Salvador \"Henri Salvador\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsabel Mendes da \u001b[0m\n", + "\u001b[32mCunha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIsabel_Mendes_da_Cunha\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Isabel Mendes da Cunha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Gilberto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Gilberto \"João Gilberto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Antônio de Almeida \u001b[0m\n", + "\u001b[32mPrado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Almeida_Prado \"Almeida Prado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Mojica Marins\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Mojica_Marins \"José Mojica \u001b[0m\n", + "\u001b[32mMarins\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLino Rojas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLino_Rojas\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lino Rojas \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mManuel dos Reis Machado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Manuel_dos_Reis_Machado \"Manuel dos Reis Machado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria \u001b[0m\n", + "\u001b[32mBethânia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Beth%C3%A2nia \"Maria Bethânia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMario Augusto de Berredo \u001b[0m\n", + "\u001b[32mCarneiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mM\u001b[0m\u001b[32m%C3%A1rio_Carneiro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mário Carneiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMaurice Capovilla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maurice_Capovilla \"Maurice Capovilla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona \u001b[0m\n", + "\u001b[32mMilitana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Militana_Salustino_do_Nascimento \"Militana Salustino do Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMovimento \u001b[0m\n", + "\u001b[32mManguebeat\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Manguebeat \"Manguebeat\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu Casa do \u001b[0m\n", + "\u001b[32mPontal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMuseu_Casa_do_Pontal\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Museu Casa do Pontal \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNei Lopes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nei_Lopes \"Nei Lopes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNino \u001b[0m\n", + "\u001b[32mFernandes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNino_Fernandes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Nino Fernandes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mOlivério Ferreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mXang\u001b[0m\u001b[32m%C3%B4_da_Mangueira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Xangô da Mangueira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Linhares\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPaulo_Linhares\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Paulo Linhares \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoger Avanzi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRoger_Avanzi\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Roger Avanzi \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuth de Souza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ruth_de_Souza \"Ruth de Souza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSilviano Santiago\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Silviano_Santiago\u001b[0m\n", + "\u001b[32m\"Silviano Santiago\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVicente Joaquim Ferreira Pastinha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mestre_Pastinha \"Mestre Pastinha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mZiraldo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ziraldo \"Ziraldo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2006 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAmir Haddad\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Amir_Haddad \"Amir Haddad\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBanda de \u001b[0m\n", + "\u001b[32mPífanos de Caruaru\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBanda_de_P\u001b[0m\u001b[32m%C3%ADfanos_de_Caruaru&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Banda de Pífanos de\u001b[0m\n", + "\u001b[32mCaruaru \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBerthold Zilly\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBerthold_Zilly\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Berthold Zilly \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCasa de Cultura \u001b[0m\n", + "\u001b[32mTainã\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCasa_de_Cultura_Tain\u001b[0m\u001b[32m%C3%A3&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Casa de Cultura Tainã \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCEASM\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCentro_de_Estudos_e_A\u001b[0m\u001b[32m%C3%A7%C3%B5es_Solid%C3%A1rias_da_Mar%C3%A9&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Centro de Estudos e Ações Solidárias da Maré \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mConselho Internacional de \u001b[0m\n", + "\u001b[32mMuseus\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/International_Council_of_Museums \"International Council of Museums\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCora \u001b[0m\n", + "\u001b[32mCoralina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cora_Coralina \"Cora Coralina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCurt Meyer-Clason\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Curt_Meyer-Clason \"Curt Meyer-Clason\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDaniel Munduruku\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Daniel_Munduruku \"Daniel Munduruku\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDino Garcia \u001b[0m\n", + "\u001b[32mCarrera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDino_Garcia_Carrera\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Dino Garcia Carrera \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona Teté Cacuriá\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAlmerice_da_Silva_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Almerice da Silva Santos \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEmmanuel Nassar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEmmanuel_Nassar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Emmanuel \u001b[0m\n", + "\u001b[32mNassar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEscola de Museologia da \u001b[0m\n", + "\u001b[32mUniRio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Universidade_Federal_do_Estado_do_Rio_de_Janeiro \"Universidade Federal do Estado do Rio de Janeiro\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFeira do Livro de Porto Alegre\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFeira_do_Livro_de_Porto_Alegre\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Feira \u001b[0m\n", + "\u001b[32mdo Livro de Porto Alegre \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernando Birri\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fernando_Birri \"Fernando Birri\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGrupo Corpo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Grupo_Corpo \"Grupo Corpo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHenry \u001b[0m\n", + "\u001b[32mThorau\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHenry_Thorau\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Henry Thorau \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIntrépida \u001b[0m\n", + "\u001b[32mTrupe\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIntr\u001b[0m\u001b[32m%C3%A9pida_Trupe&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Intrépida Trupe \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJohannes Odenthal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJohannes_Odenthal_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Johannes Odenthal \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Mindlin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Mindlin \"José Mindlin\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosué de \u001b[0m\n", + "\u001b[32mCastro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Josu%C3%A9_de_Castro \"Josué de Castro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJúlio Bressane\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/J%C3%BAlio_Bressane \"Júlio \u001b[0m\n", + "\u001b[32mBressane\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLaura Cardoso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Laura_Cardoso \"Laura Cardoso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLauro César \u001b[0m\n", + "\u001b[32mMuniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLauro_C\u001b[0m\u001b[32m%C3%A9sar_Muniz&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lauro César Muniz \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLygia Martins Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLygia_Martins_Costa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lygia Martins Costa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Phelipe de Carvalho Castro \u001b[0m\n", + "\u001b[32mAndrés\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Phelipe_de_Carvalho_Castro_Andr\u001b[0m\u001b[32m%C3%A9s&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Phelipe de \u001b[0m\n", + "\u001b[32mCarvalho Castro Andrés \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário Cravo Neto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_Cravo_Neto \"Mário Cravo \u001b[0m\n", + "\u001b[32mNeto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário de Andrade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_de_Andrade \"Mário de Andrade\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário \u001b[0m\n", + "\u001b[32mPedrosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_Pedrosa \"Mário Pedrosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMestre \u001b[0m\n", + "\u001b[32mEugênio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMestre_Eug\u001b[0m\u001b[32m%C3%AAnio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mestre Eugênio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMestre Verequete\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAugusto_Gomes_Rodrigues\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Augusto Gomes Rodrigues \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMinisterio de Educación, Cultura y \u001b[0m\n", + "\u001b[32mDeporte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ministry_of_Education,_Culture_and_Sport_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mSpain\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Ministry of Education, Culture and Sport \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mSpain\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMoacir Santos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Moacir_Santos \"Moacir Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMAX\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMuseu_de_Arqueologia_de_Xing\u001b[0m\u001b[32m%C3%B3&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Museu de Arqueologia de Xingó \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo César Saraceni\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_C%C3%A9sar_Saraceni \"Paulo César Saraceni\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPompeu\u001b[0m\n", + "\u001b[32mChristovam de Pina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPompeu_Christovam_de_Pina\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Pompeu Christovam de Pina \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRacionais MC\\'s\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Racionais_MC%27s \"Racionais MC\\'s\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRay-Güde \u001b[0m\n", + "\u001b[32mMertin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRay\u001b[0m\u001b[32m-G%C3%BCde_Mertin&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ray-Güde Mertin \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mRodrigo Melo Franco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rodrigo_Melo_Franco \"Rodrigo Melo Franco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSábato \u001b[0m\n", + "\u001b[32mMagaldi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A1bato_Magaldi \"Sábato Magaldi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSantos Dumont\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Santos_Dumont \"Santos Dumont\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSivuca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Sivuca \"Sivuca\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTânia Andrade \u001b[0m\n", + "\u001b[32mLima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mT\u001b[0m\u001b[32m%C3%A2nia_Andrade_Lima&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Tânia Andrade Lima \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeodoro Freire\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTeodoro_Freire\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Teodoro Freire \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTomie Ohtake\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tomie_Ohtake \"Tomie Ohtake\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVladimir \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVladimir_Carvalho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vladimir Carvalho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m|\\n| 2007 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbdias Nascimento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Abdias_Nascimento \"Abdias Nascimento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mÁlvaro Siza \u001b[0m\n", + "\u001b[32mVieira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/%C3%81lvaro_Siza_Vieira \"Álvaro Siza Vieira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Carlos \u001b[0m\n", + "\u001b[32mJobim\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Carlos_Jobim \"Antônio Carlos Jobim\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAssociação Cultural \u001b[0m\n", + "\u001b[32mCachuera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Cultural_Cachuera&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação Cultural \u001b[0m\n", + "\u001b[32mCachuera \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBanda Cabaçal dos Irmãos \u001b[0m\n", + "\u001b[32mAniceto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBanda_Caba\u001b[0m\u001b[32m%C3%A7al_dos_Irm%C3%A3os_Aniceto&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Banda Cabaçal dos \u001b[0m\n", + "\u001b[32mIrmãos Aniceto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBárbara \u001b[0m\n", + "\u001b[32mHeliodora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHeliodora_Carneiro_de_Mendon\u001b[0m\u001b[32m%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Heliodora Carneiro de \u001b[0m\n", + "\u001b[32mMendonça \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCacique Raoni\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Raoni_Metuktire \"Raoni Metuktire\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCartola\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cartola \"Cartola\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCeline Imbert\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCeline_Imbert\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Celine Imbert \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCildo Meireles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cildo_Meireles \"Cildo Meireles\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCastelo \u001b[0m\n", + "\u001b[32mRá-Tim-Bum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Castelo_R%C3%A1-Tim-Bum \"Castelo Rá-Tim-Bum\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClaude \u001b[0m\n", + "\u001b[32mLévi-Strauss\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Claude_L%C3%A9vi-Strauss \"Claude Lévi-Strauss\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClube do Choro de \u001b[0m\n", + "\u001b[32mBrasília\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mClube_do_Choro_de_Bras\u001b[0m\u001b[32m%C3%ADlia&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Clube do Choro de Brasília \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDodô e Osmar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDod\u001b[0m\u001b[32m%C3%B4_e_Osmar&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Dodô e Osmar \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEscola de Circo \u001b[0m\n", + "\u001b[32mPicolino\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEscola_Picolino_de_Artes_do_Circo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Escola Picolino de Artes do \u001b[0m\n", + "\u001b[32mCirco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGlauber Rocha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Glauber_Rocha \"Glauber Rocha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrande \u001b[0m\n", + "\u001b[32mOtelo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Grande_Otelo \"Grande Otelo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrupo Nós do \u001b[0m\n", + "\u001b[32mMorro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_N\u001b[0m\u001b[32m%C3%B3s_do_Morro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Grupo Nós do Morro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermilo Borba Filho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHermilo_Borba_Filho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hermilo Borba Filho\u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLina Bo Bardi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lina_Bo_Bardi \"Lina Bo Bardi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLia \u001b[0m\n", + "\u001b[32mRobatto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLia_Robatto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lia Robatto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz \u001b[0m\n", + "\u001b[32mGonzaga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luiz_Gonzaga \"Luiz Gonzaga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Otavio Souza \u001b[0m\n", + "\u001b[32mSantos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Otavio_Souza_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Otavio Souza Santos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Mott\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luiz_Mott \"Luiz Mott\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Aparecido de \u001b[0m\n", + "\u001b[32mOliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Aparecido_de_Oliveira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Aparecido de Oliveira \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJean-Claude Bernardet\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJean\u001b[0m\u001b[32m-Claude_Bernardet&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Jean-Claude Bernardet \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge Benjor\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Benjor \"Jorge Benjor\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJudith \u001b[0m\n", + "\u001b[32mMalina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Judith_Malina \"Judith Malina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mKanuá \u001b[0m\n", + "\u001b[32mKamayurá\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mKanu\u001b[0m\u001b[32m%C3%A1_Kamayur%C3%A1&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Kanuá Kamayurá \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcelo Grassmann\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marcelo_Grassmann \"Marcelo Grassmann\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMoniz \u001b[0m\n", + "\u001b[32mBandeira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Moniz_Bandeira \"Moniz Bandeira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu Paraense Emílio \u001b[0m\n", + "\u001b[32mGoeldi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Museu_Paraense_Em%C3%ADlio_Goeldi \"Museu Paraense Emílio Goeldi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrides \u001b[0m\n", + "\u001b[32mFontela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Orides_de_Lourdes_Teixeira_Fontela \"Orides de Lourdes Teixeira Fontela\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOscar \u001b[0m\n", + "\u001b[32mNiemeyer\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Oscar_Niemeyer \"Oscar Niemeyer\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRonaldo \u001b[0m\n", + "\u001b[32mFraga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRonaldo_Fraga\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ronaldo Fraga \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSelma do \u001b[0m\n", + "\u001b[32mCoco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSelma_do_Coco\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Selma do Coco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio \u001b[0m\n", + "\u001b[32mBritto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Britto_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mactor\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Sérgio Britto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mactor\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSolano Trindade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Solano_Trindade \u001b[0m\n", + "\u001b[32m\"Solano Trindade\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTônia Carrero\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/T%C3%B4nia_Carrero \"Tônia Carrero\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTostão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tost%C3%A3o \u001b[0m\n", + "\u001b[32m\"Tostão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVânia Toledo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mV\u001b[0m\u001b[32m%C3%A2nia_Toledo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vânia Toledo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter Smetak\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Walter_Smetak \"Walter Smetak\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2008 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAilton Krenak\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ailton_Krenak\u001b[0m\n", + "\u001b[32m\"Ailton Krenak\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAltemar Dutra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAltemar_Dutra\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Altemar Dutra \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAnselmo Duarte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Anselmo_Duarte \"Anselmo Duarte\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAthos \u001b[0m\n", + "\u001b[32mBulcão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Athos_Bulc%C3%A3o \"Athos Bulcão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBenedito Ruy \u001b[0m\n", + "\u001b[32mBarbosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBenedito_Ruy_Barbosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Benedito Ruy Barbosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBule-Bule\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBule\u001b[0m\u001b[32m-Bule&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Bule-Bule \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCarlos Lyra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Lyra \"Carlos Lyra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClaudia Andujar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Claudia_Andujar \"Claudia Andujar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDulcina de Moraes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dulcina_de_Moraes \"Dulcina de Moraes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdu Lobo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Edu_Lobo \"Edu Lobo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEfigênia Ramos Rolim\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEfig\u001b[0m\u001b[32m%C3%AAnia_Ramos_Rolim&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Efigênia Ramos Rolim \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEva Todor\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eva_Todor \"Eva Todor\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGoiandira do \u001b[0m\n", + "\u001b[32mCouto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGoiandira_do_Couto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Goiandira do Couto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGuimarães Rosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Guimar%C3%A3es_Rosa \"Guimarães Rosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHans-Joachim \u001b[0m\n", + "\u001b[32mKoellreutter\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Hans-Joachim_Koellreutter \"Hans-Joachim Koellreutter\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Candido \u001b[0m\n", + "\u001b[32mPortinari\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Candido_Portinari \"João Candido Portinari\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJohnny Alf\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Johnny_Alf \"Johnny \u001b[0m\n", + "\u001b[32mAlf\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeonardo Villar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Leonardo_Villar \"Leonardo Villar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria \u001b[0m\n", + "\u001b[32mBonomi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Bonomi\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Bonomi \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMarlene\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarlene_\u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marlene \u001b[0m\u001b[32m(\u001b[0m\u001b[32msinger\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32mMercedes Sosa * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Hatoum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Hatoum \"Milton Hatoum\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson \u001b[0m\n", + "\u001b[32mTriunfo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNelson_Triunfo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Nelson Triunfo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMarcantônio Vilaça\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcant\u001b[0m\u001b[32m%C3%B4nio_Vila%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcantônio Vilaça \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOtávio Afonso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOt\u001b[0m\u001b[32m%C3%A1vio_Afonso&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Otávio \u001b[0m\n", + "\u001b[32mAfonso \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrlando Miranda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOrlando_Miranda\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Orlando Miranda \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Emílio Sales Gomes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Em%C3%ADlio_Sales_Gomes \"Paulo \u001b[0m\n", + "\u001b[32mEmílio Sales Gomes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Moura\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Moura \"Paulo Moura\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPixinguinha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pixinguinha \u001b[0m\n", + "\u001b[32m\"Pixinguinha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Corrêa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRoberto_Corr\u001b[0m\u001b[32m%C3%AAa&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Roberto Corrêa \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuy Guerra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ruy_Guerra \"Ruy Guerra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio \u001b[0m\n", + "\u001b[32mRicardo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Ricardo_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mdirector\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Sérgio Ricardo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mdirector\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTatiana \u001b[0m\n", + "\u001b[32mBelinky\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tatiana_Belinky \"Tatiana Belinky\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeresa \u001b[0m\n", + "\u001b[32mAguiar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTeresa_Aguiar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Teresa Aguiar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVicente \u001b[0m\n", + "\u001b[32mSalles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVicente_Salles\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vicente Salles \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZabé da\u001b[0m\n", + "\u001b[32mLoca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mZab\u001b[0m\u001b[32m%C3%A9_da_Loca&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Zabé da Loca \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mApiwtxa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Ashaninka_do_Rio_Am%C3%B4nia&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação \u001b[0m\n", + "\u001b[32mAshaninka do Rio Amônia \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mABGLT\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Associa%C3%A7%C3%A3o_Brasileira_de_Gays,_L%C3%A9sbicas,_Bissexuais,_Travestis,_Transexuais_e_Interse\u001b[0m\n", + "\u001b[32mxos \"Associação Brasileira de Gays, Lésbicas, Bissexuais, Travestis, Transexuais e Intersexos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mABI\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Brasileira_de_Imprensa&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação Brasileira \u001b[0m\n", + "\u001b[32mde Imprensa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAssociação Comunidade \u001b[0m\n", + "\u001b[32mYuba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Comunidade_Yuba&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação Comunidade Yuba \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCentro Cultural \u001b[0m\n", + "\u001b[32mPiollin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCentro_Cultural_Piollin\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Centro Cultural Piollin \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mColetivo Nacional de Cultura do MST\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Movimento_dos_Trabalhadores_Rurais_Sem_Terra \"Movimento dos\u001b[0m\n", + "\u001b[32mTrabalhadores Rurais Sem Terra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGiramundo Teatro de \u001b[0m\n", + "\u001b[32mBonecos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGiramundo_Teatro_de_Bonecos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Giramundo Teatro de Bonecos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mInstituto Baccarelli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mInstituto_Baccarelli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Instituto Baccarelli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMestres da \u001b[0m\n", + "\u001b[32mGuitarrada\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMestres_da_Guitarrada\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mestres da Guitarrada \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMúsica no Museu\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mM\u001b[0m\u001b[32m%C3%BAsica_no_Museu&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Música no Museu \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mQuasar Cia de Dança\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mQuasar_Cia_de_Dan\u001b[0m\u001b[32m%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Quasar Cia de Dança \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2009 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAderbal Freire Filho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Aderbal_Freire_Filho \u001b[0m\n", + "\u001b[32m\"Aderbal Freire Filho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Afoxé \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFilhos de Gandhy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFilhos_de_Gandhy\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Filhos de Gandhy \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlexandre \u001b[0m\n", + "\u001b[32mWollner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAlexandre_Wollner\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Alexandre Wollner \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mÂngela Maria\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/%C3%82ngela_Maria \"Ângela Maria\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAtaulfo Alves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ataulfo_Alves \"Ataulfo Alves\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mBalé Popular do Recife\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBal\u001b[0m\u001b[32m%C3%A9_Popular_do_Recife&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Balé Popular do \u001b[0m\n", + "\u001b[32mRecife \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeatriz Sarlo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Beatriz_Sarlo \"Beatriz Sarlo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBispo do \u001b[0m\n", + "\u001b[32mRosário\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBispo_do_Ros\u001b[0m\u001b[32m%C3%A1rio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Bispo do Rosário \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBoaventura de Sousa Santos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Boaventura_de_Sousa_Santos \"Boaventura de Sousa Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos \u001b[0m\n", + "\u001b[32mManga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Manga \"Carlos Manga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarmen Miranda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carmen_Miranda \"Carmen Miranda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChico \u001b[0m\n", + "\u001b[32mAnysio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chico_Anysio \"Chico Anysio\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDeborah Colker\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Deborah_Colker \"Deborah Colker\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDavi \u001b[0m\n", + "\u001b[32mKopenawa Yanomami\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mElifas \u001b[0m\n", + "\u001b[32mAndreato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mElifas_Andreato\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Elifas Andreato \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mFernanda Abreu\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fernanda_Abreu \"Fernanda Abreu\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernando \u001b[0m\n", + "\u001b[32mPeixoto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFernando_Peixoto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Fernando Peixoto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32mFundação \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIberê Camargo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Iber%C3%AA_Camargo \"Iberê Camargo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGerson King Combo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gerson_King_Combo \u001b[0m\n", + "\u001b[32m\"Gerson King Combo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGilvan Samico\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gilvan_Samico \"Gilvan Samico\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHeleny \u001b[0m\n", + "\u001b[32mGuariba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHeleny_Guariba\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Heleny Guariba \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mInstituto Olga Kos de Inclusão \u001b[0m\n", + "\u001b[32mCultural\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mInstituto_Olga_Kos_de_Inclus\u001b[0m\u001b[32m%C3%A3o_Cultural&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Instituto Olga \u001b[0m\n", + "\u001b[32mKos de Inclusão Cultural \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIvaldo Bertazzo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ivaldo_Bertazzo \"Ivaldo Bertazzo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJosé Eduardo Agualusa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Eduardo_Agualusa \"José Eduardo Agualusa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Miguel \u001b[0m\n", + "\u001b[32mWisnik\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Miguel_Wisnik \"José Miguel Wisnik\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLaerte Coutinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Laerte_Coutinho \"Laerte \u001b[0m\n", + "\u001b[32mCoutinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Olimecha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Olimecha\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Olimecha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLydia Hortélio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLydia_Hort\u001b[0m\u001b[32m%C3%A9lio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lydia Hortélio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMamulengo Só-Riso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMamulengo_S\u001b[0m\u001b[32m%C3%B3-Riso&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mamulengo\u001b[0m\n", + "\u001b[32mSó-Riso \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mManoel de Oliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Manoel_de_Oliveira \"Manoel de Oliveira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria \u001b[0m\n", + "\u001b[32mLúcia Godoy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_L\u001b[0m\u001b[32m%C3%BAcia_Godoy&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Lúcia Godoy \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaracatu Estrela de Ouro de \u001b[0m\n", + "\u001b[32mAliança\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaracatu_Estrela_de_Ouro_de_Alian\u001b[0m\u001b[32m%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maracatu Estrela de \u001b[0m\n", + "\u001b[32mOuro de Aliança \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMestre \u001b[0m\n", + "\u001b[32mVitalino\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMestre_Vitalino\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mestre Vitalino \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMia\u001b[0m\n", + "\u001b[32mCouto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mia_Couto \"Mia Couto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMiguel Rio Branco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Miguel_Rio_Branco \"Miguel Rio Branco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mNathalia Timberg\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nathalia_Timberg \"Nathalia Timberg\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNey Matogrosso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ney_Matogrosso \"Ney \u001b[0m\n", + "\u001b[32mMatogrosso\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNoca da Portela\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNoca_da_Portela\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Noca da Portela \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOs Gêmeos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Os_G%C3%AAmeos \"Os Gêmeos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPatativa do \u001b[0m\n", + "\u001b[32mAssaré\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Patativa_do_Assar%C3%A9 \"Patativa do Assaré\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Vanzolini\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Vanzolini \"Paulo \u001b[0m\n", + "\u001b[32mVanzolini\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Bruscky\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPaulo_Bruscky\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Paulo Bruscky \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRaul Seixas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Raul_Seixas \"Raul Seixas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Burle Marx\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Burle_Marx \u001b[0m\n", + "\u001b[32m\"Roberto Burle Marx\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio Rodrigues\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Rodrigues_\u001b[0m\u001b[32m(\u001b[0m\u001b[32marchitect\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Sérgio Rodrigues \u001b[0m\u001b[32m(\u001b[0m\u001b[32marchitect\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeatro Vila Velha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTeatro_Vila_Velha\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Teatro Vila Velha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * ONG \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVideo nas Aldeias\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVideo_nas_Aldeias\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Video nas Aldeias \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalmor Chagas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Walmor_Chagas \"Walmor Chagas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZeca \u001b[0m\n", + "\u001b[32mPagodinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Zeca_Pagodinho \"Zeca Pagodinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2010 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAndrea \u001b[0m\n", + "\u001b[32mTonacci\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAndrea_Tonacci\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Andrea Tonacci \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAnna \u001b[0m\n", + "\u001b[32mBella Geiger\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Anna_Bella_Geiger \"Anna Bella Geiger\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArmando Nogueira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Armando_Nogueira \"Armando \u001b[0m\n", + "\u001b[32mNogueira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAzelene Kaingang\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAzelene_Kaingang\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Azelene Kaingang \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCândido Mendes de \u001b[0m\n", + "\u001b[32mAlmeida\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mC\u001b[0m\u001b[32m%C3%A2ndido_Mendes_de_Almeida_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mwriter\u001b[0m\u001b[32m)\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Cândido Mendes de \u001b[0m\n", + "\u001b[32mAlmeida \u001b[0m\u001b[32m(\u001b[0m\u001b[32mwriter\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Drummond de Andrade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Drummond_de_Andrade \"Carlos \u001b[0m\n", + "\u001b[32mDrummond de Andrade\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlota Albuquerque\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCarlota_Albuquerque\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Carlota Albuquerque \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCazuza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cazuza \"Cazuza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCesária \u001b[0m\n", + "\u001b[32mÉvora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ces%C3%A1ria_%C3%89vora \"Cesária Évora\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCompanhia de Danças Folclóricas \u001b[0m\n", + "\u001b[32mAruanda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCompanhia_de_Dan\u001b[0m\u001b[32m%C3%A7as_Folcl%C3%B3ricas_Aruanda&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Companhia de \u001b[0m\n", + "\u001b[32mDanças Folclóricas Aruanda \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDemônios da Garoa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dem%C3%B4nios_da_Garoa \"Demônios da\u001b[0m\n", + "\u001b[32mGaroa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDenise Stoklos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDenise_Stoklos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Denise Stoklos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mÉpoca de Ouro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=%C3%89poca_de_Ouro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Época de Ouro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEscuela Internacional de Cine y Televisión\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Escuela_Internacional_de_Cine_y_Televisi%C3%B3n \u001b[0m\n", + "\u001b[32m\"Escuela Internacional de Cine y Televisión\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGal Costa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gal_Costa \"Gal Costa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGlória \u001b[0m\n", + "\u001b[32mPires\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Gl%C3%B3ria_Pires \"Glória Pires\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermeto Pascoal\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Hermeto_Pascoal \"Hermeto Pascoal\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mIlo Krugli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIlo_Krugli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ilo Krugli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsmael \u001b[0m\n", + "\u001b[32mIvo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIsmael_Ivo\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ismael Ivo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mÍtalo \u001b[0m\n", + "\u001b[32mRossi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=%C3%8Dtalo_Rossi&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ítalo Rossi \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJaguar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jaguar_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mcartoonist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Jaguar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mcartoonist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Cabral de Melo \u001b[0m\n", + "\u001b[32mNeto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Cabral_de_Melo_Neto \"João Cabral de Melo Neto\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Carlos de Souza \u001b[0m\n", + "\u001b[32mGomes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_Carlos_de_Souza_Gomes&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João Carlos de Souza Gomes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoaquim Nabuco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Joaquim_Nabuco \"Joaquim Nabuco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoênia \u001b[0m\n", + "\u001b[32mWapixana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%AAnia_Wapixana \"Joênia Wapixana\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLavadeiras de \u001b[0m\n", + "\u001b[32mAlmenara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLavadeiras_de_Almenara\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lavadeiras de Almenara \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeon Cakoff\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLeon_Cakoff\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Leon Cakoff \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeonardo Boff\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Leonardo_Boff \"Leonardo Boff\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLira \u001b[0m\n", + "\u001b[32mCeciliana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLira_Ceciliana\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lira Ceciliana \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMaracatu Estrela Brilhante de \u001b[0m\n", + "\u001b[32mIgarassú\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaracatu_Estrela_Brilhante_de_Igarass\u001b[0m\u001b[32m%C3%BA&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maracatu Estrela \u001b[0m\n", + "\u001b[32mBrilhante de Igarassú \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário Gruber \u001b[0m\n", + "\u001b[32mCorreia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mM\u001b[0m\u001b[32m%C3%A1rio_Gruber_Correia&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mário Gruber Correia \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaureen Bisilliat\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maureen_Bisilliat \"Maureen Bisilliat\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaurício \u001b[0m\n", + "\u001b[32mSegall\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaur\u001b[0m\u001b[32m%C3%ADcio_Segall&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maurício Segall \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMestre Alberto da Paz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMestre_Alberto_da_Paz\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mestre Alberto da Paz \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMoacir Werneck de \u001b[0m\n", + "\u001b[32mCastro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMoacir_Werneck_de_Castro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Moacir Werneck de Castro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson Rodrigues\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nelson_Rodrigues \"Nelson Rodrigues\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPedro \u001b[0m\n", + "\u001b[32mCasaldáliga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pedro_Casald%C3%A1liga \"Pedro Casaldáliga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRogério \u001b[0m\n", + "\u001b[32mDuarte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRog\u001b[0m\u001b[32m%C3%A9rio_Duarte&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rogério Duarte \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mTonico\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tonico_%26_Tinoco \"Tonico & Tinoco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVinicius de Moraes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vinicius_de_Moraes \"Vinicius de \u001b[0m\n", + "\u001b[32mMoraes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2011 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAcademia Brasileira de Letras\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Academia_Brasileira_de_Letras \"Academia Brasileira de\u001b[0m\n", + "\u001b[32mLetras\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAdriana Varejão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Adriana_Varej%C3%A3o \"Adriana Varejão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAfonso \u001b[0m\n", + "\u001b[32mBorges\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAfonso_Borges\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Afonso Borges \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna \u001b[0m\n", + "\u001b[32mMontenegro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ana_Montenegro \"Ana Montenegro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio \u001b[0m\n", + "\u001b[32mNóbrega\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAnt\u001b[0m\u001b[32m%C3%B4nio_N%C3%B3brega&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antônio Nóbrega \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Pitanga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Pitanga \"Antônio Pitanga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mApolônio \u001b[0m\n", + "\u001b[32mMelônio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mApol\u001b[0m\u001b[32m%C3%B4nio_Mel%C3%B4nio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Apolônio Melônio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAssociação Capão \u001b[0m\n", + "\u001b[32mCidadão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_Cap%C3%A3o_Cidad%C3%A3o&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação Capão \u001b[0m\n", + "\u001b[32mCidadão \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAssociação dos Artesãos de Santana do \u001b[0m\n", + "\u001b[32mAraçuaí\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_dos_Artes%C3%A3os_de_Santana_do_Ara%C3%A7ua%C3%AD&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mred\u001b[0m\n", + "\u001b[32mlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Associação dos Artesãos de Santana do Araçuaí \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeth \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Beth_Carvalho \"Beth Carvalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCampos de Carvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Campos_de_Carvalho \"Campos de \u001b[0m\n", + "\u001b[32mCarvalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCapiba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCapiba\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Capiba \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCasa de \u001b[0m\n", + "\u001b[32mProdutos Indígenas Wariró\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCasa_de_Produtos_Ind\u001b[0m\u001b[32m%C3%ADgenas_Warir%C3%B3&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Casa de Produtos Indígenas Wariró \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCentral Única das \u001b[0m\n", + "\u001b[32mFavelas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Central_%C3%9Anica_das_Favelas \"Central Única das Favelas\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClarice \u001b[0m\n", + "\u001b[32mLispector\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Clarice_Lispector \"Clarice Lispector\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mClaudett de Jesus \u001b[0m\n", + "\u001b[32mRibeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Claudett_de_Jesus_Ribeiro \"Claudett de Jesus Ribeiro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDançando para não \u001b[0m\n", + "\u001b[32mdançar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDan\u001b[0m\u001b[32m%C3%A7ando_para_n%C3%A3o_dan%C3%A7ar&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Dançando para não dançar\u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDzi Croquettes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dzi_Croquettes \"Dzi Croquettes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEspedito \u001b[0m\n", + "\u001b[32mSeleiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEspedito_Seleiro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Espedito Seleiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mEvando dos Santos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEvando_dos_Santos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Evando dos Santos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFestival de Dança de \u001b[0m\n", + "\u001b[32mJoinville\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFestival_de_Dan\u001b[0m\u001b[32m%C3%A7a_de_Joinville&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Festival de Dança de \u001b[0m\n", + "\u001b[32mJoinville \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFestival Santista de \u001b[0m\n", + "\u001b[32mTeatro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFestival_Santista_de_Teatro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Festival Santista de Teatro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGlênio Bianchetti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGl\u001b[0m\u001b[32m%C3%AAnio_Bianchetti&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Glênio \u001b[0m\n", + "\u001b[32mBianchetti \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrupo Galpão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_Galp\u001b[0m\u001b[32m%C3%A3o&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Grupo Galpão \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGustavo Dahl\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGustavo_Dahl\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Gustavo Dahl \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHéctor Babenco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/H%C3%A9ctor_Babenco \"Héctor Babenco\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHelena \u001b[0m\n", + "\u001b[32mKolody\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Helena_Kolody \"Helena Kolody\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHerbert de \u001b[0m\n", + "\u001b[32mSousa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHerbert_de_Sousa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Herbert de Sousa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mÍtala Nandi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/%C3%8Dtala_Nandi \"Ítala Nandi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJair Rodrigues\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jair_Rodrigues \"Jair Rodrigues\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJoão do Vale\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_do_Vale&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João do Vale \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mJoão das Neves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJo\u001b[0m\u001b[32m%C3%A3o_das_Neves&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"João das Neves \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Renato Pécora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Renato_P%C3%A9cora&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Renato\u001b[0m\n", + "\u001b[32mPécora \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLeila Diniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Leila_Diniz \"Leila Diniz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLélia \u001b[0m\n", + "\u001b[32mAbramo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/L%C3%A9lia_Abramo \"Lélia Abramo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Melodia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Luiz_Melodia \"Luiz Melodia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLygia \u001b[0m\n", + "\u001b[32mBojunga Nunes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Lygia_Bojunga_Nunes \"Lygia Bojunga Nunes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaracatu Estrela de \u001b[0m\n", + "\u001b[32mTracunhaém\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaracatu_Estrela_de_Tracunha\u001b[0m\u001b[32m%C3%A9m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maracatu Estrela de \u001b[0m\n", + "\u001b[32mTracunhaém \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário Lago\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_Lago \"Mário Lago\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMemorial Jesuíta \u001b[0m\n", + "\u001b[32mUnisinos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Unisinos \"Unisinos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson Cavaquinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nelson_Cavaquinho \"Nelson Cavaquinho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo \u001b[0m\n", + "\u001b[32mFreire\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Freire \"Paulo Freire\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Gracindo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Gracindo \"Paulo Gracindo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mQuinteto \u001b[0m\n", + "\u001b[32mViolado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mQuinteto_Violado\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Quinteto Violado \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSamba de Cumbuca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSamba_de_Cumbuca\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Samba de Cumbuca \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTeatro Tablado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTeatro_Tablado\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Teatro Tablado \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTereza Costa Rêgo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tereza_Costa_R%C3%AAgo \"Tereza Costa Rêgo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVik Muniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vik_Muniz \u001b[0m\n", + "\u001b[32m\"Vik Muniz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mValdemar de Oliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mValdemar_de_Oliveira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Valdemar de \u001b[0m\n", + "\u001b[32mOliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mZuzu Angel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Zuzu_Angel \"Zuzu Angel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2012 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbelardo da \u001b[0m\n", + "\u001b[32mHora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAbelardo_da_Hora\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Abelardo da Hora \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAguinaldo Silva\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Aguinaldo_Silva \"Aguinaldo Silva\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlceu Valença\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alceu_Valen%C3%A7a \"Alceu \u001b[0m\n", + "\u001b[32mValença\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlmir Narayamoga Suruí\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAlmir_Narayamoga_Suru\u001b[0m\u001b[32m%C3%AD&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Almir \u001b[0m\n", + "\u001b[32mNarayamoga Suruí \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAmácio Mazzaropi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Am%C3%A1cio_Mazzaropi \"Amácio Mazzaropi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAnna Muylaert\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Anna_Muylaert \"Anna Muylaert\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Associação Carnavalesca Bloco Afro Olodum * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAutran \u001b[0m\n", + "\u001b[32mDourado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Autran_Dourado \"Autran Dourado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBreno Silveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Breno_Silveira \"Breno Silveira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCarlos Alberto Cerqueira Lemos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCarlos_Alberto_Cerqueira_Lemos\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Carlos \u001b[0m\n", + "\u001b[32mAlberto Cerqueira Lemos \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCleodes Maria Piazza Julio \u001b[0m\n", + "\u001b[32mRibeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCleodes_Maria_Piazza_Julio_Ribeiro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Cleodes Maria Piazza Julio \u001b[0m\n", + "\u001b[32mRibeiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDener Pamplona de \u001b[0m\n", + "\u001b[32mAbreu\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mDener_Pamplona_de_Abreu\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Dener Pamplona de Abreu \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mElba Ramalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Elba_Ramalho \"Elba Ramalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFafá de Belém\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Faf%C3%A1_de_Bel%C3%A9m \u001b[0m\n", + "\u001b[32m\"Fafá de Belém\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFelipe Schaedler\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFelipe_Schaedler\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Felipe Schaedler \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHebe Camargo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Hebe_Camargo \"Hebe Camargo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHerivelto \u001b[0m\n", + "\u001b[32mMartins\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Herivelto_Martins \"Herivelto Martins\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHumberto Piva Campana and Fernando Piva \u001b[0m\n", + "\u001b[32mCampana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Campana_brothers \"Campana brothers\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEscola de Dança e Integração Social Para Criança e \u001b[0m\n", + "\u001b[32mAdolescente\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEscola_de_Dan\u001b[0m\u001b[32m%C3%A7a_e_Integra%C3%A7%C3%A3o_Social_Para_Crian%C3%A7a_e_Adolescente\u001b[0m\n", + "\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Escola de Dança e Integração Social Para Criança e Adolescente \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32mFundação Municipal de Artes de Montenegro * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIfigênia Rosa de \u001b[0m\n", + "\u001b[32mOliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIfig\u001b[0m\u001b[32m%C3%AAnia_Rosa_de_Oliveira&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ifigênia Rosa de Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsay Weinfeld\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIsay_Weinfeld\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Isay Weinfeld \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsmail Xavier\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIsmail_Xavier\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ismail Xavier \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge Amado\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Amado \"Jorge Amado\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Sarney\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Sarney \"José \u001b[0m\n", + "\u001b[32mSarney\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarieta Severo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marieta_Severo \"Marieta Severo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMário Schenberg\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/M%C3%A1rio_Schenberg\u001b[0m\n", + "\u001b[32m\"Mário Schenberg\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMartha Medeiros\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Martha_Medeiros \"Martha Medeiros\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMiguel \u001b[0m\n", + "\u001b[32mChikaoka\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMiguel_Chikaoka\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Miguel Chikaoka \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMilton Guran\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMilton_Guran\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Milton Guran \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMovimento Gay de Minas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMovimento_Gay_de_Minas\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Movimento Gay de Minas \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu de Valores do Banco \u001b[0m\n", + "\u001b[32mCentral\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMuseu_de_Valores_do_Banco_Central\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Museu de Valores do Banco \u001b[0m\n", + "\u001b[32mCentral \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu Histórico Nacional\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/National_Historical_Museum_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"National \u001b[0m\n", + "\u001b[32mHistorical Museum \u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrquestra Popular da Bomba do \u001b[0m\n", + "\u001b[32mHemetério\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBomba_do_Hemet\u001b[0m\u001b[32m%C3%A9rio&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Bomba do Hemetério \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrlando Orfei\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOrlando_Orfei\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Orlando Orfei \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Goulart\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Goulart \"Paulo Goulart\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPlínio Marcos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Pl%C3%ADnio_Marcos \u001b[0m\n", + "\u001b[32m\"Plínio Marcos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRaquel Trindade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Raquel_Trindade \"Raquel Trindade\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRegina \u001b[0m\n", + "\u001b[32mCasé\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Regina_Cas%C3%A9 \"Regina Casé\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRose Marie Muraro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rose_Marie_Muraro \"Rose Marie Muraro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSenor Abravanel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Silvio_Santos \"Silvio Santos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2013 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio \u001b[0m\n", + "\u001b[32mAbujamra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Abujamra \"Antônio Abujamra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio Fagundes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ant%C3%B4nio_Fagundes \u001b[0m\n", + "\u001b[32m\"Antônio Fagundes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntunes Filho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAntunes_Filho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antunes Filho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAssociação de Sambadores e Sambadeiras do Estado da \u001b[0m\n", + "\u001b[32mBahia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAssocia\u001b[0m\u001b[32m%C3%A7%C3%A3o_de_Sambadores_e_Sambadeiras_do_Estado_da_Bahia&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\n", + "\u001b[32m1\u001b[0m\u001b[32m \"Associação de Sambadores e Sambadeiras do Estado da Bahia \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBárbara \u001b[0m\n", + "\u001b[32mPaz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/B%C3%A1rbara_Paz \"Bárbara Paz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Diegues\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Diegues \"Carlos Diegues\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDaniel \u001b[0m\n", + "\u001b[32mMunduruku\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Daniel_Munduruku \"Daniel Munduruku\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona Zica\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dona_Zica \"Dona Zica\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEleazar de \u001b[0m\n", + "\u001b[32mCarvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eleazar_de_Carvalho \"Eleazar de Carvalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mErasmo Carlos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Erasmo_Carlos \"Erasmo Carlos\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* Grupo de Dança \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPrimeiro Ato\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPrimeiro_Ato\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Primeiro Ato \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrupo Gay da Bahia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_Gay_da_Bahia\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Grupo Gay da Bahia \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHélio Cabral\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mH\u001b[0m\u001b[32m%C3%A9lio_Cabral&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hélio Cabral \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHenfil\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Henfil \"Henfil\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIlê \u001b[0m\n", + "\u001b[32mayê\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIl\u001b[0m\u001b[32m%C3%AA_ay%C3%AA&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ilê ayê \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIvan \u001b[0m\n", + "\u001b[32mLins\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ivan_Lins \"Ivan Lins\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLaerte Coutinho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Laerte \"Laerte\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLucy \u001b[0m\n", + "\u001b[32mBarreto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLucy_Barreto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Lucy Barreto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMaracambuco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaracambuco\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maracambuco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria \u001b[0m\n", + "\u001b[32mAdelaide Amaral\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_Adelaide_Amaral \"Maria Adelaide Amaral\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria Cândido\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maria_C%C3%A2ndido \u001b[0m\n", + "\u001b[32m\"Maria Cândido\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarlos Nobre\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marlos_Nobre \"Marlos Nobre\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaurice \u001b[0m\n", + "\u001b[32mCapovilla\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Maurice_Capovilla \"Maurice Capovilla\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMira \u001b[0m\n", + "\u001b[32mHaar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMira_Haar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Mira Haar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNaná \u001b[0m\n", + "\u001b[32mVasconcelos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nan%C3%A1_Vasconcelos \"Naná Vasconcelos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNilcemar \u001b[0m\n", + "\u001b[32mNogueira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNilcemar_Nogueira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Nilcemar Nogueira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPaulo Archias Mendes da Rocha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Archias_Mendes_da_Rocha \"Paulo Archias Mendes da Rocha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo \u001b[0m\n", + "\u001b[32mBorges\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Paulo_Borges \"Paulo Borges\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto \u001b[0m\n", + "\u001b[32mPires\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRoberto_Pires\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Roberto Pires \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRonaldo \u001b[0m\n", + "\u001b[32mCorreia de Brito\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRonaldo_Correia_de_Brito\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ronaldo Correia de Brito \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRosa Maria dos Santos \u001b[0m\n", + "\u001b[32mAlves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRosa_Maria_dos_Santos_Alves\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rosa Maria dos Santos Alves \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRubem Braga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rubem_Braga \"Rubem Braga\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio Mamberti\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Mamberti\u001b[0m\n", + "\u001b[32m\"Sérgio Mamberti\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSociedade Junina Bumba Meu Boi da \u001b[0m\n", + "\u001b[32mLiberdade\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSociedade_Junina_Bumba_Meu_Boi_da_Liberdade\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sociedade Junina \u001b[0m\n", + "\u001b[32mBumba Meu Boi da Liberdade \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTomie Ohtake\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Tomie_Ohtake \"Tomie Ohtake\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalda \u001b[0m\n", + "\u001b[32mMarques\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWalda_Marques\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Walda Marques \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter \u001b[0m\n", + "\u001b[32mPinto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mWalter_Pinto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Walter Pinto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2014 | * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAlex Atala\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alex_Atala \"Alex Atala\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlexandre Herchcovitch\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Alexandre_Herchcovitch \"Alexandre \u001b[0m\n", + "\u001b[32mHerchcovitch\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBernardo Paz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Bernardo_Paz \"Bernardo Paz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBruno e Marrone\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Bruno_e_Marrone \u001b[0m\n", + "\u001b[32m\"Bruno e Marrone\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCelso Frateschi\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Celso_Frateschi \"Celso Frateschi\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mChico de \u001b[0m\n", + "\u001b[32mAssis\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mChico_de_Assis\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Chico de Assis \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEliane \u001b[0m\n", + "\u001b[32mPotiguara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEliane_Potiguara\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Eliane Potiguara \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mHenricredo Coelho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHenricredo_Coelho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Henricredo Coelho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHermano Vianna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mHermano_Vianna\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Hermano Vianna \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJenner Augusto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJenner_Augusto\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jenner Augusto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Carlos Meirelles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJúlio \u001b[0m\n", + "\u001b[32mMedaglia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMano Brown\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mano_Brown \"Mano Brown\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarisa \u001b[0m\n", + "\u001b[32mMonte\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marisa_Monte \"Marisa Monte\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMatheus Nachtergaele\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Matheus_Nachtergaele \"Matheus \u001b[0m\n", + "\u001b[32mNachtergaele\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOgã Bangbala\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOg\u001b[0m\u001b[32m%C3%A3_Bangbala&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ogã Bangbala \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrlando Senna\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOrlando_Senna\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Orlando Senna \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOskar Metsavaht\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Oskar_Metsavaht \"Oskar Metsavaht\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPatrícia \u001b[0m\n", + "\u001b[32mPillar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Paulo Martins * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTião \u001b[0m\n", + "\u001b[32mOleiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTi\u001b[0m\u001b[32m%C3%A3o_Oleiro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Tião Oleiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVange \u001b[0m\n", + "\u001b[32mLeonel\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vange_Leonel \"Vange Leonel\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2015 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAdylson \u001b[0m\n", + "\u001b[32mGodoy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAdylson_Godoy\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Adylson Godoy \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAilton \u001b[0m\n", + "\u001b[32mKrenak\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ailton_Krenak \"Ailton Krenak\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAldyr Schlee\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Aldyr_Schlee \"Aldyr Schlee\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntônio \u001b[0m\n", + "\u001b[32mAraújo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAnt\u001b[0m\u001b[32m%C3%B4nio_Ara%C3%BAjo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antônio Araújo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArnaldo Antunes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Arnaldo_Antunes \"Arnaldo Antunes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAs Ceguinhas de Campina \u001b[0m\n", + "\u001b[32mGrande\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAs_Ceguinhas_de_Campina_Grande\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"As Ceguinhas de Campina Grande \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAugusto de Campos\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Augusto_de_Campos \"Augusto de Campos\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCasa de Cinema de \u001b[0m\n", + "\u001b[32mPorto Alegre\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCasa_de_Cinema_de_Porto_Alegre\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Casa de Cinema de Porto \u001b[0m\n", + "\u001b[32mAlegre \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCentro de Memória do \u001b[0m\n", + "\u001b[32mCirco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCentro_de_Mem\u001b[0m\u001b[32m%C3%B3ria_do_Circo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Centro de Memória do Circo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCesare La Rocca\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCesare_La_Rocca\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Cesare La Rocca \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mComissão Guarani \u001b[0m\n", + "\u001b[32mYvyrupa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mComiss\u001b[0m\u001b[32m%C3%A3o_Guarani_Yvyrupa&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Comissão Guarani Yvyrupa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDaniela Mercury\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Daniela_Mercury \"Daniela Mercury\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDavi Kopenawa \u001b[0m\n", + "\u001b[32mYanomami\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEva \u001b[0m\n", + "\u001b[32mSchul\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEva_Schul\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Eva Schul \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mHumberto \u001b[0m\n", + "\u001b[32mTeixeira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Humberto_Teixeira \"Humberto Teixeira\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mItalo \u001b[0m\n", + "\u001b[32mCampofiorito\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mItalo_Campofiorito\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Italo Campofiorito \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Mestre \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJoão Grande\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jo%C3%A3o_Grande \"João Grande\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé \u001b[0m\n", + "\u001b[32mMourão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Mour%C3%A3o&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Mourão \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mLuís Humberto\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLu\u001b[0m\u001b[32m%C3%ADs_Humberto&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luís Humberto \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* Mãe \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeth de Oxum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBeth_de_Oxum\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Beth de Oxum \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMarcelo Yuka\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marcelo_Yuka \"Marcelo Yuka\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNiède Guidon\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPaulo Herkenhoff\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPaulo_Herkenhoff\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Paulo Herkenhoff \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRolando Boldrin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rolando_Boldrin \"Rolando Boldrin\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRuy \u001b[0m\n", + "\u001b[32mCezar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRuy_Cezar\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ruy Cezar \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSociedade Musical \u001b[0m\n", + "\u001b[32mCurica\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCurica_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mband\u001b[0m\u001b[32m)\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Curica \u001b[0m\u001b[32m(\u001b[0m\u001b[32mband\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSônia \u001b[0m\n", + "\u001b[32mGuajajara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTribo de \u001b[0m\n", + "\u001b[32mAtuadores\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTribo_de_Atuadores\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Tribo de Atuadores \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUruhu Mehinako\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mUruhu_Mehinako\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Uruhu Mehinako \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVanisa Santiago\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVanisa_Santiago\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vanisa Santiago \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVera Tostes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mVera_Tostes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vera Tostes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWalter Carvalho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Walter_Carvalho \"Walter Carvalho\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2016 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbel \u001b[0m\n", + "\u001b[32mGomes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAbel_Gomes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Abel Gomes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAlcymar \u001b[0m\n", + "\u001b[32mMonteiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAlcymar_Monteiro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Alcymar Monteiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mAna Mae Barbosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAna_Mae_Barbosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ana Mae Barbosa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAndrucha Waddington\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Andrucha_Waddington \"Andrucha Waddington\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeatriz \u001b[0m\n", + "\u001b[32mMilhazes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Beatriz_Milhazes \"Beatriz Milhazes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlinhos de \u001b[0m\n", + "\u001b[32mJesus\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCarlinhos_de_Jesus\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Carlinhos de Jesus \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCarlos Alberto Serpa de Oliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCarlos_Alberto_Serpa_de_Oliveira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Carlos Alberto Serpa de Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Vereza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Vereza \"Carlos Vereza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mClementina de Jesus\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Clementina_de_Jesus \"Clementina de Jesus\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona Ivone Lara\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dona_Ivone_Lara \u001b[0m\n", + "\u001b[32m\"Dona Ivone Lara\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDonga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Donga_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Donga \u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFernando \u001b[0m\n", + "\u001b[32mMeirelles\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Fernando_Meirelles \"Fernando Meirelles\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFerreira Gullar\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ferreira_Gullar \"Ferreira \u001b[0m\n", + "\u001b[32mGullar\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFocus Cia. De Dança\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFocus_Cia\u001b[0m\u001b[32m._De_Dan%C3%A7a&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Focus Cia. De \u001b[0m\n", + "\u001b[32mDança \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFred Gelli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFred_Gelli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Fred Gelli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage\u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFundação Darcy \u001b[0m\n", + "\u001b[32mRibeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFunda\u001b[0m\u001b[32m%C3%A7%C3%A3o_Darcy_Ribeiro&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Fundação Darcy Ribeiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage \u001b[0m\n", + "\u001b[32mdoes not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGrupo Teatro da Laje\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGrupo_Teatro_da_Laje\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Grupo \u001b[0m\n", + "\u001b[32mTeatro da Laje \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mInstituto Ricardo Brennand\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ricardo_Brennand_Institute \"Ricardo \u001b[0m\n", + "\u001b[32mBrennand Institute\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsaurinha Garcia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIsaurinha_Garcia\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Isaurinha \u001b[0m\n", + "\u001b[32mGarcia \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIsmael Silva\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ismael_Silva_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Ismael Silva \u001b[0m\u001b[32m(\u001b[0m\u001b[32mmusician\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge \u001b[0m\n", + "\u001b[32mAragão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJovelina Pérola Negra\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jovelina_P%C3%A9rola_Negra \u001b[0m\n", + "\u001b[32m\"Jovelina Pérola Negra\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaracatu Feminino Coração \u001b[0m\n", + "\u001b[32mNazareno\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaracatu_Feminino_Cora\u001b[0m\u001b[32m%C3%A7%C3%A3o_Nazareno&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maracatu Feminino\u001b[0m\n", + "\u001b[32mCoração Nazareno \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcus \u001b[0m\n", + "\u001b[32mFaustini\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcus_Faustini\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcus Faustini \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMauro Mendonça\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu do \u001b[0m\n", + "\u001b[32mSamba\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mCentro_Cultural_Cartola\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Centro Cultural Cartola \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNeguinho da Beija-Flor\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNelson \u001b[0m\n", + "\u001b[32mSargento\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Nelson_Sargento \"Nelson Sargento\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNoel Rosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Noel_Rosa \"Noel Rosa\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPapete\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPapete\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Papete \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRicardo Cravo \u001b[0m\n", + "\u001b[32mAlbin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRicardo_Cravo_Albin\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ricardo Cravo Albin \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mRildo Hora\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRildo_Hora\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rildo Hora \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRosa \u001b[0m\n", + "\u001b[32mMagalhães\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRosa Maria \u001b[0m\n", + "\u001b[32mAraújo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRosa_Maria_Ara\u001b[0m\u001b[32m%C3%BAjo&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Rosa Maria Araújo \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSilas de Oliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSilas_de_Oliveira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Silas de Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not\u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mVik Muniz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Vik_Muniz \"Vik Muniz\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| 2017 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAfonso \u001b[0m\n", + "\u001b[32mOliveira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAfonso_Oliveira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Afonso Oliveira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAna\u001b[0m\n", + "\u001b[32mMaria Nobrega Miranda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAna_Maria_Nobrega_Miranda\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ana Maria Nobrega \u001b[0m\n", + "\u001b[32mMiranda \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAugusto \u001b[0m\n", + "\u001b[32mMarzagão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAugusto_Marzag\u001b[0m\u001b[32m%C3%A3o&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Augusto Marzagão \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBeto Kelner\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBeto_Kelner\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Beto Kelner \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mBoni\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJos\u001b[0m\u001b[32m%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"José Bonifácio de \u001b[0m\n", + "\u001b[32mOliveira Sobrinho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarla Camurati\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carla_Camurati \"Carla Camurati\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos \u001b[0m\n", + "\u001b[32mTufvesson\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Tufvesson \"Carlos Tufvesson\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCláudia Costin\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Cl%C3%A1udia_Costin \"Cláudia \u001b[0m\n", + "\u001b[32mCostin\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDomingo Alzugaray\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Domingo_Alzugaray \"Domingo Alzugaray\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDona Onete\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Dona_Onete \"Dona\u001b[0m\n", + "\u001b[32mOnete\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEduardo Portella\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eduardo_Portella \"Eduardo Portella\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEduardo Saron \u001b[0m\n", + "\u001b[32mNunes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mEduardo_Saron_Nunes\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Eduardo Saron Nunes \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mFernando Alterio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFernando_Alterio\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Fernando Alterio \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGalo da Madrugada\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Galo_da_Madrugada \"Galo da Madrugada\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mGenival \u001b[0m\n", + "\u001b[32mLacerda\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Genival_Lacerda \"Genival Lacerda\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mIvo \u001b[0m\n", + "\u001b[32mBarroso\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mIvo_Barroso\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ivo Barroso \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJair de \u001b[0m\n", + "\u001b[32mSouza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJair_de_Souza\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jair de Souza \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuciane \u001b[0m\n", + "\u001b[32mGorgulho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuciane_Gorgulho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luciane Gorgulho \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mLuis Severiano Ribeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuis_Severiano_Ribeiro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luis Severiano Ribeiro \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Calainho\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Calainho\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Calainho \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcelo Bertini\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcelo_Bertini\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcelo \u001b[0m\n", + "\u001b[32mBertini \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcelo Bratke\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Marcelo_Bratke \"Marcelo Bratke\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcelo \u001b[0m\n", + "\u001b[32mDantas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcelo_Dantas\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcelo Dantas \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMaria \u001b[0m\n", + "\u001b[32mIgnez Mantovani\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMaria_Ignez_Mantovani\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Maria Ignez Mantovani \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMoeller & Botelho Produções \u001b[0m\n", + "\u001b[32mArtísticas\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMoeller_\u001b[0m\u001b[32m%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m\"Moeller & Botelho Produções Artísticas \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * Mãe \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNeide Oyá \u001b[0m\n", + "\u001b[32mD´Oxum\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mNeide_Oy\u001b[0m\u001b[32m%C3%A1_D%C2%B4Oxum&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Neide Oyá D´Oxum \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPaulo Cruz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPaulo_Cruz\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Paulo Cruz \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mPierre André Mantovani\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mPierre_Andr\u001b[0m\u001b[32m%C3%A9_Mantovani&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Pierre André \u001b[0m\n", + "\u001b[32mMantovani \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRenato Aragão\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Renato_Arag%C3%A3o \"Renato Aragão\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRicardo \u001b[0m\n", + "\u001b[32mAmaral\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRicardo_Amaral\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Ricardo Amaral \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto\u001b[0m\n", + "\u001b[32mMinczuk\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Minczuk \"Roberto Minczuk\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Santucci\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Roberto_Santucci \"Roberto Santucci\"\u001b[0m\u001b[32m)\u001b[0m\n", + "\u001b[32m|\\n| 2018 | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbelardo Barbosa\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Chacrinha \"Chacrinha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAntonio \u001b[0m\n", + "\u001b[32mMazzafera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mAntonio_Mazzafera\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Antonio Mazzafera \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m *\u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mBiblioteca Oliveira Lima\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBiblioteca_Oliveira_Lima\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Biblioteca Oliveira \u001b[0m\n", + "\u001b[32mLima \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBruno Wainer\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBruno_Wainer\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Bruno Wainer \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos Saldanha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Saldanha \"Carlos Saldanha\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCarlos \u001b[0m\n", + "\u001b[32mVereza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Carlos_Vereza \"Carlos Vereza\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDedé Santana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Ded%C3%A9_Santana \"Dedé Santana\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEva \u001b[0m\n", + "\u001b[32mSopher\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eva_Sopher \"Eva Sopher\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEva Wilma\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Eva_Wilma \"Eva Wilma\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFestival Villa \u001b[0m\n", + "\u001b[32mMix\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mFestival_Villa_Mix\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Festival Villa Mix \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGuilherme Fiuza\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mGuilherme_Fiuza\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Guilherme Fiuza \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mInstituto Histórico e Geográfico \u001b[0m\n", + "\u001b[32mBrasileiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \"Instituto Histórico e Geográfico \u001b[0m\n", + "\u001b[32mBrasileiro\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJorge Caldeira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mJorge_Caldeira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Jorge Caldeira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does\u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mJosé Bonifácio\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mKati Almeida \u001b[0m\n", + "\u001b[32mBraga\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mKati_Almeida_Braga\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Kati Almeida Braga \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mKing\\'s Brazil Institute\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mKing\u001b[0m\u001b[32m%27s_Brazil_Institute&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"King\\'s Brazil \u001b[0m\n", + "\u001b[32mInstitute \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLuiz Oscar \u001b[0m\n", + "\u001b[32mNiemeyer\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mLuiz_Oscar_Niemeyer\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Luiz Oscar Niemeyer \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not \u001b[0m\n", + "\u001b[32mexist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcelo Castello Branco\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcelo_Castello_Branco\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcelo \u001b[0m\n", + "\u001b[32mCastello Branco \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMarcio \u001b[0m\n", + "\u001b[32mFraccaroli\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMarcio_Fraccaroli\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Marcio Fraccaroli \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMartim Vasques da Cunha\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMartim_Vasques_da_Cunha\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Martim Vasques da \u001b[0m\n", + "\u001b[32mCunha \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMilton Gonçalves\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMonah \u001b[0m\n", + "\u001b[32mDelacy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMonah_Delacy\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Monah Delacy \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu de \u001b[0m\n", + "\u001b[32mArte de São Paulo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu de Arte Moderna do\u001b[0m\n", + "\u001b[32mRio de Janeiro\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMuseu_de_Arte_Moderna_do_Rio_de_Janeiro\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Museu de Arte \u001b[0m\n", + "\u001b[32mModerna do Rio de Janeiro \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu de Arte Moderna de São \u001b[0m\n", + "\u001b[32mPaulo\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMuseu da Gente \u001b[0m\n", + "\u001b[32mSergipana\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMuseu_da_Gente_Sergipana\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Museu da Gente Sergipana \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mOrquestra Filarmônica de Minas \u001b[0m\n", + "\u001b[32mGerais\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mOrquestra_Filarm\u001b[0m\u001b[32m%C3%B4nica_de_Minas_Gerais&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Orquestra Filarmônica\u001b[0m\n", + "\u001b[32mde Minas Gerais \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRoberto Teixeira da \u001b[0m\n", + "\u001b[32mCosta\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mRoberto_Teixeira_da_Costa\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Roberto Teixeira da Costa \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSaulo Ferreira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mSaulo_Ferreira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Saulo Ferreira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does\u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio Mendes\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSérgio \u001b[0m\n", + "\u001b[32mMielniczenko\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mS\u001b[0m\u001b[32m%C3%A9rgio_Mielniczenko&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Sérgio Mielniczenko \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does \u001b[0m\n", + "\u001b[32mnot exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mThiago Soares\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Thiago_Soares \"Thiago Soares\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTrio \u001b[0m\n", + "\u001b[32mRoraimeira\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mTrio_Roraimeira\u001b[0m\u001b[32m&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Trio Roraimeira \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mVó Mera\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mV\u001b[0m\u001b[32m%C3%B3_Mera&\u001b[0m\u001b[32maction\u001b[0m\u001b[32m=\u001b[0m\u001b[32medit\u001b[0m\u001b[32m&\u001b[0m\u001b[32mredlink\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m \"Vó Mera \u001b[0m\u001b[32m(\u001b[0m\u001b[32mpage does not exist\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWanda \u001b[0m\n", + "\u001b[32mSá\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wanda_S%C3%A1 \"Wanda Sá\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n\\n| \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAuthority control databases\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:Authority_control \u001b[0m\n", + "\u001b[32m\"Help:Authority control\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32mEdit this at Wikidata\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at \u001b[0m\n", + "\u001b[32mWikidata\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m | |\\n| --- | --- |\\n| International | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mISNI\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://isni.org/isni/0000000114681685\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mVIAF\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://viaf.org/viaf/14968654\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mFAST\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://id.worldcat.org/fast/206968/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mWorldCat\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| National | * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mGermany\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://d-nb.info/gnd/119022249\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUnited States\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://id.loc.gov/authorities/n87117284\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mFrance\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://catalogue.bnf.fr/ark:/12148/cb13999885k\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mBnF \u001b[0m\n", + "\u001b[32mdata\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://data.bnf.fr/ark:/12148/cb13999885k\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mItaly\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://opac.sbn.it/nome/UBOV850079\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mSpain\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://datos.bne.es/resource/XX1088218\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNetherlands\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://data.bibliotheken.nl/id/thes/p071981608\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mNorway\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://authority.bibsys.no/authority/rest/authorities/html/9050316\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mChile\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttp://www.bncatalogo.cl/F?\u001b[0m\u001b[32mfunc\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdirect\u001b[0m\u001b[32m&\u001b[0m\u001b[32mlocal_base\u001b[0m\u001b[32m=\u001b[0m\u001b[32mred10\u001b[0m\u001b[32m&\u001b[0m\u001b[32mdoc_number\u001b[0m\u001b[32m=\u001b[0m\u001b[32m000157687\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArgentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://catalogo.bn.gov.ar/F/?\u001b[0m\u001b[32mfunc\u001b[0m\u001b[32m=\u001b[0m\u001b[32mdirect\u001b[0m\u001b[32m&\u001b[0m\u001b[32mlocal_base\u001b[0m\u001b[32m=\u001b[0m\u001b[32mBNA10\u001b[0m\u001b[32m&\u001b[0m\u001b[32mdoc_number\u001b[0m\u001b[32m=\u001b[0m\u001b[32m000042426\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mKorea\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://lod.nl.go.kr/resource/KAC2020N6852\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mIsrael\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.nli.org.il/en/authorities/987007594420405171\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCatalonia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://cantic.bnc.cat/registre/981058518702206706\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| Artists | * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mMusicBrainz\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| People | * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDeutsche \u001b[0m\n", + "\u001b[32mBiographie\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.deutsche-biographie.de/119022249.html?\u001b[0m\u001b[32mlanguage\u001b[0m\u001b[32m=\u001b[0m\u001b[32men\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDDB\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.deutsche-digitale-bibliothek.de/person/gnd/119022249\u001b[0m\u001b[32m)\u001b[0m\u001b[32m |\\n| Other | * \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mIdRef\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.idref.fr/08071613X\u001b[0m\u001b[32m)\u001b[0m\u001b[32m * \u001b[0m\u001b[32m[\u001b[0m\u001b[32mSNAC\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://snaccooperative.org/ark:/99166/w67n4hns\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m|\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mPortals\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m:\\n\\n* \u001b[0m\n", + "\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32mflag\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArgentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Portal:Argentina \"Portal:Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin \u001b[0m\n", + "\u001b[32mmusic\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Portal:Latin_music \"Portal:Latin \u001b[0m\n", + "\u001b[32mmusic\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n!\u001b[0m\u001b[32m[\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?\u001b[0m\u001b[32mtype\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1x1\u001b[0m\u001b[32m&\u001b[0m\u001b[32musesul3\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nRetrieved from \u001b[0m\n", + "\u001b[32m\"\u001b[0m\u001b[32m<\u001b[0m\u001b[32mhttps:\u001b[0m\u001b[32m//en.wikipedia.org/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32moldid\u001b[0m\u001b[32m=\u001b[0m\u001b[32m1281260319\u001b[0m\u001b[32m>\u001b[0m\u001b[32m\"\\n\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mCategories\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Help:Category \u001b[0m\n", + "\u001b[32m\"Help:Category\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m:\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m1935 births\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:1935_births \"Category:1935 births\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m2009 \u001b[0m\n", + "\u001b[32mdeaths\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:2009_deaths \"Category:2009 deaths\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin Grammy Award \u001b[0m\n", + "\u001b[32mwinners\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m20th-century \u001b[0m\n", + "\u001b[32mArgentine women singers\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century Argentine \u001b[0m\n", + "\u001b[32mwomen singers\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentine activists\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Argentine_activists \"Category:Argentine activists\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArgentine women activists\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArgentine people of French descent\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people \u001b[0m\n", + "\u001b[32mof French descent\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentine people of Diaguita descent\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Argentine_people_of_Diaguita_descent \u001b[0m\n", + "\u001b[32m\"Category:Argentine people of Diaguita descent\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArgentine people of Quechua \u001b[0m\n", + "\u001b[32mdescent\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine people of Quechua descent\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDeaths from kidney failure in Argentina\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths \u001b[0m\n", + "\u001b[32mfrom kidney failure in Argentina\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPeople from San Miguel de \u001b[0m\n", + "\u001b[32mTucumán\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from San Miguel de Tucumán\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mNueva canción musicians\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mBombo legüero players\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mLatin \u001b[0m\n", + "\u001b[32mGrammy Lifetime Achievement Award winners\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \u001b[0m\n", + "\u001b[32m\"Category:Latin Grammy Lifetime Achievement Award winners\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mRecipients of the Order of Cultural Merit \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Category:Recipients of the Order of \u001b[0m\n", + "\u001b[32mCultural Merit \u001b[0m\u001b[32m(\u001b[0m\u001b[32mBrazil\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m20th-century drummers\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:20th-century_drummers \"Category:20th-century \u001b[0m\n", + "\u001b[32mdrummers\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWomen in Latin music\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Women_in_Latin_music \"Category:Women in Latin \u001b[0m\n", + "\u001b[32mmusic\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nHidden categories:\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAll articles with dead external \u001b[0m\n", + "\u001b[32mlinks\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:All_articles_with_dead_external_links \"Category:All articles with dead external links\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mArticles with dead external links from June 2024\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Articles_with_dead_external_links_from_June_2024\u001b[0m\n", + "\u001b[32m\"Category:Articles with dead external links from June 2024\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCS1 Spanish-language sources \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mes\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_Spanish-language_sources_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mes\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Category:CS1 Spanish-language sources \u001b[0m\u001b[32m(\u001b[0m\u001b[32mes\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCS1 \u001b[0m\n", + "\u001b[32mmaint: numeric names: authors list\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 maint: \u001b[0m\n", + "\u001b[32mnumeric names: authors list\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCS1 maint: url-status\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint:\u001b[0m\n", + "\u001b[32murl-status\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWebarchive template wayback links\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Webarchive_template_wayback_links \u001b[0m\n", + "\u001b[32m\"Category:Webarchive template wayback links\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArticles with German-language sources \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mde\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Articles_with_German-language_sources_\u001b[0m\u001b[32m(\u001b[0m\u001b[32mde\u001b[0m\u001b[32m)\u001b[0m\u001b[32m \"Category:Articles with German-language sources \u001b[0m\n", + "\u001b[32m(\u001b[0m\u001b[32mde\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArticles with short description\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Articles_with_short_description \"Category:Articles with\u001b[0m\n", + "\u001b[32mshort description\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mShort description is different from \u001b[0m\n", + "\u001b[32mWikidata\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Short_description_is_different_from_Wikidata \"Category:Short description is different \u001b[0m\n", + "\u001b[32mfrom Wikidata\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mUse dmy dates from July 2023\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy \u001b[0m\n", + "\u001b[32mdates from July 2023\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikipedia indefinitely move-protected \u001b[0m\n", + "\u001b[32mpages\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Wikipedia_indefinitely_move-protected_pages \"Category:Wikipedia indefinitely move-protected \u001b[0m\n", + "\u001b[32mpages\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArticles with hCards\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPages \u001b[0m\n", + "\u001b[32mwith Latin American Spanish IPA\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with Latin \u001b[0m\n", + "\u001b[32mAmerican Spanish IPA\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAll articles with unsourced \u001b[0m\n", + "\u001b[32mstatements\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:All_articles_with_unsourced_statements \"Category:All articles with unsourced \u001b[0m\n", + "\u001b[32mstatements\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mArticles with unsourced statements from December \u001b[0m\n", + "\u001b[32m2023\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \u001b[0m\n", + "\u001b[32mstatements from December 2023\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCommons category link is on \u001b[0m\n", + "\u001b[32mWikidata\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons category link is on \u001b[0m\n", + "\u001b[32mWikidata\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n* This page was last edited on 19 March 2025, at 08:35\\xa0\u001b[0m\u001b[32m(\u001b[0m\u001b[32mUTC\u001b[0m\u001b[32m)\u001b[0m\u001b[32m.\\n* Text is available under the \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCreative Commons Attribution-ShareAlike 4.0 \u001b[0m\n", + "\u001b[32mLicense\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \u001b[0m\n", + "\u001b[32m\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m;\\n additional terms may\u001b[0m\n", + "\u001b[32mapply. By using this site, you agree to the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mTerms of \u001b[0m\n", + "\u001b[32mUse\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \u001b[0m\n", + "\u001b[32m\"foundation:Special:MyLanguage/Policy:Terms of Use\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m and \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPrivacy \u001b[0m\n", + "\u001b[32mPolicy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \u001b[0m\n", + "\u001b[32m\"foundation:Special:MyLanguage/Policy:Privacy policy\"\u001b[0m\u001b[32m)\u001b[0m\u001b[32m. Wikipedia® is a registered trademark of the \u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikimedia \u001b[0m\n", + "\u001b[32mFoundation, Inc.\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://wikimediafoundation.org/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m, a non-profit organization.\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mPrivacy \u001b[0m\n", + "\u001b[32mpolicy\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mAbout \u001b[0m\n", + "\u001b[32mWikipedia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:About\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mDisclaimers\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/wiki/Wikipedia:General_disclaimer\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mContact \u001b[0m\n", + "\u001b[32mWikipedia\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//en.wikipedia.org/wiki/Wikipedia:Contact_us\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mCode of \u001b[0m\n", + "\u001b[32mConduct\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mDevelopers\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://developer.wikimedia.org\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mStatistics\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://stats.wikimedia.org/#/en.wikipedia.org\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\n", + "\u001b[32m[\u001b[0m\u001b[32mCookie statement\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32mMobile \u001b[0m\n", + "\u001b[32mview\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m//en.m.wikipedia.org/w/index.php?\u001b[0m\u001b[32mtitle\u001b[0m\u001b[32m=\u001b[0m\u001b[32mMercedes_Sosa\u001b[0m\u001b[32m&\u001b[0m\u001b[32mmobileaction\u001b[0m\u001b[32m=\u001b[0m\u001b[32mtoggle_view_mobile\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32mWikimedia \u001b[0m\n", + "\u001b[32mFoundation\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/static/images/footer/wikimedia.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.wikimedia.org/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n* \u001b[0m\u001b[32m[\u001b[0m\u001b[32m!\u001b[0m\u001b[32m[\u001b[0m\u001b[32mPowered by \u001b[0m\n", + "\u001b[32mMediaWiki\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m/w/resources/assets/mediawiki_compact.svg\u001b[0m\u001b[32m)\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32mhttps://www.mediawiki.org/\u001b[0m\u001b[32m)\u001b[0m\u001b[32m\\n\\nSearch\\n\\nSearch\\n\\nToggle \u001b[0m\n", + "\u001b[32mthe table of contents\\n\\nMercedes Sosa\\n\\n49 languages\\n\u001b[0m\u001b[32m[\u001b[0m\u001b[32mAdd topic\\\u001b[0m\u001b[32m]\u001b[0m\u001b[32m(\u001b[0m\u001b[32m#\u001b[0m\u001b[32m)\u001b[0m\u001b[32m'\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m with \u001b[0m\u001b[32m'1'\u001b[0m\u001b[1;31m: IndexError: list index out of \u001b[0m\n", + "\u001b[1;31mrange\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 4: Duration 5.61 seconds| Input tokens: 29,115 | Output tokens: 636]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 4: Duration 5.61 seconds| Input tokens: 29,115 | Output tokens: 636]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m5\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: My previous attempt to split the page content failed, likely because the section headers are not exactly  \n",
+       "as expected or the content was truncated. I need a more robust way to find the \"Studio albums\" section. I will try \n",
+       "searching for the \"Studio albums\" header specifically within the page content and then extract the list of albums  \n",
+       "that follows.                                                                                                      \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "studio_albums_header_index = page_content.find(\"=== Studio albums ===\")                                            \n",
+       "if studio_albums_header_index != -1:                                                                               \n",
+       "    studio_albums_section = page_content[studio_albums_header_index:]                                              \n",
+       "    ep_header_index = studio_albums_section.find(\"=== EPs ===\")                                                    \n",
+       "    if ep_header_index != -1:                                                                                      \n",
+       "        studio_albums_content = studio_albums_section[:ep_header_index]                                            \n",
+       "        print(studio_albums_content)                                                                               \n",
+       "    else:                                                                                                          \n",
+       "        print(\"Could not find EPs section.\")                                                                       \n",
+       "else:                                                                                                              \n",
+       "    print(\"Could not find Studio albums section.\")                                                                 \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mMy\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprevious\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mattempt\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msplit\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfailed,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlikely\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbecause\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheaders\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mare\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mexactly\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mas\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mexpected\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwas\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtruncated.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mneed\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmore\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrobust\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mway\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtry\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23msearching\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mspecifically\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwithin\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mextract\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlist\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfollows.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.find(\"===\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m===\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_section\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content[studio_albums_header_index:]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mep_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_section.find(\"===\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mEPs\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m===\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mep_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_section[:ep_header_index]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(studio_albums_content)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Could\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mEPs\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Could\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  studio_albums_header_index = page_content.find(\"=== Studio albums ===\")                                          \n",
+       "  if studio_albums_header_index != -1:                                                                             \n",
+       "      studio_albums_section = page_content[studio_albums_header_index:]                                            \n",
+       "      ep_header_index = studio_albums_section.find(\"=== EPs ===\")                                                  \n",
+       "      if ep_header_index != -1:                                                                                    \n",
+       "          studio_albums_content = studio_albums_section[:ep_header_index]                                          \n",
+       "          print(studio_albums_content)                                                                             \n",
+       "      else:                                                                                                        \n",
+       "          print(\"Could not find EPs section.\")                                                                     \n",
+       "  else:                                                                                                            \n",
+       "      print(\"Could not find Studio albums section.\")                                                               \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m=== Studio albums ===\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mep_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_section\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m=== EPs ===\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mep_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mep_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find EPs section.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find Studio albums section.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "Could not find Studio albums section.\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "Could not find Studio albums section.\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 5: Duration 6.09 seconds| Input tokens: 105,334 | Output tokens: 885]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 5: Duration 6.09 seconds| Input tokens: 105,334 | Output tokens: 885]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m6\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: The header \"=== Studio albums ===\" was not found. It seems the format of the Wikipedia page is different  \n",
+       "from what I expected. I will try a broader search for the \"Discography\" section and then manually parse the content\n",
+       "to find the studio albums list. I'll print the Discography section first to understand its structure.              \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "discography_header_index = page_content.find(\"== Discography ==\")                                                  \n",
+       "if discography_header_index != -1:                                                                                 \n",
+       "    discography_section = page_content[discography_header_index:]                                                  \n",
+       "    filmography_header_index = discography_section.find(\"== Filmography ==\")                                       \n",
+       "    if filmography_header_index != -1:                                                                             \n",
+       "        discography_content = discography_section[:filmography_header_index]                                       \n",
+       "        print(discography_content)                                                                                 \n",
+       "    else:                                                                                                          \n",
+       "        print(\"Could not find Filmography section.\")                                                               \n",
+       "else:                                                                                                              \n",
+       "    print(\"Could not find Discography section.\")                                                                   \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mThe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"===\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m===\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwas\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfound.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mIt\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mseems\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mformat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mWikipedia\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdifferent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mfrom\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwhat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mexpected.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtry\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbroader\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msearch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Discography\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmanually\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mparse\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlist.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI'll\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfirst\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23munderstand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mits\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstructure.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.find(\"==\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m==\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_section\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content[discography_header_index:]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfilmography_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_section.find(\"==\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mFilmography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m==\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfilmography_header_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_section[:filmography_header_index]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(discography_content)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Could\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mFilmography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Could\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  discography_header_index = page_content.find(\"== Discography ==\")                                                \n",
+       "  if discography_header_index != -1:                                                                               \n",
+       "      discography_section = page_content[discography_header_index:]                                                \n",
+       "      filmography_header_index = discography_section.find(\"== Filmography ==\")                                     \n",
+       "      if filmography_header_index != -1:                                                                           \n",
+       "          discography_content = discography_section[:filmography_header_index]                                     \n",
+       "          print(discography_content)                                                                               \n",
+       "      else:                                                                                                        \n",
+       "          print(\"Could not find Filmography section.\")                                                             \n",
+       "  else:                                                                                                            \n",
+       "      print(\"Could not find Discography section.\")                                                                 \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mdiscography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m== Discography ==\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfilmography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_section\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m== Filmography ==\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfilmography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_section\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfilmography_header_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find Filmography section.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find Discography section.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "Could not find Discography section.\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "Could not find Discography section.\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 6: Duration 26.60 seconds| Input tokens: 182,045 | Output tokens: 1,129]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 6: Duration 26.60 seconds| Input tokens: 182,045 | Output tokens: 1,129]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 7 ━━━━━━━━━━━━��━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m7\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: It seems I'm having trouble finding the sections using the `find()` method, perhaps due to variations in  \n",
+       "spacing or formatting on the page. I will try fetching the page content again and this time, instead of splitting  \n",
+       "or finding specific indices, I'll search the raw text for patterns that indicate album releases and their years    \n",
+       "within the 2000-2009 range. I will look for lines that likely represent albums and contain years within the        \n",
+       "specified range.                                                                                                   \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "lines = page_content.splitlines()                                                                                  \n",
+       "albums_2000_2009 = []                                                                                              \n",
+       "for line in lines:                                                                                                 \n",
+       "    if \"Studio albums\" in line:                                                                                    \n",
+       "        # Assuming the list of studio albums follows this header                                                   \n",
+       "        continue                                                                                                   \n",
+       "    if \"EPs\" in line or \"Live albums\" in line or \"Compilation albums\" in line:                                     \n",
+       "        # Stop processing lines when we reach another album category                                               \n",
+       "        break                                                                                                      \n",
+       "    for year in range(2000, 2010):                                                                                 \n",
+       "        if str(year) in line and \"Label:\" in line:                                                                 \n",
+       "            albums_2000_2009.append(line.strip())                                                                  \n",
+       "                                                                                                                   \n",
+       "print(albums_2000_2009)                                                                                            \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mIt\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mseems\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI'm\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhaving\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtrouble\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfinding\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msections\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23musing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;165;214;255;48;2;13;17;23m`find()`\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmethod,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mperhaps\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdue\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvariations\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mspacing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mformatting\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mon\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtry\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfetching\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23magain\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtime,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23minstead\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msplitting\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfinding\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mspecific\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mindices,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI'll\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msearch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mraw\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpatterns\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mindicate\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbum\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mreleases\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtheir\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myears\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mwithin\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2000-2009\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrange.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlook\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlines\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlikely\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrepresent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontain\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myears\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwithin\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mspecified\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrange.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mlines\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.splitlines()\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23malbums_2000_2009\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m[]\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlines:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mAssuming\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlist\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfollows\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontinue\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"EPs\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Live\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Compilation\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStop\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprocessing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlines\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwhen\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mreach\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23manother\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbum\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcategory\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbreak\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myear\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrange(2000,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2010):\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstr(year)\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Label:\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mline:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums_2000_2009.append(line.strip())\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mprint(albums_2000_2009)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  lines = page_content.splitlines()                                                                                \n",
+       "  albums_2000_2009 = []                                                                                            \n",
+       "  for line in lines:                                                                                               \n",
+       "      if \"Studio albums\" in line:                                                                                  \n",
+       "          # Assuming the list of studio albums follows this header                                                 \n",
+       "          continue                                                                                                 \n",
+       "      if \"EPs\" in line or \"Live albums\" in line or \"Compilation albums\" in line:                                   \n",
+       "          # Stop processing lines when we reach another album category                                             \n",
+       "          break                                                                                                    \n",
+       "      for year in range(2000, 2010):                                                                               \n",
+       "          if str(year) in line and \"Label:\" in line:                                                               \n",
+       "              albums_2000_2009.append(line.strip())                                                                \n",
+       "                                                                                                                   \n",
+       "  print(albums_2000_2009)                                                                                          \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mlines\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34msplitlines\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34malbums_2000_2009\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34mfor\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mlines\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mStudio albums\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Assuming the list of studio albums follows this header\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mcontinue\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mEPs\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34mor\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mLive albums\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34mor\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCompilation albums\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Stop processing lines when we reach another album category\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mbreak\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mfor\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myear\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mrange\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m2000\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m,\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m2010\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstr\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myear\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34mand\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mLabel:\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34min\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34malbums_2000_2009\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mappend\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mline\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstrip\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34malbums_2000_2009\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "[]\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "[]\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 7: Duration 7.77 seconds| Input tokens: 259,238 | Output tokens: 1,425]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 7: Duration 7.77 seconds| Input tokens: 259,238 | Output tokens: 1,425]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m8\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ────────────────────────────────────────────────────────────────────────────────────────\n",
+       "Thought: My previous attempts to locate the \"Studio albums\" section by exact string matching failed. I will        \n",
+       "re-visit the page and this time, I will search for \"Discography\" and \"Studio albums\" again, but I will print a     \n",
+       "larger portion of the text around where I expect these sections to be, to better understand the actual formatting  \n",
+       "used in the page content. This will help me adjust my parsing strategy.                                            \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "discography_index = page_content.find(\"== Discography ==\")                                                         \n",
+       "if discography_index != -1:                                                                                        \n",
+       "    # Print a chunk of text around the Discography header                                                          \n",
+       "    print(\"Found Discography header. Content around it:\")                                                          \n",
+       "    print(page_content[discography_index:discography_index + 500]) # Print next 500 characters                     \n",
+       "                                                                                                                   \n",
+       "    studio_albums_index = page_content.find(\"=== Studio albums ===\")                                               \n",
+       "    if studio_albums_index != -1:                                                                                  \n",
+       "        # Print a chunk of text around the Studio albums header                                                    \n",
+       "        print(\"\\nFound Studio albums header. Content around it:\")                                                  \n",
+       "        print(page_content[studio_albums_index:studio_albums_index + 500]) # Print next 500 characters             \n",
+       "    else:                                                                                                          \n",
+       "        print(\"\\nCould not find Studio albums header.\")                                                            \n",
+       "else:                                                                                                              \n",
+       "    print(\"Could not find Discography header.\")                                                                    \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mMy\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprevious\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mattempts\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlocate\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msection\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mby\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mexact\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstring\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmatching\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfailed.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mre-visit\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtime,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msearch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Discography\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23magain,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbut\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mlarger\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mportion\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maround\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwhere\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mexpect\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthese\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msections\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbe,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbetter\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23munderstand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mactual\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mformatting\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mused\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mThis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhelp\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mme\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23madjust\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmy\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mparsing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstrategy.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.find(\"==\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m==\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdiscography_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mPrint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mchunk\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maround\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Found\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mContent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maround\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mit:\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(page_content[discography_index:discography_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m+\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m500])\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mPrint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m500\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcharacters\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage_content.find(\"===\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m===\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mif\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstudio_albums_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m!=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m-1:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mPrint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mchunk\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maround\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\\n\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mFound\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mContent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maround\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mit:\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(page_content[studio_albums_index:studio_albums_index\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m+\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m500])\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m#\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mPrint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnext\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m500\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcharacters\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\\n\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mCould\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mStudio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23melse:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint(\"Could\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mDiscography\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheader.\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  discography_index = page_content.find(\"== Discography ==\")                                                       \n",
+       "  if discography_index != -1:                                                                                      \n",
+       "      # Print a chunk of text around the Discography header                                                        \n",
+       "      print(\"Found Discography header. Content around it:\")                                                        \n",
+       "      print(page_content[discography_index:discography_index + 500]) # Print next 500 characters                   \n",
+       "                                                                                                                   \n",
+       "      studio_albums_index = page_content.find(\"=== Studio albums ===\")                                             \n",
+       "      if studio_albums_index != -1:                                                                                \n",
+       "          # Print a chunk of text around the Studio albums header                                                  \n",
+       "          print(\"\\nFound Studio albums header. Content around it:\")                                                \n",
+       "          print(page_content[studio_albums_index:studio_albums_index + 500]) # Print next 500 characters           \n",
+       "      else:                                                                                                        \n",
+       "          print(\"\\nCould not find Studio albums header.\")                                                          \n",
+       "  else:                                                                                                            \n",
+       "      print(\"Could not find Discography header.\")                                                                  \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mdiscography_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m== Discography ==\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Print a chunk of text around the Discography header\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mFound Discography header. Content around it:\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdiscography_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m+\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m500\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Print next 500 characters\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfind\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m=== Studio albums ===\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34mif\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m!=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m1\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Print a chunk of text around the Studio albums header\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m\\n\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mFound Studio albums header. Content around it:\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m[\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mstudio_albums_index\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m+\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m500\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m]\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;149;144;119;48;2;39;40;34m# Print next 500 characters\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m\\n\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find Studio albums header.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;102;217;239;48;2;39;40;34melse\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m:\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mCould not find Discography header.\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "Could not find Discography header.\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "Could not find Discography header.\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 8: Duration 9.41 seconds| Input tokens: 336,986 | Output tokens: 1,959]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 8: Duration 9.41 seconds| Input tokens: 336,986 | Output tokens: 1,959]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m9\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Output message of the LLM: ──────────────────────────────────────────────────────────────────────────────────��─────\n",
+       "Thought: I'm consistently failing to find the \"Discography\" and \"Studio albums\" headers using `find()`. This       \n",
+       "suggests there might be an issue with how the page content is being retrieved or represented, or perhaps the       \n",
+       "headers have slightly different formatting that I'm not accounting for (like extra spaces or hidden characters).   \n",
+       "                                                                                                                   \n",
+       "Given that direct string matching for headers is proving unreliable, I will try a different approach. I will fetch \n",
+       "the page content again and this time, I will look for a table or list structure that typically represents          \n",
+       "discographies on Wikipedia pages. I will specifically look for lines that contain a year in the 2000-2009 range and\n",
+       "seem to be part of a list of albums. I will focus on identifying lines that contain both a year and potentially    \n",
+       "album titles or labels.                                                                                            \n",
+       "                                                                                                                   \n",
+       "I will first print the full content of the page to be able to see what is going on.                                \n",
+       "Code:                                                                                                              \n",
+       "```py                                                                                                              \n",
+       "page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                    \n",
+       "print(page_content)                                                                                                \n",
+       "```<end_code>                                                                                                      \n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;3mOutput message of the LLM:\u001b[0m \u001b[38;2;212;183;2m────────────────────────────────────────────────────────────────────────────────────────\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mThought:\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI'm\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mconsistently\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfailing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfind\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Discography\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m\"Studio\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums\"\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheaders\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23musing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;165;214;255;48;2;13;17;23m`find()`\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mThis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23msuggests\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthere\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmight\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23man\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23missue\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwith\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhow\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbeing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mretrieved\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrepresented,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mperhaps\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mheaders\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhave\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mslightly\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdifferent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mformatting\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI'm\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mnot\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23maccounting\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m(like\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mextra\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mspaces\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mhidden\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcharacters).\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mGiven\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdirect\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstring\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mmatching\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mheaders\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mproving\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23munreliable,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtry\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mdifferent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mapproach.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfetch\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23magain\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtime,\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlook\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtable\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlist\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mstructure\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtypically\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrepresents\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mdiscographies\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mon\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mWikipedia\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpages.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mspecifically\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlook\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlines\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontain\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myear\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23min\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m2000-2009\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mrange\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mseem\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpart\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlist\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23malbums.\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfocus\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mon\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23midentifying\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlines\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontain\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mboth\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23ma\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23myear\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mand\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpotentially\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23malbum\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mtitles\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mor\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mlabels.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mI\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwill\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfirst\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mprint\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mfull\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mcontent\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mof\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mthe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mpage\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mbe\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mable\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mto\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23msee\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mwhat\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mis\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mgoing\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mon.\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mCode:\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```py\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mpage_content\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m=\u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23m \u001b[0m\u001b[38;2;230;237;243;48;2;13;17;23mvisit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23mprint(page_content)\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n", + "\u001b[38;2;230;237;243;48;2;13;17;23m```\u001b[0m\u001b[48;2;13;17;23m \u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Executing parsed code: ──────────────────────────────────────────────────────────────────────────────────────── \n",
+       "  page_content = visit_webpage(url=\"https://en.wikipedia.org/wiki/Mercedes_Sosa\")                                  \n",
+       "  print(page_content)                                                                                              \n",
+       " ───────────────────────────────────────────────────────────────────────────────────────────────────────────────── \n",
+       "
\n" + ], + "text/plain": [ + " ─ \u001b[1mExecuting parsed code:\u001b[0m ──────────────────────────────────────────────────────────────────────────────────────── \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mvisit_webpage\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34murl\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mhttps://en.wikipedia.org/wiki/Mercedes_Sosa\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " \u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mpage_content\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m \n", + " ─────────────────────────────────────────────────────────────────────────────────────────────────────────────��─── \n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "Mercedes Sosa - Wikipedia\n",
+       "\n",
+       "[Jump to content](#bodyContent)\n",
+       "\n",
+       "Main menu\n",
+       "\n",
+       "Main menu\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "Navigation\n",
+       "\n",
+       "* [Main page](/wiki/Main_Page \"Visit the main page [z]\")\n",
+       "* [Contents](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\n",
+       "* [Current events](/wiki/Portal:Current_events \"Articles related to current events\")\n",
+       "* [Random article](/wiki/Special:Random \"Visit a randomly selected article [x]\")\n",
+       "* [About Wikipedia](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\n",
+       "* [Contact us](//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\")\n",
+       "\n",
+       "Contribute\n",
+       "\n",
+       "* [Help](/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\")\n",
+       "* [Learn to edit](/wiki/Help:Introduction \"Learn how to edit Wikipedia\")\n",
+       "* [Community portal](/wiki/Wikipedia:Community_portal \"The hub for editors\")\n",
+       "* [Recent changes](/wiki/Special:RecentChanges \"A list of recent changes to Wikipedia [r]\")\n",
+       "* [Upload file](/wiki/Wikipedia:File_upload_wizard \"Add images or other media for use on Wikipedia\")\n",
+       "* [Special pages](/wiki/Special:SpecialPages)\n",
+       "\n",
+       "[![](/static/images/icons/wikipedia.png)\n",
+       "\n",
+       "![Wikipedia](/static/images/mobile/copyright/wikipedia-wordmark-en.svg)\n",
+       "![The Free Encyclopedia](/static/images/mobile/copyright/wikipedia-tagline-en.svg)](/wiki/Main_Page)\n",
+       "\n",
+       "[Search](/wiki/Special:Search \"Search Wikipedia [f]\")\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Appearance\n",
+       "\n",
+       "* \n",
+       "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n",
+       "n)\n",
+       "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n",
+       "account and log in; however, it is not mandatory\")\n",
+       "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n",
+       "not mandatory. [o]\")\n",
+       "\n",
+       "Personal tools\n",
+       "\n",
+       "* \n",
+       "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n",
+       "n)\n",
+       "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n",
+       "account and log in; however, it is not mandatory\")\n",
+       "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n",
+       "not mandatory. [o]\")\n",
+       "\n",
+       "Pages for logged out editors [learn more](/wiki/Help:Introduction)\n",
+       "\n",
+       "* [Contributions](/wiki/Special:MyContributions \"A list of edits made from this IP address [y]\")\n",
+       "* [Talk](/wiki/Special:MyTalk \"Discussion about edits from this IP address [n]\")\n",
+       "\n",
+       "Contents\n",
+       "--------\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "* [(Top)](#)\n",
+       "* [1\n",
+       "  Life](#Life)\n",
+       "* [2\n",
+       "  Awards](#Awards)\n",
+       "* [3\n",
+       "  Death](#Death)\n",
+       "* [4\n",
+       "  Tributes](#Tributes)\n",
+       "* [5\n",
+       "  Discography](#Discography)\n",
+       "\n",
+       "  Toggle Discography subsection\n",
+       "  + [5.1\n",
+       "    Studio albums](#Studio_albums)\n",
+       "  + [5.2\n",
+       "    EPs](#EPs)\n",
+       "  + [5.3\n",
+       "    Live albums](#Live_albums)\n",
+       "  + [5.4\n",
+       "    Compilation albums](#Compilation_albums)\n",
+       "* [6\n",
+       "  Filmography](#Filmography)\n",
+       "* [7\n",
+       "  Further reading](#Further_reading)\n",
+       "* [8\n",
+       "  References](#References)\n",
+       "* [9\n",
+       "  External links](#External_links)\n",
+       "\n",
+       "Toggle the table of contents\n",
+       "\n",
+       "Mercedes Sosa\n",
+       "=============\n",
+       "\n",
+       "49 languages\n",
+       "\n",
+       "* [العربية](https://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس \n",
+       "سوسا – Arabic\")\n",
+       "* [Aymar aru](https://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\")\n",
+       "* [تۆرکجه](https://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "South Azerbaijani\")\n",
+       "* \n",
+       "[বাংলা](https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%B\n",
+       "8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\")\n",
+       "* [Беларуская \n",
+       "(тарашкевіца)](https://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%D\n",
+       "1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian (Taraškievica orthography)\")\n",
+       "* \n",
+       "[Български](https://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B0\n",
+       "\"Мерседес Соса – Bulgarian\")\n",
+       "* [Brezhoneg](https://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Breton\")\n",
+       "* [Català](https://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\")\n",
+       "* [Čeština](https://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\")\n",
+       "* [Dansk](https://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\")\n",
+       "* [Deutsch](https://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\")\n",
+       "* \n",
+       "[Ελληνικά](https://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1 \n",
+       "\"Μερσέδες Σόσα – Greek\")\n",
+       "* [Español](https://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\")\n",
+       "* [Esperanto](https://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\")\n",
+       "* [Euskara](https://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\")\n",
+       "* [فارسی](https://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n",
+       "Persian\")\n",
+       "* [Français](https://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\")\n",
+       "* [Galego](https://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\")\n",
+       "* [한국어](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \n",
+       "\"메르세데스 소사 – Korean\")\n",
+       "* [Հայերեն](https://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1\n",
+       "\"Մերսեդես Սոսա – Armenian\")\n",
+       "* [Hrvatski](https://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Croatian\")\n",
+       "* [Ido](https://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\")\n",
+       "* [Bahasa Indonesia](https://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\")\n",
+       "* [Italiano](https://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\")\n",
+       "* [עברית](https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \n",
+       "Hebrew\")\n",
+       "* [Latina](https://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\")\n",
+       "* [Lëtzebuergesch](https://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\")\n",
+       "* [Magyar](https://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\")\n",
+       "* \n",
+       "[മലയാളം](https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B4\n",
+       "%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്‌സിഡസ് സോസ – Malayalam\")\n",
+       "* [مصرى](https://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا \n",
+       "– Egyptian Arabic\")\n",
+       "* [Nederlands](https://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\")\n",
+       "* \n",
+       "[日本語](https://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3%\n",
+       "82%B5 \"メルセデス・ソーサ – Japanese\")\n",
+       "* [Norsk bokmål](https://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Norwegian Bokmål\")\n",
+       "* [Occitan](https://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\")\n",
+       "* [Polski](https://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\")\n",
+       "* [Português](https://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\")\n",
+       "* [Runa Simi](https://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\")\n",
+       "* \n",
+       "[Русский](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81 \n",
+       "\"Соса, Мерседес – Russian\")\n",
+       "* [Scots](https://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\")\n",
+       "* [Simple English](https://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\")\n",
+       "* [Slovenščina](https://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\")\n",
+       "* [Suomi](https://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\")\n",
+       "* [Svenska](https://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\")\n",
+       "* [Tagalog](https://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\")\n",
+       "* [Türkçe](https://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\")\n",
+       "* \n",
+       "[Українська](https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\n",
+       "0 \"Мерседес Соса – Ukrainian\")\n",
+       "* [Tiếng Việt](https://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Vietnamese\")\n",
+       "* [Zazaki](https://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\")\n",
+       "* [中文](https://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 \n",
+       "– Chinese\")\n",
+       "\n",
+       "[Edit links](https://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit interlanguage \n",
+       "links\")\n",
+       "\n",
+       "* [Article](/wiki/Mercedes_Sosa \"View the content page [c]\")\n",
+       "* [Talk](/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page [t]\")\n",
+       "\n",
+       "English\n",
+       "\n",
+       "* [Read](/wiki/Mercedes_Sosa)\n",
+       "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n",
+       "* [View history](/w/index.php?title=Mercedes_Sosa&action=history \"Past revisions of this page [h]\")\n",
+       "\n",
+       "Tools\n",
+       "\n",
+       "Tools\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "Actions\n",
+       "\n",
+       "* [Read](/wiki/Mercedes_Sosa)\n",
+       "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n",
+       "* [View history](/w/index.php?title=Mercedes_Sosa&action=history)\n",
+       "\n",
+       "General\n",
+       "\n",
+       "* [What links here](/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links\n",
+       "to this page [j]\")\n",
+       "* [Related changes](/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from this page \n",
+       "[k]\")\n",
+       "* [Upload file](//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files [u]\")\n",
+       "* [Permanent link](/w/index.php?title=Mercedes_Sosa&oldid=1281260319 \"Permanent link to this revision of this \n",
+       "page\")\n",
+       "* [Page information](/w/index.php?title=Mercedes_Sosa&action=info \"More information about this page\")\n",
+       "* [Cite this \n",
+       "page](/w/index.php?title=Special:CiteThisPage&page=Mercedes_Sosa&id=1281260319&wpFormIdentifier=titleform \n",
+       "\"Information on how to cite this page\")\n",
+       "* [Get shortened \n",
+       "URL](/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n",
+       "* [Download QR code](/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n",
+       "\n",
+       "Print/export\n",
+       "\n",
+       "* [Download as PDF](/w/index.php?title=Special:DownloadAsPdf&page=Mercedes_Sosa&action=show-download-screen \n",
+       "\"Download this page as a PDF file\")\n",
+       "* [Printable version](/w/index.php?title=Mercedes_Sosa&printable=yes \"Printable version of this page [p]\")\n",
+       "\n",
+       "In other projects\n",
+       "\n",
+       "* [Wikimedia Commons](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa)\n",
+       "* [Wikidata item](https://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by \n",
+       "Wikidata [g]\")\n",
+       "\n",
+       "Appearance\n",
+       "\n",
+       "move to sidebar\n",
+       "hide\n",
+       "\n",
+       "From Wikipedia, the free encyclopedia\n",
+       "\n",
+       "Argentine singer (1935–2009)\n",
+       "\n",
+       "Not to be confused with [Mercedes Sola](/wiki/Mercedes_Sola \"Mercedes Sola\").\n",
+       "\n",
+       "| Mercedes Sosa | |\n",
+       "| --- | --- |\n",
+       "| Portrait by [Annemarie Heinrich](/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"), 1960s | |\n",
+       "| Born | Haydée Mercedes Sosa  (1935-07-09)9 July 1935  [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \n",
+       "\"San Miguel de Tucumán\"), Tucumán, Argentina |\n",
+       "| Died | 4 October 2009(2009-10-04) (aged 74)  [Buenos Aires](/wiki/Buenos_Aires \"Buenos Aires\"), Argentina |\n",
+       "| Occupation | Singer |\n",
+       "| Years active | 1950–2009 |\n",
+       "| **Musical career** | |\n",
+       "| Genres | * [Folk](/wiki/Folk_music \"Folk music\") * [nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\n",
+       "| Instruments | Vocals |\n",
+       "| Musical artist | |\n",
+       "\n",
+       "**Haydée Mercedes** \"**La Negra**\" **Sosa** (Latin American Spanish: [[meɾˈseðes ˈsosa]](/wiki/Help:IPA/Spanish \n",
+       "\"Help:IPA/Spanish\"); 9 July 1935[[1]](#cite_note-birth-1) – 4 October 2009) was an [Argentine](/wiki/Argentines \n",
+       "\"Argentines\") singer who was popular throughout [Latin America](/wiki/Latin_America \"Latin America\") and many \n",
+       "countries outside the region. With her roots in [Argentine folk music](/wiki/Folk_music_of_Argentina \"Folk music of\n",
+       "Argentina\"), Sosa became one of the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written \n",
+       "by many Latin American songwriters. Her music made people hail her as the \"voice of the voiceless \n",
+       "ones\".[[2]](#cite_note-tmc-2) She was often called \"the conscience of Latin America\".[[3]](#cite_note-3)\n",
+       "\n",
+       "Sosa performed in venues such as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln Center\") in New York City, the \n",
+       "[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\") in Paris, the [Sistine \n",
+       "Chapel](/wiki/Sistine_Chapel \"Sistine Chapel\") in Vatican City, as well as sold-out shows in New York's [Carnegie \n",
+       "Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") and the Roman [Colosseum](/wiki/Colosseum \"Colosseum\") during her final \n",
+       "decade of life. Her career spanned four decades and she was the recipient of six [Latin Grammy](/wiki/Latin_Grammy \n",
+       "\"Latin Grammy\") awards (2000, 2003, 2004, 2006, 2009, 2011), including a [Latin Grammy Lifetime Achievement \n",
+       "Award](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") in 2004 and two \n",
+       "posthumous [Latin Grammy Award for Best Folk Album](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \n",
+       "Award for Best Folk Album\") in 2009 and 2011. She won the [Premio Gardel](/wiki/Premios_Gardel \"Premios Gardel\") in\n",
+       "2000, the main musical award in Argentina. She served as an ambassador for [UNICEF](/wiki/UNICEF \"UNICEF\").\n",
+       "\n",
+       "Life\n",
+       "----\n",
+       "\n",
+       "[[edit](/w/index.php?title=Mercedes_Sosa&action=edit&section=1 \"Edit section: Life\")]\n",
+       "\n",
+       "Sosa was born on 9 July 1935, in [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"),\n",
+       "in the [northwestern Argentine](/wiki/Argentine_Northwest \"Argentine Northwest\") province of \n",
+       "[Tucumán](/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"), of [mestizo](/wiki/Mestizo \"Mestizo\") ancestry. She was \n",
+       "of French, Spanish and [Diaguita](/wiki/Diaguita \"Diaguita\") \n",
+       "descent.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Her nickname \"la negra\", which is a \n",
+       "common nickname in Argentina for people with darker complexion, is a reference to her indigenous \n",
+       "heritage.[[5]](#cite_note-:0-5) Her parents, a day laborer and a washerwoman,[[6]](#cite_note-6) were \n",
+       "[Peronists](/wiki/Peronism \"Peronism\"), although they never registered in the party, and she started her career as \n",
+       "a singer for the [Peronist Party](/wiki/Peronist_Party \"Peronist Party\") in [Tucuman](/wiki/Tucum%C3%A1n_Province \n",
+       "\"Tucumán Province\") under the name Gladys Osorio.[[7]](#cite_note-7) In 1950, at age fifteen, she won a singing \n",
+       "competition organized by a local radio station and was given a contract to perform for two \n",
+       "months.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) She recorded her first album, *[La Voz de la \n",
+       "Zafra](/wiki/La_voz_de_la_zafra \"La voz de la zafra\")*, in 1959.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) A \n",
+       "performance at the 1965 [Cosquín National Folklore Festival](/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\")—where \n",
+       "she was introduced and brought to the stage while sitting in the audience by fellow folk singer [Jorge \n",
+       "Cafrune](/wiki/Jorge_Cafrune \"Jorge Cafrune\")—[[9]](#cite_note-test-9) brought her to the attention of the \n",
+       "Argentine public.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Sosa and her first husband, [Manuel Oscar \n",
+       "Matus](/w/index.php?title=Manuel_Oscar_Matus&action=edit&redlink=1 \"Manuel Oscar Matus (page does not exist)\"), \n",
+       "with whom she had one son, were key players in the mid-60s *[nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva \n",
+       "canción\")* movement (which was called *nuevo cancionero* in \n",
+       "Argentina).[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Her second record was *Canciones con Fundamento*, \n",
+       "a collection of Argentine folk songs.\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg/\n",
+       "250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg)](/wiki/File:Mercedes_Sosa,_F%C3%A9lix_Luna_y_Ariel\n",
+       "_Ram%C3%ADrez.jpg)\n",
+       "\n",
+       "Sosa with [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\") and [Ariel Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel \n",
+       "Ramírez\") (at the piano)\n",
+       "\n",
+       "Sosa \"spent the late 1960s building her audience in Europe and among the cosmopolitan middle class in Buenos Aires,\n",
+       "becoming in the process a much bigger star\" than her contemporaries.[[11]](#cite_note-11)In 1967, Sosa toured the \n",
+       "United States and Europe with great success.[*[citation needed](/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation\n",
+       "needed\")*] In later years, she performed and recorded extensively, broadening her repertoire to include material \n",
+       "from throughout Latin America.\n",
+       "\n",
+       "In the early 1970s, Sosa released two concept albums in collaboration with composer [Ariel \n",
+       "Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\") and lyricist [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\"): \n",
+       "*Cantata Sudamericana* and *Mujeres Argentinas* (Argentine Women). She also recorded a tribute to Chilean musician \n",
+       "[Violeta Parra](/wiki/Violeta_Parra \"Violeta Parra\") in 1971, including what was to become one of Sosa's signature \n",
+       "songs, *[Gracias a la vida](/wiki/Gracias_a_la_vida \"Gracias a la \n",
+       "vida\")*.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[12]](#cite_note-ap-12) She further \n",
+       "popularized of songs written by [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\") of Brazil and \n",
+       "[Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") and [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \n",
+       "\"Silvio Rodríguez\") both from [Cuba](/wiki/Cuba \n",
+       "\"Cuba\").[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Throughout the decade, she released \n",
+       "albums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \n",
+       "\"Cuando tenga la tierra\", written by [Ariel Petrocelli](/w/index.php?title=Ariel_Petrocelli&action=edit&redlink=1 \n",
+       "\"Ariel Petrocelli (page does not exist)\") and Daniel Toro, which tackles political and social issues like wealth \n",
+       "and land inequality.[[13]](#cite_note-:2-13)[[14]](#cite_note-14) During the 1970s she was a part of two films by \n",
+       "the director [Leopoldo Torre Nilsson](/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"): *[El Santo de la \n",
+       "Espada](/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\")* in 1970 and *[Güemes, la tierra en \n",
+       "armas](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\")* in 1971, in which she portrayed [Juana \n",
+       "Azurduy de Padilla](/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"), the guerrilla military leader who \n",
+       "fought for Argentine independence.[[13]](#cite_note-:2-13)[[15]](#cite_note-15)\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg)](/wiki/File\n",
+       ":Mercedes_Sosa_2.jpg)\n",
+       "\n",
+       "Sosa in 1972\n",
+       "\n",
+       "After the [military junta](/wiki/National_Reorganization_Process \"National Reorganization Process\") of [Jorge \n",
+       "Videla](/wiki/Jorge_Videla \"Jorge Videla\") came to power in 1976, the atmosphere in Argentina grew increasingly \n",
+       "oppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \n",
+       "country. At a concert in [La Plata](/wiki/La_Plata \"La Plata\") in 1979, Sosa was searched and arrested on stage, \n",
+       "along with all those attending the concert.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Their release came\n",
+       "about through international intervention.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Despite attempts to hold more \n",
+       "concerts, she was officially barred from performing by the military regime.[[5]](#cite_note-:0-5) Banned in her own\n",
+       "country, she moved to Paris and then to [Madrid](/wiki/Madrid \n",
+       "\"Madrid\").[[8]](#cite_note-Mercedes_Sosa:_Obituary-8)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)She has \n",
+       "spoken publicly about her artistic and emotional struggles during this period of her life.[[5]](#cite_note-:0-5) \n",
+       "While in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\n",
+       "Acuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, [Patricio \n",
+       "Manns](/wiki/Patricio_Manns \"Patricio Manns\"). The song, which he wrote while also in political exile, expresses \n",
+       "the sorrow he felt from being separated from his homeland.[[16]](#cite_note-16) She related to this feeling and \n",
+       "struggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\n",
+       "problem, a problem of morale...It wasn’t my throat, or anything physical\". [[5]](#cite_note-:0-5)\n",
+       "\n",
+       "Sosa returned to Argentina from her exile in Europe in February of \n",
+       "1982,[[17]](#cite_note-:1-17)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) several months before the \n",
+       "military regime collapsed as a result of the [Falklands War](/wiki/Falklands_War \"Falklands War\"), and gave a \n",
+       "series of concerts at the *[Teatro Ópera](/wiki/Teatro_Opera \"Teatro Opera\")* in Buenos Aires, where she invited \n",
+       "many of her younger colleagues to share the stage. A double album of recordings from these performances became an \n",
+       "instant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\n",
+       "largely ignored by mainstream media in the country.[[17]](#cite_note-:1-17) In subsequent years, Sosa continued to \n",
+       "tour both in Argentina and abroad, performing in such venues as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln \n",
+       "Center\") in New York City and the *[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\")* in Paris. \n",
+       "In poor health for much of the 1990s, she performed a comeback show in Argentina in \n",
+       "1998.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) In 1994, she played in the [Sistine Chapel](/wiki/Sistine_Chapel \n",
+       "\"Sistine Chapel\") in Vatican City.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) In 2002, she \n",
+       "sold out both [Carnegie Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") in New York and the [Colosseum](/wiki/Colosseum \n",
+       "\"Colosseum\") in Rome in the same year.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)\n",
+       "\n",
+       "[![](//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg)](/wiki/File:Mer\n",
+       "cedes_Sosa.jpg)\n",
+       "\n",
+       "Sosa in 1973\n",
+       "\n",
+       "A supporter of [Perón](/wiki/Juan_Per%C3%B3n \"Juan Perón\"), she favored leftist causes throughout her life. She \n",
+       "supported President [Raul Alfonsin](/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\") in the election of 1983 which \n",
+       "marked the return of democracy in Argentina following the dictatorship. She referred to this election as \n",
+       "\"Argentina's Spring\"[[18]](#cite_note-18) She opposed President [Carlos Menem](/wiki/Carlos_Menem \"Carlos Menem\"), \n",
+       "who was in office from 1989 to 1999, and supported the election of [Néstor Kirchner](/wiki/N%C3%A9stor_Kirchner \n",
+       "\"Néstor Kirchner\"), who became president in 2003.[[19]](#cite_note-19)\n",
+       "Sosa was a [UNESCO Goodwill Ambassador](/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\") for Latin \n",
+       "America and the Caribbean.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)[[20]](#cite_note-20)\n",
+       "\n",
+       "Sosa disliked being identified as a protest singer.[[21]](#cite_note-21)[[22]](#cite_note-22) While she was \n",
+       "outright in her political stances, Sosa said the following on the position of the artist:\n",
+       "\n",
+       "> “An artist isn’t political in the party political sense – they have a constituency, which is their public – it is\n",
+       "the poetry that matters most of all.”\n",
+       "\n",
+       "In a career spanning four decades, she worked with performers across several genres and generations, folk, opera, \n",
+       "pop, rock, including [Martha Argerich](/wiki/Martha_Argerich \"Martha Argerich\"), [Andrea \n",
+       "Bocelli](/wiki/Andrea_Bocelli \"Andrea Bocelli\"), [David Broza](/wiki/David_Broza \"David Broza\"), [Franco \n",
+       "Battiato](/wiki/Franco_Battiato \"Franco Battiato\"), [Jaime Roos](/wiki/Jaime_Roos \"Jaime Roos\"), [Joan \n",
+       "Baez](/wiki/Joan_Baez \"Joan Baez\"), [Francis Cabrel](/wiki/Francis_Cabrel \"Francis Cabrel\"), [Gal \n",
+       "Costa](/wiki/Gal_Costa \"Gal Costa\"), [Luz Casal](/wiki/Luz_Casal \"Luz Casal\"), [Lila Downs](/wiki/Lila_Downs \"Lila \n",
+       "Downs\"), [Lucio Dalla](/wiki/Lucio_Dalla \"Lucio Dalla\"), [Maria Farantouri](/wiki/Maria_Farantouri \"Maria \n",
+       "Farantouri\"), [Lucecita Benitez](/wiki/Lucecita_Benitez \"Lucecita Benitez\"), [Nilda \n",
+       "Fernández](/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"), [Charly Garcia](/wiki/Charly_Garcia \"Charly Garcia\"), \n",
+       "[León Gieco](/wiki/Le%C3%B3n_Gieco \"León Gieco\"), [Gian Marco](/wiki/Gian_Marco \"Gian Marco\"), [Nana \n",
+       "Mouskouri](/wiki/Nana_Mouskouri \"Nana Mouskouri\"), [Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"), \n",
+       "[Holly Near](/wiki/Holly_Near \"Holly Near\"), [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\"), \n",
+       "[Pata Negra](/wiki/Pata_Negra \"Pata Negra\"), [Fito Páez](/wiki/Fito_P%C3%A1ez \"Fito Páez\"), [Franco De \n",
+       "Vita](/wiki/Franco_De_Vita \"Franco De Vita\"), [Lourdes Pérez](/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"), [Luciano \n",
+       "Pavarotti](/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"), [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \"Silvio \n",
+       "Rodríguez\"), [Ismael Serrano](/wiki/Ismael_Serrano \"Ismael Serrano\"), [Shakira](/wiki/Shakira \"Shakira\"), \n",
+       "[Sting](/wiki/Sting_(musician) \"Sting (musician)\"), [Caetano Veloso](/wiki/Caetano_Veloso \"Caetano \n",
+       "Veloso\"),[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) [Julieta Venegas](/wiki/Julieta_Venegas\n",
+       "\"Julieta Venegas\"), [Gustavo Cerati](/wiki/Gustavo_Cerati \"Gustavo Cerati\") and [Konstantin \n",
+       "Wecker](/wiki/Konstantin_Wecker \"Konstantin Wecker\")[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10\n",
+       "..._This content has been truncated to stay below 50000 characters_...\n",
+       " * [Roberto Pires](/w/index.php?title=Roberto_Pires&action=edit&redlink=1 \"Roberto Pires (page does not exist)\") * \n",
+       "[Ronaldo Correia de Brito](/w/index.php?title=Ronaldo_Correia_de_Brito&action=edit&redlink=1 \"Ronaldo Correia de \n",
+       "Brito (page does not exist)\") * [Rosa Maria dos Santos \n",
+       "Alves](/w/index.php?title=Rosa_Maria_dos_Santos_Alves&action=edit&redlink=1 \"Rosa Maria dos Santos Alves (page does\n",
+       "not exist)\") * [Rubem Braga](/wiki/Rubem_Braga \"Rubem Braga\") * [Sérgio Mamberti](/wiki/S%C3%A9rgio_Mamberti \n",
+       "\"Sérgio Mamberti\") * [Sociedade Junina Bumba Meu Boi da \n",
+       "Liberdade](/w/index.php?title=Sociedade_Junina_Bumba_Meu_Boi_da_Liberdade&action=edit&redlink=1 \"Sociedade Junina \n",
+       "Bumba Meu Boi da Liberdade (page does not exist)\") * [Tomie Ohtake](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Walda \n",
+       "Marques](/w/index.php?title=Walda_Marques&action=edit&redlink=1 \"Walda Marques (page does not exist)\") * [Walter \n",
+       "Pinto](/w/index.php?title=Walter_Pinto&action=edit&redlink=1 \"Walter Pinto (page does not exist)\") |\n",
+       "| 2014 | * [Alex Atala](/wiki/Alex_Atala \"Alex Atala\") * [Alexandre Herchcovitch](/wiki/Alexandre_Herchcovitch \n",
+       "\"Alexandre Herchcovitch\") * [Bernardo Paz](/wiki/Bernardo_Paz \"Bernardo Paz\") * [Bruno e \n",
+       "Marrone](/wiki/Bruno_e_Marrone \"Bruno e Marrone\") * [Celso Frateschi](/wiki/Celso_Frateschi \"Celso Frateschi\") * \n",
+       "[Chico de Assis](/w/index.php?title=Chico_de_Assis&action=edit&redlink=1 \"Chico de Assis (page does not exist)\") * \n",
+       "[Eliane Potiguara](/w/index.php?title=Eliane_Potiguara&action=edit&redlink=1 \"Eliane Potiguara (page does not \n",
+       "exist)\") * [Henricredo Coelho](/w/index.php?title=Henricredo_Coelho&action=edit&redlink=1 \"Henricredo Coelho (page \n",
+       "does not exist)\") * [Hermano Vianna](/w/index.php?title=Hermano_Vianna&action=edit&redlink=1 \"Hermano Vianna (page \n",
+       "does not exist)\") * [Jenner Augusto](/w/index.php?title=Jenner_Augusto&action=edit&redlink=1 \"Jenner Augusto (page \n",
+       "does not exist)\") * [José Carlos Meirelles](/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\") * [Júlio \n",
+       "Medaglia](/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\") * [Mano Brown](/wiki/Mano_Brown \"Mano Brown\") * [Marisa \n",
+       "Monte](/wiki/Marisa_Monte \"Marisa Monte\") * [Matheus Nachtergaele](/wiki/Matheus_Nachtergaele \"Matheus \n",
+       "Nachtergaele\") * [Ogã Bangbala](/w/index.php?title=Og%C3%A3_Bangbala&action=edit&redlink=1 \"Ogã Bangbala (page does\n",
+       "not exist)\") * [Orlando Senna](/w/index.php?title=Orlando_Senna&action=edit&redlink=1 \"Orlando Senna (page does not\n",
+       "exist)\") * [Oskar Metsavaht](/wiki/Oskar_Metsavaht \"Oskar Metsavaht\") * [Patrícia \n",
+       "Pillar](/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\") * Paulo Martins * [Tião \n",
+       "Oleiro](/w/index.php?title=Ti%C3%A3o_Oleiro&action=edit&redlink=1 \"Tião Oleiro (page does not exist)\") * [Vange \n",
+       "Leonel](/wiki/Vange_Leonel \"Vange Leonel\") |\n",
+       "| 2015 | * [Adylson Godoy](/w/index.php?title=Adylson_Godoy&action=edit&redlink=1 \"Adylson Godoy (page does not \n",
+       "exist)\") * [Ailton Krenak](/wiki/Ailton_Krenak \"Ailton Krenak\") * [Aldyr Schlee](/wiki/Aldyr_Schlee \"Aldyr Schlee\")\n",
+       "* [Antônio Araújo](/w/index.php?title=Ant%C3%B4nio_Ara%C3%BAjo&action=edit&redlink=1 \"Antônio Araújo (page does not\n",
+       "exist)\") * [Arnaldo Antunes](/wiki/Arnaldo_Antunes \"Arnaldo Antunes\") * [As Ceguinhas de Campina \n",
+       "Grande](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n",
+       "(page does not exist)\") * [Augusto de Campos](/wiki/Augusto_de_Campos \"Augusto de Campos\") * [Casa de Cinema de \n",
+       "Porto Alegre](/w/index.php?title=Casa_de_Cinema_de_Porto_Alegre&action=edit&redlink=1 \"Casa de Cinema de Porto \n",
+       "Alegre (page does not exist)\") * [Centro de Memória do \n",
+       "Circo](/w/index.php?title=Centro_de_Mem%C3%B3ria_do_Circo&action=edit&redlink=1 \"Centro de Memória do Circo (page \n",
+       "does not exist)\") * [Cesare La Rocca](/w/index.php?title=Cesare_La_Rocca&action=edit&redlink=1 \"Cesare La Rocca \n",
+       "(page does not exist)\") * [Comissão Guarani \n",
+       "Yvyrupa](/w/index.php?title=Comiss%C3%A3o_Guarani_Yvyrupa&action=edit&redlink=1 \"Comissão Guarani Yvyrupa (page \n",
+       "does not exist)\") * [Daniela Mercury](/wiki/Daniela_Mercury \"Daniela Mercury\") * [Davi Kopenawa \n",
+       "Yanomami](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Eva \n",
+       "Schul](/w/index.php?title=Eva_Schul&action=edit&redlink=1 \"Eva Schul (page does not exist)\") * [Humberto \n",
+       "Teixeira](/wiki/Humberto_Teixeira \"Humberto Teixeira\") * [Italo \n",
+       "Campofiorito](/w/index.php?title=Italo_Campofiorito&action=edit&redlink=1 \"Italo Campofiorito (page does not \n",
+       "exist)\") * Mestre [João Grande](/wiki/Jo%C3%A3o_Grande \"João Grande\") * [José \n",
+       "Mourão](/w/index.php?title=Jos%C3%A9_Mour%C3%A3o&action=edit&redlink=1 \"José Mourão (page does not exist)\") * [Luís\n",
+       "Humberto](/w/index.php?title=Lu%C3%ADs_Humberto&action=edit&redlink=1 \"Luís Humberto (page does not exist)\") * Mãe \n",
+       "[Beth de Oxum](/w/index.php?title=Beth_de_Oxum&action=edit&redlink=1 \"Beth de Oxum (page does not exist)\") * \n",
+       "[Marcelo Yuka](/wiki/Marcelo_Yuka \"Marcelo Yuka\") * [Niède Guidon](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * [Paulo\n",
+       "Herkenhoff](/w/index.php?title=Paulo_Herkenhoff&action=edit&redlink=1 \"Paulo Herkenhoff (page does not exist)\") * \n",
+       "[Rolando Boldrin](/wiki/Rolando_Boldrin \"Rolando Boldrin\") * [Ruy \n",
+       "Cezar](/w/index.php?title=Ruy_Cezar&action=edit&redlink=1 \"Ruy Cezar (page does not exist)\") * [Sociedade Musical \n",
+       "Curica](/w/index.php?title=Curica_(band)&action=edit&redlink=1 \"Curica (band) (page does not exist)\") * [Sônia \n",
+       "Guajajara](/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\") * [Tribo de \n",
+       "Atuadores](/w/index.php?title=Tribo_de_Atuadores&action=edit&redlink=1 \"Tribo de Atuadores (page does not exist)\") \n",
+       "* [Uruhu Mehinako](/w/index.php?title=Uruhu_Mehinako&action=edit&redlink=1 \"Uruhu Mehinako (page does not exist)\") \n",
+       "* [Vanisa Santiago](/w/index.php?title=Vanisa_Santiago&action=edit&redlink=1 \"Vanisa Santiago (page does not \n",
+       "exist)\") * [Vera Tostes](/w/index.php?title=Vera_Tostes&action=edit&redlink=1 \"Vera Tostes (page does not exist)\") \n",
+       "* [Walter Carvalho](/wiki/Walter_Carvalho \"Walter Carvalho\") |\n",
+       "| 2016 | * [Abel Gomes](/w/index.php?title=Abel_Gomes&action=edit&redlink=1 \"Abel Gomes (page does not exist)\") * \n",
+       "[Alcymar Monteiro](/w/index.php?title=Alcymar_Monteiro&action=edit&redlink=1 \"Alcymar Monteiro (page does not \n",
+       "exist)\") * [Ana Mae Barbosa](/w/index.php?title=Ana_Mae_Barbosa&action=edit&redlink=1 \"Ana Mae Barbosa (page does \n",
+       "not exist)\") * [Andrucha Waddington](/wiki/Andrucha_Waddington \"Andrucha Waddington\") * [Beatriz \n",
+       "Milhazes](/wiki/Beatriz_Milhazes \"Beatriz Milhazes\") * [Carlinhos de \n",
+       "Jesus](/w/index.php?title=Carlinhos_de_Jesus&action=edit&redlink=1 \"Carlinhos de Jesus (page does not exist)\") * \n",
+       "[Carlos Alberto Serpa de Oliveira](/w/index.php?title=Carlos_Alberto_Serpa_de_Oliveira&action=edit&redlink=1 \n",
+       "\"Carlos Alberto Serpa de Oliveira (page does not exist)\") * [Carlos Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * \n",
+       "[Clementina de Jesus](/wiki/Clementina_de_Jesus \"Clementina de Jesus\") * [Dona Ivone Lara](/wiki/Dona_Ivone_Lara \n",
+       "\"Dona Ivone Lara\") * [Donga](/wiki/Donga_(musician) \"Donga (musician)\") * [Fernando \n",
+       "Meirelles](/wiki/Fernando_Meirelles \"Fernando Meirelles\") * [Ferreira Gullar](/wiki/Ferreira_Gullar \"Ferreira \n",
+       "Gullar\") * [Focus Cia. De Dança](/w/index.php?title=Focus_Cia._De_Dan%C3%A7a&action=edit&redlink=1 \"Focus Cia. De \n",
+       "Dança (page does not exist)\") * [Fred Gelli](/w/index.php?title=Fred_Gelli&action=edit&redlink=1 \"Fred Gelli (page \n",
+       "does not exist)\") * [Fundação Darcy \n",
+       "Ribeiro](/w/index.php?title=Funda%C3%A7%C3%A3o_Darcy_Ribeiro&action=edit&redlink=1 \"Fundação Darcy Ribeiro (page \n",
+       "does not exist)\") * [Grupo Teatro da Laje](/w/index.php?title=Grupo_Teatro_da_Laje&action=edit&redlink=1 \"Grupo \n",
+       "Teatro da Laje (page does not exist)\") * [Instituto Ricardo Brennand](/wiki/Ricardo_Brennand_Institute \"Ricardo \n",
+       "Brennand Institute\") * [Isaurinha Garcia](/w/index.php?title=Isaurinha_Garcia&action=edit&redlink=1 \"Isaurinha \n",
+       "Garcia (page does not exist)\") * [Ismael Silva](/wiki/Ismael_Silva_(musician) \"Ismael Silva (musician)\") * [Jorge \n",
+       "Aragão](/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\") * [Jovelina Pérola Negra](/wiki/Jovelina_P%C3%A9rola_Negra \n",
+       "\"Jovelina Pérola Negra\") * [Maracatu Feminino Coração \n",
+       "Nazareno](/w/index.php?title=Maracatu_Feminino_Cora%C3%A7%C3%A3o_Nazareno&action=edit&redlink=1 \"Maracatu Feminino \n",
+       "Coração Nazareno (page does not exist)\") * [Marcus \n",
+       "Faustini](/w/index.php?title=Marcus_Faustini&action=edit&redlink=1 \"Marcus Faustini (page does not exist)\") * \n",
+       "[Mauro Mendonça](/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\") * [Museu do \n",
+       "Samba](/w/index.php?title=Centro_Cultural_Cartola&action=edit&redlink=1 \"Centro Cultural Cartola (page does not \n",
+       "exist)\") * [Neguinho da Beija-Flor](/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\") * [Nelson \n",
+       "Sargento](/wiki/Nelson_Sargento \"Nelson Sargento\") * [Noel Rosa](/wiki/Noel_Rosa \"Noel Rosa\") * \n",
+       "[Papete](/w/index.php?title=Papete&action=edit&redlink=1 \"Papete (page does not exist)\") * [Ricardo Cravo \n",
+       "Albin](/w/index.php?title=Ricardo_Cravo_Albin&action=edit&redlink=1 \"Ricardo Cravo Albin (page does not exist)\") * \n",
+       "[Rildo Hora](/w/index.php?title=Rildo_Hora&action=edit&redlink=1 \"Rildo Hora (page does not exist)\") * [Rosa \n",
+       "Magalhães](/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\") * [Rosa Maria \n",
+       "Araújo](/w/index.php?title=Rosa_Maria_Ara%C3%BAjo&action=edit&redlink=1 \"Rosa Maria Araújo (page does not exist)\") \n",
+       "* [Silas de Oliveira](/w/index.php?title=Silas_de_Oliveira&action=edit&redlink=1 \"Silas de Oliveira (page does not \n",
+       "exist)\") * [Vik Muniz](/wiki/Vik_Muniz \"Vik Muniz\") |\n",
+       "| 2017 | * [Afonso Oliveira](/w/index.php?title=Afonso_Oliveira&action=edit&redlink=1 \"Afonso Oliveira (page does \n",
+       "not exist)\") * [Ana Maria Nobrega Miranda](/w/index.php?title=Ana_Maria_Nobrega_Miranda&action=edit&redlink=1 \"Ana \n",
+       "Maria Nobrega Miranda (page does not exist)\") * [Augusto \n",
+       "Marzagão](/w/index.php?title=Augusto_Marzag%C3%A3o&action=edit&redlink=1 \"Augusto Marzagão (page does not exist)\") \n",
+       "* [Beto Kelner](/w/index.php?title=Beto_Kelner&action=edit&redlink=1 \"Beto Kelner (page does not exist)\") * \n",
+       "[Boni](/w/index.php?title=Jos%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&action=edit&redlink=1 \"José Bonifácio de \n",
+       "Oliveira Sobrinho (page does not exist)\") * [Carla Camurati](/wiki/Carla_Camurati \"Carla Camurati\") * [Carlos \n",
+       "Tufvesson](/wiki/Carlos_Tufvesson \"Carlos Tufvesson\") * [Cláudia Costin](/wiki/Cl%C3%A1udia_Costin \"Cláudia \n",
+       "Costin\") * [Domingo Alzugaray](/wiki/Domingo_Alzugaray \"Domingo Alzugaray\") * [Dona Onete](/wiki/Dona_Onete \"Dona \n",
+       "Onete\") * [Eduardo Portella](/wiki/Eduardo_Portella \"Eduardo Portella\") * [Eduardo Saron \n",
+       "Nunes](/w/index.php?title=Eduardo_Saron_Nunes&action=edit&redlink=1 \"Eduardo Saron Nunes (page does not exist)\") * \n",
+       "[Fernando Alterio](/w/index.php?title=Fernando_Alterio&action=edit&redlink=1 \"Fernando Alterio (page does not \n",
+       "exist)\") * [Galo da Madrugada](/wiki/Galo_da_Madrugada \"Galo da Madrugada\") * [Genival \n",
+       "Lacerda](/wiki/Genival_Lacerda \"Genival Lacerda\") * [Ivo \n",
+       "Barroso](/w/index.php?title=Ivo_Barroso&action=edit&redlink=1 \"Ivo Barroso (page does not exist)\") * [Jair de \n",
+       "Souza](/w/index.php?title=Jair_de_Souza&action=edit&redlink=1 \"Jair de Souza (page does not exist)\") * [Luciane \n",
+       "Gorgulho](/w/index.php?title=Luciane_Gorgulho&action=edit&redlink=1 \"Luciane Gorgulho (page does not exist)\") * \n",
+       "[Luis Severiano Ribeiro](/w/index.php?title=Luis_Severiano_Ribeiro&action=edit&redlink=1 \"Luis Severiano Ribeiro \n",
+       "(page does not exist)\") * [Luiz Calainho](/w/index.php?title=Luiz_Calainho&action=edit&redlink=1 \"Luiz Calainho \n",
+       "(page does not exist)\") * [Marcelo Bertini](/w/index.php?title=Marcelo_Bertini&action=edit&redlink=1 \"Marcelo \n",
+       "Bertini (page does not exist)\") * [Marcelo Bratke](/wiki/Marcelo_Bratke \"Marcelo Bratke\") * [Marcelo \n",
+       "Dantas](/w/index.php?title=Marcelo_Dantas&action=edit&redlink=1 \"Marcelo Dantas (page does not exist)\") * [Maria \n",
+       "Ignez Mantovani](/w/index.php?title=Maria_Ignez_Mantovani&action=edit&redlink=1 \"Maria Ignez Mantovani (page does \n",
+       "not exist)\") * [Moeller & Botelho Produções \n",
+       "Artísticas](/w/index.php?title=Moeller_%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&action=edit&redlink=1 \n",
+       "\"Moeller & Botelho Produções Artísticas (page does not exist)\") * Mãe [Neide Oyá \n",
+       "D´Oxum](/w/index.php?title=Neide_Oy%C3%A1_D%C2%B4Oxum&action=edit&redlink=1 \"Neide Oyá D´Oxum (page does not \n",
+       "exist)\") * [Paulo Cruz](/w/index.php?title=Paulo_Cruz&action=edit&redlink=1 \"Paulo Cruz (page does not exist)\") * \n",
+       "[Pierre André Mantovani](/w/index.php?title=Pierre_Andr%C3%A9_Mantovani&action=edit&redlink=1 \"Pierre André \n",
+       "Mantovani (page does not exist)\") * [Renato Aragão](/wiki/Renato_Arag%C3%A3o \"Renato Aragão\") * [Ricardo \n",
+       "Amaral](/w/index.php?title=Ricardo_Amaral&action=edit&redlink=1 \"Ricardo Amaral (page does not exist)\") * [Roberto \n",
+       "Minczuk](/wiki/Roberto_Minczuk \"Roberto Minczuk\") * [Roberto Santucci](/wiki/Roberto_Santucci \"Roberto Santucci\") |\n",
+       "| 2018 | * [Abelardo Barbosa](/wiki/Chacrinha \"Chacrinha\") * [Antonio \n",
+       "Mazzafera](/w/index.php?title=Antonio_Mazzafera&action=edit&redlink=1 \"Antonio Mazzafera (page does not exist)\") * \n",
+       "[Biblioteca Oliveira Lima](/w/index.php?title=Biblioteca_Oliveira_Lima&action=edit&redlink=1 \"Biblioteca Oliveira \n",
+       "Lima (page does not exist)\") * [Bruno Wainer](/w/index.php?title=Bruno_Wainer&action=edit&redlink=1 \"Bruno Wainer \n",
+       "(page does not exist)\") * [Carlos Saldanha](/wiki/Carlos_Saldanha \"Carlos Saldanha\") * [Carlos \n",
+       "Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * [Dedé Santana](/wiki/Ded%C3%A9_Santana \"Dedé Santana\") * [Eva \n",
+       "Sopher](/wiki/Eva_Sopher \"Eva Sopher\") * [Eva Wilma](/wiki/Eva_Wilma \"Eva Wilma\") * [Festival Villa \n",
+       "Mix](/w/index.php?title=Festival_Villa_Mix&action=edit&redlink=1 \"Festival Villa Mix (page does not exist)\") * \n",
+       "[Guilherme Fiuza](/w/index.php?title=Guilherme_Fiuza&action=edit&redlink=1 \"Guilherme Fiuza (page does not exist)\")\n",
+       "* [Instituto Histórico e Geográfico Brasileiro](/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \n",
+       "\"Instituto Histórico e Geográfico Brasileiro\") * [Jorge \n",
+       "Caldeira](/w/index.php?title=Jorge_Caldeira&action=edit&redlink=1 \"Jorge Caldeira (page does not exist)\") * [José \n",
+       "Bonifácio](/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\") * [Kati Almeida \n",
+       "Braga](/w/index.php?title=Kati_Almeida_Braga&action=edit&redlink=1 \"Kati Almeida Braga (page does not exist)\") * \n",
+       "[King's Brazil Institute](/w/index.php?title=King%27s_Brazil_Institute&action=edit&redlink=1 \"King's Brazil \n",
+       "Institute (page does not exist)\") * [Luiz Oscar \n",
+       "Niemeyer](/w/index.php?title=Luiz_Oscar_Niemeyer&action=edit&redlink=1 \"Luiz Oscar Niemeyer (page does not exist)\")\n",
+       "* [Marcelo Castello Branco](/w/index.php?title=Marcelo_Castello_Branco&action=edit&redlink=1 \"Marcelo Castello \n",
+       "Branco (page does not exist)\") * [Marcio Fraccaroli](/w/index.php?title=Marcio_Fraccaroli&action=edit&redlink=1 \n",
+       "\"Marcio Fraccaroli (page does not exist)\") * [Martim Vasques da \n",
+       "Cunha](/w/index.php?title=Martim_Vasques_da_Cunha&action=edit&redlink=1 \"Martim Vasques da Cunha (page does not \n",
+       "exist)\") * [Milton Gonçalves](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Monah \n",
+       "Delacy](/w/index.php?title=Monah_Delacy&action=edit&redlink=1 \"Monah Delacy (page does not exist)\") * [Museu de \n",
+       "Arte de São Paulo](/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\") * [Museu de Arte Moderna do \n",
+       "Rio de Janeiro](/w/index.php?title=Museu_de_Arte_Moderna_do_Rio_de_Janeiro&action=edit&redlink=1 \"Museu de Arte \n",
+       "Moderna do Rio de Janeiro (page does not exist)\") * [Museu de Arte Moderna de São \n",
+       "Paulo](/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\") * [Museu da Gente \n",
+       "Sergipana](/w/index.php?title=Museu_da_Gente_Sergipana&action=edit&redlink=1 \"Museu da Gente Sergipana (page does \n",
+       "not exist)\") * [Orquestra Filarmônica de Minas \n",
+       "Gerais](/w/index.php?title=Orquestra_Filarm%C3%B4nica_de_Minas_Gerais&action=edit&redlink=1 \"Orquestra Filarmônica \n",
+       "de Minas Gerais (page does not exist)\") * [Roberto Teixeira da \n",
+       "Costa](/w/index.php?title=Roberto_Teixeira_da_Costa&action=edit&redlink=1 \"Roberto Teixeira da Costa (page does not\n",
+       "exist)\") * [Saulo Ferreira](/w/index.php?title=Saulo_Ferreira&action=edit&redlink=1 \"Saulo Ferreira (page does not \n",
+       "exist)\") * [Sérgio Mendes](/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\") * [Sérgio \n",
+       "Mielniczenko](/w/index.php?title=S%C3%A9rgio_Mielniczenko&action=edit&redlink=1 \"Sérgio Mielniczenko (page does not\n",
+       "exist)\") * [Thiago Soares](/wiki/Thiago_Soares \"Thiago Soares\") * [Trio \n",
+       "Roraimeira](/w/index.php?title=Trio_Roraimeira&action=edit&redlink=1 \"Trio Roraimeira (page does not exist)\") * [Vó\n",
+       "Mera](/w/index.php?title=V%C3%B3_Mera&action=edit&redlink=1 \"Vó Mera (page does not exist)\") * [Wanda \n",
+       "Sá](/wiki/Wanda_S%C3%A1 \"Wanda Sá\") |\n",
+       "\n",
+       "| [Authority control databases](/wiki/Help:Authority_control \"Help:Authority control\") [Edit this at \n",
+       "Wikidata](https://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at Wikidata\") | |\n",
+       "| --- | --- |\n",
+       "| International | * [ISNI](https://isni.org/isni/0000000114681685) * [VIAF](https://viaf.org/viaf/14968654) * \n",
+       "[FAST](http://id.worldcat.org/fast/206968/) * \n",
+       "[WorldCat](https://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3) |\n",
+       "| National | * [Germany](https://d-nb.info/gnd/119022249) * [United \n",
+       "States](https://id.loc.gov/authorities/n87117284) * [France](https://catalogue.bnf.fr/ark:/12148/cb13999885k) * \n",
+       "[BnF data](https://data.bnf.fr/ark:/12148/cb13999885k) * [Italy](https://opac.sbn.it/nome/UBOV850079) * \n",
+       "[Spain](https://datos.bne.es/resource/XX1088218) * [Netherlands](http://data.bibliotheken.nl/id/thes/p071981608) * \n",
+       "[Norway](https://authority.bibsys.no/authority/rest/authorities/html/9050316) * \n",
+       "[Chile](http://www.bncatalogo.cl/F?func=direct&local_base=red10&doc_number=000157687) * \n",
+       "[Argentina](https://catalogo.bn.gov.ar/F/?func=direct&local_base=BNA10&doc_number=000042426) * \n",
+       "[Korea](https://lod.nl.go.kr/resource/KAC2020N6852) * \n",
+       "[Israel](https://www.nli.org.il/en/authorities/987007594420405171) * \n",
+       "[Catalonia](https://cantic.bnc.cat/registre/981058518702206706) |\n",
+       "| Artists | * [MusicBrainz](https://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577) |\n",
+       "| People | * [Deutsche Biographie](https://www.deutsche-biographie.de/119022249.html?language=en) * \n",
+       "[DDB](https://www.deutsche-digitale-bibliothek.de/person/gnd/119022249) |\n",
+       "| Other | * [IdRef](https://www.idref.fr/08071613X) * [SNAC](https://snaccooperative.org/ark:/99166/w67n4hns) |\n",
+       "\n",
+       "[Portals](/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"):\n",
+       "\n",
+       "* ![flag](//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png)\n",
+       "[Argentina](/wiki/Portal:Argentina \"Portal:Argentina\")\n",
+       "* ![](//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png) [Latin \n",
+       "music](/wiki/Portal:Latin_music \"Portal:Latin music\")\n",
+       "\n",
+       "![](https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1&usesul3=1)\n",
+       "\n",
+       "Retrieved from \"<https://en.wikipedia.org/w/index.php?title=Mercedes_Sosa&oldid=1281260319>\"\n",
+       "\n",
+       "[Categories](/wiki/Help:Category \"Help:Category\"):\n",
+       "\n",
+       "* [1935 births](/wiki/Category:1935_births \"Category:1935 births\")\n",
+       "* [2009 deaths](/wiki/Category:2009_deaths \"Category:2009 deaths\")\n",
+       "* [Latin Grammy Award winners](/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\")\n",
+       "* [20th-century Argentine women singers](/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century\n",
+       "Argentine women singers\")\n",
+       "* [Argentine activists](/wiki/Category:Argentine_activists \"Category:Argentine activists\")\n",
+       "* [Argentine women activists](/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\")\n",
+       "* [Argentine people of French descent](/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people\n",
+       "of French descent\")\n",
+       "* [Argentine people of Diaguita descent](/wiki/Category:Argentine_people_of_Diaguita_descent \"Category:Argentine \n",
+       "people of Diaguita descent\")\n",
+       "* [Argentine people of Quechua descent](/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine \n",
+       "people of Quechua descent\")\n",
+       "* [Deaths from kidney failure in Argentina](/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths\n",
+       "from kidney failure in Argentina\")\n",
+       "* [People from San Miguel de Tucumán](/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from \n",
+       "San Miguel de Tucumán\")\n",
+       "* [Nueva canción musicians](/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\")\n",
+       "* [Bombo legüero players](/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\")\n",
+       "* [Latin Grammy Lifetime Achievement Award winners](/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \n",
+       "\"Category:Latin Grammy Lifetime Achievement Award winners\")\n",
+       "* [Recipients of the Order of Cultural Merit \n",
+       "(Brazil)](/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_(Brazil) \"Category:Recipients of the Order of \n",
+       "Cultural Merit (Brazil)\")\n",
+       "* [20th-century drummers](/wiki/Category:20th-century_drummers \"Category:20th-century drummers\")\n",
+       "* [Women in Latin music](/wiki/Category:Women_in_Latin_music \"Category:Women in Latin music\")\n",
+       "\n",
+       "Hidden categories:\n",
+       "\n",
+       "* [All articles with dead external links](/wiki/Category:All_articles_with_dead_external_links \"Category:All \n",
+       "articles with dead external links\")\n",
+       "* [Articles with dead external links from June \n",
+       "2024](/wiki/Category:Articles_with_dead_external_links_from_June_2024 \"Category:Articles with dead external links \n",
+       "from June 2024\")\n",
+       "* [CS1 Spanish-language sources (es)](/wiki/Category:CS1_Spanish-language_sources_(es) \"Category:CS1 \n",
+       "Spanish-language sources (es)\")\n",
+       "* [CS1 maint: numeric names: authors list](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 \n",
+       "maint: numeric names: authors list\")\n",
+       "* [CS1 maint: url-status](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\")\n",
+       "* [Webarchive template wayback links](/wiki/Category:Webarchive_template_wayback_links \"Category:Webarchive \n",
+       "template wayback links\")\n",
+       "* [Articles with German-language sources (de)](/wiki/Category:Articles_with_German-language_sources_(de) \n",
+       "\"Category:Articles with German-language sources (de)\")\n",
+       "* [Articles with short description](/wiki/Category:Articles_with_short_description \"Category:Articles with short \n",
+       "description\")\n",
+       "* [Short description is different from Wikidata](/wiki/Category:Short_description_is_different_from_Wikidata \n",
+       "\"Category:Short description is different from Wikidata\")\n",
+       "* [Use dmy dates from July 2023](/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy dates from July \n",
+       "2023\")\n",
+       "* [Wikipedia indefinitely move-protected pages](/wiki/Category:Wikipedia_indefinitely_move-protected_pages \n",
+       "\"Category:Wikipedia indefinitely move-protected pages\")\n",
+       "* [Articles with hCards](/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\")\n",
+       "* [Pages with Latin American Spanish IPA](/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with\n",
+       "Latin American Spanish IPA\")\n",
+       "* [All articles with unsourced statements](/wiki/Category:All_articles_with_unsourced_statements \"Category:All \n",
+       "articles with unsourced statements\")\n",
+       "* [Articles with unsourced statements from December \n",
+       "2023](/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \n",
+       "statements from December 2023\")\n",
+       "* [Commons category link is on Wikidata](/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons \n",
+       "category link is on Wikidata\")\n",
+       "\n",
+       "* This page was last edited on 19 March 2025, at 08:35 (UTC).\n",
+       "* Text is available under the [Creative Commons Attribution-ShareAlike 4.0 \n",
+       "License](/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \n",
+       "\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\");\n",
+       "  additional terms may apply. By using this site, you agree to the [Terms of \n",
+       "Use](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \n",
+       "\"foundation:Special:MyLanguage/Policy:Terms of Use\") and [Privacy \n",
+       "Policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \n",
+       "\"foundation:Special:MyLanguage/Policy:Privacy policy\"). Wikipedia® is a registered trademark of the [Wikimedia \n",
+       "Foundation, Inc.](https://wikimediafoundation.org/), a non-profit organization.\n",
+       "\n",
+       "* [Privacy policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy)\n",
+       "* [About Wikipedia](/wiki/Wikipedia:About)\n",
+       "* [Disclaimers](/wiki/Wikipedia:General_disclaimer)\n",
+       "* [Contact Wikipedia](//en.wikipedia.org/wiki/Wikipedia:Contact_us)\n",
+       "* [Code of Conduct](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct)\n",
+       "* [Developers](https://developer.wikimedia.org)\n",
+       "* [Statistics](https://stats.wikimedia.org/#/en.wikipedia.org)\n",
+       "* [Cookie statement](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement)\n",
+       "* [Mobile view](//en.m.wikipedia.org/w/index.php?title=Mercedes_Sosa&mobileaction=toggle_view_mobile)\n",
+       "\n",
+       "* [![Wikimedia Foundation](/static/images/footer/wikimedia.svg)](https://www.wikimedia.org/)\n",
+       "* [![Powered by MediaWiki](/w/resources/assets/mediawiki_compact.svg)](https://www.mediawiki.org/)\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Search\n",
+       "\n",
+       "Toggle the table of contents\n",
+       "\n",
+       "Mercedes Sosa\n",
+       "\n",
+       "49 languages\n",
+       "[Add topic](#)\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "Mercedes Sosa - Wikipedia\n", + "\n", + "[Jump to content](#bodyContent)\n", + "\n", + "Main menu\n", + "\n", + "Main menu\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "Navigation\n", + "\n", + "* [Main page](/wiki/Main_Page \"Visit the main page [z]\")\n", + "* [Contents](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\n", + "* [Current events](/wiki/Portal:Current_events \"Articles related to current events\")\n", + "* [Random article](/wiki/Special:Random \"Visit a randomly selected article [x]\")\n", + "* [About Wikipedia](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\n", + "* [Contact us](//en.wikipedia.org/wiki/Wikipedia:Contact_us \"How to contact Wikipedia\")\n", + "\n", + "Contribute\n", + "\n", + "* [Help](/wiki/Help:Contents \"Guidance on how to use and edit Wikipedia\")\n", + "* [Learn to edit](/wiki/Help:Introduction \"Learn how to edit Wikipedia\")\n", + "* [Community portal](/wiki/Wikipedia:Community_portal \"The hub for editors\")\n", + "* [Recent changes](/wiki/Special:RecentChanges \"A list of recent changes to Wikipedia [r]\")\n", + "* [Upload file](/wiki/Wikipedia:File_upload_wizard \"Add images or other media for use on Wikipedia\")\n", + "* [Special pages](/wiki/Special:SpecialPages)\n", + "\n", + "[![](/static/images/icons/wikipedia.png)\n", + "\n", + "![Wikipedia](/static/images/mobile/copyright/wikipedia-wordmark-en.svg)\n", + "![The Free Encyclopedia](/static/images/mobile/copyright/wikipedia-tagline-en.svg)](/wiki/Main_Page)\n", + "\n", + "[Search](/wiki/Special:Search \"Search Wikipedia [f]\")\n", + "\n", + "Search\n", + "\n", + "Appearance\n", + "\n", + "* \n", + "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n", + "n)\n", + "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n", + "account and log in; however, it is not mandatory\")\n", + "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n", + "not mandatory. [o]\")\n", + "\n", + "Personal tools\n", + "\n", + "* \n", + "[Donate](https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=e\n", + "n)\n", + "* [Create account](/w/index.php?title=Special:CreateAccount&returnto=Mercedes+Sosa \"You are encouraged to create an\n", + "account and log in; however, it is not mandatory\")\n", + "* [Log in](/w/index.php?title=Special:UserLogin&returnto=Mercedes+Sosa \"You're encouraged to log in; however, it's \n", + "not mandatory. [o]\")\n", + "\n", + "Pages for logged out editors [learn more](/wiki/Help:Introduction)\n", + "\n", + "* [Contributions](/wiki/Special:MyContributions \"A list of edits made from this IP address [y]\")\n", + "* [Talk](/wiki/Special:MyTalk \"Discussion about edits from this IP address [n]\")\n", + "\n", + "Contents\n", + "--------\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "* [(Top)](#)\n", + "* [1\n", + " Life](#Life)\n", + "* [2\n", + " Awards](#Awards)\n", + "* [3\n", + " Death](#Death)\n", + "* [4\n", + " Tributes](#Tributes)\n", + "* [5\n", + " Discography](#Discography)\n", + "\n", + " Toggle Discography subsection\n", + " + [5.1\n", + " Studio albums](#Studio_albums)\n", + " + [5.2\n", + " EPs](#EPs)\n", + " + [5.3\n", + " Live albums](#Live_albums)\n", + " + [5.4\n", + " Compilation albums](#Compilation_albums)\n", + "* [6\n", + " Filmography](#Filmography)\n", + "* [7\n", + " Further reading](#Further_reading)\n", + "* [8\n", + " References](#References)\n", + "* [9\n", + " External links](#External_links)\n", + "\n", + "Toggle the table of contents\n", + "\n", + "Mercedes Sosa\n", + "=============\n", + "\n", + "49 languages\n", + "\n", + "* [العربية](https://ar.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس \n", + "سوسا – Arabic\")\n", + "* [Aymar aru](https://ay.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Aymara\")\n", + "* [تۆرکجه](https://azb.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n", + "South Azerbaijani\")\n", + "* \n", + "[বাংলা](https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%B8%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%B\n", + "8_%E0%A6%B8%E0%A7%8B%E0%A6%B8%E0%A6%BE \"মার্সেডিস সোসা – Bangla\")\n", + "* [Беларуская \n", + "(тарашкевіца)](https://be-tarask.wikipedia.org/wiki/%D0%9C%D1%8D%D1%80%D1%81%D1%8D%D0%B4%D1%8D%D1%81_%D0%A1%D0%BE%D\n", + "1%81%D0%B0 \"Мэрсэдэс Соса – Belarusian (Taraškievica orthography)\")\n", + "* \n", + "[Български](https://bg.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B0\n", + "\"Мерседес Соса – Bulgarian\")\n", + "* [Brezhoneg](https://br.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Breton\")\n", + "* [Català](https://ca.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Catalan\")\n", + "* [Čeština](https://cs.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Czech\")\n", + "* [Dansk](https://da.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Danish\")\n", + "* [Deutsch](https://de.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – German\")\n", + "* \n", + "[Ελληνικά](https://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%81%CF%83%CE%AD%CE%B4%CE%B5%CF%82_%CE%A3%CF%8C%CF%83%CE%B1 \n", + "\"Μερσέδες Σόσα – Greek\")\n", + "* [Español](https://es.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Spanish\")\n", + "* [Esperanto](https://eo.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Esperanto\")\n", + "* [Euskara](https://eu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Basque\")\n", + "* [فارسی](https://fa.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسدس سوسا – \n", + "Persian\")\n", + "* [Français](https://fr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – French\")\n", + "* [Galego](https://gl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Galician\")\n", + "* [한국어](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%A5%B4%EC%84%B8%EB%8D%B0%EC%8A%A4_%EC%86%8C%EC%82%AC \n", + "\"메르세데스 소사 – Korean\")\n", + "* [Հայերեն](https://hy.wikipedia.org/wiki/%D5%84%D5%A5%D6%80%D5%BD%D5%A5%D5%A4%D5%A5%D5%BD_%D5%8D%D5%B8%D5%BD%D5%A1\n", + "\"Մերսեդես Սոսա – Armenian\")\n", + "* [Hrvatski](https://hr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Croatian\")\n", + "* [Ido](https://io.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Ido\")\n", + "* [Bahasa Indonesia](https://id.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Indonesian\")\n", + "* [Italiano](https://it.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Italian\")\n", + "* [עברית](https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%A1%D7%93%D7%A1_%D7%A1%D7%95%D7%A1%D7%94 \"מרסדס סוסה – \n", + "Hebrew\")\n", + "* [Latina](https://la.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Latin\")\n", + "* [Lëtzebuergesch](https://lb.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Luxembourgish\")\n", + "* [Magyar](https://hu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Hungarian\")\n", + "* \n", + "[മലയാളം](https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%86%E0%B4%B4%E0%B5%8D%E2%80%8C%E0%B4%B8%E0%B4%BF%E0%B4%A1%E0%B4\n", + "%B8%E0%B5%8D_%E0%B4%B8%E0%B5%8B%E0%B4%B8 \"മെഴ്‌സിഡസ് സോസ – Malayalam\")\n", + "* [مصرى](https://arz.wikipedia.org/wiki/%D9%85%D8%B1%D8%B3%D9%8A%D8%AF%D8%B3_%D8%B3%D9%88%D8%B3%D8%A7 \"مرسيدس سوسا \n", + "– Egyptian Arabic\")\n", + "* [Nederlands](https://nl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dutch\")\n", + "* \n", + "[日本語](https://ja.wikipedia.org/wiki/%E3%83%A1%E3%83%AB%E3%82%BB%E3%83%87%E3%82%B9%E3%83%BB%E3%82%BD%E3%83%BC%E3%\n", + "82%B5 \"メルセデス・ソーサ – Japanese\")\n", + "* [Norsk bokmål](https://no.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Norwegian Bokmål\")\n", + "* [Occitan](https://oc.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Occitan\")\n", + "* [Polski](https://pl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Polish\")\n", + "* [Português](https://pt.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Portuguese\")\n", + "* [Runa Simi](https://qu.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Quechua\")\n", + "* \n", + "[Русский](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%81%D0%B0,_%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81 \n", + "\"Соса, Мерседес – Russian\")\n", + "* [Scots](https://sco.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Scots\")\n", + "* [Simple English](https://simple.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Simple English\")\n", + "* [Slovenščina](https://sl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Slovenian\")\n", + "* [Suomi](https://fi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Finnish\")\n", + "* [Svenska](https://sv.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Swedish\")\n", + "* [Tagalog](https://tl.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Tagalog\")\n", + "* [Türkçe](https://tr.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Turkish\")\n", + "* \n", + "[Українська](https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81_%D0%A1%D0%BE%D1%81%D0%B\n", + "0 \"Мерседес Соса – Ukrainian\")\n", + "* [Tiếng Việt](https://vi.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Vietnamese\")\n", + "* [Zazaki](https://diq.wikipedia.org/wiki/Mercedes_Sosa \"Mercedes Sosa – Dimli\")\n", + "* [中文](https://zh.wikipedia.org/wiki/%E6%A2%85%E8%B3%BD%E5%BE%B7%E6%96%AF%C2%B7%E7%B4%A2%E8%96%A9 \"梅賽德斯·索薩 \n", + "– Chinese\")\n", + "\n", + "[Edit links](https://www.wikidata.org/wiki/Special:EntityPage/Q216450#sitelinks-wikipedia \"Edit interlanguage \n", + "links\")\n", + "\n", + "* [Article](/wiki/Mercedes_Sosa \"View the content page [c]\")\n", + "* [Talk](/wiki/Talk:Mercedes_Sosa \"Discuss improvements to the content page [t]\")\n", + "\n", + "English\n", + "\n", + "* [Read](/wiki/Mercedes_Sosa)\n", + "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n", + "* [View history](/w/index.php?title=Mercedes_Sosa&action=history \"Past revisions of this page [h]\")\n", + "\n", + "Tools\n", + "\n", + "Tools\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "Actions\n", + "\n", + "* [Read](/wiki/Mercedes_Sosa)\n", + "* [Edit](/w/index.php?title=Mercedes_Sosa&action=edit \"Edit this page [e]\")\n", + "* [View history](/w/index.php?title=Mercedes_Sosa&action=history)\n", + "\n", + "General\n", + "\n", + "* [What links here](/wiki/Special:WhatLinksHere/Mercedes_Sosa \"List of all English Wikipedia pages containing links\n", + "to this page [j]\")\n", + "* [Related changes](/wiki/Special:RecentChangesLinked/Mercedes_Sosa \"Recent changes in pages linked from this page \n", + "[k]\")\n", + "* [Upload file](//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard \"Upload files [u]\")\n", + "* [Permanent link](/w/index.php?title=Mercedes_Sosa&oldid=1281260319 \"Permanent link to this revision of this \n", + "page\")\n", + "* [Page information](/w/index.php?title=Mercedes_Sosa&action=info \"More information about this page\")\n", + "* [Cite this \n", + "page](/w/index.php?title=Special:CiteThisPage&page=Mercedes_Sosa&id=1281260319&wpFormIdentifier=titleform \n", + "\"Information on how to cite this page\")\n", + "* [Get shortened \n", + "URL](/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n", + "* [Download QR code](/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMercedes_Sosa)\n", + "\n", + "Print/export\n", + "\n", + "* [Download as PDF](/w/index.php?title=Special:DownloadAsPdf&page=Mercedes_Sosa&action=show-download-screen \n", + "\"Download this page as a PDF file\")\n", + "* [Printable version](/w/index.php?title=Mercedes_Sosa&printable=yes \"Printable version of this page [p]\")\n", + "\n", + "In other projects\n", + "\n", + "* [Wikimedia Commons](https://commons.wikimedia.org/wiki/Category:Mercedes_Sosa)\n", + "* [Wikidata item](https://www.wikidata.org/wiki/Special:EntityPage/Q216450 \"Structured data on this page hosted by \n", + "Wikidata [g]\")\n", + "\n", + "Appearance\n", + "\n", + "move to sidebar\n", + "hide\n", + "\n", + "From Wikipedia, the free encyclopedia\n", + "\n", + "Argentine singer (1935–2009)\n", + "\n", + "Not to be confused with [Mercedes Sola](/wiki/Mercedes_Sola \"Mercedes Sola\").\n", + "\n", + "| Mercedes Sosa | |\n", + "| --- | --- |\n", + "| Portrait by [Annemarie Heinrich](/wiki/Annemarie_Heinrich \"Annemarie Heinrich\"), 1960s | |\n", + "| Born | Haydée Mercedes Sosa (1935-07-09)9 July 1935 [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \n", + "\"San Miguel de Tucumán\"), Tucumán, Argentina |\n", + "| Died | 4 October 2009(2009-10-04) (aged 74) [Buenos Aires](/wiki/Buenos_Aires \"Buenos Aires\"), Argentina |\n", + "| Occupation | Singer |\n", + "| Years active | 1950–2009 |\n", + "| **Musical career** | |\n", + "| Genres | * [Folk](/wiki/Folk_music \"Folk music\") * [nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva canción\") |\n", + "| Instruments | Vocals |\n", + "| Musical artist | |\n", + "\n", + "**Haydée Mercedes** \"**La Negra**\" **Sosa** (Latin American Spanish: [[meɾˈseðes ˈsosa]](/wiki/Help:IPA/Spanish \n", + "\"Help:IPA/Spanish\"); 9 July 1935[[1]](#cite_note-birth-1) – 4 October 2009) was an [Argentine](/wiki/Argentines \n", + "\"Argentines\") singer who was popular throughout [Latin America](/wiki/Latin_America \"Latin America\") and many \n", + "countries outside the region. With her roots in [Argentine folk music](/wiki/Folk_music_of_Argentina \"Folk music of\n", + "Argentina\"), Sosa became one of the preeminent exponents of *El nuevo cancionero*. She gave voice to songs written \n", + "by many Latin American songwriters. Her music made people hail her as the \"voice of the voiceless \n", + "ones\".[[2]](#cite_note-tmc-2) She was often called \"the conscience of Latin America\".[[3]](#cite_note-3)\n", + "\n", + "Sosa performed in venues such as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln Center\") in New York City, the \n", + "[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\") in Paris, the [Sistine \n", + "Chapel](/wiki/Sistine_Chapel \"Sistine Chapel\") in Vatican City, as well as sold-out shows in New York's [Carnegie \n", + "Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") and the Roman [Colosseum](/wiki/Colosseum \"Colosseum\") during her final \n", + "decade of life. Her career spanned four decades and she was the recipient of six [Latin Grammy](/wiki/Latin_Grammy \n", + "\"Latin Grammy\") awards (2000, 2003, 2004, 2006, 2009, 2011), including a [Latin Grammy Lifetime Achievement \n", + "Award](/wiki/Latin_Grammy_Lifetime_Achievement_Award \"Latin Grammy Lifetime Achievement Award\") in 2004 and two \n", + "posthumous [Latin Grammy Award for Best Folk Album](/wiki/Latin_Grammy_Award_for_Best_Folk_Album \"Latin Grammy \n", + "Award for Best Folk Album\") in 2009 and 2011. She won the [Premio Gardel](/wiki/Premios_Gardel \"Premios Gardel\") in\n", + "2000, the main musical award in Argentina. She served as an ambassador for [UNICEF](/wiki/UNICEF \"UNICEF\").\n", + "\n", + "Life\n", + "----\n", + "\n", + "[[edit](/w/index.php?title=Mercedes_Sosa&action=edit§ion=1 \"Edit section: Life\")]\n", + "\n", + "Sosa was born on 9 July 1935, in [San Miguel de Tucumán](/wiki/San_Miguel_de_Tucum%C3%A1n \"San Miguel de Tucumán\"),\n", + "in the [northwestern Argentine](/wiki/Argentine_Northwest \"Argentine Northwest\") province of \n", + "[Tucumán](/wiki/Tucum%C3%A1n_Province \"Tucumán Province\"), of [mestizo](/wiki/Mestizo \"Mestizo\") ancestry. She was \n", + "of French, Spanish and [Diaguita](/wiki/Diaguita \"Diaguita\") \n", + "descent.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Her nickname \"la negra\", which is a \n", + "common nickname in Argentina for people with darker complexion, is a reference to her indigenous \n", + "heritage.[[5]](#cite_note-:0-5) Her parents, a day laborer and a washerwoman,[[6]](#cite_note-6) were \n", + "[Peronists](/wiki/Peronism \"Peronism\"), although they never registered in the party, and she started her career as \n", + "a singer for the [Peronist Party](/wiki/Peronist_Party \"Peronist Party\") in [Tucuman](/wiki/Tucum%C3%A1n_Province \n", + "\"Tucumán Province\") under the name Gladys Osorio.[[7]](#cite_note-7) In 1950, at age fifteen, she won a singing \n", + "competition organized by a local radio station and was given a contract to perform for two \n", + "months.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) She recorded her first album, *[La Voz de la \n", + "Zafra](/wiki/La_voz_de_la_zafra \"La voz de la zafra\")*, in 1959.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) A \n", + "performance at the 1965 [Cosquín National Folklore Festival](/wiki/Cosqu%C3%ADn_Festival \"Cosquín Festival\")—where \n", + "she was introduced and brought to the stage while sitting in the audience by fellow folk singer [Jorge \n", + "Cafrune](/wiki/Jorge_Cafrune \"Jorge Cafrune\")—[[9]](#cite_note-test-9) brought her to the attention of the \n", + "Argentine public.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Sosa and her first husband, [Manuel Oscar \n", + "Matus](/w/index.php?title=Manuel_Oscar_Matus&action=edit&redlink=1 \"Manuel Oscar Matus (page does not exist)\"), \n", + "with whom she had one son, were key players in the mid-60s *[nueva canción](/wiki/Nueva_canci%C3%B3n \"Nueva \n", + "canción\")* movement (which was called *nuevo cancionero* in \n", + "Argentina).[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Her second record was *Canciones con Fundamento*, \n", + "a collection of Argentine folk songs.\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/d/d8/Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg/\n", + "250px-Mercedes_Sosa%2C_F%C3%A9lix_Luna_y_Ariel_Ram%C3%ADrez.jpg)](/wiki/File:Mercedes_Sosa,_F%C3%A9lix_Luna_y_Ariel\n", + "_Ram%C3%ADrez.jpg)\n", + "\n", + "Sosa with [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\") and [Ariel Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel \n", + "Ramírez\") (at the piano)\n", + "\n", + "Sosa \"spent the late 1960s building her audience in Europe and among the cosmopolitan middle class in Buenos Aires,\n", + "becoming in the process a much bigger star\" than her contemporaries.[[11]](#cite_note-11)In 1967, Sosa toured the \n", + "United States and Europe with great success.[*[citation needed](/wiki/Wikipedia:Citation_needed \"Wikipedia:Citation\n", + "needed\")*] In later years, she performed and recorded extensively, broadening her repertoire to include material \n", + "from throughout Latin America.\n", + "\n", + "In the early 1970s, Sosa released two concept albums in collaboration with composer [Ariel \n", + "Ramírez](/wiki/Ariel_Ram%C3%ADrez \"Ariel Ramírez\") and lyricist [Félix Luna](/wiki/F%C3%A9lix_Luna \"Félix Luna\"): \n", + "*Cantata Sudamericana* and *Mujeres Argentinas* (Argentine Women). She also recorded a tribute to Chilean musician \n", + "[Violeta Parra](/wiki/Violeta_Parra \"Violeta Parra\") in 1971, including what was to become one of Sosa's signature \n", + "songs, *[Gracias a la vida](/wiki/Gracias_a_la_vida \"Gracias a la \n", + "vida\")*.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)[[12]](#cite_note-ap-12) She further \n", + "popularized of songs written by [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\") of Brazil and \n", + "[Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\") and [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \n", + "\"Silvio Rodríguez\") both from [Cuba](/wiki/Cuba \n", + "\"Cuba\").[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) Throughout the decade, she released \n", + "albums such as *Hasta la Victoria* in 1972 and *Traigo un Pueblo* *en mi Voz* in 1973. They featured songs like \n", + "\"Cuando tenga la tierra\", written by [Ariel Petrocelli](/w/index.php?title=Ariel_Petrocelli&action=edit&redlink=1 \n", + "\"Ariel Petrocelli (page does not exist)\") and Daniel Toro, which tackles political and social issues like wealth \n", + "and land inequality.[[13]](#cite_note-:2-13)[[14]](#cite_note-14) During the 1970s she was a part of two films by \n", + "the director [Leopoldo Torre Nilsson](/wiki/Leopoldo_Torre_Nilsson \"Leopoldo Torre Nilsson\"): *[El Santo de la \n", + "Espada](/wiki/El_Santo_de_la_Espada \"El Santo de la Espada\")* in 1970 and *[Güemes, la tierra en \n", + "armas](/wiki/G%C3%BCemes:_la_tierra_en_armas \"Güemes: la tierra en armas\")* in 1971, in which she portrayed [Juana \n", + "Azurduy de Padilla](/wiki/Juana_Azurduy_de_Padilla \"Juana Azurduy de Padilla\"), the guerrilla military leader who \n", + "fought for Argentine independence.[[13]](#cite_note-:2-13)[[15]](#cite_note-15)\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Mercedes_Sosa_2.jpg/250px-Mercedes_Sosa_2.jpg)](/wiki/File\n", + ":Mercedes_Sosa_2.jpg)\n", + "\n", + "Sosa in 1972\n", + "\n", + "After the [military junta](/wiki/National_Reorganization_Process \"National Reorganization Process\") of [Jorge \n", + "Videla](/wiki/Jorge_Videla \"Jorge Videla\") came to power in 1976, the atmosphere in Argentina grew increasingly \n", + "oppressive. Sosa faced death threats against both her and her family, but refused for many years to leave the \n", + "country. At a concert in [La Plata](/wiki/La_Plata \"La Plata\") in 1979, Sosa was searched and arrested on stage, \n", + "along with all those attending the concert.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) Their release came\n", + "about through international intervention.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) Despite attempts to hold more \n", + "concerts, she was officially barred from performing by the military regime.[[5]](#cite_note-:0-5) Banned in her own\n", + "country, she moved to Paris and then to [Madrid](/wiki/Madrid \n", + "\"Madrid\").[[8]](#cite_note-Mercedes_Sosa:_Obituary-8)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)She has \n", + "spoken publicly about her artistic and emotional struggles during this period of her life.[[5]](#cite_note-:0-5) \n", + "While in exile, she released the album *A Quien Doy* in 1981. The album included a recording of the song \"Cuando Me\n", + "Acuerdo de Mi Pais\" which was originally written by the prolific Chilean singer/songwriter, [Patricio \n", + "Manns](/wiki/Patricio_Manns \"Patricio Manns\"). The song, which he wrote while also in political exile, expresses \n", + "the sorrow he felt from being separated from his homeland.[[16]](#cite_note-16) She related to this feeling and \n", + "struggled to continue recording and performing. In an interview with the New York Times, she said, “It was a mental\n", + "problem, a problem of morale...It wasn’t my throat, or anything physical\". [[5]](#cite_note-:0-5)\n", + "\n", + "Sosa returned to Argentina from her exile in Europe in February of \n", + "1982,[[17]](#cite_note-:1-17)[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10) several months before the \n", + "military regime collapsed as a result of the [Falklands War](/wiki/Falklands_War \"Falklands War\"), and gave a \n", + "series of concerts at the *[Teatro Ópera](/wiki/Teatro_Opera \"Teatro Opera\")* in Buenos Aires, where she invited \n", + "many of her younger colleagues to share the stage. A double album of recordings from these performances became an \n", + "instant best seller. She then traveled to perform in her home province of Tucuman. However, these performances were\n", + "largely ignored by mainstream media in the country.[[17]](#cite_note-:1-17) In subsequent years, Sosa continued to \n", + "tour both in Argentina and abroad, performing in such venues as the [Lincoln Center](/wiki/Lincoln_Center \"Lincoln \n", + "Center\") in New York City and the *[Théâtre Mogador](/wiki/Th%C3%A9%C3%A2tre_Mogador \"Théâtre Mogador\")* in Paris. \n", + "In poor health for much of the 1990s, she performed a comeback show in Argentina in \n", + "1998.[[8]](#cite_note-Mercedes_Sosa:_Obituary-8) In 1994, she played in the [Sistine Chapel](/wiki/Sistine_Chapel \n", + "\"Sistine Chapel\") in Vatican City.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) In 2002, she \n", + "sold out both [Carnegie Hall](/wiki/Carnegie_Hall \"Carnegie Hall\") in New York and the [Colosseum](/wiki/Colosseum \n", + "\"Colosseum\") in Rome in the same year.[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4)\n", + "\n", + "[![](//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Mercedes_Sosa.jpg/250px-Mercedes_Sosa.jpg)](/wiki/File:Mer\n", + "cedes_Sosa.jpg)\n", + "\n", + "Sosa in 1973\n", + "\n", + "A supporter of [Perón](/wiki/Juan_Per%C3%B3n \"Juan Perón\"), she favored leftist causes throughout her life. She \n", + "supported President [Raul Alfonsin](/wiki/Ra%C3%BAl_Alfons%C3%ADn \"Raúl Alfonsín\") in the election of 1983 which \n", + "marked the return of democracy in Argentina following the dictatorship. She referred to this election as \n", + "\"Argentina's Spring\"[[18]](#cite_note-18) She opposed President [Carlos Menem](/wiki/Carlos_Menem \"Carlos Menem\"), \n", + "who was in office from 1989 to 1999, and supported the election of [Néstor Kirchner](/wiki/N%C3%A9stor_Kirchner \n", + "\"Néstor Kirchner\"), who became president in 2003.[[19]](#cite_note-19)\n", + "Sosa was a [UNESCO Goodwill Ambassador](/wiki/UNESCO_Goodwill_Ambassador \"UNESCO Goodwill Ambassador\") for Latin \n", + "America and the Caribbean.[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10)[[20]](#cite_note-20)\n", + "\n", + "Sosa disliked being identified as a protest singer.[[21]](#cite_note-21)[[22]](#cite_note-22) While she was \n", + "outright in her political stances, Sosa said the following on the position of the artist:\n", + "\n", + "> “An artist isn’t political in the party political sense – they have a constituency, which is their public – it is\n", + "the poetry that matters most of all.”\n", + "\n", + "In a career spanning four decades, she worked with performers across several genres and generations, folk, opera, \n", + "pop, rock, including [Martha Argerich](/wiki/Martha_Argerich \"Martha Argerich\"), [Andrea \n", + "Bocelli](/wiki/Andrea_Bocelli \"Andrea Bocelli\"), [David Broza](/wiki/David_Broza \"David Broza\"), [Franco \n", + "Battiato](/wiki/Franco_Battiato \"Franco Battiato\"), [Jaime Roos](/wiki/Jaime_Roos \"Jaime Roos\"), [Joan \n", + "Baez](/wiki/Joan_Baez \"Joan Baez\"), [Francis Cabrel](/wiki/Francis_Cabrel \"Francis Cabrel\"), [Gal \n", + "Costa](/wiki/Gal_Costa \"Gal Costa\"), [Luz Casal](/wiki/Luz_Casal \"Luz Casal\"), [Lila Downs](/wiki/Lila_Downs \"Lila \n", + "Downs\"), [Lucio Dalla](/wiki/Lucio_Dalla \"Lucio Dalla\"), [Maria Farantouri](/wiki/Maria_Farantouri \"Maria \n", + "Farantouri\"), [Lucecita Benitez](/wiki/Lucecita_Benitez \"Lucecita Benitez\"), [Nilda \n", + "Fernández](/wiki/Nilda_Fern%C3%A1ndez \"Nilda Fernández\"), [Charly Garcia](/wiki/Charly_Garcia \"Charly Garcia\"), \n", + "[León Gieco](/wiki/Le%C3%B3n_Gieco \"León Gieco\"), [Gian Marco](/wiki/Gian_Marco \"Gian Marco\"), [Nana \n", + "Mouskouri](/wiki/Nana_Mouskouri \"Nana Mouskouri\"), [Pablo Milanés](/wiki/Pablo_Milan%C3%A9s \"Pablo Milanés\"), \n", + "[Holly Near](/wiki/Holly_Near \"Holly Near\"), [Milton Nascimento](/wiki/Milton_Nascimento \"Milton Nascimento\"), \n", + "[Pata Negra](/wiki/Pata_Negra \"Pata Negra\"), [Fito Páez](/wiki/Fito_P%C3%A1ez \"Fito Páez\"), [Franco De \n", + "Vita](/wiki/Franco_De_Vita \"Franco De Vita\"), [Lourdes Pérez](/wiki/Lourdes_P%C3%A9rez \"Lourdes Pérez\"), [Luciano \n", + "Pavarotti](/wiki/Luciano_Pavarotti \"Luciano Pavarotti\"), [Silvio Rodríguez](/wiki/Silvio_Rodr%C3%ADguez \"Silvio \n", + "Rodríguez\"), [Ismael Serrano](/wiki/Ismael_Serrano \"Ismael Serrano\"), [Shakira](/wiki/Shakira \"Shakira\"), \n", + "[Sting](/wiki/Sting_(musician) \"Sting (musician)\"), [Caetano Veloso](/wiki/Caetano_Veloso \"Caetano \n", + "Veloso\"),[[4]](#cite_note-Legendary_folk_singer_Mercedes_Sosa_dies_at_74-4) [Julieta Venegas](/wiki/Julieta_Venegas\n", + "\"Julieta Venegas\"), [Gustavo Cerati](/wiki/Gustavo_Cerati \"Gustavo Cerati\") and [Konstantin \n", + "Wecker](/wiki/Konstantin_Wecker \"Konstantin Wecker\")[[10]](#cite_note-Latin_artist_Mercedes_Sosa_dies-10\n", + "..._This content has been truncated to stay below 50000 characters_...\n", + " * [Roberto Pires](/w/index.php?title=Roberto_Pires&action=edit&redlink=1 \"Roberto Pires (page does not exist)\") * \n", + "[Ronaldo Correia de Brito](/w/index.php?title=Ronaldo_Correia_de_Brito&action=edit&redlink=1 \"Ronaldo Correia de \n", + "Brito (page does not exist)\") * [Rosa Maria dos Santos \n", + "Alves](/w/index.php?title=Rosa_Maria_dos_Santos_Alves&action=edit&redlink=1 \"Rosa Maria dos Santos Alves (page does\n", + "not exist)\") * [Rubem Braga](/wiki/Rubem_Braga \"Rubem Braga\") * [Sérgio Mamberti](/wiki/S%C3%A9rgio_Mamberti \n", + "\"Sérgio Mamberti\") * [Sociedade Junina Bumba Meu Boi da \n", + "Liberdade](/w/index.php?title=Sociedade_Junina_Bumba_Meu_Boi_da_Liberdade&action=edit&redlink=1 \"Sociedade Junina \n", + "Bumba Meu Boi da Liberdade (page does not exist)\") * [Tomie Ohtake](/wiki/Tomie_Ohtake \"Tomie Ohtake\") * [Walda \n", + "Marques](/w/index.php?title=Walda_Marques&action=edit&redlink=1 \"Walda Marques (page does not exist)\") * [Walter \n", + "Pinto](/w/index.php?title=Walter_Pinto&action=edit&redlink=1 \"Walter Pinto (page does not exist)\") |\n", + "| 2014 | * [Alex Atala](/wiki/Alex_Atala \"Alex Atala\") * [Alexandre Herchcovitch](/wiki/Alexandre_Herchcovitch \n", + "\"Alexandre Herchcovitch\") * [Bernardo Paz](/wiki/Bernardo_Paz \"Bernardo Paz\") * [Bruno e \n", + "Marrone](/wiki/Bruno_e_Marrone \"Bruno e Marrone\") * [Celso Frateschi](/wiki/Celso_Frateschi \"Celso Frateschi\") * \n", + "[Chico de Assis](/w/index.php?title=Chico_de_Assis&action=edit&redlink=1 \"Chico de Assis (page does not exist)\") * \n", + "[Eliane Potiguara](/w/index.php?title=Eliane_Potiguara&action=edit&redlink=1 \"Eliane Potiguara (page does not \n", + "exist)\") * [Henricredo Coelho](/w/index.php?title=Henricredo_Coelho&action=edit&redlink=1 \"Henricredo Coelho (page \n", + "does not exist)\") * [Hermano Vianna](/w/index.php?title=Hermano_Vianna&action=edit&redlink=1 \"Hermano Vianna (page \n", + "does not exist)\") * [Jenner Augusto](/w/index.php?title=Jenner_Augusto&action=edit&redlink=1 \"Jenner Augusto (page \n", + "does not exist)\") * [José Carlos Meirelles](/wiki/Jos%C3%A9_Carlos_Meirelles \"José Carlos Meirelles\") * [Júlio \n", + "Medaglia](/wiki/J%C3%BAlio_Medaglia \"Júlio Medaglia\") * [Mano Brown](/wiki/Mano_Brown \"Mano Brown\") * [Marisa \n", + "Monte](/wiki/Marisa_Monte \"Marisa Monte\") * [Matheus Nachtergaele](/wiki/Matheus_Nachtergaele \"Matheus \n", + "Nachtergaele\") * [Ogã Bangbala](/w/index.php?title=Og%C3%A3_Bangbala&action=edit&redlink=1 \"Ogã Bangbala (page does\n", + "not exist)\") * [Orlando Senna](/w/index.php?title=Orlando_Senna&action=edit&redlink=1 \"Orlando Senna (page does not\n", + "exist)\") * [Oskar Metsavaht](/wiki/Oskar_Metsavaht \"Oskar Metsavaht\") * [Patrícia \n", + "Pillar](/wiki/Patr%C3%ADcia_Pillar \"Patrícia Pillar\") * Paulo Martins * [Tião \n", + "Oleiro](/w/index.php?title=Ti%C3%A3o_Oleiro&action=edit&redlink=1 \"Tião Oleiro (page does not exist)\") * [Vange \n", + "Leonel](/wiki/Vange_Leonel \"Vange Leonel\") |\n", + "| 2015 | * [Adylson Godoy](/w/index.php?title=Adylson_Godoy&action=edit&redlink=1 \"Adylson Godoy (page does not \n", + "exist)\") * [Ailton Krenak](/wiki/Ailton_Krenak \"Ailton Krenak\") * [Aldyr Schlee](/wiki/Aldyr_Schlee \"Aldyr Schlee\")\n", + "* [Antônio Araújo](/w/index.php?title=Ant%C3%B4nio_Ara%C3%BAjo&action=edit&redlink=1 \"Antônio Araújo (page does not\n", + "exist)\") * [Arnaldo Antunes](/wiki/Arnaldo_Antunes \"Arnaldo Antunes\") * [As Ceguinhas de Campina \n", + "Grande](/w/index.php?title=As_Ceguinhas_de_Campina_Grande&action=edit&redlink=1 \"As Ceguinhas de Campina Grande \n", + "(page does not exist)\") * [Augusto de Campos](/wiki/Augusto_de_Campos \"Augusto de Campos\") * [Casa de Cinema de \n", + "Porto Alegre](/w/index.php?title=Casa_de_Cinema_de_Porto_Alegre&action=edit&redlink=1 \"Casa de Cinema de Porto \n", + "Alegre (page does not exist)\") * [Centro de Memória do \n", + "Circo](/w/index.php?title=Centro_de_Mem%C3%B3ria_do_Circo&action=edit&redlink=1 \"Centro de Memória do Circo (page \n", + "does not exist)\") * [Cesare La Rocca](/w/index.php?title=Cesare_La_Rocca&action=edit&redlink=1 \"Cesare La Rocca \n", + "(page does not exist)\") * [Comissão Guarani \n", + "Yvyrupa](/w/index.php?title=Comiss%C3%A3o_Guarani_Yvyrupa&action=edit&redlink=1 \"Comissão Guarani Yvyrupa (page \n", + "does not exist)\") * [Daniela Mercury](/wiki/Daniela_Mercury \"Daniela Mercury\") * [Davi Kopenawa \n", + "Yanomami](/wiki/Davi_Kopenawa_Yanomami \"Davi Kopenawa Yanomami\") * [Eva \n", + "Schul](/w/index.php?title=Eva_Schul&action=edit&redlink=1 \"Eva Schul (page does not exist)\") * [Humberto \n", + "Teixeira](/wiki/Humberto_Teixeira \"Humberto Teixeira\") * [Italo \n", + "Campofiorito](/w/index.php?title=Italo_Campofiorito&action=edit&redlink=1 \"Italo Campofiorito (page does not \n", + "exist)\") * Mestre [João Grande](/wiki/Jo%C3%A3o_Grande \"João Grande\") * [José \n", + "Mourão](/w/index.php?title=Jos%C3%A9_Mour%C3%A3o&action=edit&redlink=1 \"José Mourão (page does not exist)\") * [Luís\n", + "Humberto](/w/index.php?title=Lu%C3%ADs_Humberto&action=edit&redlink=1 \"Luís Humberto (page does not exist)\") * Mãe \n", + "[Beth de Oxum](/w/index.php?title=Beth_de_Oxum&action=edit&redlink=1 \"Beth de Oxum (page does not exist)\") * \n", + "[Marcelo Yuka](/wiki/Marcelo_Yuka \"Marcelo Yuka\") * [Niède Guidon](/wiki/Ni%C3%A8de_Guidon \"Niède Guidon\") * [Paulo\n", + "Herkenhoff](/w/index.php?title=Paulo_Herkenhoff&action=edit&redlink=1 \"Paulo Herkenhoff (page does not exist)\") * \n", + "[Rolando Boldrin](/wiki/Rolando_Boldrin \"Rolando Boldrin\") * [Ruy \n", + "Cezar](/w/index.php?title=Ruy_Cezar&action=edit&redlink=1 \"Ruy Cezar (page does not exist)\") * [Sociedade Musical \n", + "Curica](/w/index.php?title=Curica_(band)&action=edit&redlink=1 \"Curica (band) (page does not exist)\") * [Sônia \n", + "Guajajara](/wiki/S%C3%B4nia_Guajajara \"Sônia Guajajara\") * [Tribo de \n", + "Atuadores](/w/index.php?title=Tribo_de_Atuadores&action=edit&redlink=1 \"Tribo de Atuadores (page does not exist)\") \n", + "* [Uruhu Mehinako](/w/index.php?title=Uruhu_Mehinako&action=edit&redlink=1 \"Uruhu Mehinako (page does not exist)\") \n", + "* [Vanisa Santiago](/w/index.php?title=Vanisa_Santiago&action=edit&redlink=1 \"Vanisa Santiago (page does not \n", + "exist)\") * [Vera Tostes](/w/index.php?title=Vera_Tostes&action=edit&redlink=1 \"Vera Tostes (page does not exist)\") \n", + "* [Walter Carvalho](/wiki/Walter_Carvalho \"Walter Carvalho\") |\n", + "| 2016 | * [Abel Gomes](/w/index.php?title=Abel_Gomes&action=edit&redlink=1 \"Abel Gomes (page does not exist)\") * \n", + "[Alcymar Monteiro](/w/index.php?title=Alcymar_Monteiro&action=edit&redlink=1 \"Alcymar Monteiro (page does not \n", + "exist)\") * [Ana Mae Barbosa](/w/index.php?title=Ana_Mae_Barbosa&action=edit&redlink=1 \"Ana Mae Barbosa (page does \n", + "not exist)\") * [Andrucha Waddington](/wiki/Andrucha_Waddington \"Andrucha Waddington\") * [Beatriz \n", + "Milhazes](/wiki/Beatriz_Milhazes \"Beatriz Milhazes\") * [Carlinhos de \n", + "Jesus](/w/index.php?title=Carlinhos_de_Jesus&action=edit&redlink=1 \"Carlinhos de Jesus (page does not exist)\") * \n", + "[Carlos Alberto Serpa de Oliveira](/w/index.php?title=Carlos_Alberto_Serpa_de_Oliveira&action=edit&redlink=1 \n", + "\"Carlos Alberto Serpa de Oliveira (page does not exist)\") * [Carlos Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * \n", + "[Clementina de Jesus](/wiki/Clementina_de_Jesus \"Clementina de Jesus\") * [Dona Ivone Lara](/wiki/Dona_Ivone_Lara \n", + "\"Dona Ivone Lara\") * [Donga](/wiki/Donga_(musician) \"Donga (musician)\") * [Fernando \n", + "Meirelles](/wiki/Fernando_Meirelles \"Fernando Meirelles\") * [Ferreira Gullar](/wiki/Ferreira_Gullar \"Ferreira \n", + "Gullar\") * [Focus Cia. De Dança](/w/index.php?title=Focus_Cia._De_Dan%C3%A7a&action=edit&redlink=1 \"Focus Cia. De \n", + "Dança (page does not exist)\") * [Fred Gelli](/w/index.php?title=Fred_Gelli&action=edit&redlink=1 \"Fred Gelli (page \n", + "does not exist)\") * [Fundação Darcy \n", + "Ribeiro](/w/index.php?title=Funda%C3%A7%C3%A3o_Darcy_Ribeiro&action=edit&redlink=1 \"Fundação Darcy Ribeiro (page \n", + "does not exist)\") * [Grupo Teatro da Laje](/w/index.php?title=Grupo_Teatro_da_Laje&action=edit&redlink=1 \"Grupo \n", + "Teatro da Laje (page does not exist)\") * [Instituto Ricardo Brennand](/wiki/Ricardo_Brennand_Institute \"Ricardo \n", + "Brennand Institute\") * [Isaurinha Garcia](/w/index.php?title=Isaurinha_Garcia&action=edit&redlink=1 \"Isaurinha \n", + "Garcia (page does not exist)\") * [Ismael Silva](/wiki/Ismael_Silva_(musician) \"Ismael Silva (musician)\") * [Jorge \n", + "Aragão](/wiki/Jorge_Arag%C3%A3o \"Jorge Aragão\") * [Jovelina Pérola Negra](/wiki/Jovelina_P%C3%A9rola_Negra \n", + "\"Jovelina Pérola Negra\") * [Maracatu Feminino Coração \n", + "Nazareno](/w/index.php?title=Maracatu_Feminino_Cora%C3%A7%C3%A3o_Nazareno&action=edit&redlink=1 \"Maracatu Feminino \n", + "Coração Nazareno (page does not exist)\") * [Marcus \n", + "Faustini](/w/index.php?title=Marcus_Faustini&action=edit&redlink=1 \"Marcus Faustini (page does not exist)\") * \n", + "[Mauro Mendonça](/wiki/Mauro_Mendon%C3%A7a \"Mauro Mendonça\") * [Museu do \n", + "Samba](/w/index.php?title=Centro_Cultural_Cartola&action=edit&redlink=1 \"Centro Cultural Cartola (page does not \n", + "exist)\") * [Neguinho da Beija-Flor](/wiki/Neguinho_da_Beija-Flor \"Neguinho da Beija-Flor\") * [Nelson \n", + "Sargento](/wiki/Nelson_Sargento \"Nelson Sargento\") * [Noel Rosa](/wiki/Noel_Rosa \"Noel Rosa\") * \n", + "[Papete](/w/index.php?title=Papete&action=edit&redlink=1 \"Papete (page does not exist)\") * [Ricardo Cravo \n", + "Albin](/w/index.php?title=Ricardo_Cravo_Albin&action=edit&redlink=1 \"Ricardo Cravo Albin (page does not exist)\") * \n", + "[Rildo Hora](/w/index.php?title=Rildo_Hora&action=edit&redlink=1 \"Rildo Hora (page does not exist)\") * [Rosa \n", + "Magalhães](/wiki/Rosa_Magalh%C3%A3es \"Rosa Magalhães\") * [Rosa Maria \n", + "Araújo](/w/index.php?title=Rosa_Maria_Ara%C3%BAjo&action=edit&redlink=1 \"Rosa Maria Araújo (page does not exist)\") \n", + "* [Silas de Oliveira](/w/index.php?title=Silas_de_Oliveira&action=edit&redlink=1 \"Silas de Oliveira (page does not \n", + "exist)\") * [Vik Muniz](/wiki/Vik_Muniz \"Vik Muniz\") |\n", + "| 2017 | * [Afonso Oliveira](/w/index.php?title=Afonso_Oliveira&action=edit&redlink=1 \"Afonso Oliveira (page does \n", + "not exist)\") * [Ana Maria Nobrega Miranda](/w/index.php?title=Ana_Maria_Nobrega_Miranda&action=edit&redlink=1 \"Ana \n", + "Maria Nobrega Miranda (page does not exist)\") * [Augusto \n", + "Marzagão](/w/index.php?title=Augusto_Marzag%C3%A3o&action=edit&redlink=1 \"Augusto Marzagão (page does not exist)\") \n", + "* [Beto Kelner](/w/index.php?title=Beto_Kelner&action=edit&redlink=1 \"Beto Kelner (page does not exist)\") * \n", + "[Boni](/w/index.php?title=Jos%C3%A9_Bonif%C3%A1cio_de_Oliveira_Sobrinho&action=edit&redlink=1 \"José Bonifácio de \n", + "Oliveira Sobrinho (page does not exist)\") * [Carla Camurati](/wiki/Carla_Camurati \"Carla Camurati\") * [Carlos \n", + "Tufvesson](/wiki/Carlos_Tufvesson \"Carlos Tufvesson\") * [Cláudia Costin](/wiki/Cl%C3%A1udia_Costin \"Cláudia \n", + "Costin\") * [Domingo Alzugaray](/wiki/Domingo_Alzugaray \"Domingo Alzugaray\") * [Dona Onete](/wiki/Dona_Onete \"Dona \n", + "Onete\") * [Eduardo Portella](/wiki/Eduardo_Portella \"Eduardo Portella\") * [Eduardo Saron \n", + "Nunes](/w/index.php?title=Eduardo_Saron_Nunes&action=edit&redlink=1 \"Eduardo Saron Nunes (page does not exist)\") * \n", + "[Fernando Alterio](/w/index.php?title=Fernando_Alterio&action=edit&redlink=1 \"Fernando Alterio (page does not \n", + "exist)\") * [Galo da Madrugada](/wiki/Galo_da_Madrugada \"Galo da Madrugada\") * [Genival \n", + "Lacerda](/wiki/Genival_Lacerda \"Genival Lacerda\") * [Ivo \n", + "Barroso](/w/index.php?title=Ivo_Barroso&action=edit&redlink=1 \"Ivo Barroso (page does not exist)\") * [Jair de \n", + "Souza](/w/index.php?title=Jair_de_Souza&action=edit&redlink=1 \"Jair de Souza (page does not exist)\") * [Luciane \n", + "Gorgulho](/w/index.php?title=Luciane_Gorgulho&action=edit&redlink=1 \"Luciane Gorgulho (page does not exist)\") * \n", + "[Luis Severiano Ribeiro](/w/index.php?title=Luis_Severiano_Ribeiro&action=edit&redlink=1 \"Luis Severiano Ribeiro \n", + "(page does not exist)\") * [Luiz Calainho](/w/index.php?title=Luiz_Calainho&action=edit&redlink=1 \"Luiz Calainho \n", + "(page does not exist)\") * [Marcelo Bertini](/w/index.php?title=Marcelo_Bertini&action=edit&redlink=1 \"Marcelo \n", + "Bertini (page does not exist)\") * [Marcelo Bratke](/wiki/Marcelo_Bratke \"Marcelo Bratke\") * [Marcelo \n", + "Dantas](/w/index.php?title=Marcelo_Dantas&action=edit&redlink=1 \"Marcelo Dantas (page does not exist)\") * [Maria \n", + "Ignez Mantovani](/w/index.php?title=Maria_Ignez_Mantovani&action=edit&redlink=1 \"Maria Ignez Mantovani (page does \n", + "not exist)\") * [Moeller & Botelho Produções \n", + "Artísticas](/w/index.php?title=Moeller_%26_Botelho_Produ%C3%A7%C3%B5es_Art%C3%ADsticas&action=edit&redlink=1 \n", + "\"Moeller & Botelho Produções Artísticas (page does not exist)\") * Mãe [Neide Oyá \n", + "D´Oxum](/w/index.php?title=Neide_Oy%C3%A1_D%C2%B4Oxum&action=edit&redlink=1 \"Neide Oyá D´Oxum (page does not \n", + "exist)\") * [Paulo Cruz](/w/index.php?title=Paulo_Cruz&action=edit&redlink=1 \"Paulo Cruz (page does not exist)\") * \n", + "[Pierre André Mantovani](/w/index.php?title=Pierre_Andr%C3%A9_Mantovani&action=edit&redlink=1 \"Pierre André \n", + "Mantovani (page does not exist)\") * [Renato Aragão](/wiki/Renato_Arag%C3%A3o \"Renato Aragão\") * [Ricardo \n", + "Amaral](/w/index.php?title=Ricardo_Amaral&action=edit&redlink=1 \"Ricardo Amaral (page does not exist)\") * [Roberto \n", + "Minczuk](/wiki/Roberto_Minczuk \"Roberto Minczuk\") * [Roberto Santucci](/wiki/Roberto_Santucci \"Roberto Santucci\") |\n", + "| 2018 | * [Abelardo Barbosa](/wiki/Chacrinha \"Chacrinha\") * [Antonio \n", + "Mazzafera](/w/index.php?title=Antonio_Mazzafera&action=edit&redlink=1 \"Antonio Mazzafera (page does not exist)\") * \n", + "[Biblioteca Oliveira Lima](/w/index.php?title=Biblioteca_Oliveira_Lima&action=edit&redlink=1 \"Biblioteca Oliveira \n", + "Lima (page does not exist)\") * [Bruno Wainer](/w/index.php?title=Bruno_Wainer&action=edit&redlink=1 \"Bruno Wainer \n", + "(page does not exist)\") * [Carlos Saldanha](/wiki/Carlos_Saldanha \"Carlos Saldanha\") * [Carlos \n", + "Vereza](/wiki/Carlos_Vereza \"Carlos Vereza\") * [Dedé Santana](/wiki/Ded%C3%A9_Santana \"Dedé Santana\") * [Eva \n", + "Sopher](/wiki/Eva_Sopher \"Eva Sopher\") * [Eva Wilma](/wiki/Eva_Wilma \"Eva Wilma\") * [Festival Villa \n", + "Mix](/w/index.php?title=Festival_Villa_Mix&action=edit&redlink=1 \"Festival Villa Mix (page does not exist)\") * \n", + "[Guilherme Fiuza](/w/index.php?title=Guilherme_Fiuza&action=edit&redlink=1 \"Guilherme Fiuza (page does not exist)\")\n", + "* [Instituto Histórico e Geográfico Brasileiro](/wiki/Instituto_Hist%C3%B3rico_e_Geogr%C3%A1fico_Brasileiro \n", + "\"Instituto Histórico e Geográfico Brasileiro\") * [Jorge \n", + "Caldeira](/w/index.php?title=Jorge_Caldeira&action=edit&redlink=1 \"Jorge Caldeira (page does not exist)\") * [José \n", + "Bonifácio](/wiki/Jos%C3%A9_Bonif%C3%A1cio \"José Bonifácio\") * [Kati Almeida \n", + "Braga](/w/index.php?title=Kati_Almeida_Braga&action=edit&redlink=1 \"Kati Almeida Braga (page does not exist)\") * \n", + "[King's Brazil Institute](/w/index.php?title=King%27s_Brazil_Institute&action=edit&redlink=1 \"King's Brazil \n", + "Institute (page does not exist)\") * [Luiz Oscar \n", + "Niemeyer](/w/index.php?title=Luiz_Oscar_Niemeyer&action=edit&redlink=1 \"Luiz Oscar Niemeyer (page does not exist)\")\n", + "* [Marcelo Castello Branco](/w/index.php?title=Marcelo_Castello_Branco&action=edit&redlink=1 \"Marcelo Castello \n", + "Branco (page does not exist)\") * [Marcio Fraccaroli](/w/index.php?title=Marcio_Fraccaroli&action=edit&redlink=1 \n", + "\"Marcio Fraccaroli (page does not exist)\") * [Martim Vasques da \n", + "Cunha](/w/index.php?title=Martim_Vasques_da_Cunha&action=edit&redlink=1 \"Martim Vasques da Cunha (page does not \n", + "exist)\") * [Milton Gonçalves](/wiki/Milton_Gon%C3%A7alves \"Milton Gonçalves\") * [Monah \n", + "Delacy](/w/index.php?title=Monah_Delacy&action=edit&redlink=1 \"Monah Delacy (page does not exist)\") * [Museu de \n", + "Arte de São Paulo](/wiki/Museu_de_Arte_de_S%C3%A3o_Paulo \"Museu de Arte de São Paulo\") * [Museu de Arte Moderna do \n", + "Rio de Janeiro](/w/index.php?title=Museu_de_Arte_Moderna_do_Rio_de_Janeiro&action=edit&redlink=1 \"Museu de Arte \n", + "Moderna do Rio de Janeiro (page does not exist)\") * [Museu de Arte Moderna de São \n", + "Paulo](/wiki/Museu_de_Arte_Moderna_de_S%C3%A3o_Paulo \"Museu de Arte Moderna de São Paulo\") * [Museu da Gente \n", + "Sergipana](/w/index.php?title=Museu_da_Gente_Sergipana&action=edit&redlink=1 \"Museu da Gente Sergipana (page does \n", + "not exist)\") * [Orquestra Filarmônica de Minas \n", + "Gerais](/w/index.php?title=Orquestra_Filarm%C3%B4nica_de_Minas_Gerais&action=edit&redlink=1 \"Orquestra Filarmônica \n", + "de Minas Gerais (page does not exist)\") * [Roberto Teixeira da \n", + "Costa](/w/index.php?title=Roberto_Teixeira_da_Costa&action=edit&redlink=1 \"Roberto Teixeira da Costa (page does not\n", + "exist)\") * [Saulo Ferreira](/w/index.php?title=Saulo_Ferreira&action=edit&redlink=1 \"Saulo Ferreira (page does not \n", + "exist)\") * [Sérgio Mendes](/wiki/S%C3%A9rgio_Mendes \"Sérgio Mendes\") * [Sérgio \n", + "Mielniczenko](/w/index.php?title=S%C3%A9rgio_Mielniczenko&action=edit&redlink=1 \"Sérgio Mielniczenko (page does not\n", + "exist)\") * [Thiago Soares](/wiki/Thiago_Soares \"Thiago Soares\") * [Trio \n", + "Roraimeira](/w/index.php?title=Trio_Roraimeira&action=edit&redlink=1 \"Trio Roraimeira (page does not exist)\") * [Vó\n", + "Mera](/w/index.php?title=V%C3%B3_Mera&action=edit&redlink=1 \"Vó Mera (page does not exist)\") * [Wanda \n", + "Sá](/wiki/Wanda_S%C3%A1 \"Wanda Sá\") |\n", + "\n", + "| [Authority control databases](/wiki/Help:Authority_control \"Help:Authority control\") [Edit this at \n", + "Wikidata](https://www.wikidata.org/wiki/Q216450#identifiers \"Edit this at Wikidata\") | |\n", + "| --- | --- |\n", + "| International | * [ISNI](https://isni.org/isni/0000000114681685) * [VIAF](https://viaf.org/viaf/14968654) * \n", + "[FAST](http://id.worldcat.org/fast/206968/) * \n", + "[WorldCat](https://id.oclc.org/worldcat/entity/E39PBJg4jkvpjvDbg6bYgRy8G3) |\n", + "| National | * [Germany](https://d-nb.info/gnd/119022249) * [United \n", + "States](https://id.loc.gov/authorities/n87117284) * [France](https://catalogue.bnf.fr/ark:/12148/cb13999885k) * \n", + "[BnF data](https://data.bnf.fr/ark:/12148/cb13999885k) * [Italy](https://opac.sbn.it/nome/UBOV850079) * \n", + "[Spain](https://datos.bne.es/resource/XX1088218) * [Netherlands](http://data.bibliotheken.nl/id/thes/p071981608) * \n", + "[Norway](https://authority.bibsys.no/authority/rest/authorities/html/9050316) * \n", + "[Chile](http://www.bncatalogo.cl/F?func=direct&local_base=red10&doc_number=000157687) * \n", + "[Argentina](https://catalogo.bn.gov.ar/F/?func=direct&local_base=BNA10&doc_number=000042426) * \n", + "[Korea](https://lod.nl.go.kr/resource/KAC2020N6852) * \n", + "[Israel](https://www.nli.org.il/en/authorities/987007594420405171) * \n", + "[Catalonia](https://cantic.bnc.cat/registre/981058518702206706) |\n", + "| Artists | * [MusicBrainz](https://musicbrainz.org/artist/324b9329-7be6-491f-9ee1-65bfa10c7577) |\n", + "| People | * [Deutsche Biographie](https://www.deutsche-biographie.de/119022249.html?language=en) * \n", + "[DDB](https://www.deutsche-digitale-bibliothek.de/person/gnd/119022249) |\n", + "| Other | * [IdRef](https://www.idref.fr/08071613X) * [SNAC](https://snaccooperative.org/ark:/99166/w67n4hns) |\n", + "\n", + "[Portals](/wiki/Wikipedia:Contents/Portals \"Wikipedia:Contents/Portals\"):\n", + "\n", + "* ![flag](//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png)\n", + "[Argentina](/wiki/Portal:Argentina \"Portal:Argentina\")\n", + "* ![](//upload.wikimedia.org/wikipedia/commons/thumb/3/37/Conga.svg/20px-Conga.svg.png) [Latin \n", + "music](/wiki/Portal:Latin_music \"Portal:Latin music\")\n", + "\n", + "![](https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1&usesul3=1)\n", + "\n", + "Retrieved from \"\"\n", + "\n", + "[Categories](/wiki/Help:Category \"Help:Category\"):\n", + "\n", + "* [1935 births](/wiki/Category:1935_births \"Category:1935 births\")\n", + "* [2009 deaths](/wiki/Category:2009_deaths \"Category:2009 deaths\")\n", + "* [Latin Grammy Award winners](/wiki/Category:Latin_Grammy_Award_winners \"Category:Latin Grammy Award winners\")\n", + "* [20th-century Argentine women singers](/wiki/Category:20th-century_Argentine_women_singers \"Category:20th-century\n", + "Argentine women singers\")\n", + "* [Argentine activists](/wiki/Category:Argentine_activists \"Category:Argentine activists\")\n", + "* [Argentine women activists](/wiki/Category:Argentine_women_activists \"Category:Argentine women activists\")\n", + "* [Argentine people of French descent](/wiki/Category:Argentine_people_of_French_descent \"Category:Argentine people\n", + "of French descent\")\n", + "* [Argentine people of Diaguita descent](/wiki/Category:Argentine_people_of_Diaguita_descent \"Category:Argentine \n", + "people of Diaguita descent\")\n", + "* [Argentine people of Quechua descent](/wiki/Category:Argentine_people_of_Quechua_descent \"Category:Argentine \n", + "people of Quechua descent\")\n", + "* [Deaths from kidney failure in Argentina](/wiki/Category:Deaths_from_kidney_failure_in_Argentina \"Category:Deaths\n", + "from kidney failure in Argentina\")\n", + "* [People from San Miguel de Tucumán](/wiki/Category:People_from_San_Miguel_de_Tucum%C3%A1n \"Category:People from \n", + "San Miguel de Tucumán\")\n", + "* [Nueva canción musicians](/wiki/Category:Nueva_canci%C3%B3n_musicians \"Category:Nueva canción musicians\")\n", + "* [Bombo legüero players](/wiki/Category:Bombo_leg%C3%BCero_players \"Category:Bombo legüero players\")\n", + "* [Latin Grammy Lifetime Achievement Award winners](/wiki/Category:Latin_Grammy_Lifetime_Achievement_Award_winners \n", + "\"Category:Latin Grammy Lifetime Achievement Award winners\")\n", + "* [Recipients of the Order of Cultural Merit \n", + "(Brazil)](/wiki/Category:Recipients_of_the_Order_of_Cultural_Merit_(Brazil) \"Category:Recipients of the Order of \n", + "Cultural Merit (Brazil)\")\n", + "* [20th-century drummers](/wiki/Category:20th-century_drummers \"Category:20th-century drummers\")\n", + "* [Women in Latin music](/wiki/Category:Women_in_Latin_music \"Category:Women in Latin music\")\n", + "\n", + "Hidden categories:\n", + "\n", + "* [All articles with dead external links](/wiki/Category:All_articles_with_dead_external_links \"Category:All \n", + "articles with dead external links\")\n", + "* [Articles with dead external links from June \n", + "2024](/wiki/Category:Articles_with_dead_external_links_from_June_2024 \"Category:Articles with dead external links \n", + "from June 2024\")\n", + "* [CS1 Spanish-language sources (es)](/wiki/Category:CS1_Spanish-language_sources_(es) \"Category:CS1 \n", + "Spanish-language sources (es)\")\n", + "* [CS1 maint: numeric names: authors list](/wiki/Category:CS1_maint:_numeric_names:_authors_list \"Category:CS1 \n", + "maint: numeric names: authors list\")\n", + "* [CS1 maint: url-status](/wiki/Category:CS1_maint:_url-status \"Category:CS1 maint: url-status\")\n", + "* [Webarchive template wayback links](/wiki/Category:Webarchive_template_wayback_links \"Category:Webarchive \n", + "template wayback links\")\n", + "* [Articles with German-language sources (de)](/wiki/Category:Articles_with_German-language_sources_(de) \n", + "\"Category:Articles with German-language sources (de)\")\n", + "* [Articles with short description](/wiki/Category:Articles_with_short_description \"Category:Articles with short \n", + "description\")\n", + "* [Short description is different from Wikidata](/wiki/Category:Short_description_is_different_from_Wikidata \n", + "\"Category:Short description is different from Wikidata\")\n", + "* [Use dmy dates from July 2023](/wiki/Category:Use_dmy_dates_from_July_2023 \"Category:Use dmy dates from July \n", + "2023\")\n", + "* [Wikipedia indefinitely move-protected pages](/wiki/Category:Wikipedia_indefinitely_move-protected_pages \n", + "\"Category:Wikipedia indefinitely move-protected pages\")\n", + "* [Articles with hCards](/wiki/Category:Articles_with_hCards \"Category:Articles with hCards\")\n", + "* [Pages with Latin American Spanish IPA](/wiki/Category:Pages_with_Latin_American_Spanish_IPA \"Category:Pages with\n", + "Latin American Spanish IPA\")\n", + "* [All articles with unsourced statements](/wiki/Category:All_articles_with_unsourced_statements \"Category:All \n", + "articles with unsourced statements\")\n", + "* [Articles with unsourced statements from December \n", + "2023](/wiki/Category:Articles_with_unsourced_statements_from_December_2023 \"Category:Articles with unsourced \n", + "statements from December 2023\")\n", + "* [Commons category link is on Wikidata](/wiki/Category:Commons_category_link_is_on_Wikidata \"Category:Commons \n", + "category link is on Wikidata\")\n", + "\n", + "* This page was last edited on 19 March 2025, at 08:35 (UTC).\n", + "* Text is available under the [Creative Commons Attribution-ShareAlike 4.0 \n", + "License](/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License \n", + "\"Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License\");\n", + " additional terms may apply. By using this site, you agree to the [Terms of \n", + "Use](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use \n", + "\"foundation:Special:MyLanguage/Policy:Terms of Use\") and [Privacy \n", + "Policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy \n", + "\"foundation:Special:MyLanguage/Policy:Privacy policy\"). Wikipedia® is a registered trademark of the [Wikimedia \n", + "Foundation, Inc.](https://wikimediafoundation.org/), a non-profit organization.\n", + "\n", + "* [Privacy policy](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy)\n", + "* [About Wikipedia](/wiki/Wikipedia:About)\n", + "* [Disclaimers](/wiki/Wikipedia:General_disclaimer)\n", + "* [Contact Wikipedia](//en.wikipedia.org/wiki/Wikipedia:Contact_us)\n", + "* [Code of Conduct](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct)\n", + "* [Developers](https://developer.wikimedia.org)\n", + "* [Statistics](https://stats.wikimedia.org/#/en.wikipedia.org)\n", + "* [Cookie statement](https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement)\n", + "* [Mobile view](//en.m.wikipedia.org/w/index.php?title=Mercedes_Sosa&mobileaction=toggle_view_mobile)\n", + "\n", + "* [![Wikimedia Foundation](/static/images/footer/wikimedia.svg)](https://www.wikimedia.org/)\n", + "* [![Powered by MediaWiki](/w/resources/assets/mediawiki_compact.svg)](https://www.mediawiki.org/)\n", + "\n", + "Search\n", + "\n", + "Search\n", + "\n", + "Toggle the table of contents\n", + "\n", + "Mercedes Sosa\n", + "\n", + "49 languages\n", + "[Add topic](#)\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 9: Duration 7.93 seconds| Input tokens: 415,369 | Output tokens: 2,188]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 9: Duration 7.93 seconds| Input tokens: 415,369 | Output tokens: 2,188]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Step 10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m10\u001b[0m\u001b[38;2;212;183;2m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\u001b[1;31mGive Feedback / Get Help: https://github.com/BerriAI/litellm/issues/new\u001b[0m\n", + "LiteLLM.Info: If you need to debug this error, use `litellm._turn_on_debug()'.\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
Error in generating model output:\n",
+       "litellm.RateLimitError: litellm.RateLimitError: VertexAIException - {\n",
+       "  \"error\": {\n",
+       "    \"code\": 429,\n",
+       "    \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information \n",
+       "on this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\",\n",
+       "    \"status\": \"RESOURCE_EXHAUSTED\",\n",
+       "    \"details\": [\n",
+       "      {\n",
+       "        \"@type\": \"type.googleapis.com/google.rpc.QuotaFailure\",\n",
+       "        \"violations\": [\n",
+       "          {\n",
+       "            \"quotaMetric\": \"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\",\n",
+       "            \"quotaId\": \"GenerateContentInputTokensPerModelPerMinute-FreeTier\",\n",
+       "            \"quotaDimensions\": {\n",
+       "              \"location\": \"global\",\n",
+       "              \"model\": \"gemini-2.5-flash\"\n",
+       "            },\n",
+       "            \"quotaValue\": \"250000\"\n",
+       "          }\n",
+       "        \\]\n",
+       "      },\n",
+       "      {\n",
+       "        \"@type\": \"type.googleapis.com/google.rpc.Help\",\n",
+       "        \"links\": [\n",
+       "          {\n",
+       "            \"description\": \"Learn more about Gemini API quotas\",\n",
+       "            \"url\": \"https://ai.google.dev/gemini-api/docs/rate-limits\"\n",
+       "          }\n",
+       "        \\]\n",
+       "      },\n",
+       "      {\n",
+       "        \"@type\": \"type.googleapis.com/google.rpc.RetryInfo\",\n",
+       "        \"retryDelay\": \"42s\"\n",
+       "      }\n",
+       "    ]\n",
+       "  }\n",
+       "}\n",
+       "\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;31mError in generating model output:\u001b[0m\n", + "\u001b[1;31mlitellm.RateLimitError: litellm.RateLimitError: VertexAIException - \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"error\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"code\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;36m429\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"message\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"You exceeded your current quota, please check your plan and billing details. For more information \u001b[0m\n", + "\u001b[32mon this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"status\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"RESOURCE_EXHAUSTED\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"details\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;31m[\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"@type\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"type.googleapis.com/google.rpc.QuotaFailure\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"violations\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;31m[\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"quotaMetric\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"quotaId\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"GenerateContentInputTokensPerModelPerMinute-FreeTier\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"quotaDimensions\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"location\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"global\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"model\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"gemini-2.5-flash\"\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"quotaValue\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"250000\"\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\n", + "\u001b[1;31m \\\u001b[0m\u001b[1;31m]\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"@type\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"type.googleapis.com/google.rpc.Help\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"links\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[1;31m[\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"description\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"Learn more about Gemini API quotas\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"url\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"https://ai.google.dev/gemini-api/docs/rate-limits\"\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\n", + "\u001b[1;31m \\\u001b[0m\u001b[1;31m]\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m{\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"@type\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"type.googleapis.com/google.rpc.RetryInfo\"\u001b[0m\u001b[1;31m,\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[32m\"retryDelay\"\u001b[0m\u001b[1;31m: \u001b[0m\u001b[32m\"42s\"\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m]\u001b[0m\n", + "\u001b[1;31m \u001b[0m\u001b[1;31m}\u001b[0m\n", + "\u001b[1;31m}\u001b[0m\n", + "\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 10: Duration 5.07 seconds| Input tokens: 493,752 | Output tokens: 2,417]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 10: Duration 5.07 seconds| Input tokens: 493,752 | Output tokens: 2,417]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "ename": "AgentGenerationError", + "evalue": "Error in generating model output:\nlitellm.RateLimitError: litellm.RateLimitError: VertexAIException - {\n \"error\": {\n \"code\": 429,\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\",\n \"status\": \"RESOURCE_EXHAUSTED\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.QuotaFailure\",\n \"violations\": [\n {\n \"quotaMetric\": \"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\",\n \"quotaId\": \"GenerateContentInputTokensPerModelPerMinute-FreeTier\",\n \"quotaDimensions\": {\n \"location\": \"global\",\n \"model\": \"gemini-2.5-flash\"\n },\n \"quotaValue\": \"250000\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.Help\",\n \"links\": [\n {\n \"description\": \"Learn more about Gemini API quotas\",\n \"url\": \"https://ai.google.dev/gemini-api/docs/rate-limits\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.RetryInfo\",\n \"retryDelay\": \"42s\"\n }\n ]\n }\n}\n", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mHTTPStatusError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\llms\\vertex_ai\\gemini\\vertex_and_google_ai_studio_gemini.py:1489\u001b[0m, in \u001b[0;36mVertexLLM.completion\u001b[1;34m(self, model, messages, model_response, print_verbose, custom_llm_provider, encoding, logging_obj, optional_params, acompletion, timeout, vertex_project, vertex_location, vertex_credentials, gemini_api_key, litellm_params, logger_fn, extra_headers, client, api_base)\u001b[0m\n\u001b[0;32m 1488\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m-> 1489\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mclient\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpost\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mjson\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;66;03m# type: ignore\u001b[39;00m\n\u001b[0;32m 1490\u001b[0m response\u001b[38;5;241m.\u001b[39mraise_for_status()\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\llms\\custom_httpx\\http_handler.py:576\u001b[0m, in \u001b[0;36mHTTPHandler.post\u001b[1;34m(self, url, data, json, params, headers, stream, timeout, files, content, logging_obj)\u001b[0m\n\u001b[0;32m 575\u001b[0m \u001b[38;5;28msetattr\u001b[39m(e, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mstatus_code\u001b[39m\u001b[38;5;124m\"\u001b[39m, e\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mstatus_code)\n\u001b[1;32m--> 576\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[0;32m 577\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\llms\\custom_httpx\\http_handler.py:558\u001b[0m, in \u001b[0;36mHTTPHandler.post\u001b[1;34m(self, url, data, json, params, headers, stream, timeout, files, content, logging_obj)\u001b[0m\n\u001b[0;32m 557\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mclient\u001b[38;5;241m.\u001b[39msend(req, stream\u001b[38;5;241m=\u001b[39mstream)\n\u001b[1;32m--> 558\u001b[0m \u001b[43mresponse\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mraise_for_status\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 559\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m response\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\httpx\\_models.py:829\u001b[0m, in \u001b[0;36mResponse.raise_for_status\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 828\u001b[0m message \u001b[38;5;241m=\u001b[39m message\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;28mself\u001b[39m, error_type\u001b[38;5;241m=\u001b[39merror_type)\n\u001b[1;32m--> 829\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m HTTPStatusError(message, request\u001b[38;5;241m=\u001b[39mrequest, response\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m)\n", + "\u001b[1;31mHTTPStatusError\u001b[0m: Client error '429 Too Many Requests' for url 'https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash-preview-04-17:generateContent?key=AIzaSyBF07Alm6o2fyoTmm0uMLh8Gvz9Y7Ng8ao'\nFor more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mVertexAIError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\main.py:2390\u001b[0m, in \u001b[0;36mcompletion\u001b[1;34m(model, messages, timeout, temperature, top_p, n, stream, stream_options, stop, max_completion_tokens, max_tokens, modalities, prediction, audio, presence_penalty, frequency_penalty, logit_bias, user, reasoning_effort, response_format, seed, tools, tool_choice, logprobs, top_logprobs, parallel_tool_calls, deployment_id, extra_headers, functions, function_call, base_url, api_version, api_key, model_list, thinking, **kwargs)\u001b[0m\n\u001b[0;32m 2389\u001b[0m new_params \u001b[38;5;241m=\u001b[39m deepcopy(optional_params)\n\u001b[1;32m-> 2390\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mvertex_chat_completion\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcompletion\u001b[49m\u001b[43m(\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type: ignore\u001b[39;49;00m\n\u001b[0;32m 2391\u001b[0m \u001b[43m \u001b[49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2392\u001b[0m \u001b[43m \u001b[49m\u001b[43mmessages\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmessages\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2393\u001b[0m \u001b[43m \u001b[49m\u001b[43mmodel_response\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmodel_response\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2394\u001b[0m \u001b[43m \u001b[49m\u001b[43mprint_verbose\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprint_verbose\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2395\u001b[0m \u001b[43m \u001b[49m\u001b[43moptional_params\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mnew_params\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2396\u001b[0m \u001b[43m \u001b[49m\u001b[43mlitellm_params\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlitellm_params\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# type: ignore\u001b[39;49;00m\n\u001b[0;32m 2397\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogger_fn\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogger_fn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2398\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2399\u001b[0m \u001b[43m \u001b[49m\u001b[43mvertex_location\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mvertex_ai_location\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2400\u001b[0m \u001b[43m \u001b[49m\u001b[43mvertex_project\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mvertex_ai_project\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2401\u001b[0m \u001b[43m \u001b[49m\u001b[43mvertex_credentials\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mvertex_credentials\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2402\u001b[0m \u001b[43m \u001b[49m\u001b[43mgemini_api_key\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgemini_api_key\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2403\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogging_obj\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogging\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2404\u001b[0m \u001b[43m \u001b[49m\u001b[43macompletion\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43macompletion\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2405\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2406\u001b[0m \u001b[43m \u001b[49m\u001b[43mcustom_llm_provider\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcustom_llm_provider\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2407\u001b[0m \u001b[43m \u001b[49m\u001b[43mclient\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mclient\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2408\u001b[0m \u001b[43m \u001b[49m\u001b[43mapi_base\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mapi_base\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2409\u001b[0m \u001b[43m \u001b[49m\u001b[43mextra_headers\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mextra_headers\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2410\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 2412\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m custom_llm_provider \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mvertex_ai\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\llms\\vertex_ai\\gemini\\vertex_and_google_ai_studio_gemini.py:1493\u001b[0m, in \u001b[0;36mVertexLLM.completion\u001b[1;34m(self, model, messages, model_response, print_verbose, custom_llm_provider, encoding, logging_obj, optional_params, acompletion, timeout, vertex_project, vertex_location, vertex_credentials, gemini_api_key, litellm_params, logger_fn, extra_headers, client, api_base)\u001b[0m\n\u001b[0;32m 1492\u001b[0m error_code \u001b[38;5;241m=\u001b[39m err\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mstatus_code\n\u001b[1;32m-> 1493\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m VertexAIError(\n\u001b[0;32m 1494\u001b[0m status_code\u001b[38;5;241m=\u001b[39merror_code,\n\u001b[0;32m 1495\u001b[0m message\u001b[38;5;241m=\u001b[39merr\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mtext,\n\u001b[0;32m 1496\u001b[0m headers\u001b[38;5;241m=\u001b[39merr\u001b[38;5;241m.\u001b[39mresponse\u001b[38;5;241m.\u001b[39mheaders,\n\u001b[0;32m 1497\u001b[0m )\n\u001b[0;32m 1498\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m httpx\u001b[38;5;241m.\u001b[39mTimeoutException:\n", + "\u001b[1;31mVertexAIError\u001b[0m: {\n \"error\": {\n \"code\": 429,\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\",\n \"status\": \"RESOURCE_EXHAUSTED\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.QuotaFailure\",\n \"violations\": [\n {\n \"quotaMetric\": \"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\",\n \"quotaId\": \"GenerateContentInputTokensPerModelPerMinute-FreeTier\",\n \"quotaDimensions\": {\n \"location\": \"global\",\n \"model\": \"gemini-2.5-flash\"\n },\n \"quotaValue\": \"250000\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.Help\",\n \"links\": [\n {\n \"description\": \"Learn more about Gemini API quotas\",\n \"url\": \"https://ai.google.dev/gemini-api/docs/rate-limits\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.RetryInfo\",\n \"retryDelay\": \"42s\"\n }\n ]\n }\n}\n", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mRateLimitError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:1266\u001b[0m, in \u001b[0;36mCodeAgent.step\u001b[1;34m(self, memory_step)\u001b[0m\n\u001b[0;32m 1265\u001b[0m additional_args \u001b[38;5;241m=\u001b[39m {\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgrammar\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgrammar} \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgrammar \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m {}\n\u001b[1;32m-> 1266\u001b[0m chat_message: ChatMessage \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 1267\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43minput_messages\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1268\u001b[0m \u001b[43m \u001b[49m\u001b[43mstop_sequences\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mObservation:\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mCalling tools:\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1269\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43madditional_args\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1270\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1271\u001b[0m memory_step\u001b[38;5;241m.\u001b[39mmodel_output_message \u001b[38;5;241m=\u001b[39m chat_message\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\models.py:976\u001b[0m, in \u001b[0;36mLiteLLMModel.__call__\u001b[1;34m(self, messages, stop_sequences, grammar, tools_to_call_from, **kwargs)\u001b[0m\n\u001b[0;32m 963\u001b[0m completion_kwargs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prepare_completion_kwargs(\n\u001b[0;32m 964\u001b[0m messages\u001b[38;5;241m=\u001b[39mmessages,\n\u001b[0;32m 965\u001b[0m stop_sequences\u001b[38;5;241m=\u001b[39mstop_sequences,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 973\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs,\n\u001b[0;32m 974\u001b[0m )\n\u001b[1;32m--> 976\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mclient\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcompletion\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mcompletion_kwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 978\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlast_input_token_count \u001b[38;5;241m=\u001b[39m response\u001b[38;5;241m.\u001b[39musage\u001b[38;5;241m.\u001b[39mprompt_tokens\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\utils.py:1255\u001b[0m, in \u001b[0;36mclient..wrapper\u001b[1;34m(*args, **kwargs)\u001b[0m\n\u001b[0;32m 1252\u001b[0m logging_obj\u001b[38;5;241m.\u001b[39mfailure_handler(\n\u001b[0;32m 1253\u001b[0m e, traceback_exception, start_time, end_time\n\u001b[0;32m 1254\u001b[0m ) \u001b[38;5;66;03m# DO NOT MAKE THREADED - router retry fallback relies on this!\u001b[39;00m\n\u001b[1;32m-> 1255\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\utils.py:1133\u001b[0m, in \u001b[0;36mclient..wrapper\u001b[1;34m(*args, **kwargs)\u001b[0m\n\u001b[0;32m 1132\u001b[0m \u001b[38;5;66;03m# MODEL CALL\u001b[39;00m\n\u001b[1;32m-> 1133\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43moriginal_function\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1134\u001b[0m end_time \u001b[38;5;241m=\u001b[39m datetime\u001b[38;5;241m.\u001b[39mdatetime\u001b[38;5;241m.\u001b[39mnow()\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\main.py:3182\u001b[0m, in \u001b[0;36mcompletion\u001b[1;34m(model, messages, timeout, temperature, top_p, n, stream, stream_options, stop, max_completion_tokens, max_tokens, modalities, prediction, audio, presence_penalty, frequency_penalty, logit_bias, user, reasoning_effort, response_format, seed, tools, tool_choice, logprobs, top_logprobs, parallel_tool_calls, deployment_id, extra_headers, functions, function_call, base_url, api_version, api_key, model_list, thinking, **kwargs)\u001b[0m\n\u001b[0;32m 3180\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 3181\u001b[0m \u001b[38;5;66;03m## Map to OpenAI Exception\u001b[39;00m\n\u001b[1;32m-> 3182\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[43mexception_type\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 3183\u001b[0m \u001b[43m \u001b[49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3184\u001b[0m \u001b[43m \u001b[49m\u001b[43mcustom_llm_provider\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcustom_llm_provider\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3185\u001b[0m \u001b[43m \u001b[49m\u001b[43moriginal_exception\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43me\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3186\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompletion_kwargs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3187\u001b[0m \u001b[43m \u001b[49m\u001b[43mextra_kwargs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 3188\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\litellm_core_utils\\exception_mapping_utils.py:2214\u001b[0m, in \u001b[0;36mexception_type\u001b[1;34m(model, original_exception, custom_llm_provider, completion_kwargs, extra_kwargs)\u001b[0m\n\u001b[0;32m 2213\u001b[0m \u001b[38;5;28msetattr\u001b[39m(e, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mlitellm_response_headers\u001b[39m\u001b[38;5;124m\"\u001b[39m, litellm_response_headers)\n\u001b[1;32m-> 2214\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[0;32m 2215\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\litellm\\litellm_core_utils\\exception_mapping_utils.py:1254\u001b[0m, in \u001b[0;36mexception_type\u001b[1;34m(model, original_exception, custom_llm_provider, completion_kwargs, extra_kwargs)\u001b[0m\n\u001b[0;32m 1253\u001b[0m exception_mapping_worked \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m-> 1254\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m RateLimitError(\n\u001b[0;32m 1255\u001b[0m message\u001b[38;5;241m=\u001b[39m\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mlitellm.RateLimitError: VertexAIException - \u001b[39m\u001b[38;5;132;01m{\u001b[39;00merror_str\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1256\u001b[0m model\u001b[38;5;241m=\u001b[39mmodel,\n\u001b[0;32m 1257\u001b[0m llm_provider\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mvertex_ai\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1258\u001b[0m litellm_debug_info\u001b[38;5;241m=\u001b[39mextra_information,\n\u001b[0;32m 1259\u001b[0m response\u001b[38;5;241m=\u001b[39mhttpx\u001b[38;5;241m.\u001b[39mResponse(\n\u001b[0;32m 1260\u001b[0m status_code\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m429\u001b[39m,\n\u001b[0;32m 1261\u001b[0m request\u001b[38;5;241m=\u001b[39mhttpx\u001b[38;5;241m.\u001b[39mRequest(\n\u001b[0;32m 1262\u001b[0m method\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mPOST\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1263\u001b[0m url\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m https://cloud.google.com/vertex-ai/\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1264\u001b[0m ),\n\u001b[0;32m 1265\u001b[0m ),\n\u001b[0;32m 1266\u001b[0m )\n\u001b[0;32m 1267\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m original_exception\u001b[38;5;241m.\u001b[39mstatus_code \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m500\u001b[39m:\n", + "\u001b[1;31mRateLimitError\u001b[0m: litellm.RateLimitError: litellm.RateLimitError: VertexAIException - {\n \"error\": {\n \"code\": 429,\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\",\n \"status\": \"RESOURCE_EXHAUSTED\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.QuotaFailure\",\n \"violations\": [\n {\n \"quotaMetric\": \"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\",\n \"quotaId\": \"GenerateContentInputTokensPerModelPerMinute-FreeTier\",\n \"quotaDimensions\": {\n \"location\": \"global\",\n \"model\": \"gemini-2.5-flash\"\n },\n \"quotaValue\": \"250000\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.Help\",\n \"links\": [\n {\n \"description\": \"Learn more about Gemini API quotas\",\n \"url\": \"https://ai.google.dev/gemini-api/docs/rate-limits\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.RetryInfo\",\n \"retryDelay\": \"42s\"\n }\n ]\n }\n}\n", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[1;31mAgentGenerationError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[32], line 9\u001b[0m\n\u001b[0;32m 1\u001b[0m agent \u001b[38;5;241m=\u001b[39m CodeAgent(\n\u001b[0;32m 2\u001b[0m tools\u001b[38;5;241m=\u001b[39m[DuckDuckGoSearchTool(), youtube_transcription_tool,visit_webpage],\n\u001b[0;32m 3\u001b[0m model\u001b[38;5;241m=\u001b[39mmodel,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 7\u001b[0m verbosity_level\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m2\u001b[39m,\n\u001b[0;32m 8\u001b[0m )\n\u001b[1;32m----> 9\u001b[0m answer \u001b[38;5;241m=\u001b[39m \u001b[43magent\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrun\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\"\"\u001b[39;49m\u001b[38;5;124;43mHow many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest 2022 version of english wikipedia.\u001b[39;49m\u001b[38;5;124;43m\"\"\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:341\u001b[0m, in \u001b[0;36mMultiStepAgent.run\u001b[1;34m(self, task, stream, reset, images, additional_args, max_steps)\u001b[0m\n\u001b[0;32m 339\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_run(task\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtask, max_steps\u001b[38;5;241m=\u001b[39mmax_steps, images\u001b[38;5;241m=\u001b[39mimages)\n\u001b[0;32m 340\u001b[0m \u001b[38;5;66;03m# Outputs are returned only at the end. We only look at the last step.\u001b[39;00m\n\u001b[1;32m--> 341\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mdeque\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_run\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtask\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtask\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmax_steps\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmax_steps\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mimages\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mimages\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmaxlen\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m0\u001b[39m]\u001b[38;5;241m.\u001b[39mfinal_answer\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:365\u001b[0m, in \u001b[0;36mMultiStepAgent._run\u001b[1;34m(self, task, max_steps, images)\u001b[0m\n\u001b[0;32m 362\u001b[0m final_answer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_execute_step(task, action_step)\n\u001b[0;32m 363\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m AgentGenerationError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 364\u001b[0m \u001b[38;5;66;03m# Agent generation errors are not caused by a Model error but an implementation error: so we should raise them and exit.\u001b[39;00m\n\u001b[1;32m--> 365\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n\u001b[0;32m 366\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m AgentError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 367\u001b[0m \u001b[38;5;66;03m# Other AgentError types are caused by the Model, so we should log them and iterate.\u001b[39;00m\n\u001b[0;32m 368\u001b[0m action_step\u001b[38;5;241m.\u001b[39merror \u001b[38;5;241m=\u001b[39m e\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:362\u001b[0m, in \u001b[0;36mMultiStepAgent._run\u001b[1;34m(self, task, max_steps, images)\u001b[0m\n\u001b[0;32m 360\u001b[0m action_step \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_create_action_step(step_start_time, images)\n\u001b[0;32m 361\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m--> 362\u001b[0m final_answer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_execute_step\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtask\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maction_step\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 363\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m AgentGenerationError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 364\u001b[0m \u001b[38;5;66;03m# Agent generation errors are not caused by a Model error but an implementation error: so we should raise them and exit.\u001b[39;00m\n\u001b[0;32m 365\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:385\u001b[0m, in \u001b[0;36mMultiStepAgent._execute_step\u001b[1;34m(self, task, memory_step)\u001b[0m\n\u001b[0;32m 383\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21m_execute_step\u001b[39m(\u001b[38;5;28mself\u001b[39m, task: \u001b[38;5;28mstr\u001b[39m, memory_step: ActionStep) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m Union[\u001b[38;5;28;01mNone\u001b[39;00m, Any]:\n\u001b[0;32m 384\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlogger\u001b[38;5;241m.\u001b[39mlog_rule(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mStep \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mstep_number\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, level\u001b[38;5;241m=\u001b[39mLogLevel\u001b[38;5;241m.\u001b[39mINFO)\n\u001b[1;32m--> 385\u001b[0m final_answer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mstep\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmemory_step\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 386\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m final_answer \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfinal_answer_checks:\n\u001b[0;32m 387\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_validate_final_answer(final_answer)\n", + "File \u001b[1;32mc:\\Users\\pulkitme\\AppData\\Local\\miniconda3\\Lib\\site-packages\\smolagents\\agents.py:1282\u001b[0m, in \u001b[0;36mCodeAgent.step\u001b[1;34m(self, memory_step)\u001b[0m\n\u001b[0;32m 1280\u001b[0m memory_step\u001b[38;5;241m.\u001b[39mmodel_output \u001b[38;5;241m=\u001b[39m model_output\n\u001b[0;32m 1281\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m-> 1282\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m AgentGenerationError(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mError in generating model output:\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;132;01m{\u001b[39;00me\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlogger) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01me\u001b[39;00m\n\u001b[0;32m 1284\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlogger\u001b[38;5;241m.\u001b[39mlog_markdown(\n\u001b[0;32m 1285\u001b[0m content\u001b[38;5;241m=\u001b[39mmodel_output,\n\u001b[0;32m 1286\u001b[0m title\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mOutput message of the LLM:\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1287\u001b[0m level\u001b[38;5;241m=\u001b[39mLogLevel\u001b[38;5;241m.\u001b[39mDEBUG,\n\u001b[0;32m 1288\u001b[0m )\n\u001b[0;32m 1290\u001b[0m \u001b[38;5;66;03m# Parse\u001b[39;00m\n", + "\u001b[1;31mAgentGenerationError\u001b[0m: Error in generating model output:\nlitellm.RateLimitError: litellm.RateLimitError: VertexAIException - {\n \"error\": {\n \"code\": 429,\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, head to: https://ai.google.dev/gemini-api/docs/rate-limits.\",\n \"status\": \"RESOURCE_EXHAUSTED\",\n \"details\": [\n {\n \"@type\": \"type.googleapis.com/google.rpc.QuotaFailure\",\n \"violations\": [\n {\n \"quotaMetric\": \"generativelanguage.googleapis.com/generate_content_free_tier_input_token_count\",\n \"quotaId\": \"GenerateContentInputTokensPerModelPerMinute-FreeTier\",\n \"quotaDimensions\": {\n \"location\": \"global\",\n \"model\": \"gemini-2.5-flash\"\n },\n \"quotaValue\": \"250000\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.Help\",\n \"links\": [\n {\n \"description\": \"Learn more about Gemini API quotas\",\n \"url\": \"https://ai.google.dev/gemini-api/docs/rate-limits\"\n }\n ]\n },\n {\n \"@type\": \"type.googleapis.com/google.rpc.RetryInfo\",\n \"retryDelay\": \"42s\"\n }\n ]\n }\n}\n" + ] + } + ], + "source": [ + "agent = CodeAgent(\n", + " tools=[DuckDuckGoSearchTool(), youtube_transcription_tool,visit_webpage],\n", + " model=model,\n", + " #additional_authorized_imports=[\"helium\"],\n", + " #step_callbacks=[save_screenshot],\n", + " max_steps=20,\n", + " verbosity_level=2,\n", + " )\n", + "answer = agent.run(\"\"\"How many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest 2022 version of english wikipedia.\"\"\")" ] }, {