From b3f3674dfbc5a1206427e421268b900d2dbc788c Mon Sep 17 00:00:00 2001 From: "mathieu.schiess@edu.ge.ch" <mathieu.schiess@posteo.ch> Date: Wed, 6 Nov 2024 22:34:47 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'une=20=C3=A9bauche=20de=20notebook=20?= =?UTF-8?q?sur=20les=20fonctions=20avec=20param=C3=A8tres?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../04_Les_fonctions_avec_parametres.ipynb | 1 + Notebooks/imgs_chap4/canevas.png | Bin 0 -> 24947 bytes 2 files changed, 1 insertion(+) create mode 100644 Notebooks/04_Les_fonctions_avec_parametres.ipynb create mode 100644 Notebooks/imgs_chap4/canevas.png diff --git a/Notebooks/04_Les_fonctions_avec_parametres.ipynb b/Notebooks/04_Les_fonctions_avec_parametres.ipynb new file mode 100644 index 0000000..b29b2c4 --- /dev/null +++ b/Notebooks/04_Les_fonctions_avec_parametres.ipynb @@ -0,0 +1 @@ +{"cells":[{"metadata":{},"cell_type":"markdown","source":"# 4. Les fonctions avec paramètres\n\nDans cette leçon, nous allons approfondir le concept de la fonction. Dans la leçon 3 sur les fonctions simples, nous avons vu la fonction comme une façon de donner un nom à une séquence d'instructions. Ici nous allons voir comment nous pouvons ajouter un ou plusieurs paramètres à une fonction. Nous allons voir que :\n\n- l'expression `def rect(d, e):` permet de définir une fonction avec deux paramètres,\n- les paramètres `d, e` sont des variables locales valides uniquement à l'intérieur de la définition de fonction,\n- ces paramètres prennent une valeur au moment de l'appel de la fonction avec `rect(50, 30)`.\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:chocolate;background-color:papayawhip;\" > <i class=\"fa fa-question\" aria-hidden=\"true\"> </i> Quizz </h3> \n \n```\nEn Python, `def` est un raccourci pour\n\nA) défoncé\nB) défilé\nC) définition\nD) défavorisé\n```"},{"metadata":{},"cell_type":"markdown","source":"<details>\n<summary style=\"border-left:3px solid #3c763d; border-radius:2pt; width:100%; color:#3c763d; padding:6px; background-color: #dff0d8\"> \nRéponse\n</summary> \n\n<div style=\"border-left:3px solid #3c763d; border-radius:2pt; color:#3c763d; padding:6px; background-color: #eff0e8\">\nC) définition\n</div>\n</details>"},{"metadata":{},"cell_type":"markdown","source":"## Paramétrer une fonction\n\nJusqu'à maintenant, notre rectangle était d'une taille fixe. La fonction `rectangle()` de la leçon 3 sur les fonctions simples \n```python \ndef rectangle():\n forward(160)\n left(90)\n forward(100)\n left(90)\n forward(160)\n left(90)\n forward(100)\n left(90)\n```\n dessine toujours un rectangle de 160 x 100 pixels. Il faudrait faire une nouvelle fonction `rectangle2()` si on voulait dessiner une taille différente.\n\nIl serait très utile de disposer d'une fonction de la forme `rectangle(d, e)` qui puisse dessiner des rectangles de largeur et hauteur variable.\nC'est possible en spécifiant des **paramètres** pour la fonction.\nUn paramètre de fonction est une **variable locale** qui peut être utilisée dans sa définition.\n\nLors de l'appel de la fonction, nous donnons des valeurs à la fonction.\nCes valeurs sont les **arguments** de la fonction.\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 1 </h3>\n\nComplétez le programme ci-dessous afin de dessiner un deuxième rectangle avec d'autres dimensions.\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef rectangle(d, e): # paramètres (d, e)\n for i in range(2):\n forward(d/2)\n write(d)\n forward(d/2)\n left(90)\n\n forward(e/2)\n write(e)\n forward(e/2)\n left(90)\n\nrectangle(160, 100) # largeur=160, hauteur=100\n\n# à compléter\n\ndone()","execution_count":8,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_5\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"80\" dur=\" 0.428s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_4.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_4.end\" from=\"0\" to=\"0\" dur=\" 0.428s\" fill=\"freeze\"></animate></line><line x1=\"80\" y1=\"0\" x2=\"80\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_7\" attributename=\"x2\" attributetype=\"XML\" from=\"80\" to=\"160\" dur=\" 0.428s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_6.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_6.end\" from=\"0\" to=\"0\" dur=\" 0.428s\" fill=\"freeze\"></animate></line><line x1=\"160\" y1=\"0\" x2=\"160\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_9\" attributename=\"x2\" attributetype=\"XML\" from=\"160\" to=\"160\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_8.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_8.end\" from=\"0\" to=\"-50\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"160\" y1=\"-50\" x2=\"160\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_11\" attributename=\"x2\" attributetype=\"XML\" from=\"160\" to=\"160\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_10.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_10.end\" from=\"-50\" to=\"-100\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"160\" y1=\"-100\" x2=\"160\" y2=\"-100\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_13\" attributename=\"x2\" attributetype=\"XML\" from=\"160\" to=\"80\" dur=\" 0.428s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_12.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_12.end\" from=\"-100\" to=\"-100.00000000000001\" dur=\" 0.428s\" fill=\"freeze\"></animate></line><line x1=\"80\" y1=\"-100.00000000000001\" x2=\"80\" y2=\"-100.00000000000001\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_15\" attributename=\"x2\" attributetype=\"XML\" from=\"80\" to=\"0\" dur=\" 0.428s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_14.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_14.end\" from=\"-100.00000000000001\" to=\"-100.00000000000003\" dur=\" 0.428s\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"-100.00000000000003\" x2=\"0\" y2=\"-100.00000000000003\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_17\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"-9.184850993605149e-15\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_16.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_16.end\" from=\"-100.00000000000003\" to=\"-50.00000000000003\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-9.184850993605149e-15\" y1=\"-50.00000000000003\" x2=\"-9.184850993605149e-15\" y2=\"-50.00000000000003\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_19\" attributename=\"x2\" attributetype=\"XML\" from=\"-9.184850993605149e-15\" to=\"-1.8369701987210297e-14\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_18.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_18.end\" from=\"-50.00000000000003\" to=\"-2.842170943040401e-14\" dur=\" 0.268s\" fill=\"freeze\"></animate></line></g><g transform=\"translate(320 240)\"><text x=\"80\" y=\"0\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >160</text><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_6\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_5.end\"></animate></text><text x=\"160\" y=\"-50\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >100</text><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_10\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_9.end\"></animate></text><text x=\"80\" y=\"-100.00000000000001\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >160</text><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_14\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_13.end\"></animate></text><text x=\"-9.184850993605149e-15\" y=\"-50.00000000000003\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >100</text><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_18\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_17.end\"></animate></text></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_93ce3bcc25b4400ead42d02a93a96604_1\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"80.0,-0.0\" dur=\" 0.428s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_4.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"80.0,-0.0\" to=\"160.0,-0.0\" dur=\" 0.428s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_6.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_8\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_7.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"160.0,-0.0\" to=\"160.0,-50.0\" dur=\" 0.268s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_8.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"160.0,-50.0\" to=\"160.0,-100.0\" dur=\" 0.268s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_12\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-270.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_11.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"160.0,-100.0\" to=\"80.0,-100.00000000000001\" dur=\" 0.428s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_12.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"80.0,-100.00000000000001\" to=\"0.0,-100.00000000000003\" dur=\" 0.428s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_14.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_16\" type=\"rotate\" from=\"-270.0,0,0\" to=\"-360.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_15.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_16.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-100.00000000000003\" to=\"-9.184850993605149e-15,-50.00000000000003\" dur=\" 0.268s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_16.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_18.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-9.184850993605149e-15,-50.00000000000003\" to=\"-1.8369701987210297e-14,-2.842170943040401e-14\" dur=\" 0.268s\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_18.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_93ce3bcc25b4400ead42d02a93a96604_19.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_93ce3bcc25b4400ead42d02a93a96604_20\" type=\"rotate\" from=\"-360.0,0,0\" to=\"-450.0,0,0\" begin=\"af_93ce3bcc25b4400ead42d02a93a96604_19.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"### Exemples de fonctions avec des paramétres\n"},{"metadata":{},"cell_type":"markdown","source":"**Exemple 1 : Le Losange**\n\nEssayez de comprendre le programme ci-dessous, puis exécutez le..."},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef losange(d, a): # paramètres (d=distance, a=angle)\n for i in range(2):\n forward(d)\n left(a)\n write(a)\n\n forward(d)\n left(180-a)\n write(180-a)\n\nlosange(100, 60) # distance=100, angle=60\nlosange(140, 100) # distance=140, angle=100\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"On remarque que la fonction `losange(a, angle)`, définie ci-dessus, a comme paramètre la longueur et le premier angle. Le deuxième angle du losange est calculé."},{"metadata":{},"cell_type":"markdown","source":"**Exemple 2 : Le polygone**\n\nEssayez de comprendre le programme ci-dessous, puis exécutez le..."},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef polygone(d, n): # paramètres (d, n)\n for i in range(n):\n forward(d)\n left(360/n)\n write(360/n)\n\npolygone(100, 3) # triangle\npolygone(100, 4) # carré\npolygone(100, 5) # pentagon\n\ndone()\n","execution_count":9,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_5\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"100\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_4.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_4.end\" from=\"0\" to=\"0\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"100\" y1=\"0\" x2=\"100\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_8\" attributename=\"x2\" attributetype=\"XML\" from=\"100\" to=\"50.00000000000002\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_7.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_7.end\" from=\"0\" to=\"-86.60254037844388\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"50.00000000000002\" y1=\"-86.60254037844388\" x2=\"50.00000000000002\" y2=\"-86.60254037844388\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_11\" attributename=\"x2\" attributetype=\"XML\" from=\"50.00000000000002\" to=\"-2.1316282072803006e-14\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_10.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_10.end\" from=\"-86.60254037844388\" to=\"-2.842170943040401e-14\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"-2.1316282072803006e-14\" y1=\"-2.842170943040401e-14\" x2=\"-2.1316282072803006e-14\" y2=\"-2.842170943040401e-14\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_14\" attributename=\"x2\" attributetype=\"XML\" from=\"-2.1316282072803006e-14\" to=\"99.99999999999997\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_13.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_13.end\" from=\"-2.842170943040401e-14\" to=\"-3.928773447456943e-15\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"99.99999999999997\" y1=\"-3.928773447456943e-15\" x2=\"99.99999999999997\" y2=\"-3.928773447456943e-15\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_17\" attributename=\"x2\" attributetype=\"XML\" from=\"99.99999999999997\" to=\"100\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_16.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_16.end\" from=\"-3.928773447456943e-15\" to=\"-100\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"100\" y1=\"-100\" x2=\"100\" y2=\"-100\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_20\" attributename=\"x2\" attributetype=\"XML\" from=\"100\" to=\"0\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_19.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_19.end\" from=\"-100\" to=\"-100.00000000000004\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"-100.00000000000004\" x2=\"0\" y2=\"-100.00000000000004\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_23\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"-4.286263797015736e-14\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_22.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_22.end\" from=\"-100.00000000000004\" to=\"-4.263256414560601e-14\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"-4.286263797015736e-14\" y1=\"-4.263256414560601e-14\" x2=\"-4.286263797015736e-14\" y2=\"-4.263256414560601e-14\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_26\" attributename=\"x2\" attributetype=\"XML\" from=\"-4.286263797015736e-14\" to=\"99.99999999999996\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_25.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_25.end\" from=\"-4.263256414560601e-14\" to=\"6.3533078202881175e-15\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"99.99999999999996\" y1=\"6.3533078202881175e-15\" x2=\"99.99999999999996\" y2=\"6.3533078202881175e-15\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_29\" attributename=\"x2\" attributetype=\"XML\" from=\"99.99999999999996\" to=\"130.90169943749476\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_28.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_28.end\" from=\"6.3533078202881175e-15\" to=\"-95.10565162951534\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"130.90169943749476\" y1=\"-95.10565162951534\" x2=\"130.90169943749476\" y2=\"-95.10565162951534\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_32\" attributename=\"x2\" attributetype=\"XML\" from=\"130.90169943749476\" to=\"50.00000000000004\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_31.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_31.end\" from=\"-95.10565162951534\" to=\"-153.8841768587627\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"50.00000000000004\" y1=\"-153.8841768587627\" x2=\"50.00000000000004\" y2=\"-153.8841768587627\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_35\" attributename=\"x2\" attributetype=\"XML\" from=\"50.00000000000004\" to=\"-30.90169943749474\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_34.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_34.end\" from=\"-153.8841768587627\" to=\"-95.10565162951542\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><line x1=\"-30.90169943749474\" y1=\"-95.10565162951542\" x2=\"-30.90169943749474\" y2=\"-95.10565162951542\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_38\" attributename=\"x2\" attributetype=\"XML\" from=\"-30.90169943749474\" to=\"-6.394884621840902e-14\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_37.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_37.end\" from=\"-95.10565162951542\" to=\"-4.263256414560601e-14\" dur=\" 0.535s\" fill=\"freeze\"></animate></line></g><g transform=\"translate(320 240)\"><text x=\"100\" y=\"0\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >120.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_7\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_6.end\"></animate></text><text x=\"50.00000000000002\" y=\"-86.60254037844388\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >120.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_10\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_9.end\"></animate></text><text x=\"-2.1316282072803006e-14\" y=\"-2.842170943040401e-14\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >120.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_13\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_12.end\"></animate></text><text x=\"99.99999999999997\" y=\"-3.928773447456943e-15\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >90.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_16\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_15.end\"></animate></text><text x=\"100\" y=\"-100\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >90.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_19\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_18.end\"></animate></text><text x=\"0\" y=\"-100.00000000000004\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >90.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_22\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_21.end\"></animate></text><text x=\"-4.286263797015736e-14\" y=\"-4.263256414560601e-14\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >90.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_25\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_24.end\"></animate></text><text x=\"99.99999999999996\" y=\"6.3533078202881175e-15\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >72.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_28\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_27.end\"></animate></text><text x=\"130.90169943749476\" y=\"-95.10565162951534\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >72.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_31\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_30.end\"></animate></text><text x=\"50.00000000000004\" y=\"-153.8841768587627\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >72.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_34\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_33.end\"></animate></text><text x=\"-30.90169943749474\" y=\"-95.10565162951542\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >72.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_37\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_36.end\"></animate></text><text x=\"-6.394884621840902e-14\" y=\"-4.263256414560601e-14\" fill=\"black\" style=\"display: none;font-family: Arial;font-size: 8;font-style: normal\" text-anchor=\"start\"><text >72.0</text><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_40\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_39.end\"></animate></text></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_1\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"100.0,-0.0\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_4.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_5.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_6\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-210.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_5.end\" dur=\" 0.111s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"100.0,-0.0\" to=\"50.00000000000002,-86.60254037844388\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_7.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_9\" type=\"rotate\" from=\"-210.0,0,0\" to=\"-330.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_8.end\" dur=\" 0.111s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"50.00000000000002,-86.60254037844388\" to=\"-2.1316282072803006e-14,-2.842170943040401e-14\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_12\" type=\"rotate\" from=\"-330.0,0,0\" to=\"-450.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_11.end\" dur=\" 0.111s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_13.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-2.1316282072803006e-14,-2.842170943040401e-14\" to=\"99.99999999999997,-3.928773447456943e-15\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_13.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_15\" type=\"rotate\" from=\"-450.0,0,0\" to=\"-540.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_14.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_16.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"99.99999999999997,-3.928773447456943e-15\" to=\"100.0,-100.0\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_16.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_17.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_18\" type=\"rotate\" from=\"-540.0,0,0\" to=\"-630.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_17.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_19.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"100.0,-100.0\" to=\"0.0,-100.00000000000004\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_19.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_20.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_21\" type=\"rotate\" from=\"-630.0,0,0\" to=\"-720.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_20.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_22.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-100.00000000000004\" to=\"-4.286263797015736e-14,-4.263256414560601e-14\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_22.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_23.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_24\" type=\"rotate\" from=\"-720.0,0,0\" to=\"-810.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_23.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_25.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-4.286263797015736e-14,-4.263256414560601e-14\" to=\"99.99999999999996,6.3533078202881175e-15\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_25.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_26.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_27\" type=\"rotate\" from=\"-810.0,0,0\" to=\"-882.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_26.end\" dur=\" 0.067s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_28.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"99.99999999999996,6.3533078202881175e-15\" to=\"130.90169943749476,-95.10565162951534\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_28.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_29.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_30\" type=\"rotate\" from=\"-882.0,0,0\" to=\"-954.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_29.end\" dur=\" 0.067s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_31.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"130.90169943749476,-95.10565162951534\" to=\"50.00000000000004,-153.8841768587627\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_31.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_32.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_33\" type=\"rotate\" from=\"-954.0,0,0\" to=\"-1026.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_32.end\" dur=\" 0.067s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_34.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"50.00000000000004,-153.8841768587627\" to=\"-30.90169943749474,-95.10565162951542\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_34.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_35.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_36\" type=\"rotate\" from=\"-1026.0,0,0\" to=\"-1098.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_35.end\" dur=\" 0.067s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_37.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-30.90169943749474,-95.10565162951542\" to=\"-6.394884621840902e-14,-4.263256414560601e-14\" dur=\" 0.535s\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_37.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_38.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_39\" type=\"rotate\" from=\"-1098.0,0,0\" to=\"-1170.0,0,0\" begin=\"af_d5f4eb155c9243eaaa6bc2a7224092b8_38.end\" dur=\" 0.067s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"On remarque que la fonction `polygone(d, n)` a comme paramètre la distance d'un côté et le nombre de sommets.\n\n"},{"metadata":{},"cell_type":"markdown","source":"## Retour à la maison...\n\nRevenons à l'exemple d'une fonction qui dessine une maison.\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 2 </h3>\n\nComplétez le programme afin qu'il dessine une troisième maison de taille 100.\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef maison(d):\n dot()\n forward (1.41*d) # sol\n left(90)\n forward(d) # mur droit\n left(45)\n forward(d) # toit droit\n left(90)\n forward(d) # toit gauche\n left(45)\n forward(d) # mur gauche\n left(90)\n\nbackward(200)\nmaison(50) # maison de taille 50\nforward(100)\nmaison(70) # maison de taille 70\n\n# à compléter\n\ndone()\n","execution_count":12,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_5\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"-200\" dur=\" 1.070s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_4.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_4.end\" from=\"0\" to=\"0\" dur=\" 1.070s\" fill=\"freeze\"></animate></line><circle cx=\"-200\" cy=\"0\" r=\"2.5\" fill=\"black\" style=\"display: none;\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_6\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_5.end\"></animate></circle><line x1=\"-200\" y1=\"0\" x2=\"-200\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_7\" attributename=\"x2\" attributetype=\"XML\" from=\"-200\" to=\"-129.5\" dur=\" 0.377s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_6.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_6.end\" from=\"0\" to=\"0\" dur=\" 0.377s\" fill=\"freeze\"></animate></line><line x1=\"-129.5\" y1=\"0\" x2=\"-129.5\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_9\" attributename=\"x2\" attributetype=\"XML\" from=\"-129.5\" to=\"-129.5\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_8.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_8.end\" from=\"0\" to=\"-50\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-129.5\" y1=\"-50\" x2=\"-129.5\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_11\" attributename=\"x2\" attributetype=\"XML\" from=\"-129.5\" to=\"-164.85533905932738\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_10.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_10.end\" from=\"-50\" to=\"-85.35533905932738\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-164.85533905932738\" y1=\"-85.35533905932738\" x2=\"-164.85533905932738\" y2=\"-85.35533905932738\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_13\" attributename=\"x2\" attributetype=\"XML\" from=\"-164.85533905932738\" to=\"-200.21067811865476\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_12.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_12.end\" from=\"-85.35533905932738\" to=\"-50.00000000000001\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-200.21067811865476\" y1=\"-50.00000000000001\" x2=\"-200.21067811865476\" y2=\"-50.00000000000001\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_15\" attributename=\"x2\" attributetype=\"XML\" from=\"-200.21067811865476\" to=\"-200.21067811865476\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_14.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_14.end\" from=\"-50.00000000000001\" to=\"-7.105427357601002e-15\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-200.21067811865476\" y1=\"-7.105427357601002e-15\" x2=\"-200.21067811865476\" y2=\"-7.105427357601002e-15\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_17\" attributename=\"x2\" attributetype=\"XML\" from=\"-200.21067811865476\" to=\"-100.21067811865476\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_16.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_16.end\" from=\"-7.105427357601002e-15\" to=\"1.7387508625346062e-14\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><circle cx=\"-100.21067811865476\" cy=\"1.7387508625346062e-14\" r=\"2.5\" fill=\"black\" style=\"display: none;\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_18\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_17.end\"></animate></circle><line x1=\"-100.21067811865476\" y1=\"1.7387508625346062e-14\" x2=\"-100.21067811865476\" y2=\"1.7387508625346062e-14\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_19\" attributename=\"x2\" attributetype=\"XML\" from=\"-100.21067811865476\" to=\"-1.5106781186547664\" dur=\" 0.528s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_18.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_18.end\" from=\"1.7387508625346062e-14\" to=\"4.156203644051481e-14\" dur=\" 0.528s\" fill=\"freeze\"></animate></line><line x1=\"-1.5106781186547664\" y1=\"4.156203644051481e-14\" x2=\"-1.5106781186547664\" y2=\"4.156203644051481e-14\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_21\" attributename=\"x2\" attributetype=\"XML\" from=\"-1.5106781186547664\" to=\"-1.5106781186547449\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_20.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_20.end\" from=\"4.156203644051481e-14\" to=\"-69.99999999999996\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-1.5106781186547449\" y1=\"-69.99999999999996\" x2=\"-1.5106781186547449\" y2=\"-69.99999999999996\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_23\" attributename=\"x2\" attributetype=\"XML\" from=\"-1.5106781186547449\" to=\"-51.0081528017131\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_22.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_22.end\" from=\"-69.99999999999996\" to=\"-119.49747468305826\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-51.0081528017131\" y1=\"-119.49747468305826\" x2=\"-51.0081528017131\" y2=\"-119.49747468305826\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_25\" attributename=\"x2\" attributetype=\"XML\" from=\"-51.0081528017131\" to=\"-100.5056274847714\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_24.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_24.end\" from=\"-119.49747468305826\" to=\"-69.9999999999999\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-100.5056274847714\" y1=\"-69.9999999999999\" x2=\"-100.5056274847714\" y2=\"-69.9999999999999\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_27\" attributename=\"x2\" attributetype=\"XML\" from=\"-100.5056274847714\" to=\"-100.50562748477142\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_26.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_26.end\" from=\"-69.9999999999999\" to=\"9.947598300641403e-14\" dur=\" 0.375s\" fill=\"freeze\"></animate></line></g><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_ef5297649c10437d94e72e30cce69c1c_1\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"-200.0,-0.0\" dur=\" 1.070s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_4.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200.0,-0.0\" to=\"-129.5,-0.0\" dur=\" 0.377s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_6.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_8\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_7.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-129.5,-0.0\" to=\"-129.5,-50.0\" dur=\" 0.268s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_8.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_9.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_10\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-225.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_9.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-129.5,-50.0\" to=\"-164.85533905932738,-85.35533905932738\" dur=\" 0.268s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_12\" type=\"rotate\" from=\"-225.0,0,0\" to=\"-315.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_11.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-164.85533905932738,-85.35533905932738\" to=\"-200.21067811865476,-50.00000000000001\" dur=\" 0.268s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_12.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_13.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_14\" type=\"rotate\" from=\"-315.0,0,0\" to=\"-360.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_13.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200.21067811865476,-50.00000000000001\" to=\"-200.21067811865476,-7.105427357601002e-15\" dur=\" 0.268s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_14.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_16\" type=\"rotate\" from=\"-360.0,0,0\" to=\"-450.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_15.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_16.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200.21067811865476,-7.105427357601002e-15\" to=\"-100.21067811865476,1.7387508625346062e-14\" dur=\" 0.535s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_16.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_18.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-100.21067811865476,1.7387508625346062e-14\" to=\"-1.5106781186547664,4.156203644051481e-14\" dur=\" 0.528s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_18.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_19.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_20\" type=\"rotate\" from=\"-450.0,0,0\" to=\"-540.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_19.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_20.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-1.5106781186547664,4.156203644051481e-14\" to=\"-1.5106781186547449,-69.99999999999996\" dur=\" 0.375s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_20.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_21.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_22\" type=\"rotate\" from=\"-540.0,0,0\" to=\"-585.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_21.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_22.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-1.5106781186547449,-69.99999999999996\" to=\"-51.0081528017131,-119.49747468305826\" dur=\" 0.375s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_22.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_23.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_24\" type=\"rotate\" from=\"-585.0,0,0\" to=\"-675.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_23.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_24.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-51.0081528017131,-119.49747468305826\" to=\"-100.5056274847714,-69.9999999999999\" dur=\" 0.375s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_24.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_25.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_26\" type=\"rotate\" from=\"-675.0,0,0\" to=\"-720.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_25.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_26.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-100.5056274847714,-69.9999999999999\" to=\"-100.50562748477142,9.947598300641403e-14\" dur=\" 0.375s\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_26.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_ef5297649c10437d94e72e30cce69c1c_27.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_ef5297649c10437d94e72e30cce69c1c_28\" type=\"rotate\" from=\"-720.0,0,0\" to=\"-810.0,0,0\" begin=\"af_ef5297649c10437d94e72e30cce69c1c_27.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Positionner la maison\n\n!!! info Rappel\nAu départ, la tortue se trouve au centre d'une zone rectangulaire appelée _canevas_. \n\nCe rectangle a les propriétés suivantes :\n\n- l'origine (0, 0) se trouve au centre,\n- l'axe horizontal x, s'étend de -300 à +300 (à droite),\n- l'axe vertical y, s'étend de -200 à +200 (en haut).\n!!!\n\n\nLa fonction `goto(x, y)` place la tortue à la position `(x, y)`. Cette fonction permet de positionner notre maison à un endroit précis.\nPour désigner cette position, nous utilisons la variable `p` (point, position) qui consiste d'un tuple `(x, y)` de coordonnées.\n\nLa fonction `write(p)` écrit la position `p` sur le canevas, à la position actuelle de la tortue. Pour marquer ce point de positionnement, nous ajoutons un point (dot) comme marqueur.\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 3 </h3>Aujoutez deux autres maisons de taille différente.\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef maison(x, y , d):\n goto(x,y) # aller à la position p\n dot() # ajouter un marquer (dot)\n down()\n forward (1.41*d) # sol\n left(90)\n forward(d) # mur droit\n left(45)\n forward(d) # toit droit\n left(90)\n forward(d) # toit gauche\n left(45)\n forward(d) # mur gauche\n left(90)\n up()\n\nmaison(0, 0, 50) # maison à la position (0, 0)\nmaison(-150, 50, 70) # maison à la position (-150, 50)\n\ndone()\n","execution_count":17,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_5\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_4.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_4.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><circle cx=\"0\" cy=\"0\" r=\"2.5\" fill=\"black\" style=\"display: none;\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_6\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_5.end\"></animate></circle><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_7\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"70.5\" dur=\" 0.377s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_6.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_6.end\" from=\"0\" to=\"0\" dur=\" 0.377s\" fill=\"freeze\"></animate></line><line x1=\"70.5\" y1=\"0\" x2=\"70.5\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_9\" attributename=\"x2\" attributetype=\"XML\" from=\"70.5\" to=\"70.5\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_8.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_8.end\" from=\"0\" to=\"-50\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"70.5\" y1=\"-50\" x2=\"70.5\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_11\" attributename=\"x2\" attributetype=\"XML\" from=\"70.5\" to=\"35.14466094067263\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_10.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_10.end\" from=\"-50\" to=\"-85.35533905932738\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"35.14466094067263\" y1=\"-85.35533905932738\" x2=\"35.14466094067263\" y2=\"-85.35533905932738\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_13\" attributename=\"x2\" attributetype=\"XML\" from=\"35.14466094067263\" to=\"-0.21067811865475505\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_12.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_12.end\" from=\"-85.35533905932738\" to=\"-50.00000000000001\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-0.21067811865475505\" y1=\"-50.00000000000001\" x2=\"-0.21067811865475505\" y2=\"-50.00000000000001\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_15\" attributename=\"x2\" attributetype=\"XML\" from=\"-0.21067811865475505\" to=\"-0.21067811865476424\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_14.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_14.end\" from=\"-50.00000000000001\" to=\"-7.105427357601002e-15\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"-0.21067811865476424\" y1=\"-7.105427357601002e-15\" x2=\"-0.21067811865476424\" y2=\"-7.105427357601002e-15\" style=\"stroke: black;stroke-width: 1\" opacity=\"0\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_17\" attributename=\"x2\" attributetype=\"XML\" from=\"-0.21067811865476424\" to=\"-150\" dur=\" 1.069s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_16.end\"></animate></line><circle cx=\"-150\" cy=\"-50\" r=\"2.5\" fill=\"black\" style=\"display: none;\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_18\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_17.end\"></animate></circle><line x1=\"-150\" y1=\"-50\" x2=\"-150\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_19\" attributename=\"x2\" attributetype=\"XML\" from=\"-150\" to=\"-51.30000000000001\" dur=\" 0.528s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_18.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_18.end\" from=\"-50\" to=\"-49.99999999999998\" dur=\" 0.528s\" fill=\"freeze\"></animate></line><line x1=\"-51.30000000000001\" y1=\"-49.99999999999998\" x2=\"-51.30000000000001\" y2=\"-49.99999999999998\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_21\" attributename=\"x2\" attributetype=\"XML\" from=\"-51.30000000000001\" to=\"-51.29999999999999\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_20.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_20.end\" from=\"-49.99999999999998\" to=\"-119.99999999999997\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-51.29999999999999\" y1=\"-119.99999999999997\" x2=\"-51.29999999999999\" y2=\"-119.99999999999997\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_23\" attributename=\"x2\" attributetype=\"XML\" from=\"-51.29999999999999\" to=\"-100.79747468305834\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_22.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_22.end\" from=\"-119.99999999999997\" to=\"-169.49747468305827\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-100.79747468305834\" y1=\"-169.49747468305827\" x2=\"-100.79747468305834\" y2=\"-169.49747468305827\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_25\" attributename=\"x2\" attributetype=\"XML\" from=\"-100.79747468305834\" to=\"-150.29494936611664\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_24.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_24.end\" from=\"-169.49747468305827\" to=\"-119.99999999999991\" dur=\" 0.375s\" fill=\"freeze\"></animate></line><line x1=\"-150.29494936611664\" y1=\"-119.99999999999991\" x2=\"-150.29494936611664\" y2=\"-119.99999999999991\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_27\" attributename=\"x2\" attributetype=\"XML\" from=\"-150.29494936611664\" to=\"-150.29494936611667\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_26.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_26.end\" from=\"-119.99999999999991\" to=\"-49.999999999999915\" dur=\" 0.375s\" fill=\"freeze\"></animate></line></g><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_1\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"0,0\" dur=\"1ms\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_4.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0,0\" to=\"70.5,-0.0\" dur=\" 0.377s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_6.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_8\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_7.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"70.5,-0.0\" to=\"70.5,-50.0\" dur=\" 0.268s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_8.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_9.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_10\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-225.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_9.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"70.5,-50.0\" to=\"35.14466094067263,-85.35533905932738\" dur=\" 0.268s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_12\" type=\"rotate\" from=\"-225.0,0,0\" to=\"-315.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_11.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"35.14466094067263,-85.35533905932738\" to=\"-0.21067811865475505,-50.00000000000001\" dur=\" 0.268s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_12.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_13.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_14\" type=\"rotate\" from=\"-315.0,0,0\" to=\"-360.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_13.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-0.21067811865475505,-50.00000000000001\" to=\"-0.21067811865476424,-7.105427357601002e-15\" dur=\" 0.268s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_14.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_16\" type=\"rotate\" from=\"-360.0,0,0\" to=\"-450.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_15.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_16.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-0.21067811865476424,-7.105427357601002e-15\" to=\"-150,-50\" dur=\" 1.069s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_16.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_18.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-150,-50\" to=\"-51.30000000000001,-49.99999999999998\" dur=\" 0.528s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_18.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_19.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_20\" type=\"rotate\" from=\"-450.0,0,0\" to=\"-540.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_19.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_20.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-51.30000000000001,-49.99999999999998\" to=\"-51.29999999999999,-119.99999999999997\" dur=\" 0.375s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_20.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_21.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_22\" type=\"rotate\" from=\"-540.0,0,0\" to=\"-585.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_21.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_22.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-51.29999999999999,-119.99999999999997\" to=\"-100.79747468305834,-169.49747468305827\" dur=\" 0.375s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_22.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_23.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_24\" type=\"rotate\" from=\"-585.0,0,0\" to=\"-675.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_23.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_24.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-100.79747468305834,-169.49747468305827\" to=\"-150.29494936611664,-119.99999999999991\" dur=\" 0.375s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_24.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_25.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_26\" type=\"rotate\" from=\"-675.0,0,0\" to=\"-720.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_25.end\" dur=\" 0.042s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_26.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-150.29494936611664,-119.99999999999991\" to=\"-150.29494936611667,-49.999999999999915\" dur=\" 0.375s\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_26.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_27.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_28\" type=\"rotate\" from=\"-720.0,0,0\" to=\"-810.0,0,0\" begin=\"af_6657cbcf44da4edcbe1adc3b7a3a8417_27.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Colorier la maison\n\nMaintenant nous modifions la fonction pour inclure non seulement la position, la taille, mais également la couleur de la maison comme paramètres. Les arguments de la fonction sont :\n\n- `p` -- position de la maison\n- `d` -- dimension de la maison\n- `c` -- couleur de la maison\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 4 </h3>Aujoutez deux autres maisons de taille et couleur différente.\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\nup()\n\ndef maison(p, d, c):\n goto(p)\n dot()\n down()\n fillcolor(c)\n begin_fill()\n forward (1.41*d) # sol\n left(90)\n forward(d) # mur droit\n left(45)\n forward(d) # toit droit\n left(90)\n forward(d) # toit gauche\n left(45)\n forward(d) # mur gauche\n left(90)\n end_fill()\n up()\n\nmaison((0, 0), 70, 'lightblue')\nmaison((150, 30), 50, 'yellow')\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Drapeau tricolore\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 5 </h3>\n\nModifiez les couleurs pour obtenir le drapeau d'un autre pay. \nCréez une deuxième fonction `drapeau2(d, c, c2, c3)` qui crée un drapeau avec des barres horizontales.\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef rectangle(d, e, c):\n fillcolor(c)\n begin_fill()\n for i in range(2):\n forward(d)\n left(90)\n forward(e)\n left(90)\n end_fill()\n\ndef drapeau(d, c, c2, c3):\n rectangle(d, 2*d, c)\n forward(d)\n rectangle(d, 2*d, c2)\n forward(d)\n rectangle(d, 2*d, c3)\n\ndrapeau(50, 'blue', 'white', 'red')\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Arbre\n\nPour dessiner un arbre simple, nous utilisons un segment droit pour le tronc et un disque (dot) pour le feuillage.\nC'est une fonction qui a 3 paramètres\n\n- `d` -- longueur du tronc\n- `c` -- couleur du tronc\n- `c2` -- couleur du feuillage\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 6 </h3>\n\nDéfinissez et utilisez une fonction `foret(n)` qui dessine `n` arbres.\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef arbre(d, c, c2):\n down()\n left(90)\n width(d/6) # tronc\n pencolor(c)\n forward(d)\n dot(d, c2) # feuillage\n up()\n backward(d) # retourner à la position de départ\n right(90)\n\n\narbre(100, 'brown', 'lime')\nforward(70)\narbre(90, 'brown', 'green')\n\ndone()\n","execution_count":5,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: brown;stroke-width: 16.666666666666668\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_7\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"6.123233995736766e-15\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_6.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_6.end\" from=\"0\" to=\"-100\" dur=\" 0.535s\" fill=\"freeze\"></animate><set attributename=\"stroke-linecap\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_6.end\" attributetype=\"xml\" to=\"round\" dur=\" 0.535s\" fill=\"freeze\"></set></line><circle cx=\"6.123233995736766e-15\" cy=\"-100\" r=\"50\" fill=\"lime\" style=\"display: none;\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_8\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_7.end\"></animate></circle><line x1=\"6.123233995736766e-15\" y1=\"-100\" x2=\"6.123233995736766e-15\" y2=\"-100\" style=\"stroke: brown;stroke-width: 16.666666666666668\" opacity=\"0\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_9\" attributename=\"x2\" attributetype=\"XML\" from=\"6.123233995736766e-15\" to=\"0\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_8.end\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: brown;stroke-width: 16.666666666666668\" opacity=\"0\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_11\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"70\" dur=\" 0.375s\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_10.end\"></animate></line><line x1=\"70\" y1=\"0\" x2=\"70\" y2=\"0\" style=\"stroke: brown;stroke-width: 15.0\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_13\" attributename=\"x2\" attributetype=\"XML\" from=\"70\" to=\"70\" dur=\" 0.482s\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_12.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_12.end\" from=\"0\" to=\"-90\" dur=\" 0.482s\" fill=\"freeze\"></animate><set attributename=\"stroke-linecap\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_12.end\" attributetype=\"xml\" to=\"round\" dur=\" 0.482s\" fill=\"freeze\"></set></line><circle cx=\"70\" cy=\"-90\" r=\"45\" fill=\"green\" style=\"display: none;\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_14\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_13.end\"></animate></circle><line x1=\"70\" y1=\"-90\" x2=\"70\" y2=\"-90\" style=\"stroke: brown;stroke-width: 15.0\" opacity=\"0\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_15\" attributename=\"x2\" attributetype=\"XML\" from=\"70\" to=\"70\" dur=\" 0.482s\" fill=\"freeze\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_14.end\"></animate></line></g><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_1\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_5\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_4.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animate id=\"af_6ad4a7db715f4797934383fd01c5df97_6\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_5.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"stroke\" attributetype=\"XML\" from=\"black\" to=\"brown\"></animate><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"6.123233995736766e-15,-100.0\" dur=\" 0.535s\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_6.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"6.123233995736766e-15,-100.0\" to=\"0.0,-0.0\" dur=\" 0.535s\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_8.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_9.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_10\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-90.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_9.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"70.0,-0.0\" dur=\" 0.375s\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_12\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_11.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"70.0,-0.0\" to=\"70.0,-90.0\" dur=\" 0.482s\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_12.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"70.0,-90.0\" to=\"70.0,-0.0\" dur=\" 0.482s\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_14.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_6ad4a7db715f4797934383fd01c5df97_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_6ad4a7db715f4797934383fd01c5df97_16\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-90.0,0,0\" begin=\"af_6ad4a7db715f4797934383fd01c5df97_15.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Bus\n\nPour dessiner un bus, une voiture ou un camion simple, nous pouvons utiliser des rectangles pour le châssis, et un disque (dot) pour les roues.\nC'est une fonction qui a comme paramètres\n\n- `p` -- position du bus\n- `d` -- dimension (longeur) du bus\n- `c` -- couleur du bus\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\nup()\n\ndef rectangle(d, e, c):\n fillcolor(c)\n begin_fill()\n for i in range(2):\n forward(d)\n left(90)\n forward(e)\n left(90)\n end_fill()\n\ndef bus(p, d, c):\n goto(p)\n down()\n rectangle(d, d/3, c) # chassis\n forward(d/4)\n dot(d/5) # roue arrière\n dot(d/10, 'white')\n forward(d/2)\n dot(d/5) # roue avant\n dot(d/10, 'white')\n up()\n\nbus((-200, 50), 200, 'red')\nbus((50, 20), 150, 'lightblue')\n\ndone()\n","execution_count":7,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\" opacity=\"0\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_5\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"-200\" dur=\" 1.338s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_4.end\"></animate></line><line x1=\"-200\" y1=\"-50\" x2=\"-200\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_7\" attributename=\"x2\" attributetype=\"XML\" from=\"-200\" to=\"0\" dur=\" 1.070s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_6.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_6.end\" from=\"-50\" to=\"-50\" dur=\" 1.070s\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"-50\" x2=\"0\" y2=\"-50\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_9\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"4.0821559971578446e-15\" dur=\" 0.357s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_8.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_8.end\" from=\"-50\" to=\"-116.66666666666667\" dur=\" 0.357s\" fill=\"freeze\"></animate></line><line x1=\"4.0821559971578446e-15\" y1=\"-116.66666666666667\" x2=\"4.0821559971578446e-15\" y2=\"-116.66666666666667\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_11\" attributename=\"x2\" attributetype=\"XML\" from=\"4.0821559971578446e-15\" to=\"-200\" dur=\" 1.070s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_10.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_10.end\" from=\"-116.66666666666667\" to=\"-116.6666666666667\" dur=\" 1.070s\" fill=\"freeze\"></animate></line><line x1=\"-200\" y1=\"-116.6666666666667\" x2=\"-200\" y2=\"-116.6666666666667\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_13\" attributename=\"x2\" attributetype=\"XML\" from=\"-200\" to=\"-200\" dur=\" 0.357s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_12.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_12.end\" from=\"-116.6666666666667\" to=\"-50.00000000000003\" dur=\" 0.357s\" fill=\"freeze\"></animate></line><polygon points=\"-200,-50 0.0,-50.0 4.0821559971578446e-15,-116.66666666666667 -200.0,-116.6666666666667 -200.0,-50.00000000000003\" style=\"display: none;fill: red;stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_15\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_14.end\"></animate></polygon><line x1=\"-200\" y1=\"-50.00000000000003\" x2=\"-200\" y2=\"-50.00000000000003\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_16\" attributename=\"x2\" attributetype=\"XML\" from=\"-200\" to=\"-150\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_15.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_15.end\" from=\"-50.00000000000003\" to=\"-50.000000000000014\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><circle cx=\"-150\" cy=\"-50.000000000000014\" r=\"20\" fill=\"black\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_17\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_16.end\"></animate></circle><circle cx=\"-150\" cy=\"-50.000000000000014\" r=\"10\" fill=\"white\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_18\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_17.end\"></animate></circle><line x1=\"-150\" y1=\"-50.000000000000014\" x2=\"-150\" y2=\"-50.000000000000014\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_19\" attributename=\"x2\" attributetype=\"XML\" from=\"-150\" to=\"-50\" dur=\" 0.535s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_18.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_18.end\" from=\"-50.000000000000014\" to=\"-49.99999999999999\" dur=\" 0.535s\" fill=\"freeze\"></animate></line><circle cx=\"-50\" cy=\"-49.99999999999999\" r=\"20\" fill=\"black\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_20\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_19.end\"></animate></circle><circle cx=\"-50\" cy=\"-49.99999999999999\" r=\"10\" fill=\"white\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_21\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_20.end\"></animate></circle><line x1=\"-50\" y1=\"-49.99999999999999\" x2=\"-50\" y2=\"-49.99999999999999\" style=\"stroke: black;stroke-width: 1\" opacity=\"0\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_22\" attributename=\"x2\" attributetype=\"XML\" from=\"-50\" to=\"50\" dur=\" 0.696s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_21.end\"></animate></line><line x1=\"50\" y1=\"-20\" x2=\"50\" y2=\"-20\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_24\" attributename=\"x2\" attributetype=\"XML\" from=\"50\" to=\"200\" dur=\" 0.803s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_23.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_23.end\" from=\"-20\" to=\"-19.999999999999964\" dur=\" 0.803s\" fill=\"freeze\"></animate></line><line x1=\"200\" y1=\"-19.999999999999964\" x2=\"200\" y2=\"-19.999999999999964\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_26\" attributename=\"x2\" attributetype=\"XML\" from=\"200\" to=\"200.00000000000003\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_25.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_25.end\" from=\"-19.999999999999964\" to=\"-69.99999999999997\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><line x1=\"200.00000000000003\" y1=\"-69.99999999999997\" x2=\"200.00000000000003\" y2=\"-69.99999999999997\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_28\" attributename=\"x2\" attributetype=\"XML\" from=\"200.00000000000003\" to=\"50.00000000000003\" dur=\" 0.803s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_27.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_27.end\" from=\"-69.99999999999997\" to=\"-70.00000000000003\" dur=\" 0.803s\" fill=\"freeze\"></animate></line><line x1=\"50.00000000000003\" y1=\"-70.00000000000003\" x2=\"50.00000000000003\" y2=\"-70.00000000000003\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_30\" attributename=\"x2\" attributetype=\"XML\" from=\"50.00000000000003\" to=\"50.00000000000001\" dur=\" 0.268s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_29.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_29.end\" from=\"-70.00000000000003\" to=\"-20.00000000000003\" dur=\" 0.268s\" fill=\"freeze\"></animate></line><polygon points=\"50,-20 200.0,-19.999999999999964 200.00000000000003,-69.99999999999997 50.00000000000003,-70.00000000000003 50.00000000000001,-20.00000000000003\" style=\"display: none;fill: lightblue;stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_32\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_31.end\"></animate></polygon><line x1=\"50.00000000000001\" y1=\"-20.00000000000003\" x2=\"50.00000000000001\" y2=\"-20.00000000000003\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_33\" attributename=\"x2\" attributetype=\"XML\" from=\"50.00000000000001\" to=\"87.5\" dur=\" 0.201s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_32.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_32.end\" from=\"-20.00000000000003\" to=\"-20.00000000000001\" dur=\" 0.201s\" fill=\"freeze\"></animate></line><circle cx=\"87.5\" cy=\"-20.00000000000001\" r=\"15\" fill=\"black\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_34\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_33.end\"></animate></circle><circle cx=\"87.5\" cy=\"-20.00000000000001\" r=\"7.5\" fill=\"white\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_35\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_34.end\"></animate></circle><line x1=\"87.5\" y1=\"-20.00000000000001\" x2=\"87.5\" y2=\"-20.00000000000001\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_36\" attributename=\"x2\" attributetype=\"XML\" from=\"87.5\" to=\"162.5\" dur=\" 0.401s\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_35.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_35.end\" from=\"-20.00000000000001\" to=\"-19.999999999999975\" dur=\" 0.401s\" fill=\"freeze\"></animate></line><circle cx=\"162.5\" cy=\"-19.999999999999975\" r=\"15\" fill=\"black\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_37\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_36.end\"></animate></circle><circle cx=\"162.5\" cy=\"-19.999999999999975\" r=\"7.5\" fill=\"white\" style=\"display: none;\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_38\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_37.end\"></animate></circle></g><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_1\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_4.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"-200,-50\" dur=\" 1.338s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_4.end\" fill=\"freeze\"></animateMotion><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_6\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_5.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"fill\" attributetype=\"XML\" from=\"black\" to=\"red\"></animate><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200,-50\" to=\"0.0,-50.0\" dur=\" 1.070s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_6.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_8\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_7.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-50.0\" to=\"4.0821559971578446e-15,-116.66666666666667\" dur=\" 0.357s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_8.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_9.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_10\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-270.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_9.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"4.0821559971578446e-15,-116.66666666666667\" to=\"-200.0,-116.6666666666667\" dur=\" 1.070s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_10.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_12\" type=\"rotate\" from=\"-270.0,0,0\" to=\"-360.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_11.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200.0,-116.6666666666667\" to=\"-200.0,-50.00000000000003\" dur=\" 0.357s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_12.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_13.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_14\" type=\"rotate\" from=\"-360.0,0,0\" to=\"-450.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_13.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-200.0,-50.00000000000003\" to=\"-150.0,-50.000000000000014\" dur=\" 0.268s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_15.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_18.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-150.0,-50.000000000000014\" to=\"-50.0,-49.99999999999999\" dur=\" 0.535s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_18.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_21.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-50.0,-49.99999999999999\" to=\"50,-20\" dur=\" 0.696s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_21.end\" fill=\"freeze\"></animateMotion><animate id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_23\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_22.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"fill\" attributetype=\"XML\" from=\"red\" to=\"lightblue\"></animate><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_23.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"50,-20\" to=\"200.0,-19.999999999999964\" dur=\" 0.803s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_23.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_24.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_25\" type=\"rotate\" from=\"-450.0,0,0\" to=\"-540.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_24.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_25.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"200.0,-19.999999999999964\" to=\"200.00000000000003,-69.99999999999997\" dur=\" 0.268s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_25.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_26.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_27\" type=\"rotate\" from=\"-540.0,0,0\" to=\"-630.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_26.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_27.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"200.00000000000003,-69.99999999999997\" to=\"50.00000000000003,-70.00000000000003\" dur=\" 0.803s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_27.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_28.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_29\" type=\"rotate\" from=\"-630.0,0,0\" to=\"-720.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_28.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_29.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"50.00000000000003,-70.00000000000003\" to=\"50.00000000000001,-20.00000000000003\" dur=\" 0.268s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_29.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_30.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_1302cf898c1c4bb7853cfe80c9d8626a_31\" type=\"rotate\" from=\"-720.0,0,0\" to=\"-810.0,0,0\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_30.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_32.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"50.00000000000001,-20.00000000000003\" to=\"87.5,-20.00000000000001\" dur=\" 0.201s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_32.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_35.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"87.5,-20.00000000000001\" to=\"162.5,-19.999999999999975\" dur=\" 0.401s\" begin=\"af_1302cf898c1c4bb7853cfe80c9d8626a_35.end\" fill=\"freeze\"></animateMotion></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Coeur\n\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" > <i class=\"fa fa-pencil\" aria-hidden=\"true\"> </i> Exercice 7 </h3>\n\nAjoutez deux paramètres: `w` pour l'épaisseur de la ligne (width), et `c2` pour la couleur de ligne. \nLa fonction aura la forme `coeur(r, w, c, c2)`.\n\n"},{"metadata":{"trusted":true},"cell_type":"code","source":"from turtle import *\n\ndef coeur(r, c):\n down()\n fillcolor(c)\n begin_fill()\n left(90)\n circle(r, 225)\n forward(2.4*r)\n left(90)\n forward(2.4*r)\n circle(r, 225)\n left(90)\n end_fill()\n up()\n\ncoeur(50, 'darkviolet')\nforward(130)\ncoeur(40, 'tomato')\n\ndone()\n","execution_count":6,"outputs":[{"output_type":"display_data","data":{"image/svg+xml":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"640\" height=\"480\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 640 480\"><animate id=\"af_668f430aabd94033929b234c355372fa_0\" attributename=\"opacity\" attributetype=\"CSS\" from=\"1\" to=\"1\" begin=\"0s\" dur=\"1ms\" fill=\"freeze\"></animate><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_2\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_1.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_1.end\" from=\"0\" to=\"0\" dur=\"1ms\" fill=\"freeze\"></animate></line><line x1=\"0\" y1=\"0\" x2=\"0\" y2=\"0\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_8\" attributename=\"x2\" attributetype=\"XML\" from=\"0\" to=\"-2.2639566745727207\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_7.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_7.end\" from=\"0\" to=\"-14.875152692760148\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-2.2639566745727207\" y1=\"-14.875152692760148\" x2=\"-2.2639566745727207\" y2=\"-14.875152692760148\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_10\" attributename=\"x2\" attributetype=\"XML\" from=\"-2.2639566745727207\" to=\"-8.850806705317183\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_9.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_9.end\" from=\"-14.875152692760148\" to=\"-28.403237336557787\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-8.850806705317183\" y1=\"-28.403237336557787\" x2=\"-8.850806705317183\" y2=\"-28.403237336557787\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_12\" attributename=\"x2\" attributetype=\"XML\" from=\"-8.850806705317183\" to=\"-19.16405636857285\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_11.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_11.end\" from=\"-28.403237336557787\" to=\"-39.35917403045251\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-19.16405636857285\" y1=\"-39.35917403045251\" x2=\"-19.16405636857285\" y2=\"-39.35917403045251\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_14\" attributename=\"x2\" attributetype=\"XML\" from=\"-19.16405636857285\" to=\"-32.269755647873225\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_13.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_13.end\" from=\"-39.35917403045251\" to=\"-46.75081213427073\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-32.269755647873225\" y1=\"-46.75081213427073\" x2=\"-32.269755647873225\" y2=\"-46.75081213427073\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_16\" attributename=\"x2\" attributetype=\"XML\" from=\"-32.269755647873225\" to=\"-46.981075128885706\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_15.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_15.end\" from=\"-46.75081213427073\" to=\"-49.908777711165854\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-46.981075128885706\" y1=\"-49.908777711165854\" x2=\"-46.981075128885706\" y2=\"-49.908777711165854\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_18\" attributename=\"x2\" attributetype=\"XML\" from=\"-46.981075128885706\" to=\"-61.96578321437789\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_17.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_17.end\" from=\"-49.908777711165854\" to=\"-48.54709087130257\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-61.96578321437789\" y1=\"-48.54709087130257\" x2=\"-61.96578321437789\" y2=\"-48.54709087130257\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_20\" attributename=\"x2\" attributetype=\"XML\" from=\"-61.96578321437789\" to=\"-75.86689070888283\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_19.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_19.end\" from=\"-48.54709087130257\" to=\"-42.78906361507234\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-75.86689070888283\" y1=\"-42.78906361507234\" x2=\"-75.86689070888283\" y2=\"-42.78906361507234\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_22\" attributename=\"x2\" attributetype=\"XML\" from=\"-75.86689070888283\" to=\"-87.42553740855504\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_21.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_21.end\" from=\"-42.78906361507234\" to=\"-33.15613291203971\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-87.42553740855504\" y1=\"-33.15613291203971\" x2=\"-87.42553740855504\" y2=\"-33.15613291203971\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_24\" attributename=\"x2\" attributetype=\"XML\" from=\"-87.42553740855504\" to=\"-95.59499229960448\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_23.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_23.end\" from=\"-33.15613291203971\" to=\"-20.520640272637777\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-95.59499229960448\" y1=\"-20.520640272637777\" x2=\"-95.59499229960448\" y2=\"-20.520640272637777\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_26\" attributename=\"x2\" attributetype=\"XML\" from=\"-95.59499229960448\" to=\"-99.63544370490266\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_25.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_25.end\" from=\"-20.520640272637777\" to=\"-6.026834012766084\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-99.63544370490266\" y1=\"-6.026834012766084\" x2=\"-99.63544370490266\" y2=\"-6.026834012766084\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_28\" attributename=\"x2\" attributetype=\"XML\" from=\"-99.63544370490266\" to=\"-99.18099534735711\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_27.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_27.end\" from=\"-6.026834012766084\" to=\"9.012751890695354\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-99.18099534735711\" y1=\"9.012751890695354\" x2=\"-99.18099534735711\" y2=\"9.012751890695354\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_30\" attributename=\"x2\" attributetype=\"XML\" from=\"-99.18099534735711\" to=\"-94.2728012826604\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_29.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_29.end\" from=\"9.012751890695354\" to=\"23.236158602188482\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-94.2728012826604\" y1=\"23.236158602188482\" x2=\"-94.2728012826604\" y2=\"23.236158602188482\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_32\" attributename=\"x2\" attributetype=\"XML\" from=\"-94.2728012826604\" to=\"-85.35533905932725\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_31.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_31.end\" from=\"23.236158602188482\" to=\"35.355339059327406\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"-85.35533905932725\" y1=\"35.355339059327406\" x2=\"-85.35533905932725\" y2=\"35.355339059327406\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_35\" attributename=\"x2\" attributetype=\"XML\" from=\"-85.35533905932725\" to=\"-0.5025253169413446\" dur=\" 0.642s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_34.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_34.end\" from=\"35.355339059327406\" to=\"120.2081528017129\" dur=\" 0.642s\" fill=\"freeze\"></animate></line><line x1=\"-0.5025253169413446\" y1=\"120.2081528017129\" x2=\"-0.5025253169413446\" y2=\"120.2081528017129\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_37\" attributename=\"x2\" attributetype=\"XML\" from=\"-0.5025253169413446\" to=\"84.35028842544408\" dur=\" 0.642s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_36.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_36.end\" from=\"120.2081528017129\" to=\"35.35533905932691\" dur=\" 0.642s\" fill=\"freeze\"></animate></line><line x1=\"84.35028842544408\" y1=\"35.35533905932691\" x2=\"84.35028842544408\" y2=\"35.35533905932691\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_39\" attributename=\"x2\" attributetype=\"XML\" from=\"84.35028842544408\" to=\"93.26775064877717\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_38.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_38.end\" from=\"35.35533905932691\" to=\"23.236158602187942\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"93.26775064877717\" y1=\"23.236158602187942\" x2=\"93.26775064877717\" y2=\"23.236158602187942\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_41\" attributename=\"x2\" attributetype=\"XML\" from=\"93.26775064877717\" to=\"98.17594471347381\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_40.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_40.end\" from=\"23.236158602187942\" to=\"9.012751890694789\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"98.17594471347381\" y1=\"9.012751890694789\" x2=\"98.17594471347381\" y2=\"9.012751890694789\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_43\" attributename=\"x2\" attributetype=\"XML\" from=\"98.17594471347381\" to=\"98.63039307101928\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_42.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_42.end\" from=\"9.012751890694789\" to=\"-6.026834012766653\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"98.63039307101928\" y1=\"-6.026834012766653\" x2=\"98.63039307101928\" y2=\"-6.026834012766653\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_45\" attributename=\"x2\" attributetype=\"XML\" from=\"98.63039307101928\" to=\"94.58994166572106\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_44.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_44.end\" from=\"-6.026834012766653\" to=\"-20.520640272638328\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"94.58994166572106\" y1=\"-20.520640272638328\" x2=\"94.58994166572106\" y2=\"-20.520640272638328\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_47\" attributename=\"x2\" attributetype=\"XML\" from=\"94.58994166572106\" to=\"86.42048677467156\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_46.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_46.end\" from=\"-20.520640272638328\" to=\"-33.15613291204022\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"86.42048677467156\" y1=\"-33.15613291204022\" x2=\"86.42048677467156\" y2=\"-33.15613291204022\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_49\" attributename=\"x2\" attributetype=\"XML\" from=\"86.42048677467156\" to=\"74.86184007499931\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_48.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_48.end\" from=\"-33.15613291204022\" to=\"-42.7890636150728\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"74.86184007499931\" y1=\"-42.7890636150728\" x2=\"74.86184007499931\" y2=\"-42.7890636150728\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_51\" attributename=\"x2\" attributetype=\"XML\" from=\"74.86184007499931\" to=\"60.96073258049433\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_50.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_50.end\" from=\"-42.7890636150728\" to=\"-48.54709087130296\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"60.96073258049433\" y1=\"-48.54709087130296\" x2=\"60.96073258049433\" y2=\"-48.54709087130296\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_53\" attributename=\"x2\" attributetype=\"XML\" from=\"60.96073258049433\" to=\"45.976024495002136\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_52.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_52.end\" from=\"-48.54709087130296\" to=\"-49.9087777111662\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"45.976024495002136\" y1=\"-49.9087777111662\" x2=\"45.976024495002136\" y2=\"-49.9087777111662\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_55\" attributename=\"x2\" attributetype=\"XML\" from=\"45.976024495002136\" to=\"31.264705013989662\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_54.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_54.end\" from=\"-49.9087777111662\" to=\"-46.750812134271044\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"31.264705013989662\" y1=\"-46.750812134271044\" x2=\"31.264705013989662\" y2=\"-46.750812134271044\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_57\" attributename=\"x2\" attributetype=\"XML\" from=\"31.264705013989662\" to=\"18.159005734689302\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_56.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_56.end\" from=\"-46.750812134271044\" to=\"-39.35917403045279\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"18.159005734689302\" y1=\"-39.35917403045279\" x2=\"18.159005734689302\" y2=\"-39.35917403045279\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_59\" attributename=\"x2\" attributetype=\"XML\" from=\"18.159005734689302\" to=\"7.8457560714336445\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_58.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_58.end\" from=\"-39.35917403045279\" to=\"-28.403237336558064\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"7.8457560714336445\" y1=\"-28.403237336558064\" x2=\"7.8457560714336445\" y2=\"-28.403237336558064\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_61\" attributename=\"x2\" attributetype=\"XML\" from=\"7.8457560714336445\" to=\"1.2589060406891877\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_60.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_60.end\" from=\"-28.403237336558064\" to=\"-14.875152692760421\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><line x1=\"1.2589060406891877\" y1=\"-14.875152692760421\" x2=\"1.2589060406891877\" y2=\"-14.875152692760421\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_63\" attributename=\"x2\" attributetype=\"XML\" from=\"1.2589060406891877\" to=\"-1.0050506338835339\" dur=\" 0.081s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_62.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_62.end\" from=\"-14.875152692760421\" to=\"-2.7355895326763857e-13\" dur=\" 0.081s\" fill=\"freeze\"></animate></line><polygon points=\"0.0,-0.0 -2.2639566745727207,-14.875152692760148 -8.850806705317183,-28.403237336557787 -19.16405636857285,-39.35917403045251 -32.269755647873225,-46.75081213427073 -46.981075128885706,-49.908777711165854 -61.96578321437789,-48.54709087130257 -75.86689070888283,-42.78906361507234 -87.42553740855504,-33.15613291203971 -95.59499229960448,-20.520640272637777 -99.63544370490266,-6.026834012766084 -99.18099534735711,9.012751890695354 -94.2728012826604,23.236158602188482 -85.35533905932725,35.355339059327406 -0.5025253169413446,120.2081528017129 84.35028842544408,35.35533905932691 93.26775064877717,23.236158602187942 98.17594471347381,9.012751890694789 98.63039307101928,-6.026834012766653 94.58994166572106,-20.520640272638328 86.42048677467156,-33.15613291204022 74.86184007499931,-42.7890636150728 60.96073258049433,-48.54709087130296 45.976024495002136,-49.9087777111662 31.264705013989662,-46.750812134271044 18.159005734689302,-39.35917403045279 7.8457560714336445,-28.403237336558064 1.2589060406891877,-14.875152692760421 -1.0050506338835339,-2.7355895326763857e-13\" style=\"display: none;fill: darkviolet;stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_67\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_66.end\"></animate></polygon><line x1=\"-1.0050506338835339\" y1=\"-2.7355895326763857e-13\" x2=\"-1.0050506338835339\" y2=\"-2.7355895326763857e-13\" style=\"stroke: black;stroke-width: 1\" opacity=\"0\"><animate id=\"af_668f430aabd94033929b234c355372fa_68\" attributename=\"x2\" attributetype=\"XML\" from=\"-1.0050506338835339\" to=\"128.99494936611646\" dur=\" 0.696s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_67.end\"></animate></line><line x1=\"128.99494936611646\" y1=\"2.1049069410056367e-14\" x2=\"128.99494936611646\" y2=\"2.1049069410056367e-14\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_72\" attributename=\"x2\" attributetype=\"XML\" from=\"128.99494936611646\" to=\"126.87215454592071\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_71.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_71.end\" from=\"2.1049069410056367e-14\" to=\"-12.857578612126447\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"126.87215454592071\" y1=\"-12.857578612126447\" x2=\"126.87215454592071\" y2=\"-12.857578612126447\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_74\" attributename=\"x2\" attributetype=\"XML\" from=\"126.87215454592071\" to=\"120.72908297776591\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_73.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_73.end\" from=\"-12.857578612126447\" to=\"-24.350457160348824\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"120.72908297776591\" y1=\"-24.350457160348824\" x2=\"120.72908297776591\" y2=\"-24.350457160348824\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_76\" attributename=\"x2\" attributetype=\"XML\" from=\"120.72908297776591\" to=\"111.21775868690061\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_75.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_75.end\" from=\"-24.350457160348824\" to=\"-33.25878449210183\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"111.21775868690061\" y1=\"-33.25878449210183\" x2=\"111.21775868690061\" y2=\"-33.25878449210183\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_78\" attributename=\"x2\" attributetype=\"XML\" from=\"111.21775868690061\" to=\"99.34771117021737\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_77.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_77.end\" from=\"-33.25878449210183\" to=\"-38.63703305156278\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"99.34771117021737\" y1=\"-38.63703305156278\" x2=\"99.34771117021737\" y2=\"-38.63703305156278\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_80\" attributename=\"x2\" attributetype=\"XML\" from=\"99.34771117021737\" to=\"86.37882419691081\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_79.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_79.end\" from=\"-38.63703305156278\" to=\"-39.91435692954422\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"86.37882419691081\" y1=\"-39.91435692954422\" x2=\"86.37882419691081\" y2=\"-39.91435692954422\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_82\" attributename=\"x2\" attributetype=\"XML\" from=\"86.37882419691081\" to=\"73.68761207151294\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_81.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_81.end\" from=\"-39.91435692954422\" to=\"-36.95518130045157\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"73.68761207151294\" y1=\"-36.95518130045157\" x2=\"73.68761207151294\" y2=\"-36.95518130045157\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_84\" attributename=\"x2\" attributetype=\"XML\" from=\"73.68761207151294\" to=\"62.62111676211376\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_83.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_83.end\" from=\"-36.95518130045157\" to=\"-30.073592299159237\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"62.62111676211376\" y1=\"-30.073592299159237\" x2=\"62.62111676211376\" y2=\"-30.073592299159237\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_86\" attributename=\"x2\" attributetype=\"XML\" from=\"62.62111676211376\" to=\"54.35393321473893\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_85.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_85.end\" from=\"-30.073592299159237\" to=\"-20.00000000000017\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"54.35393321473893\" y1=\"-20.00000000000017\" x2=\"54.35393321473893\" y2=\"-20.00000000000017\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_88\" attributename=\"x2\" attributetype=\"XML\" from=\"54.35393321473893\" to=\"49.76353814998721\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_87.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_87.end\" from=\"-20.00000000000017\" to=\"-7.803612880645318\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"49.76353814998721\" y1=\"-7.803612880645318\" x2=\"49.76353814998721\" y2=\"-7.803612880645318\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_90\" attributename=\"x2\" attributetype=\"XML\" from=\"49.76353814998721\" to=\"49.33715491116397\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_89.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_89.end\" from=\"-7.803612880645318\" to=\"5.221047688801876\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"49.33715491116397\" y1=\"5.221047688801876\" x2=\"49.33715491116397\" y2=\"5.221047688801876\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_92\" attributename=\"x2\" attributetype=\"XML\" from=\"49.33715491116397\" to=\"53.12003970480881\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_91.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_91.end\" from=\"5.221047688801876\" to=\"17.691547608759876\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"53.12003970480881\" y1=\"17.691547608759876\" x2=\"53.12003970480881\" y2=\"17.691547608759876\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_94\" attributename=\"x2\" attributetype=\"XML\" from=\"53.12003970480881\" to=\"60.71067811865444\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_93.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_93.end\" from=\"17.691547608759876\" to=\"28.284271247461724\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"60.71067811865444\" y1=\"28.284271247461724\" x2=\"60.71067811865444\" y2=\"28.284271247461724\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_97\" attributename=\"x2\" attributetype=\"XML\" from=\"60.71067811865444\" to=\"128.5929291125629\" dur=\" 0.514s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_96.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_96.end\" from=\"28.284271247461724\" to=\"96.16652224137039\" dur=\" 0.514s\" fill=\"freeze\"></animate></line><line x1=\"128.5929291125629\" y1=\"96.16652224137039\" x2=\"128.5929291125629\" y2=\"96.16652224137039\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_99\" attributename=\"x2\" attributetype=\"XML\" from=\"128.5929291125629\" to=\"196.47518010647144\" dur=\" 0.514s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_98.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_98.end\" from=\"96.16652224137039\" to=\"28.284271247461817\" dur=\" 0.514s\" fill=\"freeze\"></animate></line><line x1=\"196.47518010647144\" y1=\"28.284271247461817\" x2=\"196.47518010647144\" y2=\"28.284271247461817\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_101\" attributename=\"x2\" attributetype=\"XML\" from=\"196.47518010647144\" to=\"204.0658185203171\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_100.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_100.end\" from=\"28.284271247461817\" to=\"17.69154760875998\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"204.0658185203171\" y1=\"17.69154760875998\" x2=\"204.0658185203171\" y2=\"17.69154760875998\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_103\" attributename=\"x2\" attributetype=\"XML\" from=\"204.0658185203171\" to=\"207.848703313962\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_102.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_102.end\" from=\"17.69154760875998\" to=\"5.221047688801997\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"207.848703313962\" y1=\"5.221047688801997\" x2=\"207.848703313962\" y2=\"5.221047688801997\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_105\" attributename=\"x2\" attributetype=\"XML\" from=\"207.848703313962\" to=\"207.42232007513883\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_104.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_104.end\" from=\"5.221047688801997\" to=\"-7.803612880645197\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"207.42232007513883\" y1=\"-7.803612880645197\" x2=\"207.42232007513883\" y2=\"-7.803612880645197\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_107\" attributename=\"x2\" attributetype=\"XML\" from=\"207.42232007513883\" to=\"202.83192501038718\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_106.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_106.end\" from=\"-7.803612880645197\" to=\"-20.00000000000007\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"202.83192501038718\" y1=\"-20.00000000000007\" x2=\"202.83192501038718\" y2=\"-20.00000000000007\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_109\" attributename=\"x2\" attributetype=\"XML\" from=\"202.83192501038718\" to=\"194.5647414630124\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_108.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_108.end\" from=\"-20.00000000000007\" to=\"-30.07359229915918\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"194.5647414630124\" y1=\"-30.07359229915918\" x2=\"194.5647414630124\" y2=\"-30.07359229915918\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_111\" attributename=\"x2\" attributetype=\"XML\" from=\"194.5647414630124\" to=\"183.49824615361325\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_110.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_110.end\" from=\"-30.07359229915918\" to=\"-36.95518130045157\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"183.49824615361325\" y1=\"-36.95518130045157\" x2=\"183.49824615361325\" y2=\"-36.95518130045157\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_113\" attributename=\"x2\" attributetype=\"XML\" from=\"183.49824615361325\" to=\"170.80703402821538\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_112.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_112.end\" from=\"-36.95518130045157\" to=\"-39.914356929544255\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"170.80703402821538\" y1=\"-39.914356929544255\" x2=\"170.80703402821538\" y2=\"-39.914356929544255\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_115\" attributename=\"x2\" attributetype=\"XML\" from=\"170.80703402821538\" to=\"157.83814705490883\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_114.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_114.end\" from=\"-39.914356929544255\" to=\"-38.63703305156286\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"157.83814705490883\" y1=\"-38.63703305156286\" x2=\"157.83814705490883\" y2=\"-38.63703305156286\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_117\" attributename=\"x2\" attributetype=\"XML\" from=\"157.83814705490883\" to=\"145.96809953822557\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_116.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_116.end\" from=\"-38.63703305156286\" to=\"-33.25878449210195\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"145.96809953822557\" y1=\"-33.25878449210195\" x2=\"145.96809953822557\" y2=\"-33.25878449210195\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_119\" attributename=\"x2\" attributetype=\"XML\" from=\"145.96809953822557\" to=\"136.45677524736024\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_118.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_118.end\" from=\"-33.25878449210195\" to=\"-24.35045716034898\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"136.45677524736024\" y1=\"-24.35045716034898\" x2=\"136.45677524736024\" y2=\"-24.35045716034898\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_121\" attributename=\"x2\" attributetype=\"XML\" from=\"136.45677524736024\" to=\"130.31370367920542\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_120.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_120.end\" from=\"-24.35045716034898\" to=\"-12.857578612126623\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><line x1=\"130.31370367920542\" y1=\"-12.857578612126623\" x2=\"130.31370367920542\" y2=\"-12.857578612126623\" style=\"stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_123\" attributename=\"x2\" attributetype=\"XML\" from=\"130.31370367920542\" to=\"128.19090885900962\" dur=\" 0.070s\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_122.end\"></animate><animate attributename=\"y2\" attributetype=\"XML\" begin=\"af_668f430aabd94033929b234c355372fa_122.end\" from=\"-12.857578612126623\" to=\"-1.616484723854228e-13\" dur=\" 0.070s\" fill=\"freeze\"></animate></line><polygon points=\"128.99494936611646,2.1049069410056367e-14 126.87215454592071,-12.857578612126447 120.72908297776591,-24.350457160348824 111.21775868690061,-33.25878449210183 99.34771117021737,-38.63703305156278 86.37882419691081,-39.91435692954422 73.68761207151294,-36.95518130045157 62.62111676211376,-30.073592299159237 54.35393321473893,-20.00000000000017 49.76353814998721,-7.803612880645318 49.33715491116397,5.221047688801876 53.12003970480881,17.691547608759876 60.71067811865444,28.284271247461724 128.5929291125629,96.16652224137039 196.47518010647144,28.284271247461817 204.0658185203171,17.69154760875998 207.848703313962,5.221047688801997 207.42232007513883,-7.803612880645197 202.83192501038718,-20.00000000000007 194.5647414630124,-30.07359229915918 183.49824615361325,-36.95518130045157 170.80703402821538,-39.914356929544255 157.83814705490883,-38.63703305156286 145.96809953822557,-33.25878449210195 136.45677524736024,-24.35045716034898 130.31370367920542,-12.857578612126623 128.19090885900962,-1.616484723854228e-13\" style=\"display: none;fill: tomato;stroke: black;stroke-width: 1\"><animate id=\"af_668f430aabd94033929b234c355372fa_127\" attributename=\"display\" attributetype=\"CSS\" from=\"block\" to=\"block\" dur=\"1ms\" fill=\"freeze\" begin=\"af_668f430aabd94033929b234c355372fa_126.end\"></animate></polygon></g><g transform=\"translate(320 240)\"></g><g transform=\"translate(320 240)\"><polygon points=\"0,16 -2,14 -1,10 -4,7 -7,9 -9,8 -6,5 -7,1 -5,-3 -8,-6 -6,-8 -4,-5 0,-7 4,-5 6,-8 8,-6 5,-3 7,1 6,5 9,8 7,9 4,7 1,10 2,14\" stroke=\"black\" fill=\"black\" stroke-width=\"1\" opacity=\"0\"><animate id=\"af_668f430aabd94033929b234c355372fa_1\" begin=\"af_668f430aabd94033929b234c355372fa_0.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"opacity\" attributetype=\"XML\" from=\"0\" to=\"1\"></animate><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_2.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_3\" type=\"rotate\" from=\"0,0,0\" to=\"0.0,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_2.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_3.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_4\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-90.0,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_3.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animate id=\"af_668f430aabd94033929b234c355372fa_5\" begin=\"af_668f430aabd94033929b234c355372fa_4.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"fill\" attributetype=\"XML\" from=\"black\" to=\"darkviolet\"></animate><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_5.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_6\" type=\"rotate\" from=\"-90.0,0,0\" to=\"-180.0,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_5.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_6.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_7\" type=\"rotate\" from=\"-180.0,0,0\" to=\"-188.65384615384616,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_6.end\" dur=\" 0.008s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_7.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"0.0,-0.0\" to=\"-2.2639566745727207,-14.875152692760148\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_7.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_8.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_9\" type=\"rotate\" from=\"-188.65384615384616,0,0\" to=\"-205.96153846153845,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_8.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_9.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-2.2639566745727207,-14.875152692760148\" to=\"-8.850806705317183,-28.403237336557787\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_9.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_10.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_11\" type=\"rotate\" from=\"-205.96153846153845,0,0\" to=\"-223.26923076923077,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_10.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_11.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-8.850806705317183,-28.403237336557787\" to=\"-19.16405636857285,-39.35917403045251\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_11.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_12.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_13\" type=\"rotate\" from=\"-223.26923076923077,0,0\" to=\"-240.5769230769231,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_12.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_13.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-19.16405636857285,-39.35917403045251\" to=\"-32.269755647873225,-46.75081213427073\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_13.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_14.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_15\" type=\"rotate\" from=\"-240.5769230769231,0,0\" to=\"-257.8846153846154,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_14.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_15.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-32.269755647873225,-46.75081213427073\" to=\"-46.981075128885706,-49.908777711165854\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_15.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_16.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_17\" type=\"rotate\" from=\"-257.8846153846154,0,0\" to=\"-275.19230769230774,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_16.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_17.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-46.981075128885706,-49.908777711165854\" to=\"-61.96578321437789,-48.54709087130257\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_17.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_18.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_19\" type=\"rotate\" from=\"-275.19230769230774,0,0\" to=\"-292.50000000000006,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_18.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_19.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-61.96578321437789,-48.54709087130257\" to=\"-75.86689070888283,-42.78906361507234\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_19.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_20.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_21\" type=\"rotate\" from=\"-292.50000000000006,0,0\" to=\"-309.8076923076924,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_20.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_21.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-75.86689070888283,-42.78906361507234\" to=\"-87.42553740855504,-33.15613291203971\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_21.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_22.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_23\" type=\"rotate\" from=\"-309.8076923076924,0,0\" to=\"-327.1153846153847,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_22.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_23.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-87.42553740855504,-33.15613291203971\" to=\"-95.59499229960448,-20.520640272637777\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_23.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_24.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_25\" type=\"rotate\" from=\"-327.1153846153847,0,0\" to=\"-344.423076923077,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_24.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_25.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-95.59499229960448,-20.520640272637777\" to=\"-99.63544370490266,-6.026834012766084\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_25.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_26.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_27\" type=\"rotate\" from=\"-344.423076923077,0,0\" to=\"-361.73076923076934,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_26.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_27.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-99.63544370490266,-6.026834012766084\" to=\"-99.18099534735711,9.012751890695354\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_27.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_28.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_29\" type=\"rotate\" from=\"-361.73076923076934,0,0\" to=\"-379.03846153846166,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_28.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_29.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-99.18099534735711,9.012751890695354\" to=\"-94.2728012826604,23.236158602188482\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_29.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_30.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_31\" type=\"rotate\" from=\"-379.03846153846166,0,0\" to=\"-396.346153846154,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_30.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_31.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-94.2728012826604,23.236158602188482\" to=\"-85.35533905932725,35.355339059327406\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_31.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_32.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_33\" type=\"rotate\" from=\"-396.346153846154,0,0\" to=\"-413.6538461538463,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_32.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_33.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_34\" type=\"rotate\" from=\"-413.6538461538463,0,0\" to=\"-405.00000000000017,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_33.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_34.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-85.35533905932725,35.355339059327406\" to=\"-0.5025253169413446,120.2081528017129\" dur=\" 0.642s\" begin=\"af_668f430aabd94033929b234c355372fa_34.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_35.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_36\" type=\"rotate\" from=\"-405.00000000000017,0,0\" to=\"-495.00000000000017,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_35.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_36.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-0.5025253169413446,120.2081528017129\" to=\"84.35028842544408,35.35533905932691\" dur=\" 0.642s\" begin=\"af_668f430aabd94033929b234c355372fa_36.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_37.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_38\" type=\"rotate\" from=\"-495.00000000000017,0,0\" to=\"-503.6538461538463,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_37.end\" dur=\" 0.008s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_38.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"84.35028842544408,35.35533905932691\" to=\"93.26775064877717,23.236158602187942\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_38.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_39.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_40\" type=\"rotate\" from=\"-503.6538461538463,0,0\" to=\"-520.9615384615386,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_39.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_40.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"93.26775064877717,23.236158602187942\" to=\"98.17594471347381,9.012751890694789\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_40.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_41.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_42\" type=\"rotate\" from=\"-520.9615384615386,0,0\" to=\"-538.2692307692308,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_41.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_42.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"98.17594471347381,9.012751890694789\" to=\"98.63039307101928,-6.026834012766653\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_42.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_43.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_44\" type=\"rotate\" from=\"-538.2692307692308,0,0\" to=\"-555.5769230769231,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_43.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_44.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"98.63039307101928,-6.026834012766653\" to=\"94.58994166572106,-20.520640272638328\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_44.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_45.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_46\" type=\"rotate\" from=\"-555.5769230769231,0,0\" to=\"-572.8846153846154,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_45.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_46.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"94.58994166572106,-20.520640272638328\" to=\"86.42048677467156,-33.15613291204022\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_46.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_47.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_48\" type=\"rotate\" from=\"-572.8846153846154,0,0\" to=\"-590.1923076923076,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_47.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_48.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"86.42048677467156,-33.15613291204022\" to=\"74.86184007499931,-42.7890636150728\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_48.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_49.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_50\" type=\"rotate\" from=\"-590.1923076923076,0,0\" to=\"-607.4999999999999,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_49.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_50.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"74.86184007499931,-42.7890636150728\" to=\"60.96073258049433,-48.54709087130296\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_50.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_51.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_52\" type=\"rotate\" from=\"-607.4999999999999,0,0\" to=\"-624.8076923076922,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_51.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_52.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"60.96073258049433,-48.54709087130296\" to=\"45.976024495002136,-49.9087777111662\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_52.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_53.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_54\" type=\"rotate\" from=\"-624.8076923076922,0,0\" to=\"-642.1153846153844,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_53.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_54.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"45.976024495002136,-49.9087777111662\" to=\"31.264705013989662,-46.750812134271044\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_54.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_55.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_56\" type=\"rotate\" from=\"-642.1153846153844,0,0\" to=\"-659.4230769230767,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_55.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_56.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"31.264705013989662,-46.750812134271044\" to=\"18.159005734689302,-39.35917403045279\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_56.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_57.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_58\" type=\"rotate\" from=\"-659.4230769230767,0,0\" to=\"-676.7307692307689,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_57.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_58.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"18.159005734689302,-39.35917403045279\" to=\"7.8457560714336445,-28.403237336558064\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_58.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_59.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_60\" type=\"rotate\" from=\"-676.7307692307689,0,0\" to=\"-694.0384615384612,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_59.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_60.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"7.8457560714336445,-28.403237336558064\" to=\"1.2589060406891877,-14.875152692760421\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_60.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_61.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_62\" type=\"rotate\" from=\"-694.0384615384612,0,0\" to=\"-711.3461538461535,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_61.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_62.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"1.2589060406891877,-14.875152692760421\" to=\"-1.0050506338835339,-2.7355895326763857e-13\" dur=\" 0.081s\" begin=\"af_668f430aabd94033929b234c355372fa_62.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_63.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_64\" type=\"rotate\" from=\"-711.3461538461535,0,0\" to=\"-728.6538461538457,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_63.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_64.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_65\" type=\"rotate\" from=\"-728.6538461538457,0,0\" to=\"-719.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_64.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_65.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_66\" type=\"rotate\" from=\"-719.9999999999995,0,0\" to=\"-809.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_65.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_67.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"-1.0050506338835339,-2.7355895326763857e-13\" to=\"128.99494936611646,2.1049069410056367e-14\" dur=\" 0.696s\" begin=\"af_668f430aabd94033929b234c355372fa_67.end\" fill=\"freeze\"></animateMotion><animate id=\"af_668f430aabd94033929b234c355372fa_69\" begin=\"af_668f430aabd94033929b234c355372fa_68.end\" dur=\"1ms\" fill=\"freeze\" attributename=\"fill\" attributetype=\"XML\" from=\"darkviolet\" to=\"tomato\"></animate><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_69.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_70\" type=\"rotate\" from=\"-809.9999999999995,0,0\" to=\"-899.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_69.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_70.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_71\" type=\"rotate\" from=\"-899.9999999999995,0,0\" to=\"-909.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_70.end\" dur=\" 0.009s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_71.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"128.99494936611646,2.1049069410056367e-14\" to=\"126.87215454592071,-12.857578612126447\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_71.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_72.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_73\" type=\"rotate\" from=\"-909.3749999999995,0,0\" to=\"-928.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_72.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_73.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"126.87215454592071,-12.857578612126447\" to=\"120.72908297776591,-24.350457160348824\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_73.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_74.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_75\" type=\"rotate\" from=\"-928.1249999999995,0,0\" to=\"-946.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_74.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_75.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"120.72908297776591,-24.350457160348824\" to=\"111.21775868690061,-33.25878449210183\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_75.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_76.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_77\" type=\"rotate\" from=\"-946.8749999999995,0,0\" to=\"-965.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_76.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_77.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"111.21775868690061,-33.25878449210183\" to=\"99.34771117021737,-38.63703305156278\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_77.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_78.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_79\" type=\"rotate\" from=\"-965.6249999999995,0,0\" to=\"-984.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_78.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_79.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"99.34771117021737,-38.63703305156278\" to=\"86.37882419691081,-39.91435692954422\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_79.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_80.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_81\" type=\"rotate\" from=\"-984.3749999999995,0,0\" to=\"-1003.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_80.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_81.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"86.37882419691081,-39.91435692954422\" to=\"73.68761207151294,-36.95518130045157\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_81.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_82.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_83\" type=\"rotate\" from=\"-1003.1249999999995,0,0\" to=\"-1021.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_82.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_83.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"73.68761207151294,-36.95518130045157\" to=\"62.62111676211376,-30.073592299159237\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_83.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_84.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_85\" type=\"rotate\" from=\"-1021.8749999999995,0,0\" to=\"-1040.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_84.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_85.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"62.62111676211376,-30.073592299159237\" to=\"54.35393321473893,-20.00000000000017\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_85.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_86.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_87\" type=\"rotate\" from=\"-1040.6249999999995,0,0\" to=\"-1059.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_86.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_87.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"54.35393321473893,-20.00000000000017\" to=\"49.76353814998721,-7.803612880645318\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_87.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_88.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_89\" type=\"rotate\" from=\"-1059.3749999999995,0,0\" to=\"-1078.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_88.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_89.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"49.76353814998721,-7.803612880645318\" to=\"49.33715491116397,5.221047688801876\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_89.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_90.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_91\" type=\"rotate\" from=\"-1078.1249999999995,0,0\" to=\"-1096.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_90.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_91.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"49.33715491116397,5.221047688801876\" to=\"53.12003970480881,17.691547608759876\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_91.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_92.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_93\" type=\"rotate\" from=\"-1096.8749999999995,0,0\" to=\"-1115.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_92.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_93.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"53.12003970480881,17.691547608759876\" to=\"60.71067811865444,28.284271247461724\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_93.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_94.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_95\" type=\"rotate\" from=\"-1115.6249999999995,0,0\" to=\"-1134.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_94.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_95.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_96\" type=\"rotate\" from=\"-1134.3749999999995,0,0\" to=\"-1124.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_95.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_96.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"60.71067811865444,28.284271247461724\" to=\"128.5929291125629,96.16652224137039\" dur=\" 0.514s\" begin=\"af_668f430aabd94033929b234c355372fa_96.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_97.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_98\" type=\"rotate\" from=\"-1124.9999999999995,0,0\" to=\"-1214.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_97.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_98.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"128.5929291125629,96.16652224137039\" to=\"196.47518010647144,28.284271247461817\" dur=\" 0.514s\" begin=\"af_668f430aabd94033929b234c355372fa_98.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_99.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_100\" type=\"rotate\" from=\"-1214.9999999999995,0,0\" to=\"-1224.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_99.end\" dur=\" 0.009s\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_100.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"196.47518010647144,28.284271247461817\" to=\"204.0658185203171,17.69154760875998\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_100.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_101.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_102\" type=\"rotate\" from=\"-1224.3749999999995,0,0\" to=\"-1243.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_101.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_102.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"204.0658185203171,17.69154760875998\" to=\"207.848703313962,5.221047688801997\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_102.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_103.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_104\" type=\"rotate\" from=\"-1243.1249999999995,0,0\" to=\"-1261.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_103.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_104.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"207.848703313962,5.221047688801997\" to=\"207.42232007513883,-7.803612880645197\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_104.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_105.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_106\" type=\"rotate\" from=\"-1261.8749999999995,0,0\" to=\"-1280.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_105.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_106.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"207.42232007513883,-7.803612880645197\" to=\"202.83192501038718,-20.00000000000007\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_106.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_107.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_108\" type=\"rotate\" from=\"-1280.6249999999995,0,0\" to=\"-1299.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_107.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_108.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"202.83192501038718,-20.00000000000007\" to=\"194.5647414630124,-30.07359229915918\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_108.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_109.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_110\" type=\"rotate\" from=\"-1299.3749999999995,0,0\" to=\"-1318.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_109.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_110.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"194.5647414630124,-30.07359229915918\" to=\"183.49824615361325,-36.95518130045157\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_110.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_111.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_112\" type=\"rotate\" from=\"-1318.1249999999995,0,0\" to=\"-1336.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_111.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_112.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"183.49824615361325,-36.95518130045157\" to=\"170.80703402821538,-39.914356929544255\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_112.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_113.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_114\" type=\"rotate\" from=\"-1336.8749999999995,0,0\" to=\"-1355.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_113.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_114.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"170.80703402821538,-39.914356929544255\" to=\"157.83814705490883,-38.63703305156286\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_114.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_115.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_116\" type=\"rotate\" from=\"-1355.6249999999995,0,0\" to=\"-1374.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_115.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_116.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"157.83814705490883,-38.63703305156286\" to=\"145.96809953822557,-33.25878449210195\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_116.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_117.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_118\" type=\"rotate\" from=\"-1374.3749999999995,0,0\" to=\"-1393.1249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_117.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_118.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"145.96809953822557,-33.25878449210195\" to=\"136.45677524736024,-24.35045716034898\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_118.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_119.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_120\" type=\"rotate\" from=\"-1393.1249999999995,0,0\" to=\"-1411.8749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_119.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_120.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"136.45677524736024,-24.35045716034898\" to=\"130.31370367920542,-12.857578612126623\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_120.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_121.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_122\" type=\"rotate\" from=\"-1411.8749999999995,0,0\" to=\"-1430.6249999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_121.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_122.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateMotion from=\"130.31370367920542,-12.857578612126623\" to=\"128.19090885900962,-1.616484723854228e-13\" dur=\" 0.070s\" begin=\"af_668f430aabd94033929b234c355372fa_122.end\" fill=\"freeze\"></animateMotion><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_123.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_124\" type=\"rotate\" from=\"-1430.6249999999995,0,0\" to=\"-1449.3749999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_123.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_124.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_125\" type=\"rotate\" from=\"-1449.3749999999995,0,0\" to=\"-1439.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_124.end\" dur=\"1ms\" fill=\"freeze\"></animateTransform><animateMotion begin=\"af_668f430aabd94033929b234c355372fa_125.end\" dur=\"1ms\" fill=\"remove\"></animateMotion><animateTransform attributename=\"transform\" id=\"af_668f430aabd94033929b234c355372fa_126\" type=\"rotate\" from=\"-1439.9999999999995,0,0\" to=\"-1529.9999999999995,0,0\" begin=\"af_668f430aabd94033929b234c355372fa_125.end\" dur=\" 0.083s\" fill=\"freeze\"></animateTransform></polygon></g></svg>"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Escalier\n\n- `d` -- longueur de marche\n- `e` -- hauteur de marche\n- `n` -- nombre de marches\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef escalier(d, e, n):\n dot() # marqueur de début\n for i in range(n):\n forward(d)\n left(90)\n forward(e)\n right(90)\n\nescalier(20, 10, 5)\nescalier(10, -20, 5)\nescalier(30, 10, 4)\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Valeurs par défaut\n\nQuand une fonction possède beaucoup d'arguments, nous pouvons spécifier des valeurs par défaut. Pour ceci nous ajoutons la valeur par défaut dans la liste de paramètres avec le symbole `=`.\n\nLa fonction `rectangle(p, d, e, w=1, pen='black', fill='white')` dessine un rectangle aux dimensions `d` x `e` à la position `p`.\nCette fonction possède 3 paramètres optionnels (valeur par défaut en parenthèse):\n\n- `w` -- épaisseur de ligne (`1`)\n- `pen` -- couleur de ligne (`'black'`)\n- `fill` -- couleur de remplissage (`'white'`)\n\nIl a maintenant différentes façons à appeler la fonction. Tous les paramètres qui ont une valeur par défaut sont optionnels. Au minimum nous devons spécifier les paramètres sans valeur par défaut.\n\n```\nrectangle((40, 0), 80, 40)\n```\n\nLe rectangle est dessiné dans la direction actuelle de la tortue. Cette orientation peut être changée avec `seth()`. La tortue se positionne de l'autre côté du point de départ. Ceci permet d'enchainer à dessiner des rectangles.\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\npenup()\n\ndef rectangle(p, d, e, w=1, pen='black', fill='white'):\n goto(p)\n pendown()\n width(w)\n pencolor(pen)\n fillcolor(fill)\n begin_fill()\n for i in range(2):\n forward(d)\n left(90)\n forward(e)\n left(90)\n end_fill()\n penup()\n\nrectangle((-200, 30), 40, 30)\nrectangle((-100, -20), 40, 30, 1, 'orange', 'orange')\nrectangle((100, -40), 30, 80, fill='yellow')\nrectangle((200, 100), 80, 40, 1, 'red', 'pink')\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Polygone régulier\n\nLa fonction `polygone()` dessine un polygone régulier avec n sommets. Les arguments de la fonction sont :\n\n- `d` -- distance du segment\n- `n` -- nombre de segments\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef polygon(d, n, w=1, pen='black', fill='white'):\n down()\n pencolor(pen)\n width(w)\n fillcolor(fill)\n begin_fill()\n for i in range(n):\n forward(d)\n left(360/n)\n end_fill()\n up()\n\nup()\nbackward(280)\nfor n in range(3, 9):\n polygon(40, n, fill='lime')\n color('black')\n write(n)\n forward(100)\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Polygone étoilé\n\nEn ajoutant un paramètre supplémentaire `m`, la fonction `polygone()` permet également de dessiner un polygone étoilé. Ce paramètre signifie le nombre de pics sauté pour aller au prochain des `n` points répartis dans un cercle. Pour `m=1` un polygone régulier est dessiné.\n\nes arguments de la fonction sont :\n\n- `d` -- distance du segment\n- `n` -- nombre de segments\n- `m` -- paramètre pour polygone étoilé (nombre de pics sautés)\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef polygon(d, n, m=1, w=1, pen='black', fill='white'):\n down()\n pencolor(pen)\n width(w)\n fillcolor(fill)\n begin_fill()\n for i in range(n):\n forward(d)\n left(m*360/n)\n end_fill()\n up()\n\nup()\nspeed(0)\nbackward(250)\nfor m in range(2, 6):\n polygon(80, 11, m, fill='yellow')\n color('black')\n write(m)\n forward(140)\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"## Nommer une variable\n\nPour nommer une variable, vous pouvez utiliser :\n\n- lettres (`a...z` et `A...Z`),\n- chiffres (`0...9`),\n- le tiret bas (`_`).\n\nLe nom de variable :\n\n- est sensible aux majuscules/minuscules,\n- ne peut pas commencer avec un chiffre,\n- ne doit pas consister d'un mot-clé (`if`, `else`, `for`),\n\nPar exemplee, les noms de variables suivantes sont valides : \n `a2`, `_a`, `speed`, `pos_x`, `POS_X`,\n\ntandis que ceux là ne le sont pas : `2a`, `def`, `pos x`.\n"},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:chocolate;background-color:papayawhip;\" > <i class=\"fa fa-question\" aria-hidden=\"true\"> </i> Quizz </h3> \n \n```\nLesquels des noms de variable sont valides ?\n\nA) var 2\nB) var2\nC) 2var\nD) IF\n```"},{"metadata":{},"cell_type":"markdown","source":"<details>\n<summary style=\"border-left:3px solid #3c763d; border-radius:2pt; width:100%; color:#3c763d; padding:6px; background-color: #dff0d8\"> \nRéponse\n</summary> \n\n<div style=\"border-left:3px solid #3c763d; border-radius:2pt; color:#3c763d; padding:6px; background-color: #eff0e8\">\n\nB) `var2`\n \nD) `IF` serait valable car différent du mot clé `if` (rappel : Python est sensible aux majuscules/minuscules)\n \nLes deux autres ne sont pas valables car `var 2` contient une espace et `2var` commence par un chiffre.\n \n</div>\n</details>"},{"metadata":{},"cell_type":"markdown","source":"## Exercices\n\n"},{"metadata":{},"cell_type":"markdown","source":"### Pingpong\n\nLa fonction `pingpong()` reprend le dessin du chapitre 1 et ajoute trois paramètres\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\n\ndef pingpong(d, c, c2):\n down()\n left(90)\n color(c) # poignée\n width(d/8)\n forward(d/2)\n color(c2) # plaque\n width(d/2)\n forward(d/10)\n up() # retourner au point de départ\n backward(6/10*d)\n right(90)\n\npingpong(200, 'brown', 'red')\nforward(100)\npingpong(150, 'brown', 'blue')\n\ndone()\n","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"### Mondrian\n\nAvec la fonction `rectangle(p, d, e, w, pen, fill)` dessinez une copie de ce tableau de Mondrian.\n\n"},{"metadata":{},"cell_type":"markdown","source":"\n\n"},{"metadata":{},"cell_type":"markdown","source":"### Stickman\n\n"},{"metadata":{"trusted":false},"cell_type":"code","source":"from turtle import *\nup()\n\n\ndef leg(angle, d):\n left(angle)\n forward(d)\n backward(d)\n right(angle)\n\ndef stickman(d, bras=(30, -45), jambes=(10, -30)):\n seth(0)\n down()\n circle(d/2) # tête\n right(90)\n forward(d/2) # cou\n\n leg(bras[0], d)\n leg(bras[1], d)\n forward(d)\n\n leg(jambes[0], d)\n leg(jambes[1], d)\n up()\n\ngoto(-200, 0)\nstickman(20)\n\ngoto(-100, 0)\nstickman(20, (90, -110))\n\ngoto(0, 0)\nstickman(30, (90, -110), (110, -24))\nhideturtle()\n\ndone()","execution_count":null,"outputs":[]}],"metadata":{"kernelspec":{"display_name":"Python 3 (ipykernel)","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.10.12"}},"nbformat":4,"nbformat_minor":2} \ No newline at end of file diff --git a/Notebooks/imgs_chap4/canevas.png b/Notebooks/imgs_chap4/canevas.png new file mode 100644 index 0000000000000000000000000000000000000000..c6f15a2518dd1923bba06628546b7e6ba005024e GIT binary patch literal 24947 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 literal 0 HcmV?d00001 -- GitLab