tag graphs

This commit is contained in:
Tykayn 2024-06-11 23:20:35 +02:00 committed by tykayn
parent 1161ce6510
commit 01d3e713e9
38 changed files with 75412 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Mastodon tags links
prends les 100 derniers pouets qui comportent le tag "mastoart" de l'instance https://mastodon.cipherbliss.com, en prenant les pouets suivants si besoin, et regarde dedans quels sont les ancres présentes dans le corps de texte. fais ensuite un graphique de répartition des noms de domaines en fonction de leur décompte.
https://mastodon.cipherbliss.com/tags/mastoart
```bash
pip install mastodon.py
```
```bash
python index.py --access-token=YOUR_ACCESS_TOKEN --hashtag=cargocarryshitolympics
```
# Liens entre les URL
Pour étudier la diversification et les biais de sources d'informations sur Mastodon, on peut voir à quel point les lignes éditoriales des liens donnés sur un sujet via un hashtag en particulier sont uniques ou polarisantes.
# Trouver des relations entre tags
Voir les liens entre les différents tags à partir d'un tag donné permet de voir les associations d'idées.
Une dataframe Pandas permet de mesurer précisément ces liens en les rangeant par nombre d'occurence décroissant.
On prend les 100 derniers pouets d'une timeline sur un sujet donné, et on fait un rendu en forme de graphique de force pour voir les liens entre les tags (propriété des status donnés par l'api de mastodon.py).
Le tout est sauvegardé dans un graphique png nommé par le nom du tag d'origine en recherche, tel que graph_tags_le-hashtag.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="460.8pt" height="345.6pt" viewBox="0 0 460.8 345.6" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-06-11T12:17:24.842901</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.6.3, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 345.6
L 460.8 345.6
L 460.8 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,153 @@
import mastodon
import pandas as pd
import networkx as nx
import matplotlib.pyplot as plt
import argparse
from urllib.parse import urlparse
import seaborn as sns
# Parse les arguments du script
parser = argparse.ArgumentParser(description="Produit un graphique des tags")
parser.add_argument("--access-token", type=str, help="The access token of your mastodon app", required=True)
parser.add_argument("--hashtag", type=str, help="The hashtag to search for (required)", required=True)
args = parser.parse_args()
MASTODON_INSTANCE = 'https://mastodon.cipherbliss.com'
ACCESS_TOKEN = args.access_token
hashtag = args.hashtag
MAX_RESULTS = 500
mastodon = mastodon.Mastodon(
access_token=ACCESS_TOKEN,
api_base_url=MASTODON_INSTANCE
)
posts = mastodon.timeline_hashtag(hashtag, limit=MAX_RESULTS)
print('posts trouvés:', len(posts))
##################################
urls = []
domains = []
for status in posts:
content = status['content']
urls = [item['url'] for item in status.get('media\_attachments', []) + status.get('cards', [])] if status.get('media\_attachments') or status.get('cards') else []
if urls:
domain = urllib.parse.urlparse(urls[-1]).netloc
domains.append(domain)
urls.pop()
df = pd.DataFrame({'URL': urls, 'Domain': domains})
plt.figure(figsize=(8,6))
ax = sns.countplot(data=df, x='Domain')
ax.set_title('Occurrences of Domains in Fetched Posts')
ax.set_xticklabels(ax.get_xticks(), rotation=90)
# Enregistrement du graphe sous forme de fichier PNG
plt.savefig(f'barres_liens_tag_{hashtag}.png')
##################################
# Création d'une dataframe pour stocker les associations entre tags
df = pd.DataFrame(columns=['post_id', 'tags'])
# Parcours des posts et stockage des informations dans la dataframe
for post in posts:
post_id = post['id']
tags = [tag['name'] for tag in post['tags']]
df.loc[len(df)] = [post_id, ', '.join(tags)]
df_list = []
for index, row in df.iterrows():
tags = row['tags'].split(',')
df_list.append(tags)
df_tags = pd.DataFrame(df_list)
#########################
# Génère le réseau social
G = nx.Graph()
for i, row in df.iterrows():
for tag in row['tags'].split(','):
G.add_node(tag)
for other_tag in row['tags'].split(','):
if tag != other_tag:
G.add_edge(tag, other_tag)
plt.figure(figsize=(20,15))
# Génère les positions des noeuds
pos = nx.spring_layout(G)
# Définisse la taille des noeuds en fonction du nombre de liens
node_sizes = [len(list(G.neighbors(node))) for node in G.nodes()]
# Determine the maximum node size
max_node_size = max(node_sizes)
# Scale the node sizes so that they are all relatively equal, but not too large
node_sizes_scaled = [size / max_node_size * 1000 for size in node_sizes]
# Dessine le graphique de force
nx.draw_networkx_nodes(G, pos, node_size=node_sizes_scaled, node_color='skyblue', alpha=0.7)
# Dessine les liens entre les noeuds
# nx.draw_networkx_edges(G, pos, width=2, edge_color='#ccc')
# Génère les arêtes du graphe avec des épaisseurs de traits qui dépendent du poids des noeuds
edge_widths = [len(list(G.neighbors(node)))/3 for node in G.nodes()]
nx.draw_networkx_edges(G, pos, width=edge_widths, edge_color='gray')
# Ajoute un contour blanc aux labels des noeuds pour améliorer la lisibilité
labels = nx.get_node_attributes(G, 'name')
nx.draw_networkx_labels(G, pos, font_size=14, font_color='black' )
print('longueur du graphe: ',len(G))
plt.savefig(f'network_graph_tag_{hashtag}.svg')
##############################
# Génération d'un graphique en barre des occurrences des tags
tag_counts = df['tags'].str.split(',').explode().value_counts().sort_values(ascending=False)
plt.figure(figsize=(10, 6))
plt.barh(tag_counts.index, tag_counts.values)
plt.xlabel('Occurrences')
plt.ylabel('Tags')
plt.title('Tag Occurrences')
# Enregistrement du graphe sous forme de fichier PNG
plt.savefig(f'barres_tag_{hashtag}.png')

View File

@ -0,0 +1,932 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1440pt" height="1080pt" viewBox="0 0 1440 1080" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-06-11T14:05:56.711421</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.6.3, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 1080
L 1440 1080
L 1440 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 180 961.2
L 1296 961.2
L 1296 129.6
L 180 129.6
z
" style="fill: #ffffff"/>
</g>
<g id="LineCollection_1">
<path d="M 711.560125 322.281121
L 617.635078 517.89831
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2"/>
<path d="M 711.560125 322.281121
L 469.162263 201.763636
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2.333333"/>
<path d="M 711.560125 322.281121
L 295.909519 404.918935
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 711.560125 322.281121
L 276.842975 266.733454
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 711.560125 322.281121
L 1014.387154 578.524799
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 711.560125 322.281121
L 1181.638807 291.696961
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 617.635078 517.89831
L 469.162263 201.763636
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2"/>
<path d="M 617.635078 517.89831
L 295.909519 404.918935
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 617.635078 517.89831
L 276.842975 266.733454
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080"/>
<path d="M 617.635078 517.89831
L 1002.681087 756.585414
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 0.666667"/>
<path d="M 617.635078 517.89831
L 1014.387154 578.524799
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2"/>
<path d="M 617.635078 517.89831
L 805.571981 819.395528
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2.333333"/>
<path d="M 469.162263 201.763636
L 295.909519 404.918935
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 469.162263 201.763636
L 276.842975 266.733454
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 295.909519 404.918935
L 276.842975 266.733454
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 1002.681087 756.585414
L 1014.387154 578.524799
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 1002.681087 756.585414
L 805.571981 819.395528
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2"/>
<path d="M 1002.681087 756.585414
L 1199.157025 889.036364
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 1.333333"/>
<path d="M 1014.387154 578.524799
L 805.571981 819.395528
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080"/>
<path d="M 1014.387154 578.524799
L 1199.157025 889.036364
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 0.666667"/>
<path d="M 1014.387154 578.524799
L 1181.638807 291.696961
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2"/>
<path d="M 805.571981 819.395528
L 1199.157025 889.036364
" clip-path="url(#p0a96d4d4ba)" style="fill: none; stroke: #808080; stroke-width: 2.333333"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1"/>
<g id="xtick_2"/>
<g id="xtick_3"/>
<g id="xtick_4"/>
<g id="xtick_5"/>
<g id="xtick_6"/>
<g id="xtick_7"/>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1"/>
<g id="ytick_2"/>
<g id="ytick_3"/>
<g id="ytick_4"/>
<g id="ytick_5"/>
<g id="ytick_6"/>
<g id="ytick_7"/>
<g id="ytick_8"/>
</g>
<g id="PathCollection_1">
<path d="M 711.560125 336.919622
C 715.442301 336.919622 719.165996 335.377217 721.911109 332.632104
C 724.656222 329.886991 726.198626 326.163297 726.198626 322.281121
C 726.198626 318.398945 724.656222 314.67525 721.911109 311.930137
C 719.165996 309.185024 715.442301 307.64262 711.560125 307.64262
C 707.677949 307.64262 703.954255 309.185024 701.209142 311.930137
C 698.464029 314.67525 696.921624 318.398945 696.921624 322.281121
C 696.921624 326.163297 698.464029 329.886991 701.209142 332.632104
C 703.954255 335.377217 707.677949 336.919622 711.560125 336.919622
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 617.635078 533.709698
C 621.828307 533.709698 625.850357 532.04371 628.815418 529.078649
C 631.780479 526.113589 633.446466 522.091539 633.446466 517.89831
C 633.446466 513.70508 631.780479 509.68303 628.815418 506.71797
C 625.850357 503.752909 621.828307 502.086921 617.635078 502.086921
C 613.441849 502.086921 609.419799 503.752909 606.454738 506.71797
C 603.489677 509.68303 601.82369 513.70508 601.82369 517.89831
C 601.82369 522.091539 603.489677 526.113589 606.454738 529.078649
C 609.419799 532.04371 613.441849 533.709698 617.635078 533.709698
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 469.162263 213.715922
C 472.332047 213.715922 475.372431 212.456554 477.613806 210.215179
C 479.855181 207.973804 481.11455 204.93342 481.11455 201.763636
C 481.11455 198.593853 479.855181 195.553469 477.613806 193.312094
C 475.372431 191.070719 472.332047 189.81135 469.162263 189.81135
C 465.99248 189.81135 462.952096 191.070719 460.710721 193.312094
C 458.469346 195.553469 457.209977 198.593853 457.209977 201.763636
C 457.209977 204.93342 458.469346 207.973804 460.710721 210.215179
C 462.952096 212.456554 465.99248 213.715922 469.162263 213.715922
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 295.909519 416.871221
C 299.079303 416.871221 302.119687 415.611853 304.361062 413.370477
C 306.602437 411.129102 307.861805 408.088718 307.861805 404.918935
C 307.861805 401.749151 306.602437 398.708767 304.361062 396.467392
C 302.119687 394.226017 299.079303 392.966649 295.909519 392.966649
C 292.739736 392.966649 289.699352 394.226017 287.457977 396.467392
C 285.216601 398.708767 283.957233 401.749151 283.957233 404.918935
C 283.957233 408.088718 285.216601 411.129102 287.457977 413.370477
C 289.699352 415.611853 292.739736 416.871221 295.909519 416.871221
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 276.842975 278.68574
C 280.012759 278.68574 283.053142 277.426372 285.294518 275.184997
C 287.535893 272.943621 288.795261 269.903238 288.795261 266.733454
C 288.795261 263.563671 287.535893 260.523287 285.294518 258.281912
C 283.053142 256.040536 280.012759 254.781168 276.842975 254.781168
C 273.673192 254.781168 270.632808 256.040536 268.391433 258.281912
C 266.150057 260.523287 264.890689 263.563671 264.890689 266.733454
C 264.890689 269.903238 266.150057 272.943621 268.391433 275.184997
C 270.632808 277.426372 273.673192 278.68574 276.842975 278.68574
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 1002.681087 768.5377
C 1005.85087 768.5377 1008.891254 767.278332 1011.132629 765.036957
C 1013.374005 762.795582 1014.633373 759.755198 1014.633373 756.585414
C 1014.633373 753.415631 1013.374005 750.375247 1011.132629 748.133872
C 1008.891254 745.892496 1005.85087 744.633128 1002.681087 744.633128
C 999.511303 744.633128 996.470919 745.892496 994.229544 748.133872
C 991.988169 750.375247 990.728801 753.415631 990.728801 756.585414
C 990.728801 759.755198 991.988169 762.795582 994.229544 765.036957
C 996.470919 767.278332 999.511303 768.5377 1002.681087 768.5377
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 1014.387154 593.1633
C 1018.26933 593.1633 1021.993024 591.620895 1024.738137 588.875782
C 1027.48325 586.130669 1029.025655 582.406975 1029.025655 578.524799
C 1029.025655 574.642623 1027.48325 570.918928 1024.738137 568.173816
C 1021.993024 565.428703 1018.26933 563.886298 1014.387154 563.886298
C 1010.504978 563.886298 1006.781283 565.428703 1004.036171 568.173816
C 1001.291058 570.918928 999.748653 574.642623 999.748653 578.524799
C 999.748653 582.406975 1001.291058 586.130669 1004.036171 588.875782
C 1006.781283 591.620895 1010.504978 593.1633 1014.387154 593.1633
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 805.571981 831.347814
C 808.741764 831.347814 811.782148 830.088446 814.023523 827.847071
C 816.264898 825.605695 817.524267 822.565311 817.524267 819.395528
C 817.524267 816.225745 816.264898 813.185361 814.023523 810.943986
C 811.782148 808.70261 808.741764 807.443242 805.571981 807.443242
C 802.402197 807.443242 799.361813 808.70261 797.120438 810.943986
C 794.879063 813.185361 793.619695 816.225745 793.619695 819.395528
C 793.619695 822.565311 794.879063 825.605695 797.120438 827.847071
C 799.361813 830.088446 802.402197 831.347814 805.571981 831.347814
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 1199.157025 899.387347
C 1201.902138 899.387347 1204.535187 898.296702 1206.476275 896.355614
C 1208.417363 894.414526 1209.508008 891.781477 1209.508008 889.036364
C 1209.508008 886.291251 1208.417363 883.658201 1206.476275 881.717113
C 1204.535187 879.776025 1201.902138 878.68538 1199.157025 878.68538
C 1196.411912 878.68538 1193.778862 879.776025 1191.837774 881.717113
C 1189.896686 883.658201 1188.806041 886.291251 1188.806041 889.036364
C 1188.806041 891.781477 1189.896686 894.414526 1191.837774 896.355614
C 1193.778862 898.296702 1196.411912 899.387347 1199.157025 899.387347
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
<path d="M 1181.638807 300.148504
C 1183.880182 300.148504 1186.030058 299.257996 1187.61495 297.673104
C 1189.199842 296.088212 1190.090349 293.938336 1190.090349 291.696961
C 1190.090349 289.455586 1189.199842 287.30571 1187.61495 285.720818
C 1186.030058 284.135926 1183.880182 283.245418 1181.638807 283.245418
C 1179.397432 283.245418 1177.247555 284.135926 1175.662664 285.720818
C 1174.077772 287.30571 1173.187264 289.455586 1173.187264 291.696961
C 1173.187264 293.938336 1174.077772 296.088212 1175.662664 297.673104
C 1177.247555 299.257996 1179.397432 300.148504 1181.638807 300.148504
z
" clip-path="url(#p0a96d4d4ba)" style="fill: #87ceeb; fill-opacity: 0.7; stroke: #87ceeb; stroke-opacity: 0.7"/>
</g>
<g id="patch_3">
<path d="M 180 961.2
L 180 129.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 1296 961.2
L 1296 129.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 180 961.2
L 1296 961.2
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 180 129.6
L 1296 129.6
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_1">
<g clip-path="url(#p0a96d4d4ba)">
<!-- cargocarryshitolympics -->
<g transform="translate(630.179657 326.144246) scale(0.14 -0.14)">
<defs>
<path id="DejaVuSans-63" d="M 3122 3366
L 3122 2828
Q 2878 2963 2633 3030
Q 2388 3097 2138 3097
Q 1578 3097 1268 2742
Q 959 2388 959 1747
Q 959 1106 1268 751
Q 1578 397 2138 397
Q 2388 397 2633 464
Q 2878 531 3122 666
L 3122 134
Q 2881 22 2623 -34
Q 2366 -91 2075 -91
Q 1284 -91 818 406
Q 353 903 353 1747
Q 353 2603 823 3093
Q 1294 3584 2113 3584
Q 2378 3584 2631 3529
Q 2884 3475 3122 3366
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-61" d="M 2194 1759
Q 1497 1759 1228 1600
Q 959 1441 959 1056
Q 959 750 1161 570
Q 1363 391 1709 391
Q 2188 391 2477 730
Q 2766 1069 2766 1631
L 2766 1759
L 2194 1759
z
M 3341 1997
L 3341 0
L 2766 0
L 2766 531
Q 2569 213 2275 61
Q 1981 -91 1556 -91
Q 1019 -91 701 211
Q 384 513 384 1019
Q 384 1609 779 1909
Q 1175 2209 1959 2209
L 2766 2209
L 2766 2266
Q 2766 2663 2505 2880
Q 2244 3097 1772 3097
Q 1472 3097 1187 3025
Q 903 2953 641 2809
L 641 3341
Q 956 3463 1253 3523
Q 1550 3584 1831 3584
Q 2591 3584 2966 3190
Q 3341 2797 3341 1997
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-72" d="M 2631 2963
Q 2534 3019 2420 3045
Q 2306 3072 2169 3072
Q 1681 3072 1420 2755
Q 1159 2438 1159 1844
L 1159 0
L 581 0
L 581 3500
L 1159 3500
L 1159 2956
Q 1341 3275 1631 3429
Q 1922 3584 2338 3584
Q 2397 3584 2469 3576
Q 2541 3569 2628 3553
L 2631 2963
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-67" d="M 2906 1791
Q 2906 2416 2648 2759
Q 2391 3103 1925 3103
Q 1463 3103 1205 2759
Q 947 2416 947 1791
Q 947 1169 1205 825
Q 1463 481 1925 481
Q 2391 481 2648 825
Q 2906 1169 2906 1791
z
M 3481 434
Q 3481 -459 3084 -895
Q 2688 -1331 1869 -1331
Q 1566 -1331 1297 -1286
Q 1028 -1241 775 -1147
L 775 -588
Q 1028 -725 1275 -790
Q 1522 -856 1778 -856
Q 2344 -856 2625 -561
Q 2906 -266 2906 331
L 2906 616
Q 2728 306 2450 153
Q 2172 0 1784 0
Q 1141 0 747 490
Q 353 981 353 1791
Q 353 2603 747 3093
Q 1141 3584 1784 3584
Q 2172 3584 2450 3431
Q 2728 3278 2906 2969
L 2906 3500
L 3481 3500
L 3481 434
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6f" d="M 1959 3097
Q 1497 3097 1228 2736
Q 959 2375 959 1747
Q 959 1119 1226 758
Q 1494 397 1959 397
Q 2419 397 2687 759
Q 2956 1122 2956 1747
Q 2956 2369 2687 2733
Q 2419 3097 1959 3097
z
M 1959 3584
Q 2709 3584 3137 3096
Q 3566 2609 3566 1747
Q 3566 888 3137 398
Q 2709 -91 1959 -91
Q 1206 -91 779 398
Q 353 888 353 1747
Q 353 2609 779 3096
Q 1206 3584 1959 3584
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-79" d="M 2059 -325
Q 1816 -950 1584 -1140
Q 1353 -1331 966 -1331
L 506 -1331
L 506 -850
L 844 -850
Q 1081 -850 1212 -737
Q 1344 -625 1503 -206
L 1606 56
L 191 3500
L 800 3500
L 1894 763
L 2988 3500
L 3597 3500
L 2059 -325
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853
Q 2591 2978 2328 3040
Q 2066 3103 1784 3103
Q 1356 3103 1142 2972
Q 928 2841 928 2578
Q 928 2378 1081 2264
Q 1234 2150 1697 2047
L 1894 2003
Q 2506 1872 2764 1633
Q 3022 1394 3022 966
Q 3022 478 2636 193
Q 2250 -91 1575 -91
Q 1294 -91 989 -36
Q 684 19 347 128
L 347 722
Q 666 556 975 473
Q 1284 391 1588 391
Q 1994 391 2212 530
Q 2431 669 2431 922
Q 2431 1156 2273 1281
Q 2116 1406 1581 1522
L 1381 1569
Q 847 1681 609 1914
Q 372 2147 372 2553
Q 372 3047 722 3315
Q 1072 3584 1716 3584
Q 2034 3584 2315 3537
Q 2597 3491 2834 3397
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-68" d="M 3513 2113
L 3513 0
L 2938 0
L 2938 2094
Q 2938 2591 2744 2837
Q 2550 3084 2163 3084
Q 1697 3084 1428 2787
Q 1159 2491 1159 1978
L 1159 0
L 581 0
L 581 4863
L 1159 4863
L 1159 2956
Q 1366 3272 1645 3428
Q 1925 3584 2291 3584
Q 2894 3584 3203 3211
Q 3513 2838 3513 2113
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-69" d="M 603 3500
L 1178 3500
L 1178 0
L 603 0
L 603 3500
z
M 603 4863
L 1178 4863
L 1178 4134
L 603 4134
L 603 4863
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-74" d="M 1172 4494
L 1172 3500
L 2356 3500
L 2356 3053
L 1172 3053
L 1172 1153
Q 1172 725 1289 603
Q 1406 481 1766 481
L 2356 481
L 2356 0
L 1766 0
Q 1100 0 847 248
Q 594 497 594 1153
L 594 3053
L 172 3053
L 172 3500
L 594 3500
L 594 4494
L 1172 4494
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6c" d="M 603 4863
L 1178 4863
L 1178 0
L 603 0
L 603 4863
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6d" d="M 3328 2828
Q 3544 3216 3844 3400
Q 4144 3584 4550 3584
Q 5097 3584 5394 3201
Q 5691 2819 5691 2113
L 5691 0
L 5113 0
L 5113 2094
Q 5113 2597 4934 2840
Q 4756 3084 4391 3084
Q 3944 3084 3684 2787
Q 3425 2491 3425 1978
L 3425 0
L 2847 0
L 2847 2094
Q 2847 2600 2669 2842
Q 2491 3084 2119 3084
Q 1678 3084 1418 2786
Q 1159 2488 1159 1978
L 1159 0
L 581 0
L 581 3500
L 1159 3500
L 1159 2956
Q 1356 3278 1631 3431
Q 1906 3584 2284 3584
Q 2666 3584 2933 3390
Q 3200 3197 3328 2828
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-70" d="M 1159 525
L 1159 -1331
L 581 -1331
L 581 3500
L 1159 3500
L 1159 2969
Q 1341 3281 1617 3432
Q 1894 3584 2278 3584
Q 2916 3584 3314 3078
Q 3713 2572 3713 1747
Q 3713 922 3314 415
Q 2916 -91 2278 -91
Q 1894 -91 1617 61
Q 1341 213 1159 525
z
M 3116 1747
Q 3116 2381 2855 2742
Q 2594 3103 2138 3103
Q 1681 3103 1420 2742
Q 1159 2381 1159 1747
Q 1159 1113 1420 752
Q 1681 391 2138 391
Q 2594 391 2855 752
Q 3116 1113 3116 1747
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-63"/>
<use xlink:href="#DejaVuSans-61" x="54.980469"/>
<use xlink:href="#DejaVuSans-72" x="116.259766"/>
<use xlink:href="#DejaVuSans-67" x="155.623047"/>
<use xlink:href="#DejaVuSans-6f" x="219.099609"/>
<use xlink:href="#DejaVuSans-63" x="280.28125"/>
<use xlink:href="#DejaVuSans-61" x="335.261719"/>
<use xlink:href="#DejaVuSans-72" x="396.541016"/>
<use xlink:href="#DejaVuSans-72" x="435.904297"/>
<use xlink:href="#DejaVuSans-79" x="477.017578"/>
<use xlink:href="#DejaVuSans-73" x="536.197266"/>
<use xlink:href="#DejaVuSans-68" x="588.296875"/>
<use xlink:href="#DejaVuSans-69" x="651.675781"/>
<use xlink:href="#DejaVuSans-74" x="679.458984"/>
<use xlink:href="#DejaVuSans-6f" x="718.667969"/>
<use xlink:href="#DejaVuSans-6c" x="779.849609"/>
<use xlink:href="#DejaVuSans-79" x="807.632812"/>
<use xlink:href="#DejaVuSans-6d" x="866.8125"/>
<use xlink:href="#DejaVuSans-70" x="964.224609"/>
<use xlink:href="#DejaVuSans-69" x="1027.701172"/>
<use xlink:href="#DejaVuSans-63" x="1055.484375"/>
<use xlink:href="#DejaVuSans-73" x="1110.464844"/>
</g>
</g>
</g>
<g id="text_2">
<g clip-path="url(#p0a96d4d4ba)">
<!-- solutionvelo -->
<g transform="translate(573.013359 521.761435) scale(0.14 -0.14)">
<defs>
<path id="DejaVuSans-20" transform="scale(0.015625)"/>
<path id="DejaVuSans-75" d="M 544 1381
L 544 3500
L 1119 3500
L 1119 1403
Q 1119 906 1312 657
Q 1506 409 1894 409
Q 2359 409 2629 706
Q 2900 1003 2900 1516
L 2900 3500
L 3475 3500
L 3475 0
L 2900 0
L 2900 538
Q 2691 219 2414 64
Q 2138 -91 1772 -91
Q 1169 -91 856 284
Q 544 659 544 1381
z
M 1991 3584
L 1991 3584
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6e" d="M 3513 2113
L 3513 0
L 2938 0
L 2938 2094
Q 2938 2591 2744 2837
Q 2550 3084 2163 3084
Q 1697 3084 1428 2787
Q 1159 2491 1159 1978
L 1159 0
L 581 0
L 581 3500
L 1159 3500
L 1159 2956
Q 1366 3272 1645 3428
Q 1925 3584 2291 3584
Q 2894 3584 3203 3211
Q 3513 2838 3513 2113
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-76" d="M 191 3500
L 800 3500
L 1894 563
L 2988 3500
L 3597 3500
L 2284 0
L 1503 0
L 191 3500
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-65" d="M 3597 1894
L 3597 1613
L 953 1613
Q 991 1019 1311 708
Q 1631 397 2203 397
Q 2534 397 2845 478
Q 3156 559 3463 722
L 3463 178
Q 3153 47 2828 -22
Q 2503 -91 2169 -91
Q 1331 -91 842 396
Q 353 884 353 1716
Q 353 2575 817 3079
Q 1281 3584 2069 3584
Q 2775 3584 3186 3129
Q 3597 2675 3597 1894
z
M 3022 2063
Q 3016 2534 2758 2815
Q 2500 3097 2075 3097
Q 1594 3097 1305 2825
Q 1016 2553 972 2059
L 3022 2063
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-73" x="31.787109"/>
<use xlink:href="#DejaVuSans-6f" x="83.886719"/>
<use xlink:href="#DejaVuSans-6c" x="145.068359"/>
<use xlink:href="#DejaVuSans-75" x="172.851562"/>
<use xlink:href="#DejaVuSans-74" x="236.230469"/>
<use xlink:href="#DejaVuSans-69" x="275.439453"/>
<use xlink:href="#DejaVuSans-6f" x="303.222656"/>
<use xlink:href="#DejaVuSans-6e" x="364.404297"/>
<use xlink:href="#DejaVuSans-76" x="427.783203"/>
<use xlink:href="#DejaVuSans-65" x="486.962891"/>
<use xlink:href="#DejaVuSans-6c" x="548.486328"/>
<use xlink:href="#DejaVuSans-6f" x="576.269531"/>
</g>
</g>
</g>
<g id="text_3">
<g clip-path="url(#p0a96d4d4ba)">
<!-- velo -->
<g transform="translate(452.259451 205.626761) scale(0.14 -0.14)">
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-76" x="31.787109"/>
<use xlink:href="#DejaVuSans-65" x="90.966797"/>
<use xlink:href="#DejaVuSans-6c" x="152.490234"/>
<use xlink:href="#DejaVuSans-6f" x="180.273438"/>
</g>
</g>
</g>
<g id="text_4">
<g clip-path="url(#p0a96d4d4ba)">
<!-- sortirDesFossiles -->
<g transform="translate(234.775457 408.78206) scale(0.14 -0.14)">
<defs>
<path id="DejaVuSans-44" d="M 1259 4147
L 1259 519
L 2022 519
Q 2988 519 3436 956
Q 3884 1394 3884 2338
Q 3884 3275 3436 3711
Q 2988 4147 2022 4147
L 1259 4147
z
M 628 4666
L 1925 4666
Q 3281 4666 3915 4102
Q 4550 3538 4550 2338
Q 4550 1131 3912 565
Q 3275 0 1925 0
L 628 0
L 628 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-46" d="M 628 4666
L 3309 4666
L 3309 4134
L 1259 4134
L 1259 2759
L 3109 2759
L 3109 2228
L 1259 2228
L 1259 0
L 628 0
L 628 4666
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-73" x="31.787109"/>
<use xlink:href="#DejaVuSans-6f" x="83.886719"/>
<use xlink:href="#DejaVuSans-72" x="145.068359"/>
<use xlink:href="#DejaVuSans-74" x="186.181641"/>
<use xlink:href="#DejaVuSans-69" x="225.390625"/>
<use xlink:href="#DejaVuSans-72" x="253.173828"/>
<use xlink:href="#DejaVuSans-44" x="294.287109"/>
<use xlink:href="#DejaVuSans-65" x="371.289062"/>
<use xlink:href="#DejaVuSans-73" x="432.8125"/>
<use xlink:href="#DejaVuSans-46" x="484.912109"/>
<use xlink:href="#DejaVuSans-6f" x="538.806641"/>
<use xlink:href="#DejaVuSans-73" x="599.988281"/>
<use xlink:href="#DejaVuSans-73" x="652.087891"/>
<use xlink:href="#DejaVuSans-69" x="704.1875"/>
<use xlink:href="#DejaVuSans-6c" x="731.970703"/>
<use xlink:href="#DejaVuSans-65" x="759.753906"/>
<use xlink:href="#DejaVuSans-73" x="821.277344"/>
</g>
</g>
</g>
<g id="text_5">
<g clip-path="url(#p0a96d4d4ba)">
<!-- sortirdesbagnoles -->
<g transform="translate(212.173913 270.596579) scale(0.14 -0.14)">
<defs>
<path id="DejaVuSans-64" d="M 2906 2969
L 2906 4863
L 3481 4863
L 3481 0
L 2906 0
L 2906 525
Q 2725 213 2448 61
Q 2172 -91 1784 -91
Q 1150 -91 751 415
Q 353 922 353 1747
Q 353 2572 751 3078
Q 1150 3584 1784 3584
Q 2172 3584 2448 3432
Q 2725 3281 2906 2969
z
M 947 1747
Q 947 1113 1208 752
Q 1469 391 1925 391
Q 2381 391 2643 752
Q 2906 1113 2906 1747
Q 2906 2381 2643 2742
Q 2381 3103 1925 3103
Q 1469 3103 1208 2742
Q 947 2381 947 1747
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-62" d="M 3116 1747
Q 3116 2381 2855 2742
Q 2594 3103 2138 3103
Q 1681 3103 1420 2742
Q 1159 2381 1159 1747
Q 1159 1113 1420 752
Q 1681 391 2138 391
Q 2594 391 2855 752
Q 3116 1113 3116 1747
z
M 1159 2969
Q 1341 3281 1617 3432
Q 1894 3584 2278 3584
Q 2916 3584 3314 3078
Q 3713 2572 3713 1747
Q 3713 922 3314 415
Q 2916 -91 2278 -91
Q 1894 -91 1617 61
Q 1341 213 1159 525
L 1159 0
L 581 0
L 581 4863
L 1159 4863
L 1159 2969
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-73" x="31.787109"/>
<use xlink:href="#DejaVuSans-6f" x="83.886719"/>
<use xlink:href="#DejaVuSans-72" x="145.068359"/>
<use xlink:href="#DejaVuSans-74" x="186.181641"/>
<use xlink:href="#DejaVuSans-69" x="225.390625"/>
<use xlink:href="#DejaVuSans-72" x="253.173828"/>
<use xlink:href="#DejaVuSans-64" x="292.537109"/>
<use xlink:href="#DejaVuSans-65" x="356.013672"/>
<use xlink:href="#DejaVuSans-73" x="417.537109"/>
<use xlink:href="#DejaVuSans-62" x="469.636719"/>
<use xlink:href="#DejaVuSans-61" x="533.113281"/>
<use xlink:href="#DejaVuSans-67" x="594.392578"/>
<use xlink:href="#DejaVuSans-6e" x="657.869141"/>
<use xlink:href="#DejaVuSans-6f" x="721.248047"/>
<use xlink:href="#DejaVuSans-6c" x="782.429688"/>
<use xlink:href="#DejaVuSans-65" x="810.212891"/>
<use xlink:href="#DejaVuSans-73" x="871.736328"/>
</g>
</g>
</g>
<g id="text_6">
<g clip-path="url(#p0a96d4d4ba)">
<!-- velo -->
<g transform="translate(988.002962 760.448539) scale(0.14 -0.14)">
<use xlink:href="#DejaVuSans-76"/>
<use xlink:href="#DejaVuSans-65" x="59.179688"/>
<use xlink:href="#DejaVuSans-6c" x="120.703125"/>
<use xlink:href="#DejaVuSans-6f" x="148.486328"/>
</g>
</g>
</g>
<g id="text_7">
<g clip-path="url(#p0a96d4d4ba)">
<!-- cargo -->
<g transform="translate(992.541685 582.387924) scale(0.14 -0.14)">
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-63" x="31.787109"/>
<use xlink:href="#DejaVuSans-61" x="86.767578"/>
<use xlink:href="#DejaVuSans-72" x="148.046875"/>
<use xlink:href="#DejaVuSans-67" x="187.410156"/>
<use xlink:href="#DejaVuSans-6f" x="250.886719"/>
</g>
</g>
</g>
<g id="text_8">
<g clip-path="url(#p0a96d4d4ba)">
<!-- cargocarryshitolympics -->
<g transform="translate(721.966824 823.258653) scale(0.14 -0.14)">
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-63" x="31.787109"/>
<use xlink:href="#DejaVuSans-61" x="86.767578"/>
<use xlink:href="#DejaVuSans-72" x="148.046875"/>
<use xlink:href="#DejaVuSans-67" x="187.410156"/>
<use xlink:href="#DejaVuSans-6f" x="250.886719"/>
<use xlink:href="#DejaVuSans-63" x="312.068359"/>
<use xlink:href="#DejaVuSans-61" x="367.048828"/>
<use xlink:href="#DejaVuSans-72" x="428.328125"/>
<use xlink:href="#DejaVuSans-72" x="467.691406"/>
<use xlink:href="#DejaVuSans-79" x="508.804688"/>
<use xlink:href="#DejaVuSans-73" x="567.984375"/>
<use xlink:href="#DejaVuSans-68" x="620.083984"/>
<use xlink:href="#DejaVuSans-69" x="683.462891"/>
<use xlink:href="#DejaVuSans-74" x="711.246094"/>
<use xlink:href="#DejaVuSans-6f" x="750.455078"/>
<use xlink:href="#DejaVuSans-6c" x="811.636719"/>
<use xlink:href="#DejaVuSans-79" x="839.419922"/>
<use xlink:href="#DejaVuSans-6d" x="898.599609"/>
<use xlink:href="#DejaVuSans-70" x="996.011719"/>
<use xlink:href="#DejaVuSans-69" x="1059.488281"/>
<use xlink:href="#DejaVuSans-63" x="1087.271484"/>
<use xlink:href="#DejaVuSans-73" x="1142.251953"/>
</g>
</g>
</g>
<g id="text_9">
<g clip-path="url(#p0a96d4d4ba)">
<!-- astuce -->
<g transform="translate(1173.659525 892.899489) scale(0.14 -0.14)">
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-61" x="31.787109"/>
<use xlink:href="#DejaVuSans-73" x="93.066406"/>
<use xlink:href="#DejaVuSans-74" x="145.166016"/>
<use xlink:href="#DejaVuSans-75" x="184.375"/>
<use xlink:href="#DejaVuSans-63" x="247.753906"/>
<use xlink:href="#DejaVuSans-65" x="302.734375"/>
</g>
</g>
</g>
<g id="text_10">
<g clip-path="url(#p0a96d4d4ba)">
<!-- bike -->
<g transform="translate(1164.918651 295.560086) scale(0.14 -0.14)">
<defs>
<path id="DejaVuSans-6b" d="M 581 4863
L 1159 4863
L 1159 1991
L 2875 3500
L 3609 3500
L 1753 1863
L 3688 0
L 2938 0
L 1159 1709
L 1159 0
L 581 0
L 581 4863
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-20"/>
<use xlink:href="#DejaVuSans-62" x="31.787109"/>
<use xlink:href="#DejaVuSans-69" x="95.263672"/>
<use xlink:href="#DejaVuSans-6b" x="123.046875"/>
<use xlink:href="#DejaVuSans-65" x="177.332031"/>
</g>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p0a96d4d4ba">
<rect x="180" y="129.6" width="1116" height="831.6"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 201 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 165 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 398 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 122 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 563 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 303 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 108 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 114 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 547 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 205 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 188 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 339 KiB